powershell 配置sqlmap
New-Item -Type file -Force $profile
cd .\Documents\PowerShell\
notepad.exe .\Microsoft.PowerShell_profile.ps1
function sqlmapFun{
? ? python F:\pentest\sqlmap\sqlmap.py @Args
}
Set-Alias sqlmap sqlmapFun
powershell配置代理
$Env:http_proxy="http://127.0.0.1:7890";$Env:https_proxy="http://127.0.0.1:7890"
$Env相關(guān)知識
dir env:
PS D:\Documents\PowerShell> $env:http_proxy
http://127.0.0.1:7890
PS D:\Documents\PowerShell> $env:https_proxy
http://127.0.0.1:7890