This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# A plugin to setup capture interfaces | |
# The plugin is off by default. To enable it, add "interfacesetup.enabled=1" to broctl.cfg. | |
# | |
import BroControl.plugin | |
class InterfaceSetupPlugin(BroControl.plugin.Plugin): | |
def __init__(self): | |
super(InterfaceSetupPlugin, self).__init__(apiversion=1) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# https://github.com/DidierStevens/DidierStevensSuite/blob/96381a23c091c342820410c60059602c6a5cbadb/pcap-rename.py | |
__description__ = 'Rename pcap files with timestamp of the first packet' | |
__author__ = 'Didier Stevens' | |
__version__ = '0.0.1' | |
__date__ = '2014/10/03' | |
""" | |
Source code put in public domain by Didier Stevens, no Copyright |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# source: https://bitbucket.org/Zaeyx/rubberglue | |
import socket,asyncore | |
import time | |
import random | |
import hashlib | |
import os | |
class core(): | |
def __init__(self, logfile, syslog=False, cap=False): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/perl | |
# | |
# Advanced perl backdoor | |
# | |
# http://www.purificato.org | |
# https://github.com/bunk3r/perlbackdoor | |
# | |
use warnings; | |
use strict; | |
use IO::Socket; |
NewerOlder