You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
264 B
Bash

#!/bin/bash
echo -e "[+] Creating a secret"
curl -X POST 127.0.0.1:5000/secret/ \
-H "Content-Type: application/json" \
-d "{
\"username\": \"$(whoami)\",
\"password\": \"$(openssl rand -base64 32)\",
\"message\": \"This is my secret password!\"
}"