Usando proxies no PowerShell
Proxies no PowerShell
O PowerShell é uma ferramenta poderosa de automação no Windows. Trabalhar com proxies é essencial para scripts que rodam em redes corporativas ou que exigem anonimato.
Invoke-WebRequest com proxies
Requisição básica via proxy
$proxy = "http://proxy_ip:8080"
$response = Invoke-WebRequest -Uri "https://httpbin.org/ip" -Proxy $proxy
$response.Content
Com autenticação
$proxy = "http://proxy_ip:8080"
$proxyCred = New-Object System.Management.Automation.PSCredential(
"username",
(ConvertTo-SecureString "password" -AsPlainText -Force)
)
$response = Invoke-WebRequest -Uri "https://httpbin.org/ip" `
-Proxy $proxy `
-ProxyCredential $proxyCred
$response.Content
Invoke-RestMethod (para API JSON)
$proxy = "http://proxy_ip:8080"
$result = Invoke-RestMethod -Uri "https://httpbin.org/ip" -Proxy $proxy
$result.origin # seu IP através do proxy
System.Net.WebProxy
Configuração programática
$webProxy = New-Object System.Net.WebProxy("http://proxy_ip:8080", $true)
$webProxy.Credentials = New-Object System.Net.NetworkCredential("user", "pass")
# Aplicar ao WebClient
$client = New-Object System.Net.WebClient
$client.Proxy = $webProxy
$result = $client.DownloadString("https://httpbin.org/ip")
Write-Host $result
Ignorar o proxy para endereços específicos
$webProxy = New-Object System.Net.WebProxy("http://proxy_ip:8080", $true)
$webProxy.BypassList = @("localhost", "*.local", "192.168.*")
$webProxy.BypassProxyOnLocal = $true
HttpClient (.NET)
Para cenários avançados, use o HttpClient do .NET:
$proxy = New-Object System.Net.WebProxy("http://proxy_ip:8080")
$proxy.Credentials = New-Object System.Net.NetworkCredential("user", "pass")
$handler = New-Object System.Net.Http.HttpClientHandler
$handler.Proxy = $proxy
$handler.UseProxy = $true
$client = New-Object System.Net.Http.HttpClient($handler)
$response = $client.GetStringAsync("https://httpbin.org/ip").Result
Write-Host $response
Proxy do sistema
Lendo as configurações atuais
# A partir do registro do Windows
$regPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
$proxyEnabled = (Get-ItemProperty -Path $regPath).ProxyEnable
$proxyServer = (Get-ItemProperty -Path $regPath).ProxyServer
Write-Host "Proxy enabled: $proxyEnabled"
Write-Host "Proxy server: $proxyServer"
Definindo o proxy do sistema
$regPath = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Internet Settings"
# Ativar o proxy
Set-ItemProperty -Path $regPath -Name ProxyEnable -Value 1
Set-ItemProperty -Path $regPath -Name ProxyServer -Value "proxy_ip:8080"
# Exceções
Set-ItemProperty -Path $regPath -Name ProxyOverride -Value "localhost;*.local"
Write-Host "Proxy configured"
Desativando o proxy do sistema
Set-ItemProperty -Path $regPath -Name ProxyEnable -Value 0
Write-Host "Proxy disabled"
Variáveis de ambiente
Definição
$env:HTTP_PROXY = "http://proxy_ip:8080"
$env:HTTPS_PROXY = "http://proxy_ip:8080"
$env:NO_PROXY = "localhost,*.local"
Definição persistente
[Environment]::SetEnvironmentVariable("HTTP_PROXY", "http://proxy_ip:8080", "User")
[Environment]::SetEnvironmentVariable("HTTPS_PROXY", "http://proxy_ip:8080", "User")
Verificação
Write-Host "HTTP_PROXY: $env:HTTP_PROXY"
Write-Host "HTTPS_PROXY: $env:HTTPS_PROXY"
Rotação de proxies em scripts
$proxies = @(
"http://user:pass@proxy1:8080",
"http://user:pass@proxy2:8080",
"http://user:pass@proxy3:8080"
)
$urls = @(
"https://httpbin.org/ip",
"https://httpbin.org/headers",
"https://httpbin.org/user-agent"
)
foreach ($url in $urls) {
$proxy = $proxies | Get-Random
try {
$response = Invoke-RestMethod -Uri $url -Proxy $proxy -TimeoutSec 10
Write-Host "OK: $url via $proxy"
Write-Host $response
} catch {
Write-Host "FAIL: $url via $proxy - $($_.Exception.Message)"
}
}
Teste de proxy
function Test-Proxy {
param(
[string]$ProxyServer,
[string]$ProxyPort,
[string]$Username,
[string]$Password
)
$proxy = "http://${ProxyServer}:${ProxyPort}"
$cred = $null
if ($Username) {
$cred = New-Object System.Management.Automation.PSCredential(
$Username,
(ConvertTo-SecureString $Password -AsPlainText -Force)
)
}
try {
$params = @{
Uri = "https://httpbin.org/ip"
Proxy = $proxy
TimeoutSec = 10
}
if ($cred) { $params.ProxyCredential = $cred }
$response = Invoke-RestMethod @params
Write-Host "OK - IP: $($response.origin)" -ForegroundColor Green
return $true
} catch {
Write-Host "FAIL - $($_.Exception.Message)" -ForegroundColor Red
return $false
}
}
# Uso
Test-Proxy -ProxyServer "proxy_ip" -ProxyPort "8080" -Username "user" -Password "pass"
Teste de proxies em massa
$proxyList = Get-Content "proxies.txt" # formato: ip:port:user:pass
$results = foreach ($line in $proxyList) {
$parts = $line.Split(":")
$ip = $parts[0]; $port = $parts[1]
$user = $parts[2]; $pass = $parts[3]
$proxy = "http://${ip}:${port}"
try {
$cred = New-Object PSCredential($user, (ConvertTo-SecureString $pass -AsPlainText -Force))
$resp = Invoke-RestMethod "https://httpbin.org/ip" -Proxy $proxy -ProxyCredential $cred -TimeoutSec 5
[PSCustomObject]@{Proxy=$line; Status="OK"; IP=$resp.origin}
} catch {
[PSCustomObject]@{Proxy=$line; Status="FAIL"; IP="N/A"}
}
}
$results | Format-Table -AutoSize
$results | Export-Csv "proxy_check_results.csv" -NoTypeInformation
Conclusão
O PowerShell oferece ferramentas flexíveis para trabalhar com proxies: de cmdlets simples (Invoke-WebRequest) até a API completa do .NET. A possibilidade de gerenciar o proxy do sistema pelo registro e pelas variáveis de ambiente torna o PowerShell ideal para automatizar a configuração de proxy em máquinas Windows.
