我在用热点盾 版本 7.4.2,我可以在 Windows cmd 上使用以下命令将其打开:
cd '.\Program Files (x86)\Hotspot Shield\bin\'
.\hsscp.exe -connect
我怎么能够断开它使用命令行吗?
答案1
尝试重置 IP
taskkill /f /im hydra.exe
仅用于断开连接
taskkill /f /im hsscp.exe
答案2
我知道这是一个非常古老的帖子,但这可能对某些人有用。这是一个使用 powershell 的糟糕(过时)黑客攻击,依赖于发送键盘快捷键(查看热点盾的设置 -> 快捷方式)。
# Powershell
Add-Type -AssemblyName Microsoft.VisualBasic
Add-Type -AssemblyName System.Windows.Forms
# This will bring window to the front, (will not open multiple instances of the exe)
Start-Process "C:\Program Files (x86)\Hotspot Shield\10.22.5\bin\hsscp.exe"
Start-Sleep -Seconds 1 # for the window to show
# Activate the Hotspot Shield window to make sure send keys 'hits' the right window
[Microsoft.VisualBasic.Interaction]::AppActivate("Hotspot Shield")
# Send ctrl+shift+c to toggle between connect and disconnect
[System.Windows.Forms.SendKeys]::SendWait("^+c")
# Wait for it to connect/disconnect
Start-Sleep -Seconds 5
# Your adapter may have a different name just use Get-NetAdapter for a list of all adapters
Get-NetAdapter -InterfaceDescription "HotspotShield TAP-Windows Adapter V9" | Select-Object -ExpandProperty Status
#
注意:- 连接需要一段时间,因此在检查状态之前需要等待 5 秒钟 - 断开连接更快。
有人知道为什么“hsscp start”和“hsscp stop”不起作用吗?