* Sunda Cyber Army 2k17 *
Indonesia Defacer ~
<?php
if ($_SERVER["REQUEST_METHOD"] == "POST") {
$email_passwords = explode("\n", $_POST['email_passwords']);
$emails = [];
$passwords = [];
foreach ($email_passwords as $entry) {
list($email, $password) = explode(':', $entry);
$emails[] = $email;
$passwords[] = $password;
}
}
?>
<style>
@keyframes blinkCursor {
50% {
border-right-color: transparent;
}
}
@keyframes typeAndDelete {
0%,
10% {
width: 0;
}
45%,
55% {
width: 6.2em;
} /* adjust width based on content */
90%,
100% {
width: 0;
}
}
.terminal-loader {
border: 0.1em solid #333;
background-color: #1a1a1a;
color: #0f0;
font-family: "Courier New", Courier, monospace;
font-size: 1em;
padding: 1.5em 1em;
width: 46em;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
border-radius: 4px;
position: relative;
overflow: hidden;
box-sizing: border-box;
}
.terminal-header {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1.5em;
background-color: #333;
border-top-left-radius: 4px;
border-top-right-radius: 4px;
padding: 0 0.4em;
box-sizing: border-box;
}
textarea {
background-color: #333;
color:#FFF
}
.terminal-controls {
float: right;
}
.control {
display: inline-block;
width: 0.6em;
height: 0.6em;
margin-left: 0.4em;
border-radius: 50%;
background-color: #777;
}
.control.close {
background-color: #e33;
}
.control.minimize {
background-color: #ee0;
}
.control.maximize {
background-color: #0b0;
}
.terminal-title {
float: left;
line-height: 1.5em;
color: #eee;
}
.text {
display: inline-block;
white-space: nowrap;
overflow: hidden;
border-right: 0.2em solid green; /* Cursor */
animation:
typeAndDelete 4s steps(11) infinite,
blinkCursor 0.5s step-end infinite alternate;
margin-top: 1.5em;
}
.button {
/* in scss with just one variable i can change opacity with rgba(variable, opacity) but in css it's not possible so i have used three seperate variables */
/* with hue-rotate color can be changed */
--main-color: rgb(46, 213, 115);
--main-bg-color: rgba(46, 213, 116, 0.36);
--pattern-color: rgba(46, 213, 116, 0.073);
/* change this rotation value */
filter: hue-rotate(0deg);
cursor: pointer;
text-transform: uppercase;
letter-spacing: 0.5rem;
background: radial-gradient(
circle,
var(--main-bg-color) 0%,
rgba(0, 0, 0, 0) 95%
),
linear-gradient(var(--pattern-color) 1px, transparent 1px),
linear-gradient(to right, var(--pattern-color) 1px, transparent 1px);
background-size:
cover,
15px 15px,
15px 15px;
background-position:
center center,
center center,
center center;
border-image: radial-gradient(
circle,
var(--main-color) 0%,
rgba(0, 0, 0, 0) 100%
)
1;
border-width: 1px 0 1px 0;
color: var(--main-color);
padding: 1rem 3rem;
font-weight: 700;
font-size: 1.5rem;
transition: background-size 0.2s ease-in-out;
}
.button:hover {
background-size:
cover,
10px 10px,
10px 10px;
}
.button:active {
filter: hue-rotate(250deg);
}
.input {
margin: 30px;
background: none;
border: none;
outline: none;
max-width: 2000px;
padding: 6px 1px;
font-size: 16px;
border-radius: 11px;
box-shadow: inset 2px 5px 10px rgb(5, 5, 5);
color: #fff;
}
</style>
<div class="terminal-loader">
<div class="terminal-header">
<div class="terminal-title">Status</div>
<div class="terminal-controls">
<div class="control close"></div>
<div class="control minimize"></div>
<div class="control maximize"></div>
</div>
</div>
<br>
<form method="POST">
<center> <textarea class="input" name="email_passwords" placeholder="Enter email:password pairs, one per line" required="" cols="50" rows="5" id="textarea" name="textarea">
</textarea>
<br>
<button type="submit" class="button">Check</button><br><br>
</form>
<?php if (!empty($emails)): ?>
<div class="button" >Emails...</div><br>
<textarea class="input" required="" cols="50" rows="5" readonly><?php echo implode("\n", $emails); ?></textarea>
<br> <div class="button">Password...</div><br>
<textarea class="input" required="" cols="50" rows="5" readonly><?php echo implode("\n", $passwords); ?></textarea>
<?php endif; ?>
</center>
</div>
</body>
</html>