gpt4 book ai didi

java - 可以从内存中类的反射创建对象吗?

转载 作者:行者123 更新时间:2023-12-02 04:54:20 27 4
gpt4 key购买 nike

我正在编写一个程序,我正在尝试获取加密的类文件,在加载到内存时对其进行解密(而不是在驱动器上解密),然后执行该类的部分内容。我可以使用静态方法来做到这一点,但是,我想知道是否可以做到这一点

我还想明确指出,我没有写任何恶意内容。实际上,我这样做是为了尝试理解反射,并可能将其用作源代码保护的一种形式。对于我的概念证明来说,有效负载似乎是一个令人满意的名字。

@SuppressWarnings("resource")
Scanner scan = new Scanner(System.in);
System.out.print("Enter password:");
String pass = scan.nextLine();

MessageDigest md5 = MessageDigest.getInstance("md5");
byte[] keyBytes = md5.digest(pass.getBytes("UTF-8"));
SecretKeySpec key = new SecretKeySpec(keyBytes, "AES");
IvParameterSpec ivSpec = new IvParameterSpec(iv);


InputStream in = Master.class.getClassLoader().getResourceAsStream("Payload\\ENC\\Payload.class");

int read = 0;
byte[] buffer = new byte[1024];
ByteArrayOutputStream boas = new ByteArrayOutputStream();
while ((read = in.read(buffer)) != -1)
{
boas.write(buffer, 0, read);
}
byte[] encrypted = boas.toByteArray();


try
{
Cipher cipher = Cipher.getInstance("AES/CBC/PKCS5padding");
cipher.init(Cipher.DECRYPT_MODE, key, ivSpec);
byte[] decrypted = cipher.doFinal(encrypted);

PayloadLoader loader = new PayloadLoader(Thread.currentThread().getContextClassLoader(), decrypted);
Class<?> c = loader.loadClass("Payload.Payload");

Method main = c.getMethod("main", String[].class);
main.invoke(null, (Object) args);
}
catch (Exception e)
{
e.printStackTrace();
System.out.println("Invalid Password");
}

上面是加载到内存并执行的地方。然而,我不想调用 Main 方法,而是创建该线程的实例并启动它。下面是基本线程本身

private Thread t;
private String threadName;

Payload(String name){
threadName = name;
if(config.DEBUG)
System.out.println("Creating Thread - " + threadName);
}

public void setName(String name){
threadName = name;
}

public void run()
{
if(config.DEBUG)
System.out.println("Running Thread - " + threadName);


}

public void start()
{
if(config.DEBUG)
System.out.println("Starting Thread - " + threadName);

if(t == null)
{
t = new Thread (this, threadName);
t.start();
}
}

我的问题是,是否可以创建这个对象并启动线程本身?这是我想要完成的主要任务,因为我希望能够实现多线程。

最佳答案

Class 类具有您可以使用的 getConstructors 方法:

Constructor<?> constructor = c.getConstructor(String.class);
Object payload = constructor.newInstance("ThreadName");
((PayloadStarter) payload).start();

Payload 类还需要实现代码类路径中的共享接口(interface),以便转换和调用 start 方法。我在上面的示例中使用了虚构的 PayloadStarter

关于java - 可以从内存中类的反射创建对象吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28922349/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com