1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#!/usr/bin/env python import requests def webClient(url,username,os): response = requests.get(url,params={ "username": username, "os": os }) print(response.text) webClient("http://10.20.236.161:4444/page.php","jerome","Linux")