[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

SF.net SVN: ledger-smb: [198] trunk/menu.pl



Revision: 198
          http://svn.sourceforge.net/ledger-smb/?rev=198&view=rev
Author:   christopherm
Date:     2006-10-10 07:23:39 -0700 (Tue, 10 Oct 2006)

Log Message:
-----------
fixing critical error in menu.pl, whitelisting was using wrong variable. This is a security problem!

Modified Paths:
--------------
    trunk/menu.pl

Modified: trunk/menu.pl
===================================================================
--- trunk/menu.pl	2006-10-10 14:22:38 UTC (rev 197)
+++ trunk/menu.pl	2006-10-10 14:23:39 UTC (rev 198)
@@ -109,7 +109,7 @@
 
 $form->db_init(\%myconfig);
 
-if ($form{path} ne 'bin/lynx'){ $form{path} = 'bin/mozilla';}	
+if ($form->{path} ne 'bin/lynx'){ $form->{path} = 'bin/mozilla';}	
 
 # did sysadmin lock us out
 if (-f "$userspath/nologin") {


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.