Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/schira4396/xxme
#Python
https://github.com/schira4396/xxme
Last synced: about 2 months ago
JSON representation
#Python
- Host: GitHub
- URL: https://github.com/schira4396/xxme
- Owner: Schira4396
- Created: 2020-07-01T03:07:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-11-18T09:29:44.000Z (about 4 years ago)
- Last Synced: 2024-01-14T17:45:33.847Z (12 months ago)
- Language: JavaScript
- Size: 44.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
仿照metasploit的风格编写的小工具
1 主机发现 主要使用Python的第三方库scapy
2 端口扫描 主要使用python自带库socket
3 包嗅探 主要使用scapy
4 ARP投毒 scapy
5 zip爆破 python自带库 zipfile
6 爬虫 requests库由于metasploit采用Ruby编写,而两种语言间有许多特性不同,相同功能实现起来不一样,操作风格类似,命令大部分重合
sniff模块
load加载数据包
display查看数据包若要实现中间人攻击,需要在本机打开包转发功能,再使用工具过滤包内容,此工具暂无此功能
由于脚本语言的特性,速度稍慢
主机发现和端口扫描害得nmap
包嗅探害得wireshark
中间人攻击可以使用arpspoof
爬虫功能Python有很多框架和库例如selenium,scrapy
以上工具大都集成在kali中