Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I just submitted a form that included a text box, in which I had written a quite long text. In another textbox, I filled in a date in the wrong format - and instead of getting an error message, the web site just acted as if my form submission was valid, except nothing was saved.

Is there any way to see the history of what has been POST-ed (in the current session, at least), from where I can recover my lost text?

share|improve this question
For this reason, I made it a habit of Ctrl-C'ing everything longer than a sentence. It's just so damn annoying when this happens. – Daniel Beck Jan 11 '11 at 14:22
4  
@Daniel: For Chrome and Firefox, there's an extension called "Lazarus" which saves form entries. – grawity Jan 11 '11 at 14:36
@grawity Thanks for the info. Not for Safari though, it seems. – Daniel Beck Jan 11 '11 at 14:39
@grawity: I tried Lazarus (on Firefox) for a while, but it was very buggy and more often than what is acceptable caused the entire browser to freeze. The concept is exactly what I'm looking for, but without the bugs =) – Tomas Lycken Feb 20 '11 at 23:17

1 Answer

up vote 1 down vote accepted

I don't think Chrome (or any other browser, for that matter) saves a history of <textarea> (multiline input) contents.


If the form uses normal (non-Ajax) submission, and you haven't navigated away from the result page, there's a trick you can try: Open burp suite (the free version, of course), configure your browser to use localhost:8080 as a HTTP proxy, and press Refresh on the result page. The browser will ask you if you want to repeat the submission - which should then be captured in burp's "proxy" tab. (For unsecured HTTP, a packet sniffer such as Wireshark would work too.)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.