summaryrefslogtreecommitdiff
path: root/webClient.py
blob: 4bd6ac25a86efd3ead9871418a5b6bf9ac3d6645 (plain)
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")