├── .github └── workflows │ └── build.yaml ├── .gitignore ├── README.md ├── frida └── __handlers__ │ ├── C__windows_system32_WS2_32.dll │ └── select.js │ └── WS2_32.dll │ └── select.js ├── injector.py ├── launchhelper.sh ├── launchhelper2.py └── sulaunchhelper2.py /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .vscode/ 3 | dist/ 4 | build/ 5 | *.exe 6 | *.spec 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/README.md -------------------------------------------------------------------------------- /frida/__handlers__/C__windows_system32_WS2_32.dll/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/frida/__handlers__/C__windows_system32_WS2_32.dll/select.js -------------------------------------------------------------------------------- /frida/__handlers__/WS2_32.dll/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/frida/__handlers__/WS2_32.dll/select.js -------------------------------------------------------------------------------- /injector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/injector.py -------------------------------------------------------------------------------- /launchhelper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/launchhelper.sh -------------------------------------------------------------------------------- /launchhelper2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/launchhelper2.py -------------------------------------------------------------------------------- /sulaunchhelper2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CakeTheLiar/launchhelper/HEAD/sulaunchhelper2.py --------------------------------------------------------------------------------