forked from leebaird/discover
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated the recon-ng export.rc file.
- Loading branch information
Showing
2 changed files
with
20 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
spool start /opt/discover/tmp | ||
show contacts | ||
spool start /root/creds.txt | ||
query SELECT username FROM credentials ORDER BY username | ||
spool stop | ||
spool start /opt/discover/tmp2 | ||
show creds | ||
|
||
spool start /root/emails.txt | ||
query SELECT email FROM contacts WHERE email !="" ORDER BY email | ||
spool stop | ||
spool start /opt/discover/tmp3 | ||
show hosts | ||
|
||
spool start /root/hosts.txt | ||
query SELECT ip_address FROM hosts ORDER BY ip_address | ||
spool stop | ||
spool start /opt/discover/tmp4 | ||
show leaks | ||
|
||
spool start /root/names.txt | ||
query SELECT last_name, first_name FROM contacts WHERE last_name !="" ORDER BY last_name | ||
spool stop | ||
spool start /opt/discover/tmp5 | ||
show ports | ||
|
||
spool start /root/subdomains.txt | ||
query SELECT host, ip_address FROM hosts ORDER BY host | ||
spool stop | ||
spool start /opt/discover/tmp6 | ||
show vulnerabilities | ||
spool stop | ||
back |