Move pages under tldr, lint run.sh, update docs

This commit is contained in:
2024-02-21 13:58:43 +02:00
parent 3d653cc7e6
commit 2c475fa62d
4806 changed files with 36 additions and 35 deletions

33
tldr/dirsearch Normal file
View File

@@ -0,0 +1,33 @@
---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# dirsearch
> Web path scanner.
> More information: <https://github.com/maurosoria/dirsearch>.
- Scan a web server for common paths with common extensions:
`dirsearch --url {{url}} --extensions-list`
- Scan a list of web servers for common paths with the `.php` extension:
`dirsearch --url-list {{path/to/url-list.txt}} --extensions {{php}}`
- Scan a web server for user-defined paths with common extensions:
`dirsearch --url {{url}} --extensions-list --wordlist {{path/to/url-paths.txt}}`
- Scan a web server using a cookie:
`dirsearch --url {{url}} --extensions {{php}} --cookie {{cookie}}`
- Scan a web server using the `HEAD` HTTP method:
`dirsearch --url {{url}} --extensions {{php}} --http-method {{HEAD}}`
- Scan a web server, saving the results to a `.json` file:
`dirsearch --url {{url}} --extensions {{php}} --json-report {{path/to/report.json}}`