Skip to content

Commit

Permalink
Merge pull request sundowndev#48 from sundowndev/develop
Browse files Browse the repository at this point in the history
v1.6.7 release
  • Loading branch information
sundowndev authored Apr 17, 2019
2 parents 2070410 + 309d9dd commit 58036c8
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://i.imgur.com/rzyPNPa.png" width=500 />
<img src="https://i.imgur.com/LtUGnF3.png" width=500 />
</p>

<div align="center">
Expand Down
5 changes: 5 additions & 0 deletions osint/reputation.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,5 +43,10 @@
"title": "reputation report on quinumero.info",
"request": "site:quinumero.info intext:\"$l\" | intext:\"$i\"",
"stop": 1
},
{
"title": "reputation report on uk.popularphotolook.com",
"request": "site:uk.popularphotolook.com inurl:\"$l\"",
"stop": 1
}
]
14 changes: 7 additions & 7 deletions scanners/footprints.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def osintIndividualScan():
if dork['dialCode'] is None or dork['dialCode'] == numberCountryCode:
if customFormatting:
dorkRequest = replaceVariables(
dork['request'], numberObj) + ' | intext:"{}"'.format(customFormatting)
dork['request'], numberObj) + ' OR "{}"'.format(customFormatting)
else:
dorkRequest = replaceVariables(dork['request'], numberObj)

Expand All @@ -64,7 +64,7 @@ def osintReputationScan():
for dork in dorks:
if customFormatting:
dorkRequest = replaceVariables(
dork['request'], numberObj) + ' | intext:"{}"'.format(customFormatting)
dork['request'], numberObj) + ' OR "{}"'.format(customFormatting)
else:
dorkRequest = replaceVariables(dork['request'], numberObj)

Expand All @@ -86,7 +86,7 @@ def osintSocialMediaScan():
for dork in dorks:
if customFormatting:
dorkRequest = replaceVariables(
dork['request'], numberObj) + ' | intext:"{}"'.format(customFormatting)
dork['request'], numberObj) + ' OR "{}"'.format(customFormatting)
else:
dorkRequest = replaceVariables(dork['request'], numberObj)

Expand Down Expand Up @@ -164,10 +164,10 @@ def osintScan(numberObject, rerun=False):

info("Searching for footprints on web pages... (limit=10)")
if customFormatting:
req = '{} | intext:"{}" | intext:"{}" | intext:"{}"'.format(
req = '{} OR "{}" OR "{}" OR "{}"'.format(
number, number, internationalNumber, customFormatting)
else:
req = '{} | intext:"{}" | intext:"{}"'.format(
req = '{} OR "{}" OR "{}"'.format(
number, number, internationalNumber)

for result in search(req, stop=10):
Expand All @@ -176,10 +176,10 @@ def osintScan(numberObject, rerun=False):
# Documents
info("Searching for documents... (limit=10)")
if customFormatting:
req = '[ext:doc | ext:docx | ext:odt | ext:pdf | ext:rtf | ext:sxw | ext:psw | ext:ppt | ext:pptx | ext:pps | ext:csv | ext:txt | ext:xls] && [intext:"{}"]'.format(
req = '[ext:doc OR ext:docx OR ext:odt OR ext:pdf OR ext:rtf OR ext:sxw OR ext:psw OR ext:ppt OR ext:pptx OR ext:pps OR ext:csv OR ext:txt OR ext:xls] AND [intext:"{}"]'.format(
customFormatting)
else:
req = '[ext:doc | ext:docx | ext:odt | ext:pdf | ext:rtf | ext:sxw | ext:psw | ext:ppt | ext:pptx | ext:pps | ext:csv | ext:txt | ext:xls] && [intext:"{}" | intext:"{}"]'.format(
req = '[ext:doc OR ext:docx OR ext:odt OR ext:pdf OR ext:rtf OR ext:sxw OR ext:psw OR ext:ppt OR ext:pptx OR ext:pps OR ext:csv OR ext:txt OR ext:xls] AND ["{}" OR "{}"]'.format(
internationalNumber, localNumber)
for result in search(req, stop=10):
plus("Result found: " + result)
Expand Down

0 comments on commit 58036c8

Please sign in to comment.