(resp)
| 1200 | return r.text |
| 1201 | |
| 1202 | def extract_phpinput_res(resp): |
| 1203 | strs = SubstrFind(resp,"AbracadabrA **") |
| 1204 | |
| 1205 | try: |
| 1206 | p = strs[0]+15 |
| 1207 | except: |
| 1208 | return "" |
| 1209 | |
| 1210 | got = "" |
| 1211 | while(p < len(resp)-1 and (resp[p] != '*' or resp[p+1] != '*')): |
| 1212 | got += resp[p] |
| 1213 | p += 1 |
| 1214 | |
| 1215 | return got[:-1] |
| 1216 | |
| 1217 | def run_phpinput(): |
| 1218 | global ahurl |
no test coverage detected