Skip to content
KitploitKITPLOIT
ToolsBlog
Einreichen
ToolsBlog
Einreichen

Hacking-, PenTest- und Cybersicherheits-Tools für Ihr Sicherheitsarsenal!

Kitploit ist ein Verzeichnis von Hacking-, Cybersicherheits- und Pentesting-Tools. Entdecken Sie die neuesten Projekt-Updates, um Schwachstellen zu finden, Systeme zu analysieren, Tests zu automatisieren und Ihre Sicherheit zu stärken.

··Feeds·Kontakt·Datenschutz·© 2026 Kitploit

Tool-Verzeichnis

Kategorien

Alle Kategorien anzeigen
Loading categories
WSMan-WinRM — Eine Sammlung von Proof-of-Concept-Quellcode und Skripten zur Ausführung von Remote-Befehlen über WinRM mithilfe des WSMan.Automation COM-Objekts | Kitploit
Tools/GitHubGitHub/bohops/wsman-winrm
Laterale BewegungPenetrationstestsRed TeamingRemote-Access-Tool
GitHubbohops/wsman-winrm

WSMan-WinRM

Eine Sammlung von Proof-of-Concept-Quellcode und Skripten zur Ausführung von Remote-Befehlen über WinRM mithilfe des WSMan.Automation COM-Objekts

Repository anzeigen
26244vor 6 JahrenVon Kitploit geprüft

Beliebteste

Alle anzeigen →

Entdecken Sie die meistgenutzten Tools unserer Community.

Alle Tools erkunden

Durchsuchen Sie unsere Tool-Sammlung

Alle Tools anzeigen →
Teilen

WSMan-WinRM

Eine Sammlung von Proof-of-Concept-Quellcode und Skripten zur Ausführung von Remote-Befehlen über WinRM unter Verwendung des WSMan.Automation COM-Objekts.

Hintergrund

Hintergrundinformationen finden Sie im folgenden Blogbeitrag: WS-Management COM: Another Approach for WinRM Lateral Movement

Hinweise

  • SharpWSManWinRM.cs und CppWsManWinRM.cpp lassen sich in Visual Studio 2019 kompilieren. Beachten Sie die Code-Kommentare für erforderliche Importe/Referenzen/etc.
  • Alle Beispiele nutzen die WMI-Klasse Win32_Process und die WMI-Methode Create zur Ausführung.

Verwendung

SharpWSManWinRM.cs

root@kitploit:~
 Usage: SharpWSManWinRM.exe <hostname> <command>
 Usage: SharpWSManWinRM.exe <hostname> <command> <domain\user> <password>

 Example: SharpWSManWinRM.exe host.domain.local notepad.exe
 Example: SharpWSManWinRM.exe host.domain.local "cmd /c notepad.exe" domain\joe.user P@ssw0rd

WSManWinRM.ps1

root@kitploit:~
 Usage: Invoke-WSManWinRM -hostname <hostname> -command <command>
 Usage: Invoke-WSManWinRM -hostname <hostname> -command <command> -user <domain\user> -password <password>

 Example: import-module .\WSManWinRM.ps1
          Invoke-WSManWinRM -hostname MyServer.domain.local -command calc.exe
 Example: import-module .\WSManWinRM.ps1
          Invoke-WSManWinRM -hostname MyServer.domain.local -command calc.exe -user domain\joe.user -password P@ssw0rd

WSManWinRM.vbs

root@kitploit:~
 Usage: cscript.exe SharpWSManWinRM.vbs <hostname> <command>
 Usage: cscript.exe SharpWSManWinRM.vbs <hostname> <command> <domain\user> <password>

 Example: cscript.exe SharpWSManWinRM.vbs host.domain.local notepad.exe
 Example: cscript.exe SharpWSManWinRM.vbs host.domain.local "cmd /c notepad.exe" domain\joe.user P@ssw0rd	

WSManWinRM.js

root@kitploit:~
 Usage: cscript.exe SharpWSManWinRM.js <hostname> <command>
 Usage: cscript.exe SharpWSManWinRM.js <hostname> <command> <domain\user> <password>

 Example: cscript.exe SharpWSManWinRM.js host.domain.local notepad.exe
 Example: cscript.exe SharpWSManWinRM.js host.domain.local "cmd /c notepad.exe" domain\joe.user P@ssw0rd	 

CppWSManWinRM.cpp

root@kitploit:~
 Usage: CppWSManWinRM.exe <hostname> <command>

 Example: CppWSManWinRM.exe host.domain.local notepad.exe
 
 Note: Username/password option does not work yet

Ethik

WSMan-WinRM wurde entwickelt, um Sicherheitsexperten bei ethischen und legalen Sicherheitsbewertungen und Penetrationstests zu unterstützen. Nicht für unlautere Zwecke verwenden.

Tool herunterladen