💻Violent Python using python3
このリポジトリは書籍のソースコードをPython3向けに一部改変したものになります.
"Violent Python" by TJ O'Connor
pipenv (python 3.7.0)
Pipfile.lockを参照して環境を再現できます
$ pipenv sync
$ pipenv sync --dev # 開発用All about penetration testing and understanding networks. Also, brute-force is fairly used. These first two chapters contain scripts to:
- Dictionary attacks
- Brute force password hash comparisons
- Open secure zip files
- Port scanner
- SSH Botnet
- FTP Attack
- Replicate Conficker Attack
Geo-locating people and extrack meta data from apps.
- Geo-locate people using IPs and Images
- Firefox scrapper to download databases of saved cookies, download files list and past browser history
- Figure out where DDos attacks come from, from saved packets off the network
Manipulating Wifi packets.
- Wifi packet sniffer to find credit card number and google searches
- 802.11 protocol exploitation
TBA
All code here is under the MIT license.
このリポジトリにおけるソースコードは全て教育・研究目的の為にあります. 他人の機器,或いはあなたが管理者権限を持たない環境での使用は違法行為とみなされる可能性があります. 自分の環境で使用される際は自己責任で使用してください.
導入パッケージは以下の通り
-
flake8
Python code checker -
flake8-import-order
Python import order checker -
autopep8
PEP8 style code formatter
$ pipenv install --dev flake8 autopep8 flake8-import-order
Pipfileへ実行コマンドの追加
[scripts]
lint = "flake8 --show-source ."
format = "autopep8 -ivr ."
パッケージの脆弱性検証
$ pipenv check
