关于pydbg的一些代码

pydbg 可以做好多事情,这里我把自己常用的一些代码写上来;

方便找到进程并加载

findpid=True
print "Finding ...\n"
while findpid:
    for i in dbg.enumerate_processes():
        if i[1]=='stark.exe':
            dbg.attach(i[0])
            findpid=False
            print "Find The Piroc\n"



设置函数短点(软),并在回掉函数中打印出当前堆栈的24字节:

def msghandle(dbg):
    offser=0
    while 1:
        print "%08x" % int(dbg.context.Esp+offser)
        offser+=4
        if offser==24:break
    return DBG_CONTINUE

msg=dbg.func_resolve('user32','MessageBoxA')
dbg.bp_set(msg,handler=msg_crashbin)

cash_bing显示,略过第一次错误:

    if dbg.dbg.u.Exception.dwFirstChance:
            return DBG_EXCEPTION_NOT_HANDLED


    crash_bin = utils.crash_binning.crash_binning()
    crash_bin.record_crash(dbg)
    print crash_bin.crash_synopsis()
    
    
    
    return DBG_EXCEPTION_NOT_HANDLED


进程快照:

#创建快照

dbg.suspend_all_threads()
dbg.process_snapshot()
dbg.resume_all_threads()
            
还原快照
dbg.suspend_all_threads()
dbg.process_restore()
dbg.resume_all_threads()


 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值