Custom Query (292 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (34 - 36 of 292)

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Ticket Resolution Summary Owner Reporter
#48 fixed Duplicated filenames are listed guest
Description

Hi/2.

Sometimes duplicated filenames are listed while reporting looping error in FIND_NEXT.

KO Myung-Hun

#50 fixed Readable passwords in control files and logs guest
Description

The control files for NetDrive? (*.NDC) and the logs should not contain user-readable passwords. This is a big security hole.

#51 fixed Do not change current user when SWAT is running as apache cgi Paul Smedley Yuri Dario
Description

it is not necessary to change current user when swat runs as cgi application with apache 2.x

Index: cgi.c
===================================================================
--- cgi.c	(revision 106)
+++ cgi.c	(working copy)
@@ -309,6 +309,7 @@
 		exit(0);
 	}
 
+#ifndef __EMX__
 	pwd = getpwnam_alloc(NULL, user);
 	if (!pwd) {
 		printf("%sCannot find user %s<br>%s\n", head, user, tail);
@@ -323,6 +324,7 @@
 		exit(0);
 	}
 	TALLOC_FREE(pwd);
+#endif // __EMX__
 }
 

Also samba-3.0/swat/* must be included in distribution.

2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
Note: See TracQuery for help on using queries.