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

How To Get Mac Address Of Connected Access Point?

I am using Scapy to sniff access point(AP) beacon packets and also getting all AP beacon packets an… Read more How To Get Mac Address Of Connected Access Point?

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: 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?

Saving Hexdump(packet) To List In Scapy

Is there any way I could save hexdump() to byte list so the list can be accessed by index. what I n… Read more Saving Hexdump(packet) To List In Scapy

Filter Http Get Requests Packets Using Scapy

I am trying to filter HTTP Get request packets using scapy by using the Raw information of the pack… Read more Filter Http Get Requests Packets Using Scapy

Scapy Oserror: [errno 9] Bad File Descriptor

I'm using python 2.7 and scapy-2.2.0 in windows xp. I'm trying dns spoofing and it works we… Read more Scapy Oserror: [errno 9] Bad File Descriptor

Searching For Hex In Scapy Packet

I am trying to search for a hex sequence in the UDP payload (ISAKMP) of a packet. the packet is bei… Read more Searching For Hex In Scapy Packet

Extract Received Data In A Tcp Socket In Python

I have a client sending a packet with a custom layer 'Reservation' created with Scapy Clien… Read more Extract Received Data In A Tcp Socket In Python