All public logs

Combined display of all available logs of PedrosBrainDump. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 23:11, 7 October 2024 413vhcu1lq0463ob talk contribs created page Introduction to Pentest in Practice course notes (Created page with "== Mapping host == === Mapping open ports on host === nmap -D RND:20 --open -sS --top-ports=100 domain.com -oN open-ports.file * nmap - the comand * -D RND:20 - will generate 20 random IPs to send the request, to try to mask the requests if there is a inteligent firewall on the other side. * --open - to get open ports * -sS - SYN scan the target responds with a '''SYN-ACK''' packet (acknowledging the connection) * --top-ports=100 - list the top 100 ports * domain.com...")