Tagged Questions
7
votes
5answers
8k views
How Do I Use Raw Socket in Python?
I am writing an application to test a network driver for handling corrupted data. And I thought of sending this data using raw socket, so it will not be corrected by the sending machine's TCP-IP ...
4
votes
5answers
2k views
Python TCP stack implementation
Is there a python library which implements a standalone TCP stack?
I can't use the usual python socket library because I'm receiving a stream of packets over a socket (they are being tunneled to me ...
3
votes
3answers
387 views
How to read complete IP frames from TCP socket in Python?
I need to read a complete (raw) IP frame from a TCP stream socket using Python. Essentially I want an unmodified frame just as if it came off the physical line, including all the header information.
...
0
votes
0answers
131 views
python icmp raw socket implementation
i am relatively new to python, so please be considerate...
i'm implementing a server and a client via raw_sockets.
i have the necessary privileges.
now, the server i defined so:
host = ...
0
votes
2answers
458 views
Python raw IPv6 socket errors
I am having some problems using raw IPv6 sockets in python. I connect via:
if self._socket != None:
# Close out old socket first
self._socket.close()
self._socket = ...
0
votes
2answers
221 views
how to embed C code in python program?
i want to write a program using multi-threading, raw sockets, to scan the ports in python
i have a C code for injection of raw socket. i want to perform a ACK scan so need a raw socket.
So please ...
0
votes
1answer
457 views
python socket.PF_PACKET
I am trying to send out an ARP request with python, working with dpkt, and I found some sample code that uses:
socket.socket(socket.PF_PACKET, socket.SOCK_RAW)
I understand that you need to use raw ...