I've just started to use libtins and so far I think it's great. Setting it up and running the examples was not difficult and I'm beginning to understand what's happening. I am kind of stuck though and was hoping I could get some help.
I'm trying to write a MITM that's just like the HTTP follower example except instead of printing out the requests that are made from the local machine, I want to print requests from a different machine on the LAN.
I do understand that in order to do this I need to run an ARP Spoofing attack. I've played around with the ARP Spoofing example and it seems like a good start, but it seems that any packets that are redirected by the spoof are simply dropped. Instead, I'd like a message printed and then have the packets relayed to the gateway so that they can go on to their correct destination.
Can someone suggest how to merge these two ideas or show me some sample code?