summaryrefslogtreecommitdiffstats
path: root/usr/local/www/vpn_pppoe_edit.php
diff options
context:
space:
mode:
Diffstat (limited to 'usr/local/www/vpn_pppoe_edit.php')
-rwxr-xr-xusr/local/www/vpn_pppoe_edit.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/vpn_pppoe_edit.php b/usr/local/www/vpn_pppoe_edit.php
index be28b04..39de7fb 100755
--- a/usr/local/www/vpn_pppoe_edit.php
+++ b/usr/local/www/vpn_pppoe_edit.php
@@ -203,7 +203,7 @@ if ($_POST) {
$users = array();
for($x=0; $x<4999; $x++) {
if ($_POST["username{$x}"]) {
- $usernam = $_POST["username{$x}"] . ":" . $_POST["password{$x}"];
+ $usernam = $_POST["username{$x}"] . ":" . base64_encode($_POST["password{$x}"]);
if ($_POST["ip{$x}"])
$usernam .= ":" . $_POST["ip{$x}"];
$users[] = $usernam;
@@ -539,7 +539,7 @@ function enable_change(enable_over) {
foreach($item as $ww) {
$wws = explode(":", $ww);
$user = $wws[0];
- $passwd = $wws[1];
+ $passwd = base64_decode($wws[1]);
$ip = $wws[2];
$tracker = $counter;
?>
OpenPOWER on IntegriCloud