23

I want to test the security of a website of mine and I would love to have an application that is able to send POST data, if it's even possible..

Thanks

Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
0plus1
  • 4,475
  • 12
  • 47
  • 89
  • 1
    Not a programming question. Belongs on superuser. – 0xC0000022L Apr 27 '11 at 21:12
  • 4
    @STATUS_ACCESS_DENIED, Should all testing questions be asked on superuser? Testing is akin to programming - IMHO. – d-_-b Apr 10 '12 at 06:14
  • @doobie: *penetration testing* questions? Ehrm, yes ... likely even on one of the more tailored SE sites, rather than SuperUser or ServerFault. Perhaps Webmasters or IT Security ... but not here. I'm afraid I still disagree with leaving this on SO, even if no one did agree back then and moved the question. – 0xC0000022L Apr 10 '12 at 11:15

8 Answers8

15

Try Fiddler. From their own documentation:

"The Request Builder allows you to craft custom requests to send to the server. You can either create a new request manually, or you can drag and drop a session from the Web Sessions list to create a new request based on the existing request."

alt text
(source: ifinity.com.au)

Glorfindel
  • 21,988
  • 13
  • 81
  • 109
Mystic
  • 5,024
  • 4
  • 29
  • 31
13

Yes, there are two I know of:

Daniel Rikowski
  • 71,375
  • 57
  • 251
  • 329
8
  • RESTClient : request oriented and user-firendly (runs in a tab, XML answer coloration)

    Development version (works with Firefox 4.b9) here :

    https: //github.com/chao/RESTClient

  • Poster : handling binary data POST (with file loading)

    https: //addons.mozilla.org/fr/firefox/addon/poster/

John
  • 689
  • 9
  • 8
6

A fire fox add on named Poster dose exactly that.

Inuwashi
  • 61
  • 1
  • 1
5

I think Fiddler will allow this.

AJ.
  • 16,368
  • 20
  • 95
  • 150
2

I believe LiveHTTPHeaders can do this (http://livehttpheaders.mozdev.org/).

But you need to first capture an actual GET/POST request, then click "Replay...". There, you can edit your request (including the headers) as you wish.

Matt
  • 2,229
  • 12
  • 10
0

HttpRequester.. Just Awesonme...

Somasundaram Sekar
  • 5,244
  • 6
  • 43
  • 85
0

HTTP Resource Test worked fine.

Cristian
  • 198,401
  • 62
  • 356
  • 264