Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to debug ASP permission problems with WScript.Shell object?

I have to run command line operation from some legacy ASP application.

Here is my code:

<%
    cmd = "%comspec% /c echo Hello"    

    set wsh = CreateObject("WScript.Shell")
    ireturn = wsh.Run(cmd, 0, true)
    set wsh = nothing
%>

And here is result I am receiving:

Microsoft VBScript runtime error '800a0046'

Permission denied

/test.asp, line 6

Do you have any idea how to make IIS6 to run this code?

Note: Of course I don't have to run echo command but I want to exclude any additional causes of the problem.

Update: I tried most things tomalaks mention however nothing helped. Maybe I can alter question a little. How can I debug this problem?

like image 807
Jakub Šturc Avatar asked May 22 '09 10:05

Jakub Šturc


1 Answers

ASP usually is denied access to anything potentially dangerous, such as cmd.exe. Check file permissions on cmd.exe to see if that is true for you (I suppose it is).

If you really must use cmd.exe to do part of the page processing, either change file permissions on cmd.exe (not recommended for an Internet-facing web-server), or make sure that the ASP page runs credentials that are not denied access to that file.

To achieve this, use the IIS management console to remove "anonymous access" to the ASP page and use Windows-integrated authentication instead (if feasible), or leave "anonymous access" on and enter a fixed set of credentials that should be used instead of the default "IUSR_...".

Alternatively, if you use cmd.exe just to start a program that outputs something to STDOUT, you can try starting the program directly, without wrapping it in a cmd.exe call. Again, the user the ASP page runs under needs access to that program's executable.

like image 111
Tomalak Avatar answered Nov 11 '22 23:11

Tomalak