Skip to content

Instantly share code, notes, and snippets.

@eye9poob
eye9poob / URL Find [PHP Engine]
Created March 20, 2013 02:44
URL Find [PHP Engine]
<?php
$get_url = trim($_GET['url']);
$post_url = trim($_POST['url']);
if (empty($get_url)) {
if (empty($post_url)) {
echo "-1";
exit();
} else {
@eye9poob
eye9poob / Python Proxy Tester
Created March 20, 2013 02:46
Python Proxy Tester
import requests
nList= []
nProxL = ''
file = open('proxy.txt')
for line in file:
try:
aproxy = line.strip('\n')
user_agent = {'User-agent': 'Mozilla/5.0'}
print aproxy
proxies = {
@eye9poob
eye9poob / Arcor - EasyBox WPA - WPA2 Key Generator
Created August 27, 2013 13:43
Arcor - EasyBox WPA WPA2 -Key Generator .: script by :....::: crazyjunkie :::...!!! Use this only on your own Mac!!!
@echo off & setlocal enabledelayedexpansion
echo ####### Arcor/EasyBox WPA-Key Generator #######
echo .: script by :.
echo...::: crazyjunkie :::...
echo Use this only on your own Mac!
echo.
set /p macu=Bitte geben Sie die MAC ein:
set mac=!macu::=!
set mac=!mac:-=!
set m9=!mac:~8,1!
#!/usr/bin/perl
# __ _ __ _
# / /_ __ __ ______________ _____ __ __ (_)_ ______ / /__(_)__
# / __ \/ / / / / ___/ ___/ __ `/_ / / / / / / / / / / __ \/ //_/ / _ \
# / /_/ / /_/ / / /__/ / / /_/ / / /_/ /_/ / / / /_/ / / / / ,< / / __/
# /_.___/\__, / \___/_/ \__,_/ /___/\__, /_/ /\__,_/_/ /_/_/|_/_/\___/
# /____/ /____/___/
#
###############################################################################
# Download huge collections of wordlist:#
@eye9poob
eye9poob / EAPEx
Created February 21, 2014 08:57
Wireless - EAP - Extractor Script
#!/usr/bin/env bash
# EAPEx
# 01/2014
# Twitter = @crazyjunkie1
# Tested on Backbox Linux
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
@eye9poob
eye9poob / whois client
Created February 21, 2014 09:00
Attempt at writing a simple python whois client
#!/usr/bin/python -tt
# __ _ __ _
# / /_ __ __ ______________ _____ __ __ (_)_ ______ / /__(_)__
# / __ \/ / / / / ___/ ___/ __ `/_ / / / / / / / / / / __ \/ //_/ / _ \
# / /_/ / /_/ / / /__/ / / /_/ / / /_/ /_/ / / / /_/ / / / / ,< / / __/
# /_.___/\__, / \___/_/ \__,_/ /___/\__, /_/ /\__,_/_/ /_/_/|_/_/\___/
# /____/ /____/___/
#
###############################################################################
# Download huge collections of wordlist:#
@eye9poob
eye9poob / bandwich_use.sh
Created January 16, 2015 17:59
show your bandwich use
while true; do cat /proc/net/dev; sleep 1; done | awk -v dc="date \"+%T\"" '/wlan0/{i = $2 - oi; o = $10 - oo; oi = $2; oo = $10;dc|getline d; close(dc); if (a++) printf "%s %8.2f KiB/s in %8.2f KiB/s out\n", d, i/1024, o/1024}'
@eye9poob
eye9poob / random_mac.sh
Created January 16, 2015 18:03
generate random mac adress
openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//'
@eye9poob
eye9poob / grep_mails.sh
Created February 2, 2016 08:12
grep mails from text file
grep -E -o "\b[a-zA-Z0-9.#?$*_-]+@[a-zA-Z0-9.#?$*_-]+\.[a-zA-Z0-9.-]+\b" text.txt > e-mails.txt
@eye9poob
eye9poob / egrep_md5.sh
Created February 2, 2016 08:13
get md5 hashes from text file
egrep -oE '(^|[^a-fA-F0-9])[a-fA-F0-9]{32}([^a-fA-F0-9]|$)' *.txt | egrep -o '[a-fA-F0-9]{32}' > md5-hashes.txt