1 cat /etc/crontab && ls -al /etc/cron*
1
cat /etc/crontab && ls -al /etc/cron*
1 find /etc/cron* -type f -perm -o+w -exec ls -l {} \;
find /etc/cron* -type f -perm -o+w -exec ls -l {} \;
1 find /etc/cron* -user <admin>
find /etc/cron* -user <admin>
Find recursively a string: 1 2 3 4 5 6 # Find ETSCTF on every file under the current directory find . -type f -exec grep -H 'ETSCTF' {} \; 2>/dev/null # Identify any file (not directory) modifie...
LinPeas We can use linpeas on UNIX derivatives such as Linux. 1 ./linpeas.sh | tee output.txt Unix_privesc_check We can use unix_privesc_check on UNIX derivatives such as Linux. The script suppo...
/proc/(PID)/cmdline This file shows the parameters passed to the kernel at the time it is started. It looks like the following: --------------------------------------------------- [*] PATH: /proc/...
FTP (tcp-21)
System (Linux)