Ask Question

Scapy is a Python program that enables the user to send, sniff and dissect and forge network packets. This capability allows construction of tools that can probe, scan or attack networks

4 questions

1vote0answers263views

create HDLC interface in linux using serial port

I have modified MAX485 board (to work in sniff mod I deleted a terminator resistor) connected to Arduino. This Arduino connected to raspberry pi via USB. I probated this on Modbus/RS485 using IOninja ... user avatar Ratel

  • 11
0votes1answer7kviews

Scapy Module not found when running python script with SUDO

I have written a python script that uses from scapy.all import * and the sniff() function requires elevated privilege, so when I run python3 scapyScript.py I receive the error PermissionError: [Errno ... user avatar FeralShadow

  • 11
1vote1answer4kviews

Error while sniffing packets using scapy

arp = ARP(pdst=ip1,psrc=ip2,op="is-at") packet = ethernet / arp while True: sendp(packet, iface=iface) time.sleep(10) And the Error is - File "/home/darshan/.local/lib/python2.7/site- ... user avatar darshan

  • 171
1vote1answer832views

Install libdnet Python wrapper for ScaPy

How to install the Python (3) wrapper for libdnet on Ubuntu 14.04.4 LTS? I need is as it is a pre-requisite to ScaPy, however the Python 3.x wrapper does not seem to exist yet. user avatar Billal Begueradj

  • 4,609