1. Complete Beginner Intro
First section in Complete Beginner learning path.
Research
Research is an important part of pentesting. Google is a valuable tool as is ExploitDB and others found in Vulnerability OSINT. Kali has a built-in command to search ExploitDB - searchsploit
.
The in-built Linux "man
" command is very useful for finding syntax of commands e.g. man ssh
will output all the info for the ssh
command. You can use grep
with man
to find specific switches e.g. man ssh | grep -e "version number"
will search for the string "version number"
in the ssh man page.
Last updated