Z
Z
zuckonit2014-04-07 19:15:57
linux
zuckonit, 2014-04-07 19:15:57

What knowledge is needed to intercept data?

I have basic knowledge in programming (Pascal, C, html, a little php, I'm learning ruby).

What is needed in order to write your own sniffer, like, for example, the same one - DroidSheep?
Thanks in advance for your kind replies.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
S
Sergey Zabodalov, 2014-05-15
@zuckonit

IMHO all sniffers have been written for a long time. I recommend to get acquainted with pcap. This is a library for capturing network packets. The whole value of a sniffer today lies in the analysis of intercepted traffic, and for this you need to read the descriptions of the protocols that you want to intercept. In the case of android, for example, you can try to call native code through JNI, intercept packets, and then transfer them to Java and fight them further there.

V
Valentine, 2014-04-07
@vvpoloskin

What about writing it? A sniffer is just an open socket in promicious mode. Opens in 3 lines in any language) The complexity of the sniffer lies more in the interface and the analyzer of various protocols

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question