
एक उपकरण जो PowerShell Remoting / WinRM का उपयोग करके WinRM डबल हॉप तकनीक के माध्यम से रिमोट होस्ट पर PowerShell कमांड निष्पादित करता है।
यह उपकरण PowerShell Remoting / WinRM का उपयोग करके दूरस्थ होस्टों पर PowerShell कमांड को WinRM डबल हॉप तकनीक के माध्यम से निष्पादित करने में सहायता करने के लिए है।
यह उपकरण मानता है कि आपके पास आंतरिक नेटवर्क और CLI पहुँच है।
doublehop Usage():
-c string
Command we are executing.
-j string
Host we are executing command against.
-l string
Inital host we are jumping from.
-m string
Add hosts comma seperated. FORMAT: 'host1,host2'
-p string
Password for user
-u string
FORMAT: 'DOMAIN\USER' we are authenticating with.
# Execute against single host:
doublehop.exe -u "acme.local\pwneduser" -p "MySecurePass" -l wks01.acme.local -j server1.acme.local -c ipconfig
# Execute against multiple jump systems:
doublehop.exe -u "acme.local\pwneduser" -p "MySecurePass" -l wks01.acme.local -m "server1.acme.local,server2.amce.local" -c ipconfig