This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * targa3 - 1999 (c) Mixter <mixter@newyorkoffice.com> | |
| * | |
| * 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. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm /var/lib/iptraf/savedfilters.dat |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for i in {0..255}; do echo "ICMP $i" ;hping3 IP --icmp -K "$i" --force-icmp -c 3 -V; echo""; done; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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(): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ssh -o UserKnownHostsFile=/dev/null -T user@host /bin/bash -i |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| 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> |
NewerOlder