Skip to content

Instantly share code, notes, and snippets.

View jordan-wright's full-sized avatar
🎣

Jordan Wright jordan-wright

🎣
View GitHub Profile
@jordan-wright
jordan-wright / gophish_doc.txt
Created February 1, 2016 23:41
A text document of gophish's user guide.
Table of Contents
What is Gophish? 3
Version 3
License 3
Community Edition 3
Key Terms 3
Setup 4
Installation 4
Installing Gophish Using Pre-Built Binaries 4
@jordan-wright
jordan-wright / gist:33265dc9ddcaaf1cebb79db09a6c8f8c
Last active January 2, 2019 23:16
infosec thought leaders
briankrebs
violetblue
hdmoore
travisgoodspeed
troyhunt
attritionorg
tqbf
attrc
ErrataRob
edskoudis
@jordan-wright
jordan-wright / sapd.py
Created June 19, 2016 03:12
Python script to scrape public SAPD data
from bs4 import BeautifulSoup
import requests
from urlparse import parse_qs
import logging
import time
import json
from datetime import timedelta, datetime
from requests.adapters import HTTPAdapter
from requests.packages.urllib3.poolmanager import PoolManager
import ssl
@jordan-wright
jordan-wright / cryptocurrency_mining_list.txt
Last active March 13, 2024 00:32
Cryptocurrency Mining Domain List
coinhive.com
coin-hive.com
jsecoin.com
static.reasedoper.pw
mataharirama.xyz
listat.biz
lmodr.biz
minecrunch.co
minemytraffic.com
crypto-loot.com
@jordan-wright
jordan-wright / extract.sh
Last active February 28, 2018 17:53 — forked from PaulSec/extract.sh
Extract Java Sources from APK
#!/bin/sh
# check that 7z is installed
command -v 7z >/dev/null 2>&1 || { echo >&2 "This script requires 7z. Aborting."; exit 1; }
jdgui="/opt/jd-cli"
dex2jar="/opt/dex2jar-2.0/d2j-dex2jar.sh"
if [ $# -eq 0 ]
then
@jordan-wright
jordan-wright / main.go
Created August 11, 2020 02:56
Converting an ssh.PublicKey to an *rsa.PublicKey in Go
package main
import (
"crypto/rand"
"crypto/rsa"
"crypto/x509"
"encoding/pem"
"fmt"
"log"