Skip to content

Instantly share code, notes, and snippets.

View gph03n1x's full-sized avatar

Γιάννης Παπαϊωάννου gph03n1x

View GitHub Profile
@gph03n1x
gph03n1x / tk_widgets.py
Last active December 21, 2015 10:49
Minimalistic Library for tkinter
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from Tkinter import *
from Queue import Queue
import threading
class Tk_thread_safe(object):
"""Makes Sure that your app isn't going to crash due to tclstack errors"""
def __init__(self, tk_root):
@gph03n1x
gph03n1x / anti-weev.py
Created August 21, 2013 14:01
Anti-Weev is a tool for deobfuscating the weevely php backdoors
#!/usr/bin/env python
import sys
import base64
try:
sys.argv[1]
except Exception:
print "[*] ./anti-weev.py filename.php"
sys.exit()
else:
@Macuyiko
Macuyiko / slowloris.php
Created January 9, 2011 17:15
PHP based slowloris attack with slow headers or post variants. Adapted from script here: <http://seclists.org/fulldisclosure/2009/Jun/207>
#! /usr/bin/env php
<?php
/* PHP Slowloris
* Adapted from the script found here: http://seclists.org/fulldisclosure/2009/Jun/207
* Contains get based attack (slow headers) and post based attack (long content length)
*
* Author: Seppe vanden Broucke
*/
function usage($argv){