Skip to content

Instantly share code, notes, and snippets.

View Starwarsfan2099's full-sized avatar
💭
Programming

Andrew Clark Starwarsfan2099

💭
Programming
  • Earth
View GitHub Profile
  1. Ok, so first add this repo: www.starwarsfan2099.x10host.com/repo
  2. Install the package Sslstrip. It should also install python 2.7, Twisted, pyopenssl, and zope.interface as dependancies.
  3. Install Dsniff Suite for arpspoof.
  4. Install the Port Forwarding package.
  5. Ok, so open up mobile terminal and to enable port forwarding, run this command: pfctl -e -f /etc/pf_ssl.conf.
  6. In the same window go ahead and start arpspoof. (example, arpspoof -i en0 -t 192.168.254.46 192.168.254.254 so arpspoof -i (interface) -t (target) (gateway).
  7. Make sure thats running and than go to the second window and type sslstrip.
  8. Done!!! it should produce some output in 20 seconds and saves everything to sslstrip.log in the current directory. Let me know if you have any problems!
@Starwarsfan2099
Starwarsfan2099 / openi-install.md
Last active August 29, 2017 17:09
OpeniBoot Installation

Prerequisites:

sudo apt-get install -y git libtool m4 automake autoconf libxml2-dev python2.7-dev libusb-dev libusb-1.0-0-dev libssl-dev libreadline-dev libzip-dev libbz2-dev libcurl4-openssl-dev libpng-dev texinfo cmake

More Prerequisites:

git clone https://github.com/libimobiledevice/libplist

cd libplist
@Starwarsfan2099
Starwarsfan2099 / zwiebel.py
Created October 17, 2019 00:18 — forked from LiveOverflow/zwiebel.py
TUM CTF 2016
import sys
import r2pipe
r2 = r2pipe.open("./zwiebel2")
r2.cmd("e dbg.profile=zwiebel.rr2")
r2.cmd("doo") # reopen for debugging
r2.cmd("db 0x400875") # set breakpoint at `call r14`
r2.cmd("dc") # continue until breakpoint is hit
def step():
#!/usr/bin/python3
# Quick and dirty wordle solver
# b is blank square, y is yellow square, g is green square.
from sys import argv
from time import time
# Wordle Solver class
class WordleSolve: