Linux vps-4302913.novaexata.com.br 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.156
166 Domain
7.3.33
wwnova
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
/
usr /
share /
systemtap /
examples /
stapgames /
tapset /
[ HOME SHELL ]
Name
Size
Permission
Action
audio.stp
1.85
KB
-rw-r--r--
cursor.stp
962
B
-rw-r--r--
game.stp
660
B
-rw-r--r--
gmtty.stp
1.11
KB
-rw-r--r--
input.stp
2.34
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cursor.stp
# ANSI Escape sequences # Copyright (C) 2008 Masami Hiramatsu <masami.hiramatsu@gmail.com> # # This file is free software and is distributed under the terms of the GNU # General Public License (GPL); either version 2, or (at your option) any # later version. /* * cursor_move * * Move cursor to x-y position */ function cursor_move(x:long, y:long) { printf("\033[%d;%dH", y, x) } function cursor_cls() { print("\033[1;1H\033[J") } function cursor_show() { print("\033[>5h") } function cursor_hide() { print("\033[>5I") } function cursor_save() { print("\033[s") } function cursor_restore() { print("\033[u") } function cursor_set_color(parm1:long) { printf("\033[%dm", parm1) } function cursor_set_color2(parm1:long, parm2:long) { printf("\033[%d;%dm", parm1, parm2) } function cursor_set_color3(parm1:long, parm2:long, parm3:long) { printf("\033[%d;%d;%dm", parm1, parm2, parm3) } function cursor_reset_color() { cursor_set_color2(0,0) }
Close