vote up 1 vote down star

I am looking to spoof UDP packets using Java. Are there any good Java libraries out there that allow you to create your own RAW SOCKETS?

Sorry, forgot the Java stuff.

flag

50% accept rate
(There is an RFE for adding this to the Java library: bugs.sun.com/bugdatabase/… ) – Tom Hawtin - tackline Mar 16 at 15:32

4 Answers

vote up 1 vote down check

I would use a Java API that wraps libpcap.

libpcap has an "inject" function that allows you to send a raw packet. (Of course, you must have root or administrator priveleges on the machine you're trying to send the packet from.) There are a number of Java APIs that are available, such as jNetPcap or jpacp. jpcap, for example, has a class that allows you to send any packet.

link|flag
vote up 0 vote down

That is not something that requires a different library. It's usually part of the standard socket library on the platform, like Winsock or Berkeley sockets. The relevant option is often called ASOCK_RAW.

link|flag
vote up 0 vote down

See my question here

link|flag
vote up 0 vote down

In Windows XP SP2 (and presumably higher versions, including vista, but I'm not certain of that), raw sockets are disabled. These restrictions are somewhat less strict for UDP sockets than for TCP sockets, so you may still be able to do whatever you are trying to do. That link contains info on what you can do and how to do it that will probably help you, or at least help you determine if it's possible.

link|flag
I was looking to run this in a Linux environment. – Javamann May 27 at 22:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.