Last active
February 10, 2020 00:24
-
-
Save M3nin0/558d36b0049baf27550caab19c75dcd3 to your computer and use it in GitHub Desktop.
Script Super simples escrito para testar as regras do Snort, compartilhando apenas para deixar salvo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
echo "Insira o endereço a ser analisado" | |
read site_tk | |
echo "Baixar quantas vezes?" | |
read vezes | |
for ((a=1; a <= vezes ; a++)) | |
do | |
wget $site_tk | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment