/usr/share/ipplan/user/emailswip.php is in ipplan 4.92a-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | <?php
// IPplan v4.92a
// Aug 24, 2001
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
require_once("../ipplanlib.php");
require_once("../adodb/adodb.inc.php");
require_once("../class.dbflib.php");
require_once("../layout/class.layout");
require_once("swiplib.php");
require_once("../auth.php");
$auth = new SQLAuthenticator(REALM, REALMERROR);
// And now perform the authentication
$grps=$auth->authenticate();
// save the last customer used
// must set path else Netscape gets confused!
setcookie("ipplanCustomer","$cust",time() + 10000000, "/");
// set language
isset($_COOKIE["ipplanLanguage"]) && myLanguage($_COOKIE['ipplanLanguage']);
//setdefault("window",array("bgcolor"=>"white"));
//setdefault("table",array("cellpadding"=>"0"));
//setdefault("text",array("size"=>"2"));
$title=my_("Registrar information sent");
newhtml($p);
$w=myheading($p, $title, true);
// explicitly cast variables as security measure against SQL injection
list($baseindex, $ntnameopt, $cust, $filename) = myRegister("A:baseindex I:ntnameopt I:cust S:filename");
// extra protection on filename passed!
$filename=basename($filename);
if (!$_POST) {
myError($w,$p, my_("You cannot reload or bookmark this page!"));
}
if (empty($baseindex)) {
myError($w,$p, my_("No registrar updates selected to send"));
}
// basic sequence is connect, search, interpret search
// result, close connection
$ds=new IPplanDbf() or myError($w,$p, my_("Could not connect to database"));
// check if user belongs to customer admin group
$result=$ds->GetCustomerGrp($cust);
// can only be one row - does not matter if nothing is
// found as array search will return false
$row = $result->FetchRow();
if (!in_array($row["admingrp"], $grps)) {
myError($w,$p, my_("You may not send a registrar update for this customer as you are not a member of the customers admin group"));
}
$formerror="";
$cnt=0;
foreach($baseindex as $key => $value) {
$value=floor($value); // dont trust values posted
$result=$ds->GetBaseFromIndex($value);
$row = $result->FetchRow();
$baseip=inet_ntoa($row["baseaddr"]);
$size=$row["subnetsize"];
$swipmod=$row["swipmod"];
$swip=genSWIP($ds, $value, $baseip,
inet_ntoa($row["baseaddr"]+$size-1),
$cust, $row["descrip"], $swipmod, $filename);
insert($w,block("<pre>"));
insert($w,text($swip));
insert($w,block("</pre><hr>"));
$err=emailSWIP($swip);
// on email error, fail
if ($err) {
$formerror .= my_("E-mail message was not sent")."\n";
$formerror .= my_("Mailer Error: ") . $err;
break;
}
$result=&$ds->ds->Execute("UPDATE base
SET swipmod=".$ds->ds->DBTimeStamp(time())."
WHERE baseindex=$value");
$ds->AuditLog(array("event"=>190, "action"=>"send swip",
"user"=>getAuthUsername(), "baseaddr"=>$baseip, "template"=>$filename,
"size"=>$size, "cust"=>$cust));
}
myError($w,$p, $formerror, FALSE);
insert($w,block("<p>"));
printhtml($p);
?>
|