Advertisement
hackerboxes

curl command

Jun 19th, 2012
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. Curl command for issuing a POST request
  2. curl --data "username=tony&password=secret" http://exmaple.com/login/
  3.  
  4. curl -F username=tony -F password=secret http://exmaple.com/login/
  5.  
  6. curl --user name:password http://exmaple.com/login/
  7. ζ³¨ζ„εŒΊεˆ«
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement