Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Murach's SQL Server 2012 For Developers

Authors: Bryan Syverson, Joel Murach, Mike Murach

1st Edition

1890774693, 9781890774691

Students also viewed these Databases questions