KTZgraph / sarenka

OSINT tool - gets data from services like shodan, censys etc. in one app
https://pawlaczyk.github.io/sarenka/
MIT License
626 stars 88 forks source link

nmap is not nmap #113

Open antonagestam opened 1 year ago

antonagestam commented 1 year ago

Hi,

I noticed that this project has a dependency on nmap in requirements.txt. It was brought to my attention that people mistakenly install this in belief it's the well-known port scanning tool, which it's not. I've since removed the single release of my nmap library from PyPI, and so wanted to inform you that installation is likely to break until you remove this dependency (which I assume was incorrectly added to begin with).

Sorry for any inconvenience caused by this.

sologeekk commented 11 months ago

@antonagestam The related dependency mentioned in the requirements.txt is no more available and is replaced by python-nmap. Try installing python-nmap via this command (it's python3-nmap if you're on Linux):

pip install python-nmap

then pip freeze and check for the newly installed nmap related library. Copy it and replace it with the one in the requirements.txt and try pip install -r requirements.txt again.

Good luck.