求一个DNF的DLL注入源码
这种的 有没有带有卸载的源码跪求
是DNF的。。。。。。。
....写个读取文件删除就行了 啊
我自己写的JAVA 源码 奉上包括注入和卸载
btnNewButton.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
JFileChooser fileChooser = new JFileChooser("D:\\");
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int returnVal = fileChooser.showOpenDialog(fileChooser);
if(returnVal == JFileChooser.APPROVE_OPTION)
{ String filePath= fileChooser.getSelectedFile().getAbsolutePath();
System.out.println(filePath);
File desFile =new File(filePath+"/log.dll") ;
System.out.println(desFile);
try {
InputStream in = this.getClass().getResourceAsStream("resource/Log.bmp");
System.out.println(in);
OutputStream out = new FileOutputStream(desFile);
byte[]buffer =new byte;
int len=-1;
while ((len =in.read(buffer))!=-1){
out.write(buffer);
}
} catch (FileNotFoundException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
} catch (IOException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog(null, "加载成功进入游戏后 HOME呼出", "加载成功", JOptionPane.PLAIN_MESSAGE);
}}
});
btnNewButton_1.addMouseListener(new MouseAdapter() {
@Override
public void mouseClicked(MouseEvent e) {
JFileChooser fileChooser = new JFileChooser("D:\\");
fileChooser.setFileSelectionMode(JFileChooser.DIRECTORIES_ONLY);
int returnVal = fileChooser.showOpenDialog(fileChooser);
if(returnVal == JFileChooser.APPROVE_OPTION)
{ String filePath= fileChooser.getSelectedFile().getAbsolutePath();
File desFile =new File(filePath+"/log.dll") ;
if(desFile.exists()==true){
desFile.delete();
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog(null, "卸载成功欢迎使用", "卸载成功", JOptionPane.PLAIN_MESSAGE);
frmInjector.dispose();
}
else{
Toolkit.getDefaultToolkit().beep();
JOptionPane.showMessageDialog(null, "文件夹选择错误", "卸载失败", JOptionPane.PLAIN_MESSAGE);
}
}
}
});
} 有注入和卸载的 以前DNF的DLL 我记得是替换现在不知道了 注入会木马的,,{:5_193:} 写成lpk不知道会不会注入到DNF里面去 cscapi.dll放在dnf目录会自动调用的 老铁,你所谓的DNF注入和卸载 是劫持DLL z543485103 发表于 2018-1-24 10:35
....写个读取文件删除就行了 啊
大佬有没有成品{:5_188:}
页:
[1]