Advertisement
FlyFar

auto_curl.sh

Jul 18th, 2023
580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | Cybersecurity | 0 0
  1. echo -n "Sender email > "
  2. read SENDER
  3. echo -n "Recipient email> "
  4. read RECIPIENT
  5. echo -n "Subject > "
  6. read SUBJECT
  7. echo -n "Message > "
  8. read MESSAGE
  9. echo -n "PHP url > "
  10. read URL
  11. curl --data "from=$SENDER&to=RECIPIENT&subject=SUBJECT&message=MESSAGE" $URL
  12. echo "Done."
Tags: auto curl
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement