How to find unprotected folder in UNIX
if you want to find a folder with all privilege permission (0777) in UNIX (Linux or FreeBSD) besides /temp folder, you can use this command :
$ find / -perm 0777 type -d
info :
-perm : permission
-d : Cause find to perform a depth-first traversal, i.e., directories are visited in post-order and all entries in a directory will be acted on before the directory itself. By default, find visits directories in pre-order, i.e., before their contents.
This is useful when you want to download file, program or exploit in your system without root privelege
.
But.. it is work if in there is a folder with 0777 permission in the system.
credit for kartubeben http://www.kartubeben.com
chaidir.abadi
chaidir.a[at]gmail.com