Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/t-crypt/pentesting-tips
https://github.com/t-crypt/pentesting-tips
enumeration nmap penetration-testing scanning
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/t-crypt/pentesting-tips
- Owner: T-Crypt
- Created: 2023-09-07T23:07:42.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-20T14:18:17.000Z (5 months ago)
- Last Synced: 2024-06-21T07:30:39.349Z (5 months ago)
- Topics: enumeration, nmap, penetration-testing, scanning
- Language: PHP
- Homepage:
- Size: 1.33 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README (1).md
Awesome Lists containing this project
README
# Gobuster
```shell-session
cat ./vhosts | while read vhost;do echo "\n********\nFUZZING: ${vhost}\n********";curl -s -I http://192.168.10.10 -H "HOST: ${vhost}.randomtarget.com" | grep "Content-Length: ";done
```\
```
ffuf -w /usr/share/seclists/Discovery/DNS/namelist.txt -u http://10.129.202.236 -H "HOST: FUZZ.inlanefreight.htb" -fs 10918 -mc 200
``````shell-session
export TARGET="facebook.com"
export NS="d.ns.facebook.com"
export WORDLIST="numbers.txt"
gobuster dns -q -r "${NS}" -d "${TARGET}" -w "${WORDLIST}" -p ./patterns.txt -o "gobuster_${TARGET}.txt"```
{% code title="Patterns" %}
```bash
lert-api-shv-{GOBUSTER}-sin6
atlas-pp-shv-{GOBUSTER}-sin6
```
{% endcode %}```bash
gobuster dir -u http://94.237.59.185:46471/ -w /usr/share/dirb/wordlists/common.txt```