Tagged Questions

1
vote
1answer
26 views

Possible to safely run multiple Android emulators on the same machine and communcate using sockets?

I would like to simulate a small cluster of Android devices either on one laptop (worst-case), or on several machines on a private network. This is for testing communications and p …
0
votes
0answers
30 views

Mac + Ruby: Can’t access ioctl of Socket? How to fix?

Good time of day. Ruby Code: def hw_address(iface) sock = Socket.new(Socket::AF_INET, Socket::SOCK_DGRAM,0) buf = [iface,""].pack('a16h16') sock.ioctl(SIOCGIFHWADDR, …
2
votes
5answers
788 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 ma …
2
votes
5answers
226 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 be …
1
vote
1answer
83 views

How can i use RAW Sockets in Ruby ???

i'm trying to create a raw sockets using ruby .... the problem is there isn't any thing called raw socket there ,and on the other hand the socket class itself is not fully document …
0
votes
1answer
72 views

In Raw Socket programming, how can I prevent the underlying OS from responding to an incoming packet?

I am sending SYN packets using raw sockets in Linux. The response(SYN+ACK) is being intercepted by the OS and it is responding with a RST. I would like to prevent the OS from inter …
2
votes
4answers
244 views

Packet socket in promiscuous mode only receiving local traffic

I have a socket created with socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL)), and I've set it into promiscuous mode using struct ifreq ifr; strncpy((char*)ifr.ifr_name, interface, I …
0
votes
1answer
155 views

Sending data on AF_PACKET socket

How do I send data on a SOCK_PACKET socket without specifying which host it's bound for? I've constructed the IP header to show where it should go, but write() won't work.
0
votes
2answers
179 views

C# - a userland TCP stack in Windows XP SP III

Hi! I'm trying to create an application to craft packets to be able to debug some gateways here, and to experiment with TCP DoS situations. Nevertheless this should be very easy, …
2
votes
6answers
662 views

How to discard incoming packets in raw socket?

I'm writing a C/C++ application under Linux that reads data from a raw socket (for ICMP packets). Question: is there a way to discard all data that is still queued on the socket? …