Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcospinello/2185508ca99da422e2edb8933aaf4d02 to your computer and use it in GitHub Desktop.
Save marcospinello/2185508ca99da422e2edb8933aaf4d02 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