Moved Bootloader

This commit is contained in:
Konloch 2021-07-20 13:15:00 -07:00
parent cc781c07f2
commit d6e3eec4cc
28 changed files with 41 additions and 42 deletions

View file

@ -11,7 +11,7 @@ import com.google.gson.GsonBuilder;
import me.konloch.kontainer.io.DiskReader; import me.konloch.kontainer.io.DiskReader;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.ClassNode;
import the.bytecode.club.bootloader.Boot; import the.bytecode.club.bytecodeviewer.bootloader.Boot;
import the.bytecode.club.bytecodeviewer.api.BCV; import the.bytecode.club.bytecodeviewer.api.BCV;
import the.bytecode.club.bytecodeviewer.api.ExceptionUI; import the.bytecode.club.bytecodeviewer.api.ExceptionUI;
import the.bytecode.club.bytecodeviewer.gui.components.*; import the.bytecode.club.bytecodeviewer.gui.components.*;

View file

@ -1,8 +1,8 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import the.bytecode.club.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
import java.io.File; import java.io.File;
import java.io.FileOutputStream; import java.io.FileOutputStream;
@ -11,12 +11,11 @@ import javax.swing.JOptionPane;
import javax.swing.SwingUtilities; import javax.swing.SwingUtilities;
import me.konloch.kontainer.io.HTTPRequest; import me.konloch.kontainer.io.HTTPRequest;
import org.apache.commons.io.FileUtils; import org.apache.commons.io.FileUtils;
import the.bytecode.club.bootloader.resource.EmptyExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.EmptyExternalResource;
import the.bytecode.club.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource;
import the.bytecode.club.bytecodeviewer.BytecodeViewer; import the.bytecode.club.bytecodeviewer.BytecodeViewer;
import the.bytecode.club.bytecodeviewer.Configuration; import the.bytecode.club.bytecodeviewer.Configuration;
import the.bytecode.club.bytecodeviewer.Constants; import the.bytecode.club.bytecodeviewer.Constants;
import the.bytecode.club.bytecodeviewer.api.ExceptionUI;
import the.bytecode.club.bytecodeviewer.util.MiscUtils; import the.bytecode.club.bytecodeviewer.util.MiscUtils;
import the.bytecode.club.bytecodeviewer.util.ZipUtils; import the.bytecode.club.bytecodeviewer.util.ZipUtils;

View file

@ -1,10 +1,10 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
import java.lang.reflect.InvocationTargetException; import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method; import java.lang.reflect.Method;
import java.net.URL; import java.net.URL;
import java.net.URLClassLoader; import java.net.URLClassLoader;
import the.bytecode.club.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,6 +1,6 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
import the.bytecode.club.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
import java.awt.Dimension; import java.awt.Dimension;
import java.awt.GridBagConstraints; import java.awt.GridBagConstraints;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
import java.io.IOException; import java.io.IOException;
import java.lang.reflect.Modifier; import java.lang.reflect.Modifier;
@ -9,9 +9,9 @@ import java.util.Set;
import org.objectweb.asm.ClassReader; import org.objectweb.asm.ClassReader;
import org.objectweb.asm.ClassWriter; import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.ClassNode;
import the.bytecode.club.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource;
import the.bytecode.club.bootloader.resource.JarContents; import the.bytecode.club.bytecodeviewer.bootloader.resource.JarContents;
import the.bytecode.club.bootloader.util.ClassTree; import the.bytecode.club.bytecodeviewer.bootloader.util.ClassTree;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader; package the.bytecode.club.bytecodeviewer.bootloader;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.io.IOException; import java.io.IOException;
import java.net.URL; import java.net.URL;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.io.ByteArrayOutputStream; import java.io.ByteArrayOutputStream;
import java.io.IOException; import java.io.IOException;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.io.IOException; import java.io.IOException;
import java.net.URL; import java.net.URL;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Collection; import java.util.Collection;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.io.File; import java.io.File;
import java.net.JarURLConnection; import java.net.JarURLConnection;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.util.Arrays; import java.util.Arrays;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.resource; package the.bytecode.club.bytecodeviewer.bootloader.resource;
import java.net.URL; import java.net.URL;
import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.ClassNode;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
import java.io.FilterOutputStream; import java.io.FilterOutputStream;
import java.io.IOException; import java.io.IOException;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
import java.util.Collection; import java.util.Collection;
import java.util.HashMap; import java.util.HashMap;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
import java.util.Collection; import java.util.Collection;
import java.util.Collections; import java.util.Collections;
@ -9,8 +9,8 @@ import java.util.Set;
import org.objectweb.asm.tree.ClassNode; import org.objectweb.asm.tree.ClassNode;
import org.objectweb.asm.tree.MethodNode; import org.objectweb.asm.tree.MethodNode;
import static the.bytecode.club.bootloader.util.ClassHelper.convertToMap; import static the.bytecode.club.bytecodeviewer.bootloader.util.ClassHelper.convertToMap;
import static the.bytecode.club.bootloader.util.ClassHelper.copyOf; import static the.bytecode.club.bytecodeviewer.bootloader.util.ClassHelper.copyOf;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
import java.util.HashMap; import java.util.HashMap;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
import java.util.HashSet; import java.util.HashSet;
import java.util.Set; import java.util.Set;

View file

@ -1,4 +1,4 @@
package the.bytecode.club.bootloader.util; package the.bytecode.club.bytecodeviewer.bootloader.util;
/*************************************************************************** /***************************************************************************
* Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite * * Bytecode Viewer (BCV) - Java & Android Reverse Engineering Suite *

View file

@ -5,7 +5,7 @@ import java.io.IOException;
import javax.swing.JFrame; import javax.swing.JFrame;
import javax.swing.JScrollPane; import javax.swing.JScrollPane;
import the.bytecode.club.bootloader.InitialBootScreen; import the.bytecode.club.bytecodeviewer.bootloader.InitialBootScreen;
import the.bytecode.club.bytecodeviewer.resources.IconResources; import the.bytecode.club.bytecodeviewer.resources.IconResources;
import static the.bytecode.club.bytecodeviewer.Configuration.*; import static the.bytecode.club.bytecodeviewer.Configuration.*;

View file

@ -1,6 +1,6 @@
package the.bytecode.club.bytecodeviewer.gui.components; package the.bytecode.club.bytecodeviewer.gui.components;
import the.bytecode.club.bootloader.InitialBootScreen; import the.bytecode.club.bytecodeviewer.bootloader.InitialBootScreen;
import the.bytecode.club.bytecodeviewer.Configuration; import the.bytecode.club.bytecodeviewer.Configuration;
import javax.swing.*; import javax.swing.*;

View file

@ -1,9 +1,9 @@
package the.bytecode.club.bytecodeviewer.util; package the.bytecode.club.bytecodeviewer.util;
import the.bytecode.club.bootloader.Boot; import the.bytecode.club.bytecodeviewer.bootloader.Boot;
import the.bytecode.club.bootloader.ILoader; import the.bytecode.club.bytecodeviewer.bootloader.ILoader;
import the.bytecode.club.bootloader.resource.EmptyExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.EmptyExternalResource;
import the.bytecode.club.bootloader.resource.ExternalResource; import the.bytecode.club.bytecodeviewer.bootloader.resource.ExternalResource;
import the.bytecode.club.bytecodeviewer.BytecodeViewer; import the.bytecode.club.bytecodeviewer.BytecodeViewer;
import the.bytecode.club.bytecodeviewer.CommandLineInput; import the.bytecode.club.bytecodeviewer.CommandLineInput;

View file

@ -1,6 +1,6 @@
package the.bytecode.club.bytecodeviewer.util; package the.bytecode.club.bytecodeviewer.util;
import the.bytecode.club.bootloader.Boot; import the.bytecode.club.bytecodeviewer.bootloader.Boot;
import static the.bytecode.club.bytecodeviewer.Constants.OFFLINE_MODE; import static the.bytecode.club.bytecodeviewer.Constants.OFFLINE_MODE;