4 Ekim 2013 Cuma

new ways to bypass forbidden in cat /etc/passwd

forbidden in cat /etc/passwd

you can try this comand in some way its work 

1-
PHP Code:
awk -F'{ print $1 }' /etc*/passwd sort 

2-
PHP Code:
awk -F'{ print $1 " "$2 " " $3" "$4" "$5 " "$6" "$7" "}' /etc*/passwd sort 

3-
PHP Code:
cd /etc;cat passwd 

4-
PHP Code:
awk -F":" '{ print "user****: " $1 "\t\tuid:" $3 }' /etc/passwd 

5-
PHP Code:
grep --"^#" /etc/passwd awk -F'$3 == 0 { print $1}' 

Hiç yorum yok:

Yorum Gönder