Skip to content

Instantly share code, notes, and snippets.

View cwade12c's full-sized avatar
🎯
Focusing

Wade cwade12c

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am cwade12c on github.
  • I am cwade12c (https://keybase.io/cwade12c) on keybase.
  • I have a public key ASCPO7kPV-ZObJeG_79R-_tju8lfO7IojGPY8LwL1OQmggo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am cwade12c on github.
  • I am cwade12c (https://keybase.io/cwade12c) on keybase.
  • I have a public key ASBRhLmPTyli2U9axT7lb0IFpY4sklcWE7qwCH4DOXKvKAo

To claim this, I am signing this object:

@cwade12c
cwade12c / wadeBot.py
Created February 3, 2016 02:14
A very basic irc bot coded in python.
import socket
import time
import hashlib
import base64
#import feedparser
#from pyDes import *
from random import *
network = 'irc.darchoods.org'
port = 6667
@cwade12c
cwade12c / pfactory.py
Created February 3, 2016 02:12
Old-school python implementation of Password Factory v1.2
#pf Series v1, by cwade12c.
#OpenSource, fully commented - learn from the code, and enjoy!
#First, lets import our modules.
import sys #system module, for use of exit and whatnot
import hashlib #hashlib module, for use of md5, sha1, sha256, sha512
import base64 #base64 module, for use of base64
import time #time module, for use of keeping track of time and sleeping
import string #string module... guess what this is for?
import re #regexp module, for use of finding and replacing, etc.
@cwade12c
cwade12c / tut2thread.php
Created February 3, 2016 02:06
IPB 3.X tutorial-to-thread conversion script
<?php
/* @name ........ IPB IP.Tutorials Tut2Thread Converter
* @author ...... cwade12c
* @site ........ https://haxme.org/
* @description . It\'s ridiculous this feature isn\'t already implemented
*/
#This script is meant to be temporarily available for
#web devs & site maintenance. rm when finished!
@cwade12c
cwade12c / md5.php
Created February 3, 2016 02:00 — forked from ramsey/md5.php
MD5 hash lookup script that returns XML
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* MD5 hash lookup script that returns XML
*
* written by Ben Ramsey (ben at benramsey dot com)
* with code by Ilia Alshanetsky (ilia at ilia dot ws)
*
* Copyright (c) 2005, Ilia Alshanetsky
* Copyright (c) 2005, Ben Ramsey

Keybase proof

I hereby claim:

  • I am cwade12c on github.
  • I am cwade12c (https://keybase.io/cwade12c) on keybase.
  • I have a public key whose fingerprint is 35C3 89CF 3965 1F98 0BA2 A86C 97F1 BDEE 9D2B 59A8

To claim this, I am signing this object:

@cwade12c
cwade12c / SortSearchUtil.java
Last active August 29, 2015 14:14
sort and search utilities
public static void sortArray(int[] arr)
{
int currentPos, startPos, smallest;
int tmp;
for( startPos = 0; startPos < arr.length - 1; startPos++ )
{
smallest = startPos;
for( currentPos = startPos + 1; currentPos < arr.length; currentPos++ )
@cwade12c
cwade12c / ipt.sh
Created December 11, 2013 06:31
iptables server firewall sh script
#opensource, by cwade12c, probably needs improvement
ipt='sudo /sbin/iptables'
ssh=1012
http=80
https=443
external='1.2.3.4'
lan='192.168.1.0/24'
#kernel tweaks
@cwade12c
cwade12c / hashmilker.rb
Created February 7, 2012 00:44
hash bruteforcer in ruby, supporting multiple attack vectors
#/usr/bin/ruby
=begin
@bin hashmilker -- by cwade12c 20 February 2012
@site https://haxme.org
@version v1.3.2
@description Bruteforcer via wordlist and other [OPTIONS]. Support for multiple hash algorithms
=end
#housecleaning