Skip to content

Instantly share code, notes, and snippets.

#!/bin/bash
# crack-all-lms-avenger
# (c) 2012 by Kurt Grutzmacher (grutz@jingojango.net)
# License: BSD 3-Clause - http://opensource.org/licenses/bsd-3-clause
#
# So you have a pwdump file and it has some LANMAN hashes, eh? Run this and I
# guarantee you'll crack a ton of them!
#
# Some paths are hardcoded. YMMV. No warranty express or implied. See your
@Ajay656-hash
Ajay656-hash / ARPInjector.py
Last active December 19, 2015 02:28
Arp injector. injects packets into network with specific source MAC and IP on specific interface
#!/usr/bin/env python
import socket
import binascii
import struct
import pcapy
import netifaces as ni
import netaddr
import random
@Ajay656-hash
Ajay656-hash / Arpreply.py
Created July 5, 2013 12:39
script gives response to the arp requests messing up the network.
#!/usr/bin/env python
import scapy.all as sc
import random
import pcapy
#list all interfaces
devices = pcapy.findalldevs()
print "Available devices are:"
for d in devices :