我正在开发新的应用程序。这是应用程序需要从我的网站获取信息,因此我使用 vb.net 使用 HTTP 请求。
Sub Main()
'Address of URL
Dim URL As String = http://whatever.com
' Get HTML data
Dim client As WebClient = New WebClient()
Dim data As Stream = client.OpenRead(URL)
Dim reader As StreamReader = New StreamReader(data)
Dim str As String = ""
str = reader.ReadLine()
Do While str.Length > 0
Console.WriteLine(str)
str = reader.ReadLine()
Loop
我的问题是,我找到了一个名为 fiddler http://www.fiddler2.com/fiddler2/的应用程序
这个应用程序可以找到使用我的应用程序发出的所有 HTTP 请求,因此这使我的网站处于危险之中。
有什么方法可以隐藏 HTTP 请求不被检测到????