|
5 | 5 | import dev.skidfuscator.obf.init.SkidSession;
|
6 | 6 | import dev.skidfuscator.obf.utils.MapleJarUtil;
|
7 | 7 | import org.mapleir.deob.PassGroup;
|
| 8 | +import org.mapleir.ir.code.expr.InstanceofExpr; |
8 | 9 |
|
9 | 10 | import java.io.File;
|
| 11 | +import java.time.Instant; |
| 12 | +import java.util.Calendar; |
| 13 | +import java.util.Date; |
10 | 14 |
|
11 | 15 | /**
|
12 | 16 | * @author Ghast
|
@@ -50,6 +54,26 @@ public void init() {
|
50 | 54 | }
|
51 | 55 | }
|
52 | 56 |
|
| 57 | + final String[] logo = new String[] { |
| 58 | + "", |
| 59 | + " /$$$$$$ /$$ /$$ /$$ /$$$$$$ /$$", |
| 60 | + " /$$__ $$| $$ |__/ | $$ /$$__ $$ | $$", |
| 61 | + "| $$ \\__/| $$ /$$ /$$ /$$$$$$$| $$ \\__//$$ /$$ /$$$$$$$ /$$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$ /$$$$$$", |
| 62 | + "| $$$$$$ | $$ /$$/| $$ /$$__ $$| $$$$ | $$ | $$ /$$_____/ /$$_____/ |____ $$|_ $$_/ /$$__ $$ /$$__ $$", |
| 63 | + " \\____ $$| $$$$$$/ | $$| $$ | $$| $$_/ | $$ | $$| $$$$$$ | $$ /$$$$$$$ | $$ | $$ \\ $$| $$ \\__/", |
| 64 | + " /$$ \\ $$| $$_ $$ | $$| $$ | $$| $$ | $$ | $$ \\____ $$| $$ /$$__ $$ | $$ /$$| $$ | $$| $$", |
| 65 | + "| $$$$$$/| $$ \\ $$| $$| $$$$$$$| $$ | $$$$$$/ /$$$$$$$/| $$$$$$$| $$$$$$$ | $$$$/| $$$$$$/| $$", |
| 66 | + " \\______/ |__/ \\__/|__/ \\_______/|__/ \\______/ |_______/ \\_______/ \\_______/ \\___/ \\______/ |__/", |
| 67 | + "", |
| 68 | + " Author: Ghast Version: 1.0.4 Today: " + new Date(Instant.now().toEpochMilli()).toGMTString(), |
| 69 | + "", |
| 70 | + "" |
| 71 | + }; |
| 72 | + |
| 73 | + for (String s : logo) { |
| 74 | + System.out.println(s); |
| 75 | + } |
| 76 | + |
53 | 77 | final SkiddedDirectory directory = new SkiddedDirectory(null);
|
54 | 78 | directory.init();
|
55 | 79 | final File file = new File(args[0]);
|
|
0 commit comments