├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── src ├── IDAStringList.cpp ├── IDAStringList.hpp ├── Plugin.cpp ├── Plugin.hpp └── PluginInterface.cpp ├── x64 └── CMakeLists.txt └── x86 └── CMakeLists.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /src/IDAStringList.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/src/IDAStringList.cpp -------------------------------------------------------------------------------- /src/IDAStringList.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/src/IDAStringList.hpp -------------------------------------------------------------------------------- /src/Plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/src/Plugin.cpp -------------------------------------------------------------------------------- /src/Plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/src/Plugin.hpp -------------------------------------------------------------------------------- /src/PluginInterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/src/PluginInterface.cpp -------------------------------------------------------------------------------- /x64/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/x64/CMakeLists.txt -------------------------------------------------------------------------------- /x86/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/praydog/IDA-String-Reference-Locator-Plugin/HEAD/x86/CMakeLists.txt --------------------------------------------------------------------------------