Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/OWASP/Amass into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
caffix committed Sep 24, 2020
2 parents 0cf8cbe + 6cff5dc commit 2576474
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion datasrcs/commoncrawl.go
Expand Up @@ -152,7 +152,7 @@ func (c *CommonCrawl) getURL(domain, index string) string {
u.RawQuery = url.Values{
"url": {"*." + domain},
"output": {"json"},
"filter": {"=status:200"},
"filter": {"status:200"},
"fl": {"url,status"},
"pageSize": {"2000"},
}.Encode()
Expand Down
6 changes: 6 additions & 0 deletions doc/user_guide.md
Expand Up @@ -188,9 +188,15 @@ Performs viewing and manipulation of the graph database. This subcommand only le
| -ip | Show the IP addresses for discovered names | amass db -show -ip -d example.com |
| -ipv4 | Show the IPv4 addresses for discovered names | amass db -show -ipv4 -d example.com |
| -ipv6 | Show the IPv6 addresses for discovered names | amass db -show -ipv6 -d example.com |
| -json | Path to the JSON output file | amass db -names -silent -json out.json -d example.com |
| -list | Print enumerations in the database and filter on domains specified | amass db -list |
| -names | Print just discovered names | amass db -names -d example.com |
| -nocolor | Disable colorized output | amass db -names -nocolor -d example.com |
| -o | Path to the text output file | amass db -names -o out.txt -d example.com |
| -show | Print the results for the enumeration index + domains provided | amass db -show |
| -silent | Disable all output during execution | amass db -names -silent -json out.json -d example.com |
| -src | Print data sources for the discovered names | amass db -show -src -d example.com |
| -summary | Print just ASN table summary | amass db -summary -d example.com |

## The Output Directory

Expand Down

0 comments on commit 2576474

Please sign in to comment.