For some devices like this one: http://80.128.123.207 The login page is quit different (Browser Popup).
What is this type of login called? I have a tool which intercepts http requests but it didn't intercept the username or password being sent.
My goal: to send a login request with python like we do with requests.post()
CodePudding user response:
You can try this:
requests.post('http://80.128.123.207', auth=('test', 'test'))
