Skip to content

Instantly share code, notes, and snippets.

Created April 8, 2014 18:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save anonymous/10166278 to your computer and use it in GitHub Desktop.
Save anonymous/10166278 to your computer and use it in GitHub Desktop.
# 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