An #OSINT Framework to perform various recon techniques on Companies, People, Phone Number, Bitcoin Addresses, etc., aggregate all the raw data, and give data in multiple formats.
GNU General Public License v3.0
3.02k
stars
425
forks
source link
Unicode Encoding and total_results in domain_pastes.py #123
Two quick fixes in
domain_pastes.py
:Line 41
https://github.com/DataSploit/datasploit/blob/master/domain_pastes.py#L41
Causes unicode error for non ascii characters. Change:
From
To
This prevents it from erroring out when encountering unicode characters (it removes them).
Line 59
https://github.com/DataSploit/datasploit/blob/master/domain_pastes.py#L59
the
google_search
function returns a tuple ('total results', 'results') but your comparison is done against numbers. A simple fix:From:
To: