This repository has been archived by the owner on May 20, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathsearch-agent-name.php
77 lines (76 loc) · 3.23 KB
/
search-agent-name.php
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
<?php
// include files
require_once("includes/check-authorize.php");
require_once("includes/functions.php");
$empire_agent = "";
if(isset($_GET['search_agent']))
{
$search_agent = urldecode($_GET['search_agent']);
$arr_result = search_agent_name($sess_ip, $sess_port, $sess_token, $search_agent);
if(array_key_exists("error", $arr_result))
{
$empire_agent = "<div class='alert alert-danger'><span class='glyphicon glyphicon-remove'></span> ".ucfirst(htmlentities($arr_result["error"]))."</div>";
}
else
{
if(!empty($arr_result))
{
if(array_key_exists("agents", $arr_result) && !empty($arr_result["agents"][0]))
{
$empire_agent .= "<div class='panel-group'><div class='panel panel-success'><div class='panel-heading'>Agent Name: ".htmlentities($arr_result["agents"][0]["name"])."</a></h4></div><div class='panel-body'>";
$empire_agent .= "<table class='table table-hover table-striped table-bordered'><thead><tr><th>Agent Option</th><th>Agent Value</th></tr></thead><tbody>";
foreach($arr_result["agents"][0] as $key => $value)
{
$key = htmlentities($key);
$value = htmlentities($value);
$empire_agent .= "<tr><td>$key</td><td>$value</td></tr>";
}
$empire_agent .= '</tbody></table>';
$empire_agent .= "</div></div></div><br>";
}
elseif(array_key_exists("agents", $arr_result) && empty($arr_result["agents"][0]))
{
$empire_agent = "<div class='alert alert-danger'><span class='glyphicon glyphicon-remove'></span> Agent not found.</div>";
}
else
{
$empire_agent = "<div class='alert alert-danger'><span class='glyphicon glyphicon-remove'></span> Unexpected response.</div>";
//$empire_agent = $arr_result;
}
}
else
{
$empire_agent = "<div class='alert alert-danger'><span class='glyphicon glyphicon-remove'></span> Unexpected response.</div>";
}
}
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Empire: Search Agent</title>
<?php @require_once("includes/head-section.php"); ?>
</head>
<body>
<div class="container">
<?php @require_once("includes/navbar.php"); ?>
<br>
<div class="panel-group">
<div class="panel panel-primary">
<div class="panel-heading"><span class='glyphicon glyphicon-search'></span> Search Agent by Name</div>
<div class="panel-body">
<form role="form" method="get" action="search-agent-name.php" class="form-inline">
<div class="form-group">
<input type="text" class="form-control" id="search-agent" placeholder="Agent Name" name="search_agent">
</div>
<button type="submit" class="btn btn-success">Search</button>
</form>
<br>
<?php echo $empire_agent; ?>
</div>
</div>
</div><br>
</div>
<?php @require_once("includes/footer.php"); ?>
</body>
</html>