Skip to content

Instantly share code, notes, and snippets.

View rookuu's full-sized avatar
:octocat:

Luke Roberts rookuu

:octocat:
View GitHub Profile
@rookuu
rookuu / pwn50-solve.py
Created December 4, 2017 10:27
Solution to lse.epitas.fr Tiny Panel (pwn50)
# Solution to lse.epitas.fr Tiny Panel (pwn50)
# Author: Luke Roberts (@rookuu)
# Date: 04/12/2017
p = process('./pwn50')
# Login to system
p.recv()
p.sendline('admin')
@rookuu
rookuu / pkg-cmd-helper.sh
Created August 5, 2021 12:09
Bash script to creating (signed) packages that execute commands. Originally for https://github.com/MythicAgents/orthrus
#!/bin/sh
show_help()
{
echo "Command line helper to generate pkg files that execute commands."
echo "Author: @rookuu"
echo
echo "Syntax: gen.sh -i com.malicious.pkg -o installme.pkg [-s 'My Signing Identity'] command"
echo "options:"
echo "-h Print this Help."