写个IDC文件,内容如下:
static LoadMySig()
{
ApplySig("vc6libc");
}
保存文件为LoadMySig.idc
然后放到IDA的idc文件夹下
在ida.idc中包含这个文件include <LoadMySig.idc>
在ida.idc文件的main里调用这个函数
static main(void)
{
//
// This function is executed when IDA is started.
//
// Add statements to fine-tune your IDA here.
//
// Instantiate the breakpoints singleton object
Breakpoints = BreakpointManager();
LoadMySig();
// uncomment this line to remove full paths in the debugger process options:
// SetCharPrm(INF_LFLAGS, L***_DBG_NOPATH|GetCharPrm(INF_LFLAGS));
}
那么IDA加载exe的时候就会自动加载你所要的签名文件了。
遇到问题多查查帮助文档还是比较有用的。