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.
patch-1
Mark 2019-09-30 15:26:26 +04:00 committed by GitHub
parent 3221197b1e
commit 3fb2a9006f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 29 additions and 1 deletions

View File

@ -3,6 +3,7 @@
## Summary
- [Nmap](#nmap)
- [Spyse](#spyse)
- [Masscan](#masscan)
- [Netdiscover](#netdiscover)
- [Responder](#responder)
@ -97,6 +98,33 @@ Host script results:
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
```powershell
@ -170,4 +198,4 @@ bettercap -X --proxy --proxy-https -T <target IP>
## References
* [TODO](TODO)
* [TODO](TODO)