This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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." |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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') |