mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-12-14 07:12:54 +00:00
Add Spyse to network discovery
1. spyse itself 2. python wrapper - using only a part of the available functionality of spyse, but will be updated very soon.
This commit is contained in:
parent
3221197b1e
commit
3fb2a9006f
1 changed files with 29 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
- [Nmap](#nmap)
|
- [Nmap](#nmap)
|
||||||
|
- [Spyse](#spyse)
|
||||||
- [Masscan](#masscan)
|
- [Masscan](#masscan)
|
||||||
- [Netdiscover](#netdiscover)
|
- [Netdiscover](#netdiscover)
|
||||||
- [Responder](#responder)
|
- [Responder](#responder)
|
||||||
|
@ -97,6 +98,33 @@ Host script results:
|
||||||
List Nmap scripts : ls /usr/share/nmap/scripts/
|
List Nmap scripts : ls /usr/share/nmap/scripts/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
## Spyse
|
||||||
|
* Spyse API - for detailed info is better to check [Spyse](https://spyse.com/)
|
||||||
|
|
||||||
|
* [Spyse Wrapper](https://github.com/zeropwn/spyse.py)
|
||||||
|
|
||||||
|
#### Searching for subdomains
|
||||||
|
```bash
|
||||||
|
spyse -target xbox.com --subdomains
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Reverse IP Lookup
|
||||||
|
```bash
|
||||||
|
spyse -target 52.14.144.171 --domains-on-ip
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Searching for SSL certificates
|
||||||
|
```bash
|
||||||
|
spyse -target hotmail.com --ssl-certificates
|
||||||
|
```
|
||||||
|
```bash
|
||||||
|
spyse -target "org: Microsoft" --ssl-certificates
|
||||||
|
```
|
||||||
|
#### Getting all DNS records
|
||||||
|
```bash
|
||||||
|
spyse -target xbox.com --dns-all
|
||||||
|
```
|
||||||
|
|
||||||
## Masscan
|
## Masscan
|
||||||
|
|
||||||
```powershell
|
```powershell
|
||||||
|
@ -170,4 +198,4 @@ bettercap -X --proxy --proxy-https -T <target IP>
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
* [TODO](TODO)
|
* [TODO](TODO)
|
||||||
|
|
Loading…
Reference in a new issue