All Projects → mike01 → sledgehammer

mike01 / sledgehammer

Licence: GPL-3.0 license
🔨 📶 WiFi-Jammer/DoS toolset

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to sledgehammer

Pytcp
PyTCP is an attempt to create fully functional TCP/IP stack in Python. It supports TCP stream based transport with reliable packet delivery based on sliding window mechanism and basic congestion control. It also supports IPv6/ICMPv6 protocols with SLAAC address configuration. It operates as user space program attached to Linux TAP interface. As of today stack is able to send and receive traffic over Internet using IPv4 and IPv6 default gateways for routing. Since goal of this project is purely educational (at least at this point) the clarity of code is preferred over its efficiency. For the same reason security features are not being implemented just yet unless they are integral part of TCP/IP suite protocols specification.
Stars: ✭ 65 (+91.18%)
Mutual labels:  tcp, icmp, arp, ip
Pypacker
📦 The fastest and simplest packet manipulation lib for Python
Stars: ✭ 216 (+535.29%)
Mutual labels:  tcp, parsing, arp, ip
L2-Emulator
Implementing a Layer-2 Emulator in C using Graphs and LinkedList
Stars: ✭ 17 (-50%)
Mutual labels:  tcp, arp, ip
Cnp3
Computer Networking : Principles, Protocols and Practice (first and second edition, third edition is being written on https://github.com/cnp3/ebook)
Stars: ✭ 471 (+1285.29%)
Mutual labels:  tcp, wifi, ip
ddos
Simple dos attack utility
Stars: ✭ 36 (+5.88%)
Mutual labels:  tcp, icmp, denial-of-service
Mirage Tcpip
TCP/IP networking stack in pure OCaml, using the Mirage platform libraries. Includes IPv4/6, ICMP, and UDP/TCP support.
Stars: ✭ 277 (+714.71%)
Mutual labels:  tcp, icmp, arp
Pingtunnel
ping tunnel is a tool that advertises tcp/udp/socks5 traffic as icmp traffic for forwarding.
Stars: ✭ 1,904 (+5500%)
Mutual labels:  tcp, icmp, wifi
net-protocol
golang模拟内核协议栈 实现链路层、网络层、传输层、应用层 用户态协议栈 ,基于虚拟网卡TUN/TAP
Stars: ✭ 129 (+279.41%)
Mutual labels:  tcp, icmp, arp
Udp2raw Tunnel
A Tunnel which Turns UDP Traffic into Encrypted UDP/FakeTCP/ICMP Traffic by using Raw Socket,helps you Bypass UDP FireWalls(or Unstable UDP Environment)
Stars: ✭ 4,839 (+14132.35%)
Mutual labels:  tcp, icmp
Libnet
A portable framework for low-level network packet construction
Stars: ✭ 640 (+1782.35%)
Mutual labels:  tcp, arp
Dpdk Ans
ANS(Accelerated Network Stack) on DPDK, DPDK native TCP/IP stack.
Stars: ✭ 925 (+2620.59%)
Mutual labels:  tcp, ip
Computer Networking
Free resources for a self-taught education in Computer Networking
Stars: ✭ 201 (+491.18%)
Mutual labels:  tcp, arp
Esp8266 Wifi Uart Bridge
Transparent WiFi (TCP, UDP) to UART Bridge, in AP or STATION mode
Stars: ✭ 107 (+214.71%)
Mutual labels:  tcp, wifi
Autosteer ESP
Advanced Autosteer Sketch for ESP32 - WiFi Version
Stars: ✭ 34 (+0%)
Mutual labels:  wifi, wlan
http-connection-lifecycle
Complete and detailed explanation of HTTP connection lifecycle
Stars: ✭ 43 (+26.47%)
Mutual labels:  tcp, arp
sx
🖖 Fast, modern, easy-to-use network scanner
Stars: ✭ 1,267 (+3626.47%)
Mutual labels:  icmp, arp
captcp
A open source program for TCP analysis of PCAP files
Stars: ✭ 110 (+223.53%)
Mutual labels:  tcp, ip
ebook
Third edition of the Computer Networking: Principles, Protocols and Practice ebook
Stars: ✭ 64 (+88.24%)
Mutual labels:  tcp, ip
Asio2
Header only c++ network library, based on asio,support tcp,udp,http,websocket,rpc,ssl,icmp,serial_port.
Stars: ✭ 202 (+494.12%)
Mutual labels:  tcp, icmp
okhoxi-serac
冰塔协议-传输层协议
Stars: ✭ 33 (-2.94%)
Mutual labels:  tcp, arp

Please note: This respository has become staled due to relocation to GitLab. Visit https://gitlab.com/mike01/ for up-to-date versions.

General information

Sledgehammer is collection of Jammer/DoS tools for various protocols. Those include at minimum:

  • WiFi (smart deauthentication, DoS via fake AP creation, DoS via authentication)
  • arp
  • ip
  • icmp
  • tcp

Requirements

Installation

Just download and execute.

Usage examples

Get general help via: python sledgehammer.py --help Depending on attack mode parameters can vary. See mode-parameters for more info. Default source MAC and IP address is the one of the interface given by 'iface_name'.

  • WiFI DoS via smart deauthentication: Disconnect all WiFi clients

    python sledgehammer.py --mode wifi_deauth --iface_name wlan1 --count 9999

  • WiFI DoS via smart deauthentication: Disconnect all WiFi clients except '00:11:22:33:44:55'

    python sledgehammer.py --mode wifi_deauth --iface_name wlan1 --nobroadcast --macs_excluded 00:11:22:33:44:55 --count 9999

  • WiFi DoS via mass fake APs

    python sledgehammer.py --mode wifi_ap --iface_name wlan1 --channels 1 --count 9999

  • WiFi DoS via mass auth

    python sledgehammer.py --mode wifi_auth --iface_name wlan1 --mac_dst 00:11:22:33:44:55:66 --channels 4 --count 9999

  • ARP

    python sledgehammer.py --mode arp --iface_name wlan1 --mac_dst 00:11:22:33:44:55 --ip_dst 192.168.178.1

  • ICMP

    python sledgehammer.py --mode icmp --iface_name wlan1 --mac_dst 00:11:22:33:44:55:66 --ip_dst 192.168.178.1

  • IP

    python sledgehammer.py --mode ip --iface_name wlan0 --mac_dst 00:11:22:33:44:55:66 --ip_dst 192.168.178.123 --count 9999

  • TCP

    python sledgehammer.py --mode tcp --iface_name wlan1 --mac_dst 00:11:22:33:44:55:66 --ip_dst 193.99.144.80 --port_dst 443

  • Slowlory

    python sledgehammer.py -m slowlory --ip_dst 1.2.3.4 --port_dst 80 -i wlan0

    python sledgehammer.py -m slowlory --ip_dst www.domain.com --port_dst 443 --ssl True -i wlan0

Disclaimer

Use at your own risk. Do not use without full consent of everyone involved.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].