溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Parrot 3.6 安裝mitmproxy

發(fā)布時(shí)間:2020-06-26 13:00:39 來(lái)源:網(wǎng)絡(luò) 閱讀:1655 作者:milkitty 欄目:安全技術(shù)

最近需要實(shí)現(xiàn)高度自定義的代理,要滿(mǎn)足HTTP、HTTPS請(qǐng)求和響應(yīng)的修改,跨平臺(tái),盡可能的輕量和使用簡(jiǎn)單,最終選定使用mitmproxy.

mitmproxy是一款支持HTTP(S)的中間人代理工具。不同于Fiddler2,burpsuite等類(lèi)似功能工具,mitmproxy可在終端下運(yùn)行。mitmproxy使用Python開(kāi)發(fā),是輔助web開(kāi)發(fā)&測(cè)試,移動(dòng)端調(diào)試,***測(cè)試的工具。

安裝

  • python3.5 -m pip install mitmproxy

報(bào)異常: /usr/bin/python3.5: No module named pip
解決: sudo apt-get install python3-pip
然后重復(fù)執(zhí)行 python3.5 -m pip install mitmproxy

  • 報(bào)異常: 比較關(guān)鍵的內(nèi)容

1, error: command 'x86_64-linux-gnu-gcc' failed with exit status 1
2, fatal error: openssl/opensslv.h: No such file or directory
3, Failed building wheel for cryptography
4, Command "/usr/bin/python3.5 -u -c "import setuptools,tokenize;file='/tmp/pip-build-ozmfhujz/cryptography/setup.py';f=getattr(tokenize, 'open',open)(file);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, file, 'exec'))" > install --record /tmp/pip-iuzqegy5-record/install-record.txt --single-version-externally-managed --compile > --user --prefix=" failed with error code 1 in /tmp/pip-build-ozmfhujz/cryptography/
解決方式: sudo apt-get install libssl-dev


向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI