Skip to content

Commit

Permalink
Add initial HTML for fsociety
Browse files Browse the repository at this point in the history
  • Loading branch information
huangsam committed Feb 10, 2018
1 parent ecc43c7 commit 52b3aff
Show file tree
Hide file tree
Showing 4 changed files with 131 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
install
logs/
tools/
.DS_Store
17 changes: 17 additions & 0 deletions content/css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
@font-face {
font-family: "MR ROBOT";
src: url("../fonts/MR ROBOT.ttf");
}

.robot-text {
font-family: 'MR ROBOT', 'Lucida Console';
color: red;
}

.robot-logo {
font-size: 25px;
}

.robot-excerpt {
font-size: 12px;
}
Binary file added content/fonts/MR ROBOT.ttf
Binary file not shown.
113 changes: 113 additions & 0 deletions content/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
<!DOCTYPE html>
<html>
<head>
<title>fsociety</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="./css/style.css">
</head>
<body>
<main class="container">
<div class="px-3 py-3 pt-md-5 pb-md-4 mx-auto text-center">
<h1 class="display-4 robot-text">fsociety</h1>
<p class="lead">A Penetration Testing Framework with every script that a hacker needs.</p>
<p class="robot-excerpt">(Fsociety Contains All Tools Used In Mr Robot Series)</p>
<p class="robot-text robot-logo">Mr. Robot</p>
</div>
<div class="row">
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Information Gathering</h5>
<p class="card-text">Collect host metadata about services and users.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Password Attacks</h5>
<p class="card-text">Crack passwords open with these utilities.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Wireless Testing</h5>
<p class="card-text">Used for intrusion detection and offline brute-force attacks.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Exploitation Tools</h5>
<p class="card-text">Compromise systems and data with service-oriented exploits.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Sniffing &amp; Spoofing</h5>
<p class="card-text">Listen to network traffic or fake a network entity.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Web Hacking</h5>
<p class="card-text">Hack popular websites that are hosted online.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Private Web Hacking</h5>
<p class="card-text">Access unauthorized info about website servers.</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-4 mb-3">
<div class="card">
<div class="card-body">
<h5 class="card-title">Post Exploitation</h5>
<p class="card-text">Maintain control of the machine for later use.</p>
</div>
</div>
</div>
</div>
</main>
<footer class="container pt-4 my-md-5 pt-md-5 border-top">
<div class="row">
<div class="col-12 col-md">
<small class="d-block mb-3 text-muted">&copy; 2017-2018</small>
</div>
<div class="col-6 col-md">
<h5>Top repositories</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="https://github.com/Manisso/fsociety">Manisso/fsociety</a></li>
<li><a class="text-muted" href="https://github.com/Manisso/Crips">Manisso/Crips</a></li>
<li><a class="text-muted" href="https://github.com/Manisso/PyTube">Manisso/PyTube</a></li>
<li><a class="text-muted" href="https://github.com/Manisso/Xshell">Manisso/Xshell</a></li>
</ul>
</div>
<div class="col-6 col-md">
<h5>About</h5>
<ul class="list-unstyled text-small">
<li><a class="text-muted" href="https://github.com/Manisso/fsociety/graphs/contributors">Contributors</a></li>
<li><a class="text-muted" href="https://github.com/Manisso/fsociety/projects">Projects</a></li>
<li><a class="text-muted" href="https://github.com/Manisso/fsociety/issues">Issues</a></li>
<li><a class="text-muted" href="https://github.com/Manisso/fsociety/blob/master/LICENSE">License</a></li>
</ul>
</div>
</div>
</footer>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>

0 comments on commit 52b3aff

Please sign in to comment.