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 pathabout.php
28 lines (27 loc) · 1.45 KB
/
about.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
<?php session_start(); ?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Empire: About</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-info-sign'></span> About PowerShell Empire Web v2.0</div>
<div class="panel-body">
PowerShell Empire Web utilizes the <a href="https://github.com/EmpireProject/Empire/wiki/RESTful-API">Empire REST API Server</a>. It is a web interface for using <a href="https://github.com/EmpireProject/Empire/">PowerShell Empire</a>.<br><br>
Empire Web created by <a href="https://twitter.com/xploresec">@xploresec</a><br><br>
<a href="https://twitter.com/xploresec"><img src="img/twitter.png" style="width:48px; height:48px;"></a>
<a href="https://github.com/interference-security/empire-web/"><img src="img/github.png" style="width:48px; height:48px;"></a>
<a href="https://in.linkedin.com/in/abhineet-jayaraj-07788b61/"><img src="img/linkedin.png" style="width:48px; height:48px;"></a>
</div>
</div>
</div>
</div>
<?php @require_once("includes/footer.php"); ?>
</body>
</html>