-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.php
More file actions
executable file
·82 lines (77 loc) · 3.28 KB
/
index.php
File metadata and controls
executable file
·82 lines (77 loc) · 3.28 KB
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
<?php
session_start();
error_reporting(0);
?>
<!--- Hire Me Please --->
<!DOCTYPE HTML>
<html>
<head>
<title>Facebook Profile Guard</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="icon" type="image/png" href="shieldicon.png">
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand" href="#">FacebookShield</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://github.com/0xearl" target="_blank">Github</a>
</li>
</ul>
</div>
</nav>
<?php
echo $_SESSION['msg']; unset($_SESSION['msg']);
?>
<div class='container'>
<br>
<center>
<img src="shieldicon.png" alt="Profile Guard" style="width: 200px; height: 200px">
<h1>Profile Guard Enabler</h1>
</center>
<div class="w-75 bg-info p-3 m-auto text-center">
<p class='display-4 font-weight-bold text-white'>FAQ</p>
<p class="font-weight-bold text-white">
First try may not work.<br>
To fix this problem login into your device (mobile/computer)
and confirm the request.
</p>
<hr>
<p class="font-weight-bold text-white">
Accounts with 2auth enabled wont work.<br>
To make this work please consider turning 2auth off and on after.
</p>
</div>
<form method="POST" action="shield.php" class="m-2 p-2 m-sm-5">
<div class="form-group ">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" name="username" placeholder="Username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Password">
</div>
<div class="form-group">
<label for="select">Action</label>
<select id="select" class="form-control" name="active">
<option value="true">Enable</option>
<option value="false">Disable</option>
</select>
</div>
<div class="form-group">
<button class="btn btn-primary btn-block" name="submit">Submit</button>
</div>
</form>
</div>
</body>
</html>