Читать книгу Kali Linux Penetration Testing Bible - Gus Khawaja - Страница 32

TIP

Оглавление

Appending 2> /dev/null to your command will clean the output results and filter out errors.

The following is a convenient find filter that searches for setuid files in Linux for privilege escalation (you will learn all the details in Chapter 10, “Linux Privilege Escalation”):

$ find / -perm -u=s -type f 2>/dev/null

Kali Linux Penetration Testing Bible

Подняться наверх