DataSploit / datasploit

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
2.97k stars 426 forks source link

I got the same error again... #132

Closed S3RKK closed 6 years ago

S3RKK commented 7 years ago

Still get the error when doing pip install -r requirements.txt how do I fix this ? :(

decapstrike commented 7 years ago

So I'm having the same, using Kali Linux 2017.1 fully updated. Here's how I fix it:

apt-get install libxml2-dev libxslt1-dev python-dev apt-get install zlib1g-dev

Do that, then run the pip install -r requirements.txt and it works.

Anyway to have those added to the requirements installer?

KunalAggarwal commented 7 years ago

These requirements cannot be installed using pip. We plan to include a installer script later to install all required OS dependencies.

On Thu, Jul 6, 2017 at 11:02 PM, decapstrike notifications@github.com wrote:

So I'm having the same, using Kali Linux 2017.1 fully updated. Here's how I fix it:

apt-get install libxml2-dev libxslt1-dev python-dev apt-get install zlib1g-dev

Do that, then run the pip install -r requirements.txt and it works.

Anyway to have those added to the requirements installer?

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/DataSploit/datasploit/issues/132#issuecomment-313465491, or mute the thread https://github.com/notifications/unsubscribe-auth/AFtLGWGG9Brxa2pOVcrhHp4-UwhOIXTBks5sLRpHgaJpZM4ONe5f .

decapstrike commented 7 years ago

Understood. Could it be added to the installation instructions then?

S3RKK commented 7 years ago

I agree, I will try your way of fixing it decapstrike, if it doesn't work then idk what to do. But if it works you guys should tell them how you fix it because I've waited a long time for a fix :D

S3RKK commented 7 years ago

No still wont work it gives me this error. Traceback (most recent call last): File "./emailOsint.py", line 13, in run(email) File "./emailOsint.py", line 8, in run osint_runner.run("email", "emails", email) File "/root/datasploit/osint_runner.py", line 14, in run x = importlib.import_module(module_name) File "/usr/lib/python2.7/importlib/init.py", line 37, in import_module import(name) File "/root/datasploit/emails/email_slideshare.py", line 7, in from bs4 import BeautifulSoup File "/usr/local/lib/python2.7/dist-packages/bs4/init.py", line 30, in from .builder import builder_registry, ParserRejectedMarkup File "/usr/local/lib/python2.7/dist-packages/bs4/builder/init.py", line 314, in from . import _html5lib File "/usr/local/lib/python2.7/dist-packages/bs4/builder/_html5lib.py", line 70, in class TreeBuilderForHtml5lib(html5lib.treebuilders._base.TreeBuilder): AttributeError: 'module' object has no attribute '_base'

xKygecHuk commented 7 years ago

have the same problem.;/

Traceback (most recent call last): File "./emailOsint.py", line 10, in from bs4 import BeautifulSoup File "/usr/local/lib/python2.7/dist-packages/bs4/init.py", line 30, in from .builder import builder_registry, ParserRejectedMarkup File "/usr/local/lib/python2.7/dist-packages/bs4/builder/init.py", line 314, in from . import _html5lib File "/usr/local/lib/python2.7/dist-packages/bs4/builder/_html5lib.py", line 70, in class TreeBuilderForHtml5lib(html5lib.treebuilders._base.TreeBuilder): AttributeError: 'module' object has no attribute '_base'

c4nc commented 6 years ago

Same here (OSX Sierra):

[-] Skipping Censys because it is marked as disabled. Traceback (most recent call last): File "datasploit.py", line 55, in main(user_input, options.output) File "datasploit.py", line 43, in main domainOsint.run(user_input, output) File "/Users/xxx/Tools/datasploit/domainOsint.py", line 9, in run osint_runner.run("domain", "domain", domain, output) File "/Users/xxx/Tools/datasploit/osint_runner.py", line 18, in run x = importlib.import_module(module_name) File "/usr/local/Cellar/python/2.7.13/Frameworks/Python.framework/Versions/2.7/lib/python2.7/importlib/init.py", line 37, in import_module import(name) File "/Users/xxx/Tools/datasploit/domain/domain_forumsearch.py", line 5, in from bs4 import BeautifulSoup File "/usr/local/lib/python2.7/site-packages/bs4/init.py", line 30, in from .builder import builder_registry, ParserRejectedMarkup File "/usr/local/lib/python2.7/site-packages/bs4/builder/init.py", line 314, in from . import _html5lib File "/usr/local/lib/python2.7/site-packages/bs4/builder/_html5lib.py", line 70, in class TreeBuilderForHtml5lib(html5lib.treebuilders._base.TreeBuilder): AttributeError: 'module' object has no attribute '_base'

nati0n commented 6 years ago

@c4nc, @xKygecHuk, @S3RKK and any others with the AttributeError: 'module' object has no attribute '_base' error, try: pip install --upgrade beautifulsoup4 pip install --upgrade html5lib

Seems to be the same issue as here (#104)