Atitit.木馬病毒 webftp 的原理跟個設計 ftp木馬的效果 文件傳播 文件列表 文件內容查看 作者:: ★(attilax)>>> 綽號:老哇的爪子 ( 全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿爾 拉帕努伊 ) 漢字名:艾龍, EMAIL:1466 ...
Atitit.木馬病毒 webftp 的原理跟個設計
ftp木馬的效果
文件傳播
文件列表
文件內容查看
作者:: ★(attilax)>>> 綽號:老哇的爪子 ( 全名::Attilax Akbar Al Rapanui 阿提拉克斯 阿克巴 阿爾 拉帕努伊 ) 漢字名:艾龍, EMAIL:[email protected]
轉載請註明來源: http://www.cnblogs.com/attilax/
package aaaAddr;
import java.util.ArrayList;
import java.util.List;
import org.apache.ftpserver.FtpServer;
import org.apache.ftpserver.FtpServerFactory;
import org.apache.ftpserver.ftplet.Authority;
import org.apache.ftpserver.ftplet.FtpException;
import org.apache.ftpserver.usermanager.impl.BaseUser;
import org.apache.ftpserver.usermanager.impl.WritePermission;
public class FtpServerTsest {
public static void main(String[] args) throws FtpException {
List<Authority> authorities = new ArrayList<Authority>();
authorities.add(new WritePermission());
BaseUser user = new BaseUser();
user.setName("anonymous");
user.setHomeDirectory("c:");
user.setAuthorities(authorities);
FtpServerFactory serverFactory = new FtpServerFactory();
serverFactory.getUserManager().save(user);
FtpServer server = serverFactory.createServer();
server.start();
System.out.println("---f");
}
}
Java使用Apache FtpServer實現嵌入式FTP伺服器 - 推酷.htm