bypass forbidden in cat /etc/passwd
if you have forbidden in cat /etc/passwd
you can try this comand in some way its work
1-
2-
3-
4-
5-
i hope that you like it :D
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 -v -E "^#" /etc/passwd | awk -F: '$3 == 0 { print $1}'
i hope that you like it :D
Post a Comment