mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings
synced 2025-12-06 17:02:53 +01:00
Merge branch 'master' of https://github.com/swisskyrepo/PayloadsAllTheThings
This commit is contained in:
commit
231e41a59b
1 changed files with 2 additions and 2 deletions
|
|
@ -434,7 +434,7 @@ Tool: [wildpwn](https://github.com/localh0t/wildpwn)
|
||||||
List world writable files on the system.
|
List world writable files on the system.
|
||||||
|
|
||||||
```powershell
|
```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 / -perm -2 -type f 2>/dev/null
|
||||||
find / ! -path "*/proc/*" -perm -2 -type f -print 2>/dev/null
|
find / ! -path "*/proc/*" -perm -2 -type f -print 2>/dev/null
|
||||||
```
|
```
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue