Skip to content Skip to sidebar Skip to footer
Showing posts with the label Scapy

Python-scapy: How To Translate Port Numbers To Service Names?

A TCP layer in Scapy contains source port: >>> a[TCP].sport 80 Is there a simple way to c… Read more Python-scapy: How To Translate Port Numbers To Service Names?

Scapy Sniff() Doesn't Accept The Iface Strings

After a new installation of Python2.7.14 and scapy(Version git-archive.dev254ab6d5a) i cant define … Read more Scapy Sniff() Doesn't Accept The Iface Strings

Write Packets Captured With Scapy Sniff In Time Intervals

I’m trying to dump packets to a file captured by scapy sniff function every 10 second to no avail. … Read more Write Packets Captured With Scapy Sniff In Time Intervals

'l3packetsocket' Object Has No Attribute 'ins' When Using Send Command

I am trying to send a packet using a UDP protocol. I am running Python 3 on Ubuntu and using scapy.… Read more 'l3packetsocket' Object Has No Attribute 'ins' When Using Send Command

Scapy: How To Manipulate Host In Http Header?

I wrote this piece of code to get http header and set Host: http_layer = packet.getlayer(http.HTTPR… Read more Scapy: How To Manipulate Host In Http Header?

Scapy 2.7.3 In Monitor Mode

I am writing a simple WiFi sniffer with scapy: from scapy.all import * ap_list = [] def ssid(pkt):… Read more Scapy 2.7.3 In Monitor Mode

Scapy - Srp Doesnt Send My Packet To The Correct Network Interface

I work on windows 10 machine and I am using scapy for some project I am doing. When I use the sniff… Read more Scapy - Srp Doesnt Send My Packet To The Correct Network Interface

How To Use Scapy To Determine Wireless Encryption Type?

I am doing a Security Research on Wireless networks which involves coding a small tool that scans f… Read more How To Use Scapy To Determine Wireless Encryption Type?