mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-03 14:43:35 +00:00
Update cheatsheets
This commit is contained in:
10
tldr/ffuf
10
tldr/ffuf
@@ -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
21
tldr/linux/cacaclock
Normal 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
13
tldr/linux/cacademo
Normal 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
13
tldr/linux/cacafire
Normal 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
13
tldr/linux/cacaview
Normal 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}}`
|
||||
Reference in New Issue
Block a user