XSLT存档  

不及格的程序员-八神

 查看分类:  ASP.NET XML/XSLT JavaScripT   我的MSN空间Blog

 Learn  Windows Windows Drivers  Windows Debugging Tools  

n (Set Number Base)

The n command sets the default number base (radix) to the specified value or displays the current number base.

The default radix is set to 16 when the debugger is started.

In all MASM expressions, numeric values are interpreted as numbers in the current radix (16, 10, or 8). You can override the default radix by specifying the 0x prefix (hexadecimal), the 0n prefix (decimal), the 0t prefix (octal), or the 0y prefix (binary).

s -[s]d 0 l?7fffffff 0n142
 搜索10进制 142,变成了50 s -[r]d 0 l?7fffffff 0n50
   
  ed 0050872c 09999999
  ed 00697994 09999999
  ed 02a57d50 09999999

再也不需要游戏修改器了 最初我用过金山游侠 不过不是全部游戏它都支持.

已经成功用Windbg 修改本机,以及本地联网,局域网对战模式下 修改金钱.

求生之路联网模式,客户端一直保持着与服务器端的数据包平衡校验通信,服务器端记录着客户端各种数据.

所以枪弹改了也没有用,还是用命令密技吧.

同时还可以修改比如记事本,计算器等程序中的值…

计算器中查询

s -[s]d 000AED40 000b63Fc 270e //9998

s -[r]d 000AED40 000b63Fc 270f //9999

0:001> s -[s]u 000b6000 l300 "9998"

000b6016 0039 0039 0039 0038 000d 000a 0049 0020 9.9.9.8…..I. .

Saved 1 hits

记事本中 查 9998中的9,由于是unicode所以查 0039(16进制),它代表数字9。

0:001> s -[s]w 000b6000 000b6300 0039

000b6016 0039 0039 0039 0038 000d 000a 0049 0020 9.9.9.8…..I. .

000b6018 0039 0039 0038 000d 000a 0049 0020 0068 9.9.8…..I. .h.

000b601a 0039 0038 000d 000a 0049 0020 0068 0061 9.8…..I. .h.a.

Saved 3 hits

0:001> s -[s]w 000b6000 l300 0039

000b6016 0039 0039 0039 0038 000d 000a 0049 0020 9.9.9.8…..I. .

000b6018 0039 0039 0038 000d 000a 0049 0020 0068 9.9.8…..I. .h.

000b601a 0039 0038 000d 000a 0049 0020 0068 0061 9.8…..I. .h.a.

Saved 3 hits

0:001> s -[s]u 000b6000 l300 "datagridview"

000b604e 0064 0061 0074 0061 0067 0072 0069 0064 d.a.t.a.g.r.i.d.

000b6144 0064 0061 0074 0061 0067 0072 0069 0064 d.a.t.a.g.r.i.d.

000b625c 0064 0061 0074 0061 0067 0072 0069 0064 d.a.t.a.g.r.i.d.

000b658e 0064 0061 0074 0061 0067 0072 0069 0064 d.a.t.a.g.r.i.d.

Saved 4 hits

0:000> lm
start             end                 module name
00000000`00590000 00000000`005a0000   ElitechColdCloud C
0:000> s -[s]u 00000000`00590000 00000000`005a0000 "连接本机"
00000000`00598ee8  8fde 63a5 672c 673a 9700 8981 540c 6b65  ...c,g:g.....Tek
Saved 1 hits
0:000> s -[s]a 00007ff9`0f4b0000 00007ff9`0f559000 "local"
00007ff9`0f535276  6c 6f 63 61 6c 65 20 69-6e 66 6f 72 6d 61 74 69  locale informati
posted on 2010-01-13 14:47  不及格的程序员-八神  阅读(575)  评论(2编辑  收藏  举报