Import Repeatable Comments to IDA Via Script

///////////////////////////////////////////////////////////////////////////////////////////////////
//Write repeatble comment to the ida database.Such as the Chinese characters exported from OD    //
//The data formart show be like fallows:                                                         //
//007714F4  发现无线设备, 连接中……                                                           //
//007714F8  发现有线设备, 连接中……                                                           //
//The first is a address, and then 2 spaces ,and the last is the Comment for the data            //
//Script by obaby , site:http://www.h4ck.org.cn ,Email:root@h4ck.ws ,Date:11:59 2011-11-7        //
///////////////////////////////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////////////////////////
//Write repeatble comment to the ida database.Such as the Chinese characters exported from OD    //
//The data formart show be like fallows:                                                         //
//007714F4  发现无线设备, 连接中......                                                           //
//007714F8  发现有线设备, 连接中......                                                           //
//The first is a address, and then 2 spaces ,and the last is the Comment for the data            //
//Script by obaby , site:http://www.h4ck.org.cn ,Email:root@h4ck.ws ,Date:11:59 2011-11-7        //
///////////////////////////////////////////////////////////////////////////////////////////////////
#include 
static main()
{
 Message("====================IDA repeatble Comments Marker====================\n");
 Message("                        Code By obaby                                \n");
 Message("                       http://www.h4ck.ws                            \n");
 Message("=====================================================================\n");
 auto rComm,addr,linetext,oldname,handle,filelen,off,rCommlen,file,path,oldhandle;
 file = AskFile(1,"*.txt","Please Select the comment file");
 path = GetIdbPath();
 path = substr(path, 0, strlen(path) - 4) + "CmtBackup.txt";// Back up orginal names
 oldhandle = fopen(path,"w");
 handle = fopen(file,"r");
 off = 0;
 if (handle == 0 || oldhandle == 0)
	{
	 Message("ReadFile or Createfile Error! \n");
	}
 else {
	 filelen = filelength(handle);
	 if (filelen == 0)
		{
			Message("The input file is empty! \n");
		}
	else {
		Message("Now BackUp Old Comments and Mark  new Comments..........\n");
		while (off < filelen)
			{
				linetext = readstr(handle);
				addr = substr(linetext,0,8);	    	//get the addres
				addr = form("0x%s",addr);				//format the addres in 0x12345678 type
				rCommlen = strlen(linetext);
				rComm  = substr(linetext,9,rCommlen -1 );//get the rCommtion name
				off = off + rCommlen;
				if (strlen(rComm) == 0)
					{
						break;
					}
				Message("Comments addr is %s,and Comments is %s. \n",addr,rComm);
				oldname = Name(addr);	//get the old names
				if (strlen(oldname) ==0)
					{
						Message("Error:get Comments at addr %s Failed.\n",addr);
					}else {
						writestr(oldhandle,addr + "  " + oldname + "\n"); //write the old name and address into the backupfile
					}
				if (!MakeRptCmt(addr,rComm))
					{
						Message("Change Function %s,at Address %X failed.\n",rComm,addr);
					}
			}		
		}
	fclose(handle);
	fclose(oldhandle);
	Message("Conguratelations,All successed ,now Exit.......\n");
	}
}

☆版权☆

* 网站名称:obaby@mars
* 网址:https://h4ck.org.cn/
* 个性:https://oba.by/
* 本文标题: 《Import Repeatable Comments to IDA Via Script》
* 本文链接:https://h4ck.org.cn/2011/11/3282
* 短链接:https://oba.by/?p=3282
* 转载文章请标明文章来源,原文标题以及原文链接。请遵从 《署名-非商业性使用-相同方式共享 2.5 中国大陆 (CC BY-NC-SA 2.5 CN) 》许可协议。


猜你喜欢:

6 comments

    1. 公主 Queen 
      Google Chrome 102 Google Chrome 102 Mac OS X 10.15 Mac OS X 10.15 cn山东省青岛市 移动

      it’s not tested on the newst version, some api meybe changed.you should test and edit the script by urself.

发表回复

您的电子邮箱地址不会被公开。 必填项已用*标注