zzmez commited on
Commit
dde30fa
·
1 Parent(s): 90d8ce8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -146,6 +146,12 @@ with gr.Blocks() as aeon:
146
  gen_cmds_btn.click(fn=generate_cmds_from_bulk, inputs=[ip_addresses_raw, domains, max_ips, sample_size], outputs=[cmds])
147
 
148
  with gr.Accordion("Tips and tricks"):
149
- gr.Markdown("The subdomains are IPs from [1-19] and [201-254]")
 
 
 
 
 
 
150
 
151
  aeon.launch()
 
146
  gen_cmds_btn.click(fn=generate_cmds_from_bulk, inputs=[ip_addresses_raw, domains, max_ips, sample_size], outputs=[cmds])
147
 
148
  with gr.Accordion("Tips and tricks"):
149
+ gr.Markdown("""The subdomains are IPs from [1-19] and [201-254].
150
+ - Copy the commands and copy them in a file `nano check.sh` and paste and save.
151
+ - Run in terminal `sh check.sh` and wait for it to finish
152
+ - There will two types of files: `bune_IP_addr.txt` and `blocate_IP_addr.txt`
153
+ - To get all the good IPs run: `cat bune*`
154
+ """)
155
+
156
 
157
  aeon.launch()