Question: This is a Python script to send a request to www. 542.org/python/index.php?id=0 and print the response data to a file. Now, I want to modify

This is a Python script to send a request to "www.542.org/python/index.php?id=0" and print the response data to a file. Now, I want to modify the program to try "www.542.org/python/index.php?id=X" where X is from 0 to 1000.

For each request, I need to examine the response and write the valid ID to a file.

---------script below---------

#!/usr/bin/python

import httplib

outfile=open("/tmp/results.txt", "a") conn = httplib.HTTPConnection("www.sec542.org") url = "/python/index.php?id=0" conn.request("Get", url) resp = conn.getresponse() print resp.getheader("Server") print resp.getheader("Date") print resp.getheader("Set-Cookie") respcode=resp.status print str(respcode) result=url+" "+str(respcode)+" " outfile.write(result)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!