Tagged Questions

1
vote
1answer
532 views

PHP exec/shell_exec/system not working through browser

I am running an SCO Unix box with apache version 1.3.33 and PHP version 4.4. I can properly execute the exec command through the cli, but run into trouble with trying to execute the script via a ...
1
vote
1answer
157 views

Starting screen from PHP to execute intensive Java application

I am wondering how to start a screen session from PHP, I have tried with shell_exec(), system() and passthru(), but no avail. I have gotten the screen session started for the execution time of the ...
1
vote
1answer
2k views

Exec() in PHP on Windows without opening up cmd.exe Security weakness?

I have the requirement for a web script to execute an exe file and then return the results on the exe to the web request. I can either echo back the result of the exe or modify the exe to save it's ...