bhp-pro 1.2.5__py3-none-any.whl → 1.2.8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {bhp_pro-1.2.5.dist-info → bhp_pro-1.2.8.dist-info}/METADATA +1 -1
- bhp_pro-1.2.8.dist-info/RECORD +6 -0
- bhp_pro.py +9 -9
- bhp_pro-1.2.5.dist-info/RECORD +0 -6
- {bhp_pro-1.2.5.dist-info → bhp_pro-1.2.8.dist-info}/WHEEL +0 -0
- {bhp_pro-1.2.5.dist-info → bhp_pro-1.2.8.dist-info}/entry_points.txt +0 -0
- {bhp_pro-1.2.5.dist-info → bhp_pro-1.2.8.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
bhp_pro.py,sha256=NFRfBKMWZUHVGgNBjItzouhWYXWniIzh7Ewd6hp9E_M,743966
|
|
2
|
+
bhp_pro-1.2.8.dist-info/METADATA,sha256=SLojzdE6JqUql4KhkYRKQy1sPNGj_u32RNTU8s2PVs4,600
|
|
3
|
+
bhp_pro-1.2.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
+
bhp_pro-1.2.8.dist-info/entry_points.txt,sha256=Yn3HpraGX3lXX4FPq3Gm-lHh3SwQA-5rtgPWNWMFXkw,41
|
|
5
|
+
bhp_pro-1.2.8.dist-info/top_level.txt,sha256=1xjbIaVM77UJz9Tsi1JjILgE0YDG7iLhY6KSMNEi9zM,8
|
|
6
|
+
bhp_pro-1.2.8.dist-info/RECORD,,
|
bhp_pro.py
CHANGED
|
@@ -3758,7 +3758,7 @@ def host_proxy_checker():
|
|
|
3758
3758
|
|
|
3759
3759
|
]
|
|
3760
3760
|
|
|
3761
|
-
VALID_STATUS_CODES = {'200', '409', '
|
|
3761
|
+
VALID_STATUS_CODES = {'200', '409', '400', '101', '405', '503', '403'}
|
|
3762
3762
|
print_lock = threading.Lock()
|
|
3763
3763
|
|
|
3764
3764
|
def safe_print(*args, **kwargs):
|
|
@@ -6958,7 +6958,7 @@ def websocket_scanner_old():
|
|
|
6958
6958
|
except Exception as write_err:
|
|
6959
6959
|
print(f"{RED}[!] Failed to write result: {write_err}{RESET}")
|
|
6960
6960
|
return "SUCCESS", result, status_code, server_info
|
|
6961
|
-
elif status_code in ["101", "403", "301", "409", "405"]:
|
|
6961
|
+
elif status_code in ["101", "403", "301", "409", "405", "400"]:
|
|
6962
6962
|
print(f"{YELLOW}[-] {result} — Interesting Status: {status_code}, Server: {server_info}{RESET}")
|
|
6963
6963
|
if output_file:
|
|
6964
6964
|
try:
|
|
@@ -9060,7 +9060,7 @@ def payloadhunter2():
|
|
|
9060
9060
|
PROXY_TIMEOUT = 2
|
|
9061
9061
|
THREADS = 50
|
|
9062
9062
|
DNS_THREADS = 50
|
|
9063
|
-
TARGET_STATUS_CODES = {101, 200,
|
|
9063
|
+
TARGET_STATUS_CODES = {101, 200, 400, 405, 409, 403} # Only these status codes will be saved
|
|
9064
9064
|
USER_AGENTS = [
|
|
9065
9065
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36",
|
|
9066
9066
|
"Mozilla/5.0 (iPhone; CPU iPhone OS 14_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Mobile/15E148 Safari/604.1",
|
|
@@ -9068,7 +9068,7 @@ def payloadhunter2():
|
|
|
9068
9068
|
]
|
|
9069
9069
|
COMMON_PORTS = [80, 443, 8080]
|
|
9070
9070
|
TARGET_HOST = "us7.ws-tun.me"
|
|
9071
|
-
SUCCESS_KEYWORDS = ["websocket", "cloudflare", "cf-ray", "200", "101", "
|
|
9071
|
+
SUCCESS_KEYWORDS = ["websocket", "cloudflare", "cf-ray", "200", "101", "400", "405", "409", "403", "connection established"]
|
|
9072
9072
|
FAIL_KEYWORDS = ["forbidden", "blocked", "error", "invalid", "bad request"]
|
|
9073
9073
|
DNS_TIMEOUT = 2
|
|
9074
9074
|
|
|
@@ -16569,8 +16569,8 @@ def menu3():
|
|
|
16569
16569
|
else:
|
|
16570
16570
|
os.system('cls' if os.name == 'nt' else 'clear')
|
|
16571
16571
|
|
|
16572
|
-
|
|
16573
|
-
|
|
16572
|
+
|
|
16573
|
+
help_main()
|
|
16574
16574
|
|
|
16575
16575
|
def mainkio():
|
|
16576
16576
|
if not is_admin():
|
|
@@ -16670,8 +16670,8 @@ def menu3():
|
|
|
16670
16670
|
else:
|
|
16671
16671
|
print("[!] Invalid choice. Please try again.")
|
|
16672
16672
|
|
|
16673
|
-
|
|
16674
|
-
|
|
16673
|
+
|
|
16674
|
+
mainkio()
|
|
16675
16675
|
|
|
16676
16676
|
def prox():
|
|
16677
16677
|
#!/usr/bin/env python3
|
|
@@ -16944,7 +16944,7 @@ def banner():
|
|
|
16944
16944
|
MAGENTA + "██╔═══╝ ██╔══██╗██║ ██║" + LIME + "user should understand that useage of this script may be" + ENDC,
|
|
16945
16945
|
MAGENTA + "██║ ██║ ██║╚██████╔╝" + LIME + "concidered an attack on a data network, and may violate terms" + ENDC,
|
|
16946
16946
|
MAGENTA + "╚═╝ ╚═╝ ╚═╝ ╚═════╝" + LIME + "of service, use on your own network or get permission first" + ENDC,
|
|
16947
|
-
PURPLE + "script_version@ 1.2.
|
|
16947
|
+
PURPLE + "script_version@ 1.2.8 ®" + ENDC,
|
|
16948
16948
|
ORANGE + "All rights reserved 2022-2025 ♛: ®" + ENDC,
|
|
16949
16949
|
MAGENTA + "In Collaboration whit Ayan Rajpoot ® " + ENDC,
|
|
16950
16950
|
BLUE + "Support: https://t.me/BugScanX 💬" + ENDC,
|
bhp_pro-1.2.5.dist-info/RECORD
DELETED
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
bhp_pro.py,sha256=E-KfE6bFtV0a88YETAC-8aI8Mb8SvjYuSMXmV8hpyHc,744020
|
|
2
|
-
bhp_pro-1.2.5.dist-info/METADATA,sha256=iu0WHZuR7i8MshNiohs6f8TY-xT5zShowcVc7Ch8Y0Y,600
|
|
3
|
-
bhp_pro-1.2.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
4
|
-
bhp_pro-1.2.5.dist-info/entry_points.txt,sha256=Yn3HpraGX3lXX4FPq3Gm-lHh3SwQA-5rtgPWNWMFXkw,41
|
|
5
|
-
bhp_pro-1.2.5.dist-info/top_level.txt,sha256=1xjbIaVM77UJz9Tsi1JjILgE0YDG7iLhY6KSMNEi9zM,8
|
|
6
|
-
bhp_pro-1.2.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|