tracelabs / tlosint-vm

Trace Labs OSINT VM
GNU General Public License v3.0
301 stars 35 forks source link

Some tools failed during installation #68

Open sandyboxy opened 1 month ago

sandyboxy commented 1 month ago

Hello, I am using latest release of Kali on VMware workstation Pro 17.5.2. When I try to install tools by typing ./install-tools.sh (with osint user) I get these errors:

Failed to update package lists
Failed to verify Tor Browser signature
Failed to install dnsdumpster
Failed to install tweepy
Failed to install onionsearch
Failed to add sn0int gpg key
Failed to update package lists for sn0int
Failed to clone TJ-OSINT-Notebook

How can I solve this issue? Thanks.

EDIT Scrolling up I saw this python error: screen

sebdufourcq commented 1 month ago

Failed to update package lists

I's a failure of the command: sudo apt-get update Sounds like a connectivity issue: your network was KO, a firewall blocked the request, the server was down...

For the python error:
Python packages must not be installed system-wide via pip https://www.kali.org/blog/python-externally-managed/

Use the apt package if available, else use pipx (or other venv method)

Failed to clone TJ-OSINT-Notebook

There is an issue with the directory check witihin the function update_tj_null_joplin_notebook() (double quotes must be removed)

This PR should resolve all but apt update issue: #66