Skip to content

Instantly share code, notes, and snippets.

@naasfu
naasfu / proxy-debian-linux.sh
Created December 17, 2016 07:40
Script to setup squid3 with no authentication accepting all traffic (run as sudo)
#!/bin/bash
#
# Debian
#
set -v
apt-get -y update
apt-get install -y ntpdate
@naasfu
naasfu / proxy-ubuntu-linux.sh
Created December 17, 2016 07:40
Script to setup squid3 with no authentication accepting all traffic (run as sudo)
#!/bin/bash
#
# Ubuntu 14 LTS
#
set -v
apt-get -y update
apt-get install -y ntpdate
@naasfu
naasfu / adidas-uk-login.py
Created December 17, 2016 07:40
Example Adidas UK Login
#!/usr/bin/env python
import requests
import re
import BeautifulSoup
email="[email protected]"
password="Destroyer3"
session=requests.Session()
<html>
<head>
<meta charset="UTF-8">
<?php
$debug=False;
set_time_limit(0);
$actionURL="/d3stryr-3stripes-dev.php";
?>
<title>d3stryr 3stripes</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
@naasfu
naasfu / d3stryr-3stripes-atc-cs.php
Created October 18, 2016 06:28
Helper script for d3stryr-3stripes.php
<?php
set_time_limit(0);
$marketsList=[];
$marketsList['AT']='de_AT';
$marketsList['AU']='en_AU';
$marketsList['BE']='fr_BE';
$marketsList['BR']='pt_BR';
$marketsList['CA']='en_CA';
$marketsList['CL']='es_CL';
@naasfu
naasfu / i-suck-at-pong-ism.js
Created September 24, 2016 17:31
ARCAD-ISM CHEAT
var email=email;
var points=100;
var token=token;
var hex_chr = "0123456789abcdef";
function rhex(num) {
str = "";
for (j = 0; j <= 3; j++) str += hex_chr.charAt((num >> (j * 8 + 4)) & 0x0F) + hex_chr.charAt((num >> (j * 8)) & 0x0F);
return str