任意目录右键打开CMD

新建一个.reg文件,将下面代码放入保存,双击导入注册表即可。

1
2
3
4
5
6
7
Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\Directory\Background\shell\cmd_here]
"ShowBasedOnVelocityId"=dword:00639bc8

[HKEY_CLASSES_ROOT\Directory\Background\shell\cmd_here\command]
@="cmd.exe /s /k pushd \"%V\""

利用PowerShellhttp请求

Invoke-WebRequest url -Method GET -ContentType "application/json"

# 或者控制台下面这个命令试一试
curl -i url
# 发送POST请求
curl -H "Content-Type: application/json" -X POST  --data '{"data":"1"}' http://127.0.0.1/root

curl

命令详解:https://www.cnblogs.com/leizia/p/16322061.html

查询端口

1
2
# 查询端口
netstat -ano|findstr "10.10.98"

(未完待续…)