You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- #!/bin/bash
-
- # Prompt the user for the value of the prefix
- read -p "Enter the prefix for the hostname: " prefix
-
- # Construct URLs with the user-provided prefix
- url="https://${prefix}.appsec-akaed.com/rest/user/whoami"
-
- # Generating GET requests for /rest/user/whoami
- echo "Generating GET requests for /rest/user/whoami"
- siege -c150 -t10s $url
|