Merge pull request #172 from bash-c/patch-1

Delete unnecessary escape characters
This commit is contained in:
Swissky 2020-03-29 20:23:25 +02:00 committed by GitHub
commit 0ba5ad3e71
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -434,7 +434,7 @@ Tool: [wildpwn](https://github.com/localh0t/wildpwn)
List world writable files on the system.
```powershell
find / -writable ! -user \`whoami\` -type f ! -path "/proc/*" ! -path "/sys/*" -exec ls -al {} \; 2>/dev/null
find / -writable ! -user `whoami` -type f ! -path "/proc/*" ! -path "/sys/*" -exec ls -al {} \; 2>/dev/null
find / -perm -2 -type f 2>/dev/null
find / ! -path "*/proc/*" -perm -2 -type f -print 2>/dev/null
```