Exemple #1
0
class LiveCapture:
    def __init__(self):
        self.packetBuffer = []
        self.packetList = []
        self.liveCaptureThread = LiveCaptureThread(self)
        self.interface = 'eth0'

    def getPacketList(self):
        return self.packetList

    '''
    Description:
    Dequeue a packet from the non empty buffer of captured packets
    '''

    def getPacket(self):
        if not self.packetBuffer:
            return None
        else:
            return self.packetBuffer.pop(0)

    '''
    Description:
    Check if user has appropriate privilege levels to live LiveCapture
    If yes, then start capturing in a separate thread
    '''

    def startLiveCapture(self):
        # geteuid() Might have portability issues
        if os.geteuid() != 0:
            print >> sys.stderr, "Failed to initialise the Application. You need root permissions to do this.!"
            return -1
        self.liveCaptureThread.start()

    '''
    Description:
    Notify the capturing thread to stop capturing
    '''

    def stopLiveCapture(self):
        self.liveCaptureThread.flag = True

    '''
    Description:
    Get/Set the name of the interface for Capturing
    '''

    def getInterface(self):
        return self.interface

    def setInterface(self, interface):
        self.interface = interface
Exemple #2
0
class LiveCapture:
    def __init__(self):
        self.packetBuffer = []
        self.packetList = []
        self.liveCaptureThread = LiveCaptureThread(self)
        self.interface = 'eth0'

    def getPacketList(self):
        return self.packetList

    '''
    Description:
    Dequeue a packet from the non empty buffer of captured packets
    '''
    def getPacket(self):
        if not self.packetBuffer:
            return None
        else:
            return self.packetBuffer.pop(0)

    '''
    Description:
    Check if user has appropriate privilege levels to live LiveCapture
    If yes, then start capturing in a separate thread
    '''
    def startLiveCapture(self):
        # geteuid() Might have portability issues
        if os.geteuid() != 0:
            print >> sys.stderr, "Failed to initialise the Application. You need root permissions to do this.!"
            return -1
        self.liveCaptureThread.start()

    '''
    Description:
    Notify the capturing thread to stop capturing
    '''
    def stopLiveCapture(self):
        self.liveCaptureThread.flag = True

    '''
    Description:
    Get/Set the name of the interface for Capturing
    '''
    def getInterface(self):
        return self.interface
    def setInterface(self, interface):
        self.interface = interface
Exemple #3
0
 def __init__(self):
     self.packetBuffer = []
     self.packetList = []
     self.liveCaptureThread = LiveCaptureThread(self)
     self.interface = 'eth0'
Exemple #4
0
 def __init__(self):
     self.packetBuffer = []
     self.packetList = []
     self.liveCaptureThread = LiveCaptureThread(self)
     self.interface = 'eth0'