Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
1234567891011 |
- #!/bin/bash
-
- # Prompt the user for the value of the prefix
- read -p "Enter the prefix for the URL: " prefix
-
- # Construct URLs with the user-provided prefix
- url="https://${prefix}.gslab-juiceshop.com/rest/user/whoami"
-
- # Generating GET requests for /rest/user/whoami
- echo "Generating GET requests for /rest/user/whoami"
- siege -c150 -t10s $url
|