Severity: Warning
Message: copy(/var/www/malwaredecoder/index.php): failed to open stream: Permission denied
Filename: models/Decoder_model.php
Line Number: 39
Backtrace:
File: /var/www/malwaredecoder/application/models/Decoder_model.php
Line: 39
Function: copy
File: /var/www/malwaredecoder/application/models/Decoder_model.php
Line: 27
Function: check_restore_file
File: /var/www/malwaredecoder/application/controllers/Decoder.php
Line: 136
Function: decrypt
File: /var/www/malwaredecoder/index.php
Line: 315
Function: require_once
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ππππ | π±ππππ | πππ</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css"
/>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: #eff0f4;
}
.container {
position: relative;
display: flex;
justify-content: center;
align-items: center;
}
.drop {
position: relative;
width: 360px;
height: 360px;
background: #eff0f4;
border-radius: 62% 38% 24% 76% / 59% 60% 40% 41%;
box-shadow: inset 20px 20px 20px rgba(0,0,0,0.05),
25px 35px 20px rgba(0,0,0,0.05),
25px 30px 30px rgba(0,0,0,0.05),
inset -20px -20px 25px rgba(255,255,255,0.9);
display: flex;
justify-content: center;
align-items: center;
transition: 0.5s;
}
.drop::before {
content: '';
position: absolute;
top: 50px;
left: 60px;
width: 35px;
height: 35px;
border-radius: 50%;
background: #fff;
opacity: 0.9;
}
.drop::after {
content: '';
position: absolute;
top: 90px;
left: 120px;
width: 15px;
height: 15px;
border-radius: 50%;
background: #fff;
opacity: 0.9;
}
.drop:hover {
border-radius: 50%;
}
.content {
position: relative;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 20px;
padding: 40px;
}
.content h2 {
font-family: 'Poppins', sans-serif;
color: #333;
font-size: 1.5em;
font-weight: 600;
letter-spacing: 0.03em;
}
form {
display: flex;
flex-direction: column;
align-items: center;
gap: 18px;
}
.input-box {
position: relative;
width: 220px;
border-radius: 25px;
box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
inset -2px -5px 10px rgba(255,255,255,1),
15px 15px 10px rgba(0,0,0,0.05),
15px 10px 15px rgba(0,0,0,0.025);
}
.input-box input {
border: none;
outline: none;
background: transparent;
width: 100%;
font-size: 1em;
padding: 10px 15px;
color: #333;
}
.input-box::before {
content: '';
position: absolute;
top: 8px;
left: 50%;
transform: translateX(-50%);
width: 65%;
height: 5px;
background: rgba(255,255,255,0.5);
border-radius: 5px;
}
.login-btn {
width: 140px;
background: #3a86ff;
color: #fff;
border: none;
outline: none;
cursor: pointer;
border-radius: 25px;
padding: 10px;
box-shadow: inset 2px 5px 10px rgba(0,0,0,0.1),
15px 15px 10px rgba(0,0,0,0.05),
15px 10px 15px rgba(0,0,0,0.025);
transition: 0.3s;
}
.login-btn:hover {
transform: scale(1.05);
}
.btn {
position: absolute;
right: -120px;
bottom: 20px;
width: 95px;
height: 95px;
display: flex;
justify-content: center;
align-items: center;
text-decoration: none;
color: #fff;
font-size: 0.9em;
border-radius: 44% 56% 65% 35% / 57% 58% 42% 43%;
transition: 0.3s;
box-shadow: inset 10px 10px 10px rgba(0,180,216,0.05),
15px 25px 10px rgba(0,180,216,0.1),
15px 20px 20px rgba(0,180,216,0.1),
inset -10px -10px 15px rgba(255,255,255,0.5);
background: #00b4d8;
}
.btn::before {
content: '';
position: absolute;
top: 15px;
left: 30px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
opacity: 0.45;
}
.btn.signup {
background: #f77f00;
bottom: 140px;
right: -120px;
box-shadow: inset 10px 10px 10px rgba(247,127,0,0.05),
15px 25px 10px rgba(247,127,0,0.1),
15px 20px 20px rgba(247,127,0,0.1),
inset -10px -10px 15px rgba(255,255,255,0.5);
}
.btn.signup::before {
left: 25px;
width: 15px;
height: 15px;
}
.btn:hover {
transform: scale(1.05);
border-radius: 50%;
}
@media (max-width: 480px) {
.btn {
right: -100px;
bottom: 20px;
width: 80px;
height: 80px;
}
.btn.signup {
bottom: 130px;
right: -100px;
width: 80px;
height: 80px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="drop">
<div class="content">
<h2 class="animate__heartBeat">ππππ | π±ππππ </h2>
= form_open()
<div class="input-box mb-3">
<input
type="text"
name="username"
id="username"
placeholder="Username"
required minlength="4"
>
if (isset($validation) && $validation->hasError('username')) :
<small class="form-text text-danger">
= $validation->getError('username')
</small>
endif;
</div>
<div class="input-box mb-3">
<input
type="password"
name="password"
id="password"
placeholder="Password"
required minlength="6"
>
if (isset($validation) && $validation->hasError('password')) :
<small class="form-text text-danger">
= $validation->getError('password')
</small>
endif;
</div>
<div class="form-check mb-3">
<label class="form-check-label" title="Keep session more than 30 minutes">
<input type="checkbox" class="form-check-input" name="stay_log" id="stay_log" value="yes">
Stay login?
</label>
</div>
<div class="input-box mb-2">
<input type="submit" value="Login">
</div>
= form_close()
</div>
</div>
<a href="https://t.me/+JSSv4z7fTRllMDFl" class="btn">Ν²εΚεΙ ΙΎΰΈα | αβ‘Ι¨ΠΈ</a>
<a href="= site_url('register')" class="btn signup">αεΙ Ι¨ΚΖεΙΎ | </a>
</div>
</body>
</html>
© 2023 Quttera Ltd. All rights reserved.