Skip to content

Instantly share code, notes, and snippets.

@HanEmile
HanEmile / writeup.md
Last active November 15, 2021 19:20
Labortage CTF 2021 writeup pwn license-one (ghidra edition)

README

You should read this. Actually, you should read all READMEs.

@HanEmile
HanEmile / keybase.md
Created July 25, 2019 19:23
keybase prove

Keybase proof

I hereby claim:

  • I am hanemile on github.
  • I am hanemile (https://keybase.io/hanemile) on keybase.
  • I have a public key ASAm9UcS-pUA4F-o7P1T1NOdOYqyrFA8X3lAwd5Ra9kmNwo

To claim this, I am signing this object:

@HanEmile
HanEmile / hashing.py
Created January 10, 2019 22:14
HHU AlDat Blatt 11 Aufgabe 1 a)
#!/usr/bin/env python3
import itertools
import math
goallist = [8, 31, 44, 55, 3, 47, 64]
combination = []
def quersumme(x):
@HanEmile
HanEmile / gist:9091ba5bc510c70066fc23b967e5b1a6
Created October 11, 2018 20:04
Pseudocode: Calculate all the forces in a galaxy
starsArray = []Stars
starsArray.ImportData("data.csv")
starsArray.CalcAllForces()
starsArray.Draw("out.png")