traffic-parsing/webdata/search.php

99 lines
3.4 KiB
PHP
Raw Normal View History

2015-03-30 16:59:19 -04:00
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="shortcut icon" href="favicon.ico" />
<title>Traffic Search</title>
</head>
<body>
<div class=header>
2015-08-25 23:37:44 -04:00
<h2>Traffic Monitoring</h2>
2015-03-30 16:59:19 -04:00
<h3>Source IP Search</h3>
<?php include("includes/menu.php"); ?>
</div>
<div class=content>
<h4>Data displayed here is from the last 7 days, and is updated every 5 minutes.</h4>
<!-- MySQL connection to retrieve data for the service selection dropdown -->
<?php
//Include DB Connection Info
include("includes/db_config.php");
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
// Create connection
$conn = new mysqli($servername, $username, $password, $dbname);
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
//Create dropdown
$query = "SELECT port, svc_name FROM commonports ORDER BY port";
$tbllist = mysqli_query($conn, $query);
$options = "";
while ($row = mysqli_fetch_array($tbllist))
{
$id=$row["port"];
$name=$row["svc_name"];
$options.="<option value=\"$id\">$id - $name</option>";
}
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
//Check Connection
if ($conn->connect_error) {
die("Connection Failed: " . $conn->connect_error);
}
$conn->close();
?>
<!-- Service selection and IP entry Form -->
<form>
<p>
Please enter the Source IP address for which you wish to search:
<br>
<input type="text" name="formIP">
<br>
For which service would you like to see data?
<br>
<select name="formPort">
<option value="0">Select a Service</option>
<?php echo $options?>
</select>
<br>
<input name="formSubmit" type="submit" value="Submit">
</p>
</form>
<!-- Run the necessary MySQL queries to retrieve data for the desired service and IP -->
<?php
//Get data from the form submit
if(isset($_GET['formPort']) && is_numeric($_GET['formPort'])){
$varPort = $_GET['formPort'];
}else{
$varPort = 0;
}
if(isset($_GET['formIP'])) {
$varIP = filter_var(trim($_GET['formIP']), FILTER_VALIDATE_IP);
}
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
// Create connection
$conn2 = new mysqli($servername, $username, $password, $dbname);
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
//Check Connection
if ($conn2->connect_error) {
die("Connection Failed: " . $conn2->connect_error);
}
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
//Query
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
$sql = "SELECT src_ip, COUNT(DISTINCT(dst_ip)), COUNT(src_ip) FROM `rawdata` WHERE `src_ip` = '".$varIP."' AND `dst_port` = '".$varPort."'";
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
$result = $conn2->query($sql);
//If there are results, display them in a table
if ($result->num_rows >0) {
echo "Now viewing data for IP: $varIP for Destination Port: $varPort";
echo "<table align='center'><tr><th>Source IP</th><th># of targets</th><th># of connections</th><th>Source Whois</th><th>Destination IPs</th></tr>";
2015-08-25 23:37:44 -04:00
2015-03-30 16:59:19 -04:00
while ($row = $result->fetch_assoc()) {
2015-08-25 23:37:44 -04:00
echo "<tr><td>".$row["src_ip"]."</a></td><td>".$row["COUNT(DISTINCT(dst_ip))"]."</td><td>".$row["COUNT(src_ip)"]."</td><td><a href=http://DOMAIN.com/netdata/whoislookup.php?formIPaddr=".$row["src_ip"]." target=_blank>Whois</a></td><td><a href=http://DOMAIN.com/netdata/destinationips.php?formIP=".$row["src_ip"]."&formPort=$varPort target=_blank>List</a></td></tr>";
2015-03-30 16:59:19 -04:00
}
echo "</table>";
} else {
echo "No Results, something is likely broken.";
}
$conn2->close();
?>
</div>
</body>
</html>