Revision: 7181
          http://sourceforge.net/p/ipcop/svn/7181
Author:   dotzball
Date:     2013-12-05 11:53:46 +0000 (Thu, 05 Dec 2013)
Log Message:
-----------
Don't use crypt() as this is deprecated/insecure. Passwords are truncated to 8 
characters when using this option!

Modified Paths:
--------------
    ipcop/trunk/html/cgi-bin/proxy.cgi

Modified: ipcop/trunk/html/cgi-bin/proxy.cgi
===================================================================
--- ipcop/trunk/html/cgi-bin/proxy.cgi  2013-12-03 05:33:03 UTC (rev 7180)
+++ ipcop/trunk/html/cgi-bin/proxy.cgi  2013-12-05 11:53:46 UTC (rev 7181)
@@ -3257,7 +3257,7 @@
         close(FILE);
     } else {
         &deluser($str_user);
-        system("/usr/sbin/htpasswd -db $userdb $str_user $str_pass");
+        system("/usr/sbin/htpasswd -b $userdb $str_user $str_pass");
     }
 
     if ($str_group eq 'standard') { open(FILE, ">>$stdgrp");

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


------------------------------------------------------------------------------
Sponsored by Intel(R) XDK 
Develop, test and display web and hybrid apps with a single code base.
Download it for free now!
http://pubads.g.doubleclick.net/gampad/clk?id=111408631&iu=/4140/ostg.clktrk
_______________________________________________
Ipcop-svn mailing list
Ipcop-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ipcop-svn

Reply via email to