Skip to content

Commit

Permalink
retrieves token
Browse files Browse the repository at this point in the history
  • Loading branch information
anouarbensaad committed Apr 20, 2020
1 parent bf4ad30 commit 91fb370
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/dns_dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,19 @@ def text_record(table):


def dnsdumper(url):

'''
For DNS Dump you retrieve token from dnsdumpster.
V T X
| / | /
| / | /
U -> N
| / Parsing data from records
| / MX , Domains , DNS , MAILS
L
Schema V, returns set of (U, L, N, T, X)
'''

domain = hostd(url)
dnsdumpster_url = 'https://dnsdumpster.com/'
response = requests.Session().get(dnsdumpster_url)
Expand Down
2 changes: 2 additions & 0 deletions vulnx.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ def parse_args():
warnings.filterwarnings('ignore')

def detection():

instance = CMS(
url,
headers=HEADERS,
Expand Down Expand Up @@ -143,6 +144,7 @@ def signal_handler(signal, frame):
dork_engine()
dorks_manual()
interactive_cli()

if url:
root = url
if root.startswith('http://'):
Expand Down

0 comments on commit 91fb370

Please sign in to comment.