No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
3 Posted Topics
Re: I suggest you to install python 2.5 (i think you can have both 2.5 and 2.6). Then you can simple download and install the binary package o pcapy [URL="http://oss.coresecurity.com/repo/pcapy-0.10.5.win32-py2.5.exe"]from here[/URL]. Ofcourse you must have winpcap already downloaded.. [URL="http://www.winpcap.org/install/bin/WinPcap_4_1_1.exe"]here is the link[/URL] | |
Sorry to bother again:) but im new to Python and to OOP. I made a simple sniffer application (thanks to your help) which prints the sniffed data on the console. I want to extend it giving it a GUI using PyQt4. I also made an argument "--nogui" that the user … | |
How do i stop the following thread? [CODE] from threading import Thread from scapy.all import sniff class SnifferThread(Thread): def __init__ (self,filter): Thread.__init__(self) self.filter = filter def run(self): sniff(filter=self.filter, prn=self.pkt_callback, store=0) def pkt_callback(self,pkt): print pkt.sprintf('%TCP.payload%') if __name__ == '__main__': sniffer = SnifferThread("tcp port 80") sniffer.start() #here i will make a GUI … |
The End.