Skip to content

Instantly share code, notes, and snippets.

@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;
@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 / 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 / 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 / README.pod
Last active September 16, 2015 11:41
Basic example on how to use redis for job queueing in Perl

Redis jobqueue client

Redis has a feature called lists. The lists can be treated as a stack where elements can be pushed onto or popped from. There are several calls which help you to manage such lists. Once nice feature is the blpop command which does a blocking call on the queue. Therefore it's a nice and elegant way to implement a queue systems for tasks.

@unusedPhD
unusedPhD / nginx.conf
Created November 1, 2015 11:02 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048
@unusedPhD
unusedPhD / init_cassandra
Created November 11, 2015 01:49
init.d file for cassandra with ulimit -n call to increase limit
#!/bin/bash
CASSANDRA=/opt/cassandra/bin/cassandra
PIDFILE=/var/run/cassandra.pid
LOGFILE=/var/log/cassandra/init.log
PARAMS="-p ${PIDFILE}"
writelog() {
echo "`date` : $1" >> "$LOG"
}
@unusedPhD
unusedPhD / keybase.md
Created September 23, 2016 18:10
keybase proof of identity

Keybase proof

I hereby claim:

  • I am unusedPhD on github.
  • I am unusedphd (https://keybase.io/unusedphd) on keybase.
  • I have a public key whose fingerprint is BD65 E085 90CA ECD8 92DC 7663 19D6 BD45 E088 EFA2

To claim this, I am signing this object:

@unusedPhD
unusedPhD / docker-compose-coreos.sh
Created February 3, 2017 13:59 — forked from sourcec0de/docker-compose-coreos.sh
Install docker compose on coreos
sudo su -
mkdir -p /opt/bin
curl -L https://github.com/docker/compose/releases/download/1.9.0/docker-compose-`uname -s`-`uname -m` > /opt/bin/docker-compose
chmod +x /opt/bin/docker-compose
@unusedPhD
unusedPhD / sign-and-upload.sh
Created May 2, 2017 13:11 — forked from taylanpince/sign-and-upload.sh
Travis CI: Check for tag, generate release notes, sign binary and upload to Tryouts for release distribution
#!/bin/sh
if [[ "$TRAVIS_PULL_REQUEST" != "false" ]]; then
echo "This is a pull request. No deployment will be done."
exit 0
fi
if [[ "$TRAVIS_BRANCH" != "master" ]]; then
echo "Testing on a branch other than master. No deployment will be done."
exit 0
fi