Skip to content

Instantly share code, notes, and snippets.

View denschub's full-sized avatar

Dennis Schubert denschub

View GitHub Profile
@0xdevalias
0xdevalias / _deobfuscating-unminifying-obfuscated-web-app-code.md
Last active May 21, 2024 10:04
Some notes and tools for reverse engineering / deobfuscating / unminifying obfuscated web app code
@jhass
jhass / git-merge-diaspora-stable
Last active April 11, 2021 12:26
Little helper to merge pull requests to the stable for diaspora/diaspora. Handy alias: git config alias.mds merge-diaspora-stable
#!/bin/bash
set -e
if [ -z "$1" ]; then
echo "No PR given"
exit 1
fi
parts=(${1//\// })
pr=${parts[${#parts[@]}-1]}