# FF-Pot
This honeypot supports Telnet and SSH two protocols, simulates the Linux system, and stores the data in the SQL database. In addition, it also sends alerts to users via SMS and email. Users can customize commands and directories.
这个蜜罐支持Telnet和SSH两种协议,模拟Linux系统,将攻击数据存储在SQL数据库中。此外,它还通过短信和电子邮件向用户发送警报。用户可以自定义蜜罐的命令和目录。
- The implementation of Telnet and SSH protocols is based on [telnetsrvlib](https://github.com/ianepperson/telnetsrvlib). Telnet和SSH协议的实现基于[telnetsrvlib](https://github.com/ianepperson/telnetsrvlib)。
- This is a Django project. 一个Django项目。
- admin001: 12345
## Tree
```
├── LICENSE
├── FF_Pot
│ ├── __init__.py
│ ├── asgi.py
│ ├── database.py
│ ├── funcs.py
│ ├── honeypot_server
│ │ ├── alert.py
│ │ ├── command_execution.py
│ │ ├── command_parser.py
│ │ ├── fake_files.py
│ │ ├── honeypot_manager.py
│ │ ├── send_mail.py
│ │ ├── send_sms.py
│ │ ├── ssh_handler.py
│ │ ├── ssh_honeypot.py
│ │ ├── state_of_honeypots.json
│ │ ├── state_of_honeypots.py
│ │ ├── telnet_handler.py
│ │ ├── telnet_honeypot.py
│ │ ├── telnet_server_library.py
│ │ └── temporary_files
│ ├── settings.py
│ ├── urls.py
│ ├── views.py
│ └── wsgi.py
├── FF_Pot_Model
│ ├── __init__.py
│ ├── admin.py
│ ├── apps.py
│ ├── migrations
│ │ └── __init__.py
│ ├── models.py
│ ├── tests.py
│ └── views.py
├── README.md
├── db.sqlite3
├── manage.py
├── statics
│ ├── Highcharts
│ │ └── code
│ │ ├── highcharts.js
│ │ └── modules
│ │ ├── accessibility.js
│ │ ├── data.js
│ │ ├── drilldown.js
│ │ ├── export-data.js
│ │ ├── exporting.js
│ │ └── series-label.js
│ ├── css
│ │ ├── layui.css
│ │ └── modules
│ │ ├── code.css
│ │ ├── laydate
│ │ │ └── default
│ │ │ └── laydate.css
│ │ └── layer
│ │ └── default
│ │ ├── icon-ext.png
│ │ ├── icon.png
│ │ ├── layer.css
│ │ ├── loading-0.gif
│ │ ├── loading-1.gif
│ │ └── loading-2.gif
│ ├── font
│ │ ├── iconfont.eot
│ │ ├── iconfont.svg
│ │ ├── iconfont.ttf
│ │ ├── iconfont.woff
│ │ └── iconfont.woff2
│ ├── jquery-3.6.0.min.js
│ └── layui.js
└── templates
├── all_users.html
├── caught.html
├── connection_log_details.html
├── connections.html
├── connections_charts.html
├── connections_log.html
├── delete_user.html
├── error.html
├── hidden_paths.html
├── home.html
├── home_with_charts.html
├── home_with_date_picker.html
├── home_with_upload_file.html
├── honeypots_charts.html
├── honeypots_log.html
├── login.html
├── mail_settings.html
├── new_user.html
├── not_allowed_commands.html
├── overview.html
├── parameters.html
├── replace_names.html
├── sms_settings.html
├── user_settings.html
├── usernames.html
├── users_charts.html
└── users_log.html
```
## Example
![](examples/1.png)
![](examples/2.png)
![](examples/3.png)
![](examples/4.png)
![](examples/5.png)
![](examples/6.png)
![](examples/7.png)
![](examples/8.png)
![](examples/9.png)
![](examples/10.png)
![](examples/11.png)
没有合适的资源?快使用搜索试试~ 我知道了~
资源推荐
资源详情
资源评论
收起资源包目录
This_honeypot_supports_Telnet_and_SSH_two_protocol_FF-Pot.zip (96个子文件)
FF-Pot-main
db.sqlite3 648KB
FF_Pot
__init__.py 0B
database.py 15KB
honeypot_server
send_mail.py 982B
ssh_handler.py 8KB
telnet_server_library.py 44KB
ssh_honeypot.py 1KB
command_parser.py 3KB
send_sms.py 1KB
telnet_honeypot.py 35KB
alert.py 799B
telnet_handler.py 2KB
honeypot_manager.py 2KB
command_execution.py 3KB
state_of_honeypots.json 31B
temporary_files
.gitkeep 0B
fake_files.py 14KB
state_of_honeypots.py 919B
funcs.py 27KB
wsgi.py 389B
urls.py 1KB
settings.py 3KB
asgi.py 389B
views.py 57KB
FF_Pot_Model
__init__.py 0B
tests.py 60B
admin.py 63B
migrations
__init__.py 0B
apps.py 154B
models.py 2KB
views.py 63B
LICENSE 34KB
statics
layui.js 284KB
font
iconfont.ttf 45KB
iconfont.woff2 25KB
iconfont.svg 299KB
iconfont.eot 46KB
iconfont.woff 30KB
Highcharts
code
highcharts.js 296KB
modules
data.js 16KB
export-data.js 11KB
exporting.js 19KB
drilldown.js 18KB
accessibility.js 127KB
series-label.js 8KB
jquery-3.6.0.min.js 87KB
css
layui.css 78KB
modules
laydate
default
laydate.css 7KB
code.css 1KB
layer
default
loading-2.gif 2KB
loading-1.gif 701B
loading-0.gif 6KB
icon-ext.png 6KB
layer.css 14KB
icon.png 11KB
examples
10.png 294KB
9.png 936KB
3.png 448KB
1.png 467KB
11.png 336KB
6.png 981KB
5.png 271KB
4.png 374KB
8.png 1.14MB
7.png 301KB
2.png 446KB
templates
mail_settings.html 4KB
connection_log_details.html 2KB
connections_charts.html 11KB
honeypots_charts.html 7KB
user_settings.html 3KB
users_log.html 3KB
parameters.html 4KB
home.html 13KB
replace_names.html 1KB
users_charts.html 7KB
connections.html 2KB
honeypots_log.html 3KB
home_with_upload_file.html 436B
login.html 2KB
home_with_date_picker.html 344B
usernames.html 1KB
error.html 235B
hidden_paths.html 1KB
connections_log.html 3KB
home_with_charts.html 831B
new_user.html 904B
sms_settings.html 3KB
caught.html 2KB
delete_user.html 935B
all_users.html 906B
not_allowed_commands.html 1KB
overview.html 2KB
manage.py 854B
.gitignore 14B
README.md 4KB
共 96 条
- 1
资源评论
好家伙VCC
- 粉丝: 1768
- 资源: 9106
下载权益
C知道特权
VIP文章
课程特权
开通VIP
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- IRLR3105TRPBF-VB一种N-Channel沟道TO252封装MOS管
- SVG APF有源滤波器全套系统资料 包含: 150w电源(原理图 PCB BOM 制版文件) FPGA核心控制板
- cuda by example 书中例子
- IRFR1205NTRLPBF-VB一种N-Channel沟道TO252封装MOS管
- EVE-NG关联文件P-Link
- UE5 Nanite阴影问题解决方案:技巧与实践
- CSS浮动详解及其解决方案
- 标定A2L 文件合并、更新处理工具
- 视觉平台模版匹配,支持灰度匹配和形状匹配,也支持多角度旋转和多层金字塔快递匹配,依赖halcon
- CSS元素定位详解与实战应用
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功