Tagged: scapy.arping
- This topic has 5 replies, 3 voices, and was last updated 4 years, 4 months ago by Diego Pérez.
- AuthorPosts
- June 10, 2020 at 6:32 pm #39619BornrichParticipant
I am having issue importing scapy.all as scapy to run on my kali machine.
#!/usr/bin/env python
import scapy.all as scapy
def scan(ip):
arp_request = scapy.ARP()
print(arp_request.summary())
scapy.ls(scapy.ARP())scan(“10.0.2.1/24”)
This is the result below
Traceback (most recent call last):
File “Network_Scanner.py”, line 3, in <module>
import scapy.all as scapy
ImportError: No module named scapy.allJune 11, 2020 at 5:19 am #39645Diego PérezModeratorHi!
Are you running your code in kali’s terminal?Run the these commands in kali’s terminal:
pip unistall scapy
pip install scapy==2.4.2Let me know how it goes!
DiegoJuly 10, 2020 at 2:55 am #41724gcasillascosParticipantI 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
July 10, 2020 at 4:03 am #41726Diego PérezModeratorHi!
What do you mean by “install scapy complete and basic”? There’s no need to install them in Pycharm.
Also you didn’t answered if you are running the script in kali’s terminal, can you tell please? Did you get any errors while running the commands I shared? Are you using python 2 or 3?Can you share a screenshot of the command used to run the script and the result please?
Thanks!
DiegoJuly 10, 2020 at 5:32 pm #41763gcasillascosParticipantExecuted
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’July 11, 2020 at 4:18 am #41783Diego PérezModeratorHi!
The error you are showing is because of a typo, is not airping but arping.Let me know how it goes!
Diego - AuthorPosts
- You must be logged in to reply to this topic.