Skip to content

Instantly share code, notes, and snippets.

View nopper's full-sized avatar

Francesco Piccinno nopper

View GitHub Profile
@nopper
nopper / mysql-crack.py
Created March 25, 2010 15:54
MySQL dictionary-based hash cracker
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2009 Francesco Piccinno <stack.box@gmail.com>
#
# Author: Francesco Piccinno <stack.box@gmail.com>
#
# 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.
@nopper
nopper / tmux_fabric.py
Created May 13, 2016 14:36
Tmux helper for fabric
from fabric.api import *
class Tmux(object):
"""Tmux helper for fabric"""
def __init__(self, session_name, run_cmd=run):
self.session_name = session_name
self.run_cmd = run_cmd
self.create_session()
@nopper
nopper / wsgi-apps.py
Created June 20, 2010 00:40
Simple script to manage fcgi apps (useful for django applications)
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright (C) 2010 Francesco Piccinno
#
# Author: Francesco Piccinno <stack.box@gmail.com>
#
# 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.