Apollofish-钓鱼演练平台

admin 2026-01-26 02:41:35 网络安全文章 来源:ZONE.CI 全球网 0 阅读模式

文章总结: 本文介绍了开源钓鱼演练平台Apollofish的搭建。文章详述了下载运行、配置后台、自定义HTML模板及SSL的过程,展示了利用AI美化钓鱼页面的方法。该平台可记录钓鱼数据并辅助安全演练。最后提醒读者需合规使用,并提升安全意识防范钓鱼攻击。 综合评分: 70 文章分类: 社会工程学,安全工具,安全意识


cover_image

Apollofish-钓鱼演练平台

原创

大表哥吆 大表哥吆

kali笔记

2026年1月23日 12:18 甘肃

如何搭建自己的🎣靶场呢?一篇文章让我们了解Apollofish-🎣演练平台。

作者项目地址:

https://github.com/safe1024/apollofish

警告:本文仅供学习和研究,坚决反对一切危害网络安全的行为。造成法律后果,自行承担!

启动

在项目地址中下载对应系统运行包,这里以kali为例,执行下面命令运行

./ApolloFish_v1.0 (1).1_linux_amd64

运行完成后,会提示后台地址和登录密码等信息。

登录首页

新增网页模板

<!DOCTYPE&nbsp;html>
<html>
<head>
&nbsp; &nbsp;&nbsp;<meta&nbsp;charset="UTF-8">
&nbsp; &nbsp;&nbsp;<title>网页模板示例</title>
&nbsp; &nbsp;&nbsp;<style>
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;.input-container&nbsp;{
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;max-width:&nbsp;400px;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;margin:&nbsp;50px&nbsp;auto;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;padding:&nbsp;30px;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;background:&nbsp;#ffffff;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;border-radius:&nbsp;10px;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;box-shadow:&nbsp;0&nbsp;2px&nbsp;10px&nbsp;rgba(0,0,0,0.1);
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;font-family:&nbsp;"Microsoft YaHei", sans-serif;
&nbsp; &nbsp; &nbsp; &nbsp; }
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;input&nbsp;{
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;width:&nbsp;100%;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;padding:&nbsp;12px;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;margin:&nbsp;8px&nbsp;0&nbsp;16px&nbsp;0;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;border:&nbsp;1px&nbsp;solid&nbsp;#e0e0e0;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;border-radius:&nbsp;6px;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;box-sizing: border-box;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;font-size:&nbsp;14px;
&nbsp; &nbsp; &nbsp; &nbsp; }
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;input:focus&nbsp;{
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;outline: none;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;border-color:&nbsp;#4a90e2;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;box-shadow:&nbsp;0&nbsp;0&nbsp;5px&nbsp;rgba(74,144,226,0.3);
&nbsp; &nbsp; &nbsp; &nbsp; }
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;input[type="button"]&nbsp;{
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;background-color:&nbsp;#4a90e2;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;color: white;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;border: none;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;cursor: pointer;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;font-weight: bold;
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;transition: background-color&nbsp;0.3s;
&nbsp; &nbsp; &nbsp; &nbsp; }
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;input[type="button"]:hover&nbsp;{
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;background-color:&nbsp;#357abd;
&nbsp; &nbsp; &nbsp; &nbsp; }
&nbsp; &nbsp;&nbsp;</style>
</head>
<body&nbsp;style="background-color:&nbsp;#f5f5f5;">
&nbsp; &nbsp;&nbsp;<div&nbsp;class="input-container">
&nbsp; &nbsp; &nbsp; &nbsp; 姓名:<input&nbsp;type="text"&nbsp;name="username"><br>
&nbsp; &nbsp; &nbsp; &nbsp; 邮箱:<input&nbsp;type="email"&nbsp;name="useremail"><br>
&nbsp; &nbsp; &nbsp; &nbsp; 密码:<input&nbsp;type="password"&nbsp;name="userpwd"><br>
&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;<button&nbsp;type="button"&nbsp;onclick="login()">提交</button>
&nbsp; &nbsp;&nbsp;</div>
</body>
</html>

配置提交按钮后,显示什么内容

创建🎣

可配置域名和ssl

访问模板效果

可借助Ai进行美化。

美化后效果

在后台,便可以看到相关记录

同时还会为你提供相关数据分析

因此,在日常生活中,我们要养成良好的安全意识,谨防🎣网站,🎣邮件。

更多精彩文章 欢迎关注我们


免责声明:

本文所载程序、技术方法仅面向合法合规的安全研究与教学场景,旨在提升网络安全防护能力,具有明确的技术研究属性。

任何单位或个人未经授权,将本文内容用于攻击、破坏等非法用途的,由此引发的全部法律责任、民事赔偿及连带责任,均由行为人独立承担,本站不承担任何连带责任。

本站内容均为技术交流与知识分享目的发布,若存在版权侵权或其他异议,请通过邮件联系处理,具体联系方式可点击页面上方的联系我

本文转载自:kali笔记 大表哥吆 大表哥吆《Apollofish-钓鱼演练平台》

评论:0   参与:  0