python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Getting error: AttributeError: module 'nmap' has no attribute 'PortScanner'
I have been seeking for answers of how to fix this Python problem:
AttributeError: module 'nmap' has no attribute 'PortScanner'
I wanted to learn more about port-scanning but I couldn't even install...
Stanford Martinez
Votes: 0
Answers: 1
Python port scanner only port 80 open
When I run my python port scanner I only ever see port 80 open, regardless of the IP or website. I tested the code on testphp.vulnweb.com so I expected more than just port 80 open.
import socket
from ...
footos
Votes: 0
Answers: 1
SCAPY port scanner
In my python for cyber security class, I have gotten tasked with creating a port scanner using Scapy. I am running python 3.9.10. here is the code.
from http.client import ResponseNotReady
from scapy...
Mr.DaprGamer
Votes: 0
Answers: 1
How to use coroutines to scan local IP addresses using Kotlin
I have an app that scans local IP addresses to connect to open port 8102. I've been able to get the correct IP address, but it takes a long time because each poll has a timeout of 200 milliseconds. Th...
oibarra93
Votes: 0
Answers: 1