Added photos to README.md
This commit is contained in:
Binary file not shown.
|
After Width: | Height: | Size: 187 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 110 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 91 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 116 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 32 KiB |
@@ -100,6 +100,7 @@ Dehasher is capable of handling wildcard queries.
|
|||||||
A wildcard query cannot begin with a wildcard.
|
A wildcard query cannot begin with a wildcard.
|
||||||
This is a limitation of the Dehashed API.
|
This is a limitation of the Dehashed API.
|
||||||
An asterisk can be used to denote multiple characters, and a question mark can be used to denote a single character.
|
An asterisk can be used to denote multiple characters, and a question mark can be used to denote a single character.
|
||||||
|

|
||||||
``` go
|
``` go
|
||||||
# Provide credentials for emails matching @target.com and @target2.com
|
# Provide credentials for emails matching @target.com and @target2.com
|
||||||
dehasher api -E @target?.com -C -W
|
dehasher api -E @target?.com -C -W
|
||||||
@@ -132,6 +133,9 @@ Dehasher supports WHOIS lookups, history searches, reverse WHOIS searches, IP lo
|
|||||||
The WhoIs Lookups require a separate API Credit from the Dehashed API.
|
The WhoIs Lookups require a separate API Credit from the Dehashed API.
|
||||||
|
|
||||||
### Domain Lookup
|
### Domain Lookup
|
||||||
|
Dehasher can perform a domain lookup for a given domain.
|
||||||
|
This provides a tree view of the domain's WHOIS information.
|
||||||
|

|
||||||
```bash
|
```bash
|
||||||
# Perform a WHOIS lookup for example.com
|
# Perform a WHOIS lookup for example.com
|
||||||
dehasher whois -d example.com
|
dehasher whois -d example.com
|
||||||
@@ -140,40 +144,57 @@ dehasher whois -d example.com
|
|||||||
### History Lookup
|
### History Lookup
|
||||||
History Lookups require 25 credits.
|
History Lookups require 25 credits.
|
||||||
This is a Dehashed API limitation.
|
This is a Dehashed API limitation.
|
||||||
|
The history lookup is immediately written to file and not displayed in the terminal or stored in the database.
|
||||||
```bash
|
```bash
|
||||||
# Perform a WHOIS history search for example.com
|
# Perform a WHOIS history search for example.com
|
||||||
dehasher whois -d example.com -H
|
dehasher whois -d example.com -H
|
||||||
```
|
```
|
||||||
|
|
||||||
### Reverse WHOIS Lookup
|
### Reverse WHOIS Lookup
|
||||||
|
Dehasher can perform a reverse WHOIS lookup for given criteria.
|
||||||
|
This provides a list of all domains that match the given query.
|
||||||
|
The reverse WHOIS lookup is immediately written to file and not displayed in the terminal or stored in the database.
|
||||||
```bash
|
```bash
|
||||||
# Perform a reverse WHOIS lookup for example.com
|
# Perform a reverse WHOIS lookup for example.com
|
||||||
dehasher whois -I example.com
|
dehasher whois -I example.com
|
||||||
```
|
```
|
||||||
|
|
||||||
### IP Lookup
|
### IP Lookup
|
||||||
|
Dehasher can perform a reverse IP lookup for a given IP address.
|
||||||
|
This provides a list of all domains that match the given query.
|
||||||
|

|
||||||
```bash
|
```bash
|
||||||
# Perform a reverse IP lookup for 8.8.8.8
|
# Perform a reverse IP lookup for 8.8.8.8
|
||||||
dehasher whois -i 8.8.8.8
|
dehasher whois -i 8.8.8.8
|
||||||
```
|
```
|
||||||
|
|
||||||
### MX Lookup
|
### MX Lookup
|
||||||
|
Dehasher can perform an MX lookup for a given MX hostname.
|
||||||
|
This provides a list of all domains that match the given query.
|
||||||
|

|
||||||
```bash
|
```bash
|
||||||
# Perform a reverse MX lookup for google.com
|
# Perform a reverse MX lookup for google.com
|
||||||
dehasher whois -m google.com
|
dehasher whois -m google.com
|
||||||
```
|
```
|
||||||
### NS Lookup
|
### NS Lookup
|
||||||
|
Dehasher can perform an NS lookup for a given NS hostname.
|
||||||
|
This provides a list of all domains that match the given query.
|
||||||
|
The picture below also includes the --debug global flag.
|
||||||
|

|
||||||
```bash
|
```bash
|
||||||
# Perform a reverse NS lookup for google.com
|
# Perform a reverse NS lookup for google.com
|
||||||
dehasher whois -n google.com
|
dehasher whois -n google.com
|
||||||
```
|
```
|
||||||
### Subdomain Scan
|
### Subdomain Scan
|
||||||
|
Dehasher can perform a subdomain scan for a given domain.
|
||||||
|
This provides a list of all subdomains that match the given query.
|
||||||
|

|
||||||
```bash
|
```bash
|
||||||
# Perform a WHOIS subdomain scan for google.com
|
# Perform a WHOIS subdomain scan for google.com
|
||||||
dehasher whois -d google.com -s
|
dehasher whois -d google.com -s
|
||||||
```
|
```
|
||||||
|
|
||||||
<hr></hr>
|
---
|
||||||
|
|
||||||
## 📊 Database Querying
|
## 📊 Database Querying
|
||||||
Dehasher stores query results in a local database.
|
Dehasher stores query results in a local database.
|
||||||
|
|||||||
Reference in New Issue
Block a user