Edmund Urbani wrote:
Vaclav Kaspar wrote:
I want to prevent these example situations
user user1 have in his jsp script something like
FileWriter fw = new FileWriter("/home/USER2/somefile");
fw.write("blablabla");
fw.close();
or
File f = new File(/home/USER2/);
String
Pid wrote:
Do you want to prevent all users from access the file system, or permit
individual users access to their own part?
Peter Crowther wrote:
From: Vaclav Kaspar [mailto:[EMAIL PROTECTED]
For security reasons I
need JSP scripts to run under different users
A single JVM runs
Hello,
I am hosting several domains on one server. For security reasons I
need JSP scripts to run under different users, to avoid users from one
domain rewriting or reading files of another user through JSP scripts
. In apache and PHP it's solved by SuPHP module. Is anything similar
poss