├── .gitignore ├── GenericFridaJavascript.js ├── LICENSE ├── README.md ├── symbol_parser.py ├── symda_python_runner.py └── third_party └── debugging_tools ├── LICENSE.TXT ├── README.thirdparty └── symsrv.dll /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | *.py[cod] 3 | *$py.class 4 | .idea/ -------------------------------------------------------------------------------- /GenericFridaJavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/GenericFridaJavascript.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/README.md -------------------------------------------------------------------------------- /symbol_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/symbol_parser.py -------------------------------------------------------------------------------- /symda_python_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/symda_python_runner.py -------------------------------------------------------------------------------- /third_party/debugging_tools/LICENSE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/third_party/debugging_tools/LICENSE.TXT -------------------------------------------------------------------------------- /third_party/debugging_tools/README.thirdparty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/third_party/debugging_tools/README.thirdparty -------------------------------------------------------------------------------- /third_party/debugging_tools/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberark/Symda/HEAD/third_party/debugging_tools/symsrv.dll --------------------------------------------------------------------------------