Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~4K People Reached
Favorite Forums
Favorite Tags

3 Posted Topics

Member Avatar for Tech B

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]

Member Avatar for bumsfeld
0
541
Member Avatar for kapcom01

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 …

Member Avatar for kapcom01
0
2K
Member Avatar for kapcom01

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 …

Member Avatar for kapcom01
0
1K

The End.