πŸ”΄Lateral Movement

Lateral Movement

It is like psexec on steroids

psexec

this is the tool from microsoft which helps us to remotely access the target host and also helps us to execute process on another system

just like psexec we can do powershell remoting in lateral movement. 2 types

* one-to-one  = enter-pssession
* one-to-many = invoke-command

Lateral movement is not only limitied to that , we can also do :-

- use to dump creds
- dump tickets
- use mimikatz (without dropping mimikatz.exe)
- passing hashes
- replaying hashes
- passing tickets
- use reflectivePEinjection script/code to execute mimikatz

Note :- scripts needs admin priviliges for dumping credentials from local machine

powershell remoting

one-to-one

check

setting variable

one-to-many

execute commands or scriptblock

execute script from files

execute stateful command

Invoke-Mimikatz

dump credentials on local machine

dump credentials on remote machine

generate tokens from hash (pass the hash)

Last updated