Skip to content

Commit 09720c0

Browse files
committed
Bug Fix
1 parent 45b50da commit 09720c0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Bluto/modules/data_mine.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ def action_download(doc_list, docs):
8080
except IOError:
8181
info('Not Found: {}'.format(str(doc).replace('%20', ' ')))
8282
pass
83-
except IOError:
84-
pass
8583
except requests.exceptions.HTTPError:
8684
info('Error: File Not Found Server Side: HTTPError')
8785
pass

Bluto/modules/get_dns.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ def action_zone_transfer(zn_list, domain):
177177
dump_list = []
178178
for ns in zn_list:
179179
try:
180-
z = dns.zone.from_xfr(dns.query.xfr(ns, domain, timeout=7))
180+
z = dns.zone.from_xfr(dns.query.xfr(ns, domain, timeout=3))
181181
names = z.nodes.keys()
182182
names.sort()
183183
if vuln == True:

Bluto/modules/search.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@
1515
from bs4 import BeautifulSoup
1616
from bluto_logging import info, INFO_LOG_FILE
1717

18+
requests.packages.urllib3.disable_warnings()
19+
1820
def action_google(domain, userCountry, userServer, q, user_agents, prox):
1921
info('Google Search Started')
2022
uas = user_agents

0 commit comments

Comments
 (0)