add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -0,0 +1,20 @@
# nxc winrm
> 渗透测试并利用Windows远程管理winrm
> 更多信息请访问:<https://www.netexec.wiki/winrm-protocol>。
- 通过尝试指定的用户名和密码列表中的每种组合来搜索有效凭据:
`nxc winrm {{192.168.178.2}} -u {{path/to/usernames.txt}} -p {{path/to/passwords.txt}}`
- 指定要进行身份验证的域避免初始的SMB连接
`nxc winrm {{192.168.178.2}} -u {{username}} -p {{password}} -d {{domain_name}}`
- 在主机上执行指定的命令:
`nxc winrm {{192.168.178.2}} -u {{username}} -p {{password}} -x {{whoami}}`
- 以管理员身份使用LAPS在主机上执行指定的PowerShell命令
`nxc winrm {{192.168.178.2}} -u {{username}} -p {{password}} --laps -X {{whoami}}`