System Commands
grep Command
grep
command is used to filter output text
Notations
cut Command
cut
command is used to seperate words from an output text
Notations
wc Command
wc
is used to count the characters, words, lines etc of a file
Basic Command
wc -m payload.php
Notations
Find Command
Find files
find / -type f -name "*flag.txt" 2>/dev/null
Find SUID Files
find / -user root -perm -4000 -print 2>/dev/null
sudo -l
Last updated
Was this helpful?