Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
/* | |
Spoofed SYN by eKKiM | |
Educational purpose only please. | |
Compile with | |
gcc syn.c -pthread | |
*/ | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <netinet/tcp.h> | |
#include <netinet/ip.h> |
ssh -o UserKnownHostsFile=/dev/null -T user@host /bin/bash -i |
class CaselessDictionary(dict): | |
"""Dictionary that enables case insensitive searching while preserving case sensitivity | |
when keys are listed, ie, via keys() or items() methods. | |
Works by storing a lowercase version of the key as the new key and stores the original key-value | |
pair as the key's value (values become dictionaries).""" | |
def __init__(self, initval={}): | |
if isinstance(initval, dict): | |
for key, value in initval.iteritems(): |
apt-get install libpcap-dev libdumbnet-dev -y | |
sed -i 's/-ldnet/-ldumbnet/g' configure | |
sed -i 's/#include <dnet.h>/#include <dumbnet.h>/g' include/firewalk.h | |
sed -i 's//* empty *//continue;/g' src/firewalk.c | |
./configure -build=i386 | |
make |
for i in {0..255}; do echo "ICMP $i" ;hping3 IP --icmp -K "$i" --force-icmp -c 3 -V; echo""; done; |
rm /var/lib/iptraf/savedfilters.dat |
/* | |
* targa3 - 1999 (c) Mixter <[email protected]> | |
* | |
* IP stack penetration tool / 'exploit generator' | |
* Sends combinations of uncommon IP packets to hosts | |
* to generate attacks using invalid fragmentation, protocol, | |
* packet size, header values, options, offsets, tcp segments, | |
* routing flags, and other unknown/unexpected packet values. | |
* Useful for testing IP stacks, routers, firewalls, NIDS, | |
* etc. for stability and reactions to unexpected packets. |
Pragma: akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-extracted-values, akamai-x-get-nonces, akamai-x-get-ssl-client-session-id, akamai-x-get-true-cache-key, akamai-x-serial-no |
Get Homebrew installed on your mac if you don't already have it
Install highlight. "brew install highlight". (This brings down Lua and Boost as well)
/* | |
* BANG.C Coded by Sorcerer of DALnet | |
* | |
* FUCKZ to: etech, blazin, udp, hybrid and kdl | |
* PROPZ : skrilla, thanks for all your help with JUNO-Z and especially this code :) | |
* -------------------------------- | |
* REDIRECTION DOS FINALLY DISTRIBUTED !!!!!! | |
* | |
* This is POC and demonstrates a new method of DoS. The idea | |
* behind it is that the attacker generates connection requests |