├── LICENSE ├── README.md ├── impulse.py ├── requirements.txt └── tools ├── EMAIL ├── emailTools.py └── main.py ├── L4 ├── icmp.py ├── memcached.py ├── memcached_servers.txt ├── ntp.py ├── ntp_servers.txt ├── pod.py ├── syn.py └── udp.py ├── L7 ├── http.py ├── referers.txt ├── slowloris.py └── user_agents.json ├── SMS ├── main.py ├── names.json ├── proxy.json ├── randomData.py ├── sendRequest.py ├── services.json └── user_agents.json ├── addons ├── clean.py ├── logo.py ├── twilight │ ├── hash.py │ ├── salt.py │ ├── twilight.py │ └── xor.py └── winpcap.py ├── crash.py ├── ipTools.py ├── method.py └── randomData.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/README.md -------------------------------------------------------------------------------- /impulse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/impulse.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/EMAIL/emailTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/EMAIL/emailTools.py -------------------------------------------------------------------------------- /tools/EMAIL/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/EMAIL/main.py -------------------------------------------------------------------------------- /tools/L4/icmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/icmp.py -------------------------------------------------------------------------------- /tools/L4/memcached.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/memcached.py -------------------------------------------------------------------------------- /tools/L4/memcached_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/memcached_servers.txt -------------------------------------------------------------------------------- /tools/L4/ntp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/ntp.py -------------------------------------------------------------------------------- /tools/L4/ntp_servers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/ntp_servers.txt -------------------------------------------------------------------------------- /tools/L4/pod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/pod.py -------------------------------------------------------------------------------- /tools/L4/syn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/syn.py -------------------------------------------------------------------------------- /tools/L4/udp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L4/udp.py -------------------------------------------------------------------------------- /tools/L7/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L7/http.py -------------------------------------------------------------------------------- /tools/L7/referers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L7/referers.txt -------------------------------------------------------------------------------- /tools/L7/slowloris.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L7/slowloris.py -------------------------------------------------------------------------------- /tools/L7/user_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/L7/user_agents.json -------------------------------------------------------------------------------- /tools/SMS/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/main.py -------------------------------------------------------------------------------- /tools/SMS/names.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/names.json -------------------------------------------------------------------------------- /tools/SMS/proxy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/proxy.json -------------------------------------------------------------------------------- /tools/SMS/randomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/randomData.py -------------------------------------------------------------------------------- /tools/SMS/sendRequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/sendRequest.py -------------------------------------------------------------------------------- /tools/SMS/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/services.json -------------------------------------------------------------------------------- /tools/SMS/user_agents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/SMS/user_agents.json -------------------------------------------------------------------------------- /tools/addons/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/clean.py -------------------------------------------------------------------------------- /tools/addons/logo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/logo.py -------------------------------------------------------------------------------- /tools/addons/twilight/hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/twilight/hash.py -------------------------------------------------------------------------------- /tools/addons/twilight/salt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/twilight/salt.py -------------------------------------------------------------------------------- /tools/addons/twilight/twilight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/twilight/twilight.py -------------------------------------------------------------------------------- /tools/addons/twilight/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/twilight/xor.py -------------------------------------------------------------------------------- /tools/addons/winpcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/addons/winpcap.py -------------------------------------------------------------------------------- /tools/crash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/crash.py -------------------------------------------------------------------------------- /tools/ipTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/ipTools.py -------------------------------------------------------------------------------- /tools/method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/method.py -------------------------------------------------------------------------------- /tools/randomData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LimerBoy/Impulse/HEAD/tools/randomData.py --------------------------------------------------------------------------------