Increase web pages results limit to 10

This commit is contained in:
Raphael 2019-02-21 14:49:58 +01:00 committed by sundowndev
parent 853f444311
commit c05ddaeec0
1 changed files with 3 additions and 2 deletions

View File

@ -460,14 +460,15 @@ def osintScan(rerun=False):
print((code_info + '---- Web pages footprints ----'))
print((code_info + "Searching for footprints on web pages... (limit=5)"))
print((code_info + "Searching for footprints on web pages... (limit=10)"))
if customFormatting:
req = '{} | intext:"{}" | intext:"{}" | intext:"{}"'.format(
number, number, internationalNumber, customFormatting)
else:
req = '{} | intext:"{}" | intext:"{}"'.format(
number, number, internationalNumber)
for result in search(req, stop=5):
for result in search(req, stop=10):
print((code_result + "Result found: " + result))
# Documents