(url, socket_proxies)
| 75 | |
| 76 | |
| 77 | def Scan_http(url, socket_proxies): |
| 78 | version = check_target_version(url,socket_proxies) |
| 79 | if version: |
| 80 | print("Confluence target version: {}".format(version)) |
| 81 | else: |
| 82 | print("Can't find the used version for this target") |
| 83 | send_payload(url, "ls /") |
| 84 | |
| 85 | |
| 86 | def fileTarget(file, socket_proxies): |
no test coverage detected