Thanks To
February 19, 2026 ยท View on GitHub
Function String Associate for IDA 9.X
This plugin lets you auto-generate function comments using the string literals used inside of that function. Example:
// STR: "Unable to load DLL: "%wZ", Parent Module: "%wZ", Status: 0x%x", "LdrpProcessWork", "minkernel\ntdll\ldrmap.c"
__int64 __fastcall LdrpProcessWork(__int64 a1, char a2)
{
// [COLLAPSED LOCAL DECLARATIONS. PRESS NUMPAD "+" TO EXPAND]
// ...
v5 = result;
if ( (int)result >= 0 || (_DWORD)result == -1073741267 )
goto LABEL_16;
result = LdrpLogInternal(
(unsigned int)"minkernel\\ntdll\\ldrmap.c",
2002,
(unsigned int)"LdrpProcessWork",
0,
"Unable to load DLL: \"%wZ\", Parent Module: \"%wZ\", Status: 0x%x\n",
a1,
(*(_QWORD *)(a1 + 48) + 72LL) & (unsigned __int64)((unsigned __int128)-(__int128)*(unsigned __int64 *)(a1 + 48) >> 64),
result);
// ...
}
Qt5 vs PySide6 IDA 9.2 migration
Note
For more information, see https://docs.hex-rays.com/user-guide/plugins/migrating-pyqt5-code-to-pyside6.
By default, the plugin uses PySide6.
If you need to force the legacy PyQt5 shim (<9.2), set IDAPYTHON_USE_PYQT5_SHIM=1 in your IDA Python environment before launching IDA.
Thanks To
This plugin is just a python rewrite of the original C++ implementation from @nihilus here: https://github.com/nihilus/IDA_FunctionStringAssociate_PlugIn