首页
社区
课程
招聘
[转帖]Pattern Manager v 0.3 by mr.exodia
发表于: 2012-10-13 23:19 2020

[转帖]Pattern Manager v 0.3 by mr.exodia

2012-10-13 23:19
2020
From:EXETOOLS
Hello EXETools,
For the sake of faster reversing sometimes I created a tool called "Pattern Manager." This tool does exactly what the name says: managing patterns.
You can add/edit/remove categories and add/edit/remove patterns in them. Tool should be quite self-explanatory, but make sure you read the readme for some little tricks and shortcuts.

Updated to v0.3:

- Unicode (By Aguila)
- Process/File scanner (By Aguila)
- Right click

PatternManager03_TPoDT.rar

[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课

上传的附件:
收藏
免费 1
支持
分享
最新回复 (2)
雪    币: 97697
活跃值: (200834)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
2
Changelog (v0.3a):
- If you minimize pattern manager (to the tastbar), pressing the hotkey will restore the window instead of minimizing it again (to the tray)
- I added a smarter method of starting minimized to tray (see code ahead)
int DialogBoxHidden(HINSTANCE hInstance,
LPCTSTR lpTemplate,
HWND hWndParent,
DLGPROC lpDialogFunc,
bool showwindow)
{
MSG msg;
HWND hWnd;
HRSRC hrsrc=FindResource(NULL, lpTemplate, RT_DIALOG);
HGLOBAL hglb=LoadResource(hInstance, hrsrc);
hWnd=CreateDialogIndirectParam(hInstance, (DLGTEMPLATE*)LockResource(hglb), 0, lpDialogFunc, 0);
ShowWindow(hWnd, showwindow);
UpdateWindow(hWnd);
int msg_result=GetMessage(&msg, 0, 0, 0);
while(msg_result && msg_result!=-1)
{
if(!IsDialogMessage(hWnd, &msg))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
msg_result=GetMessage(&msg, 0, 0, 0);
}
return msg.wParam;
}

(Notice: using this you should call PostQuitMessage instead of EndDialog)

I hope this is a little useful to some of you, I'm almost daily using this program.
PatternManager03a.rar
上传的附件:
2013-1-24 14:23
0
雪    币: 97697
活跃值: (200834)
能力值: (RANK:10 )
在线值:
发帖
回帖
粉丝
3
by:Aguila
Here you go
Changelog:
- added option to scan complete memory of a process
It is still a very nice little handy tool :-)

PatternManager04.rar
上传的附件:
2013-1-26 08:57
0
游客
登录 | 注册 方可回帖
返回
//