WinHttpRequest SetProxy 方法详解,设置代理服务器信息

admin 2021年4月3日19:32:54评论120 views字数 6704阅读22分20秒阅读模式

关于该组件详细介绍请参考:Asp、VB WinHttp.WinHttpRequest.5.1 对象使用详解 伪造 HTTP 头信息

以下内容摘自:WinHttpRequest参考手册(在线版)


WinHttpRequest SetProxy 方法详解,设置代理服务器信息。

IWinHttpRequest::SetProxy Method

The SetProxy method sets proxy server information.

语法:

HRESULT SetProxy(
    [in]            HTTPREQUEST_PROXY_SETTING ProxySetting,
    [in, optional]  VARIANT ProxyServer,
    [in, optional]  VARIANT BypassList
);

参数:

ProxySetting[in]

The flags that control this method. Can be one of the following values.

HTTPREQUEST_PROXYSETTING_DEFAULT

Default proxy setting. Equivalent to HTTPREQUEST_PROXYSETTING_PRECONFIG.

HTTPREQUEST_PROXYSETTING_PRECONFIG

Indicates that the proxy settings should be obtained from the registry. This assumes that Proxycfg.exe has been run. If Proxycfg.exe has not been run and HTTPREQUEST_PROXYSETTING_PRECONFIG is specified, then the behavior is equivalent to HTTPREQUEST_PROXYSETTING_DIRECT.

HTTPREQUEST_PROXYSETTING_DIRECT

Indicates that all HTTP and HTTPS servers should be accessed directly. Use this command if there is no proxy server.

HTTPREQUEST_PROXYSETTING_PROXY

When HTTPREQUEST_PROXYSETTING_PROXY is specified, varProxyServer should be set to a proxy server string and varBypassList should be set to a domain bypass list string. This proxy configuration applies only to the current instance of the WinHttpRequest object.

HTTPREQUEST_PROXYSETTING_DEFAULT = 0    '默认代理设置,相当于:HTTPREQUEST_PROXYSETTING_PRECONFIG
HTTPREQUEST_PROXYSETTING_PRECONFIG = 0  '从注册表中读取代理服务器设置
HTTPREQUEST_PROXYSETTING_DIRECT = 1     '所有 HTTP 和 HTTPS 服务器应该直接访问,如果没有代理服务器,则使用此命令
HTTPREQUEST_PROXYSETTING_PROXY = 2      '指定代理配置,这个代理配置只适用于WinHttpRequest对象的当前实例。

ProxyServer[in, optional]

Set to a proxy server string when ProxySetting equals HTTPREQUEST_PROXYSETTING_PROXY.

BypassList[in, optional]

Set to a domain bypass list string when ProxySetting equals HTTPREQUEST_PROXYSETTING_PROXY.

返回值

The return value is S_OK on success or an error value otherwise.

备注

Enables the calling application to specify use of default proxy information (configured by the proxy configuration tool) or to override Proxycfg.exe. This method must be called before calling the Send method. If this method is called after the Send method, it has no effect.

IWinHttpRequest passes these parameters to Microsoft Windows HTTP Services (WinHTTP).

Note For Windows XP and Windows 2000, see the Run-Time Requirements section of the WinHTTP Start Page.

示例

The following example shows how to set the proxy settings for a particular proxy server, open an HTTP connection, send an HTTP request, and read the response text. This example must be run from a command prompt. These proxy settings work only if you have a proxy server named "proxy_server" that uses port 80 and your computer can bypass the proxy server when the host name ends with ".microsoft.com".

#include 
#include 
#include 

#include "httprequest.h"

#pragma comment(lib, "ole32.lib")
#pragma comment(lib, "oleaut32.lib")

// IID for IWinHttpRequest.
const IID IID_IWinHttpRequest =
{
  0x06f29373,
  0x5c5a,
  0x4b54,
  {0xb0, 0x25, 0x6e, 0xf1, 0xbf, 0x8a, 0xbf, 0x0e}
};

int main()
{
    // Variable for return value
    HRESULT    hr;

    // Initialize COM
    hr = CoInitialize( NULL );

    IWinHttpRequest *  pIWinHttpRequest = NULL;

    BSTR            bstrResponse = NULL;
    VARIANT         varFalse;
    VARIANT         varEmpty;
    VARIANT         varProxy;
    VARIANT         varUrl;

    CLSID           clsid;

    VariantInit(&varFalse);
    V_VT(&varFalse)   = VT_BOOL;
    V_BOOL(&varFalse) = VARIANT_FALSE;

    VariantInit(&varEmpty);
    V_VT(&varEmpty) = VT_ERROR;

    VariantInit(&varProxy);
    VariantInit(&varUrl);

    hr = CLSIDFromProgID(L"WinHttp.WinHttpRequest.5.1", &clsid);

    if (SUCCEEDED(hr))
    {
        hr = CoCreateInstance(clsid, NULL,
                              CLSCTX_INPROC_SERVER,
                              IID_IWinHttpRequest,
                              (void **)&pIWinHttpRequest);
    }
    if (SUCCEEDED(hr))
    {   // Specify proxy and URL.
                varProxy.vt = VT_BSTR;
                varProxy.bstrVal = SysAllocString(L"proxy_server:80");
                varUrl.vt = VT_BSTR;
                varUrl.bstrVal = SysAllocString(L"*.microsoft.com");
                hr = pIWinHttpRequest->SetProxy(HTTPREQUEST_PROXYSETTING_PROXY,
                                    varProxy, varUrl);
        }
    if (SUCCEEDED(hr))
    {   // Open WinHttpRequest.
            BSTR bstrMethod  = SysAllocString(L"GET");
                BSTR bstrUrl = SysAllocString(L"http://microsoft.com");
        hr = pIWinHttpRequest->Open(bstrMethod, bstrUrl, varFalse);
                SysFreeString(bstrMethod);
                SysFreeString(bstrUrl);
    }
    if (SUCCEEDED(hr))
    {   // Send Request.
        hr = pIWinHttpRequest->Send(varEmpty);
    }
    if (SUCCEEDED(hr))
    {   // Get Response text.
                hr = pIWinHttpRequest->get_ResponseText(&bstrResponse);
    }
    if (SUCCEEDED(hr))
    {   // Print the response to a console.
                wprintf(L"%.256s",bstrResponse);
    }

        // Release memory.
    if (pIWinHttpRequest)
        pIWinHttpRequest->Release();
        if (varProxy.bstrVal)
                SysFreeString(varProxy.bstrVal);
        if (varUrl.bstrVal)
                SysFreeString(varUrl.bstrVal);
    if (bstrResponse)
        SysFreeString(bstrResponse);

        CoUninitialize();
        return 0;
}

The following scripting example shows how to set the proxy settings for a particular proxy server, open an HTTP connection, send an HTTP request, and read the response text. These proxy settings work only if you have a proxy server named "proxy_server" that uses port 80 and your computer can bypass the proxy server when the host name ends with ".microsoft.com".

// HttpRequest SetCredentials flags.
HTTPREQUEST_PROXYSETTING_DEFAULT   = 0;
HTTPREQUEST_PROXYSETTING_PRECONFIG = 0;
HTTPREQUEST_PROXYSETTING_DIRECT    = 1;
HTTPREQUEST_PROXYSETTING_PROXY     = 2;

// Instantiate a WinHttpRequest object.
var WinHttpReq = new ActiveXObject("WinHttp.WinHttpRequest.5.1");

// Use proxy_server for all requests outside of
// the microsoft.com domain.
WinHttpReq.SetProxy( HTTPREQUEST_PROXYSETTING_PROXY,
                     "proxy_server:80",
                     "*.microsoft.com");

// Initialize an HTTP request.
WinHttpReq.Open("GET", "http://www.microsoft.com", false);

// Send the HTTP request.
WinHttpReq.Send();

// Display the response text.
WScript.Echo( WinHttpReq.ResponseText);

配置要求

Minimum supported client

Windows XP, Windows 2000 Professional with SP3

Minimum supported server

Windows Server 2003, Windows 2000 Server with SP3

Redistributable

WinHTTP 5.0 and Internet Explorer 5.01 or later on Windows XP and Windows 2000.

IDL

HttpRequest.idl

Library

Winhttp.lib

DLL

Winhttp.dll


WinHttpRequest SetProxy 方法设置代理服务器实例(VB 6.0 ):

Private Sub Form_Load()
    Dim WinHttp  As Object
    Set WinHttp = CreateObject("WinHttp.WinHttpRequest.5.1")
    '---------------------------------------------------------------------------
    'HTTPREQUEST_PROXYSETTING_DEFAULT = 0                                        '默认代理设置,相当于:HTTPREQUEST_PROXYSETTING_PRECONFIG
    'HTTPREQUEST_PROXYSETTING_PRECONFIG = 0                                      '从注册表中读取代理服务器设置
    'HTTPREQUEST_PROXYSETTING_DIRECT = 1                                         '所有 HTTP 和 HTTPS 服务器应该直接访问,如果没有代理服务器,则使用此命令
    'HTTPREQUEST_PROXYSETTING_PROXY = 2                                          '指定代理配置,这个代理配置只适用于WinHttpRequest对象的当前实例。
    WinHttp.SetProxy 2, "103.3.47.35:8080"                                      ', "*.microsoft.com"
    'WinHttp.SetProxy HTTPREQUEST_PROXYSETTING_PROXY, "代理IP:端口", "[可以为空,值为目标地址域名]"
    '---------------------------------------------------------------------------
    WinHttp.Open "GET", "http://iframe.ip138.com/city.asp", False               'GET 或 POST, Url, False 同步方式;True 异步方式
    WinHttp.SetRequestHeader "Accept", "*/*"                                    '接受数据类型
    WinHttp.SetRequestHeader "Accept-Language", "zh-cn,zh"                      '用户系统语言
    WinHttp.SetRequestHeader "User-Agent", "Mozilla/6.0"                        '用户浏览器信息
    WinHttp.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded" '编码方式
    WinHttp.SetRequestHeader "Connection", "Close"                              'Close = 不保持连接,Keep-Alive = 保持连接(持久连接)
    WinHttp.Send
    MsgBox WinHttp.ResponseText
End Sub

文章来源于lcx.cc:WinHttpRequest SetProxy 方法详解,设置代理服务器信息

相关推荐: phpcms 本地包含漏洞导致的写 shell 漏洞和删除任意文件漏洞

    by:[email protected]     phpcms2008 sp2 or sp4 偶没仔细看。phpcms本地包含拿shell的方法,这篇文章接上一个:《phpcms的phpcms_auth导致的任意变量覆盖漏洞、本地文件包含漏洞和…

  • 左青龙
  • 微信扫一扫
  • weinxin
  • 右白虎
  • 微信扫一扫
  • weinxin
admin
  • 本文由 发表于 2021年4月3日19:32:54
  • 转载请保留本文链接(CN-SEC中文网:感谢原作者辛苦付出):
                   WinHttpRequest SetProxy 方法详解,设置代理服务器信息https://cn-sec.com/archives/323389.html

发表评论

匿名网友 填写信息