Forum Replies Created
Viewing 2 posts - 1 through 2 (of 2 total)
- AuthorPosts
- gcasillascosParticipant
Executed
pip unistall scapy
pip install scapy==2.4.2no errors
I am using python 3.8 and python 2.7.18
My code
#!/usr/bin/env python
import scapy.all as scapy
def scan(ip):
scapy.airping(ip)scan(“192.168.241.2”)
my result on kali terminal no matter if using python or python3
Traceback (most recent call last):
File “netScanner.py”, line 10, in <module>
scan(“192.168.241.2”)
File “netScanner.py”, line 7, in scan
scapy.airping(ip)
AttributeError: ‘module’ object has no attribute ‘airping’gcasillascosParticipantI installed scapy <complete, and basic, even install modules on pycharm no matter what I do, I cant make it to work to find arp, or arping or almost any module, I installed it on de kali linux version from your site
- AuthorPosts
Viewing 2 posts - 1 through 2 (of 2 total)