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.
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; |
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/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
# | |
# 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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
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
#!/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" | |
} |
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:
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
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 |
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
#!/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 |
OlderNewer