Wireless Sniffing Tool

Good Evening all you guys,

I am a Uni Student who intend to develop a sniffing tool as my final year project. I thought I would get some help regarding how to build this whole thing. Is it actually possible to built this tool using only Java and its technologies or I have to user C++ and then transfer that code using JNI.

Any help or code to begin my project would be greatly appreciated.

May Peace and Love Reign Your Hearts and Minds

[462 byte] By [dynamicdudea] at [2007-11-26 18:50:16]
# 1
What do you want to sniff anyways! :D
qUesT_foR_knOwLeDgea at 2007-7-9 6:24:18 > top of Java-index,Java Essentials,Java Programming...
# 2
The Java language and core APIs do not provide the low-level network access needed for a sniffer. You'll have to use C++.
jverda at 2007-7-9 6:24:18 > top of Java-index,Java Essentials,Java Programming...
# 3

> Good Evening all you guys,

> I am a Uni Student who intend to develop a sniffing

> tool as my final year project. I thought I would get

> some help regarding how to build this whole thing. Is

> it actually possible to built this tool using only

> Java and its technologies or I have to user C++ and

> then transfer that code using JNI.

Can't be done without some native code. So you'll need JNI, or a 3rd party library which does this for you. Like Jcap: http://sourceforge.net/projects/jcap

prometheuzza at 2007-7-9 6:24:18 > top of Java-index,Java Essentials,Java Programming...