Gophish:一款功能强大的开源网络钓鱼测试工具
2023-1-9 19:11:12 Author: FreeBuf(查看原文) 阅读量:14 收藏

 关于Gophish 

Gophish是一款功能强大的开源网络钓鱼测试工具,该工具专为企业安全管理人员和渗透测试人员设计,该工具不仅能够帮助广大管理人员对企业员工进行安全意识培训,而且还能够快速轻松地设置和执行网络钓鱼服务。

 工具安装 

Gophish的安装非常简单,广大研究人员只需要访问该项目的【Releases页面】下载并提取zip压缩包,然后直接运行代码文件即可。Gophish提供了针对Windows、macOS和Linux操作系统平台的对应代码。

源码构建

如果你想要自行动手从源码构建Gophish的话,请在本地设备上安装并配置好Go v1.10+版本环境。
首先,我们需要使用下列命令将该项目源码克隆至本地:
git clone https://github.com/gophish/gophish.git
(向右滑动,查看更多)
然后切换到项目根目录下,并运行构建命令:
cd gophishgo build
运行完成后,我们将会看到当前工作目录下出现一个名为gophish的代码文件。

Docker使用

我们也可以直接通过官方Docker容器来使用Gophish。

 工具配置 

运行了Gophish代码后,我们就可以打开浏览器并访问https://localhost:3333,然后使用日志输出中提供的默认用户名和密码登录即可,例如:
time="2020-07-29T01:24:08Z" level=info msg="Please login with the username admin and the password 4304d5255378177d"
(向右滑动,查看更多)
Gophish v0.10.1之前的版本默认用户名为admin,默认密码为gophish。

创建SSL证书和私钥

我们可以使用给下列命令创建SSL证书并生成密钥:
openssl req -newkey rsa:2048 -nodes -keyout gophish.key -x509 -days 365 -out gophish.crt
(向右滑动,查看更多)
上述命令将创建两个文件,即gophish.key和gophish.crt,我们需要将这两个文件移动到Gophish的根目录中,然后在config.json文件中完成配置:
"admin_server" : {
"listen_url" : "127.0.0.1:3333",
"use_tls" : true,
"cert_path" : "gophish.crt",
"key_path" : "gophish.key"
}

(向右滑动,查看更多)

 工具运行 

执行Gophish代码后,我们将会看到如下所示的输出数据:
[email protected]:~/src/github.com/gophish/gophish$ ./gophish
time="2020-06-30T08:04:33-05:00" level=warning msg="No contact address has been configured."
time="2020-06-30T08:04:33-05:00" level=warning msg="Please consider adding a contact_address entry in your config.json"
time="2020-06-30T08:04:33-05:00" level=info msg="Please login with the username admin and the password 1178f855283d03d3"
time="2020-06-30T08:04:33-05:00" level=info msg="Starting phishing server at http://0.0.0.0:80"
time="2020-06-30T08:04:33-05:00" level=info msg="Starting IMAP monitor manager"
time="2020-06-30T08:04:33-05:00" level=info msg="Starting admin server at https://127.0.0.1:3333"
time="2020-06-30T08:04:33-05:00" level=info msg="Background Worker Started Successfully - Waiting for Campaigns"
time="AP monitor for user admin"
(向右滑动,查看更多)

 工具运行截图 

 许可证协议 

本项目的开发与发布遵循MIT开源许可证协议。

 项目地址 

Gophishhttps://github.com/gophish/gophish

参考资料:

https://getgophish.com/
https://hub.docker.com/r/gophish/gophish/

精彩推荐


文章来源: http://mp.weixin.qq.com/s?__biz=MjM5NjA0NjgyMA==&mid=2651213070&idx=4&sn=cc43ccb11ceaea8095b76f6f6f9024e8&chksm=bd1ddf858a6a5693ef3f8c32c3b5f793ef5399f718c59a92301ee3875c8b03bd36ccb09c48d0#rd
如有侵权请联系:admin#unsafe.sh