Update cheatsheets

This commit is contained in:
ivuorinen
2024-04-03 00:13:38 +00:00
parent 942e2489a7
commit 8f2c5085f9
5 changed files with 69 additions and 1 deletions

View File

@@ -13,7 +13,7 @@ source: https://github.com/tldr-pages/tldr.git
`ffuf -c -w {{path/to/wordlist.txt}} -u {{http://target/FUZZ}}`
- Enumerate subdomains by changing the position of the keyword:
- Enumerate webservers of subdomains by changing the position of the keyword:
`ffuf -w {{path/to/subdomains.txt}} -u {{http://FUZZ.target.com}}`
@@ -28,3 +28,11 @@ source: https://github.com/tldr-pages/tldr.git
- Fuzz with specified HTTP method and [d]ata, while [f]iltering out comma separated status [c]odes:
`ffuf -w {{path/to/postdata.txt}} -X {{POST}} -d "{{username=admin\&password=FUZZ}}" -u {{http://target/login.php}} -fc {{401,403}}`
- Fuzz multiple positions with multiple wordlists using different modes:
`ffuf -w {{path/to/keys:KEY}} -w {{path/to/values:VALUE}} -mode {{pitchfork|clusterbomb}} -u {{http://target.com/id?KEY=VALUE}}`
- Proxy requests through a HTTP MITM pro[x]y (such as Burp Suite or `mitmproxy`):
`ffuf -w {{path/to/wordlist}} -x {{http://127.0.0.1:8080}} -u {{http://target.com/FUZZ}}`

21
tldr/linux/cacaclock Normal file
View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# cacaclock
> Display the current time as ASCII art.
> More information: <https://packages.debian.org/sid/caca-utils>.
- Display the time:
`cacaclock`
- Change the font:
`cacaclock -f {{font}}`
- Change the format using an `strftime` format specification:
`cacaclock -d {{strftime_arguments}}`

13
tldr/linux/cacademo Normal file
View File

@@ -0,0 +1,13 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# cacademo
> Display a random ASCII art animation.
> More information: <https://packages.debian.org/sid/caca-utils>.
- View an animation:
`cacademo`

13
tldr/linux/cacafire Normal file
View File

@@ -0,0 +1,13 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# cacafire
> Display an animated ASCII fire.
> More information: <https://packages.debian.org/sid/caca-utils>.
- Display the ASCII fire:
`cacafire`

13
tldr/linux/cacaview Normal file
View File

@@ -0,0 +1,13 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# cacaview
> Display an image in PMN format.
> More information: <https://packages.debian.org/sid/caca-utils>.
- Display an image:
`cacaview {{path/to/image}}`