Question: Hello, I'm trying to write my code for natas8, But my output is not working. could someone please help? this is due today in a

Hello, I'm trying to write my code for natas8, But my output is not working. could someone please help? this is due today in a few hours

import requests URL = "http://natas7.natas.labs.overthewire.org/" user = 'natas7' passLvl7 = '7z3hEENjQtflzgnT29q7wAvMNfZdh0i9' s = requests.Session() s.auth = (user,passLvl7) PARAMS = dict(page='/etc/natas_webpass/natas8') r = s.get(URL, params=PARAMS) for x in r.iter_lines():   if not "<" in x:     print (x) 

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 Programming Questions!