Created
April 8, 2014 18:18
-
-
Save anonymous/10166278 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Find World Writable Folders | |
find / -xdev -type d -perm -0002 -ls | |
# Find World Writable Files | |
find / -xdev -type f -perm -0002 -ls |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment