Skip to content

Instantly share code, notes, and snippets.

@bemonolit
Forked from anonymous/gist:10166278
Created November 6, 2022 09:02
Show Gist options
  • Save bemonolit/0a62e31d3764c936013274ae26270a54 to your computer and use it in GitHub Desktop.
Save bemonolit/0a62e31d3764c936013274ae26270a54 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