Skip to content
This repository has been archived by the owner on Dec 11, 2018. It is now read-only.

Commit

Permalink
Merge pull request #21 from giMini/master
Browse files Browse the repository at this point in the history
Gpup.md
  • Loading branch information
api0cradle committed May 21, 2018
2 parents f549508 + 63bccb2 commit c5aa721
Show file tree
Hide file tree
Showing 5 changed files with 102 additions and 0 deletions.
2 changes: 2 additions & 0 deletions LOLBins.md
Expand Up @@ -91,6 +91,8 @@ If you are missing from the acknowledgement, please let me know (I did not forge


# OTHER NON MICROSOFT BINARIES
[AcroRd32.exe](OtherBinaries/AcroRd32.md)
[Gpup.exe](OtherBinaries/Gpup.md)
[Nlnotes.exe](OtherBinaries/Nlnotes.md)
[Notes.exe](OtherBinaries/Notes.md)
[Nvuhda6.exe](OtherBinaries/Nvuhda6.md)
Expand Down
1 change: 1 addition & 0 deletions LOLLibs.md
Expand Up @@ -7,6 +7,7 @@ If you are missing from the acknowledgement, please let me know (I did not forge
[Advpack.dll](OSLibraries/Advpack.md)
[Ieadvpack.dll](OSLibraries/Ieadvpack.md)
[Ieframe.dll](OSLibraries/Ieframe.md)
[Mshtml.dll](OSLibraries/Mshtml.md)
[Pcwutl.dll](OSLibraries/Pcwutl.md)
[Shdocvw.dll](OSLibraries/Shdocvw.md)
[Zipfldr.dll](OSLibraries/Zipfldr.md)
Expand Down
43 changes: 43 additions & 0 deletions OSLibraries/Mshtml.md
@@ -0,0 +1,43 @@
## Mshtml.dll

* Functions: Execute

```
rundll32.exe Mshtml.dll,PrintHTML "C:\temp\calc.hta"
```

Acknowledgements:
* Pierre-Alexandre Braeken - @pabraeken

Code sample (calc.hta):
```
<html>
<head>
<title>LOLBin</title>
<script language="VBScript">
Sub RunProgram
Set objShell = CreateObject("Wscript.Shell")
objShell.Run "c:\windows\system32\calc.exe"
Self.Close
End Sub
</script>
</head>
<body onload="RunProgram">
<h1>LOLBin</h1>
</body>
</html>
```

Resources:
* https://twitter.com/pabraeken/status/998567549670477824

Full path:
```
c:\windows\system32\Mshtml.dll
c:\windows\sysWOW64\Mshtml.dll
```

Notes:


Detection:
27 changes: 27 additions & 0 deletions OtherBinaries/AcroRd32.md
@@ -0,0 +1,27 @@
## AcroRd32.exe

* Prerequisites

```
Replace C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\AcroCEF\RdrCEF.exe by your binary
```

* Functions: Execute

```
Run AcroRd32.exe
```

Acknowledgements:
* Pierre-Alexandre Braeken - @pabraeken

Code sample:
*

Resources:
* https://twitter.com/pabraeken/status/997997818362155008

Full path:
```
C:\Program Files (x86)\Adobe\Acrobat Reader DC\Reader\
```
29 changes: 29 additions & 0 deletions OtherBinaries/Gpup.md
@@ -0,0 +1,29 @@
## Gpup.exe

* Functions: Execute

```
Gpup.exe -w whatever -e c:\Windows\System32\calc.exe
```

Acknowledgements:
* Pierre-Alexandre Braeken - @pabraeken

Code sample:
*

Resources:
* https://twitter.com/pabraeken/status/997892519827558400


Full path:
```
C:\Program Files (x86)\Notepad++\updater\gpup.exe
```

Notes:
Used by Notepad++




0 comments on commit c5aa721

Please sign in to comment.