mirror of
https://github.com/hackerschoice/thc-tips-tricks-hacks-cheat-sheet.git
synced 2026-07-11 13:06:34 +02:00
Update README.md
This commit is contained in:
@@ -70,6 +70,7 @@ Got tricks? Join us on Telegram: [https://t.me/thcorg](https://t.me/thcorg)
|
||||
1. [Clean logfile](#shell-clean-logs)
|
||||
1. [Hide files from a User without root privileges](#shell-hide-files)
|
||||
1. [Find out Linux Distro](#linux-info)
|
||||
2. [Find +s binaries / Find writeable directories](#suid)
|
||||
1. [Crypto](#crypto)
|
||||
1. [Generate quick random Password](#gen-password)
|
||||
1. [Linux transportable encrypted filesystems](#crypto-filesystem)
|
||||
@@ -1413,6 +1414,17 @@ curl -sL bench.sh | bash
|
||||
# curl -sL yabs.sh | bash
|
||||
```
|
||||
|
||||
<a id="suid"></a>
|
||||
**7.vi. Find +s files / Find writeable directory
|
||||
|
||||
```
|
||||
find / -xdev -type f -perm /6000 -ls 2>/dev/null
|
||||
```
|
||||
|
||||
```
|
||||
find / -xdev -writable 2>/dev/null
|
||||
```
|
||||
|
||||
---
|
||||
<a id="crypto"></a>
|
||||
## 8. Crypto
|
||||
|
||||
Reference in New Issue
Block a user