()
| 323 | return shellcode_addr, remote_python_code_addr |
| 324 | |
| 325 | def get_dll_name_from_python_version(): |
| 326 | version = sys.version_info |
| 327 | return "python{v.major}{v.minor}.dll".format(v=version) |
| 328 | |
| 329 | def find_python_dll_to_inject(target_bitness): |
| 330 | pydll_name = get_dll_name_from_python_version() |
no outgoing calls
no test coverage detected