Skip to content

Instantly share code, notes, and snippets.

View oswalpalash's full-sized avatar

Palash Oswal oswalpalash

View GitHub Profile
@Arignir
Arignir / README.md
Last active December 19, 2018 22:55
HoleyBeep exploit

HoleyBeep

This is an exploit for HoleyBeep.

To use it, place any command you want root to execute in /tmp/x.

$ cat /tmp/x
echo PWNED $(whoami)
@wheresalice
wheresalice / gist:1924566
Created February 27, 2012 15:21
Build Self-signed SSL Certificate & Key
openssl genrsa -des3 -out server.key -passout pass:riakssl 1024
openssl req -new -key server.key -out server.csr -passin pass:riakssl \
-subj /DC=US/DC=Massachussets/DC=Cambridge/O=Basho/OU=Engineering/CN=Riak
openssl rsa -in server.key -out key.pem -passin pass:riakssl
openssl x509 -req -days 365 -in server.csr -signkey server.key -out cert.pem -passin pass:riakssl
rm server.key server.csr