views:

48

answers:

3

Hello,

How do i automate the process of filling up form? How do i parse each field and fill it with junk data? I want to test my website. I actually want to hack this link :-

http://www.placement.vnsguit.org/placementIt.aspx

If any software is available that i can immitate while programming then it will be very helful.

Thanks in advance :)

+1  A: 

I've used Netsparker in the past as a first run to probe for vulnerabilities on my sites. It will go through each page and alert you to a variety of vulnerabilities and has few false positives.

Abe Miessler
+1  A: 

One tool that I use for casual inspection is fiddler. With fiddler, I can inspect my browser's traffic, "fiddle" with a request, and send it again to see what happens. It's no automated penetration testing machine by any means, but it's useful for specific tests outside of the confines of a JavaScript-enabled browser.

kbrimington
+1  A: 

Selenium is a a Firefox plugin to record, edit and playback scripts to test web pages. If you create a test with junk input then you can use it to see how the form handles it.

What's nice is that you can save a test and run it later to quickly see the effects of a code change.

Kwebble
@Kwebble :- Exactly what i needed. However i don't seem to specify value of `n` where n is the number of times i want to run the test case? Actually i want to leave my pc on for 4-5 hours and specify n as `100000`. How do i do this? Any plugins for Selenium?
Ankit Rathod
I found some info about looping here: http://www.xoriant.com/blog/software-testing-and-qa/selenium-for-test-automation.html Don't know if it's useful.
Kwebble