当前位置: 首页 > 图文教程 > 脚本技术 > DOS/BAT > 进入dos的一个密码破解方法

DOS/BAT
批处理 进程端口查看
查看驱动器(盘符)的批处理
网络PING包查询
九九乘法表 批处理版
九宫格的含义 横竖斜三个数相加都等于15
regini dos下更改注册表权限的工具
hh.exe 隐藏参数 chm反编译命令参数
巧用DOS 伪装保护文件完整版
清除cookies的批处理(bat)
全盘搜索指定文件并拷贝到指定位置[自动重命名]的批处理
批处理检查输入实现代码
批处理实现的结束进程并删除文件的代码
BAT 特殊符号总结
自动清除电脑垃圾及删除windows默认共享盘符的批处理bat

DOS/BAT 中的 进入dos的一个密码破解方法


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 387 ::
收藏到网摘: n/a

stack segment
cache db 10 dup ('?')
stack ends
code segment
assume cs:code,ds:code,es:code,ss:stack
message db 'Made by correy',24h
email db 0dh,0ah,'Email:[email protected]',24h
notice db 0dh,0ah,'input password:',24h
password db 'correy999'
main proc
mov ax, code
mov ds, ax
mov es, ax
mov ax,stack
mov ss,ax
mov dx, offset message
mov ah, 09
int 21h
mov dx, offset email
mov ah, 09
int 21h
start:mov dx, offset notice
mov ah, 09
int 21h
mov cx, 9
mov bx,offset cache
show:mov ah, 00
int 16h
cmp al, 0Dh
je comp
mov [bx],al
inc bx
mov dl, 2Ah
mov ah, 02
int 21h
loop show
comp:mov cx, 9
mov si, offset password
mov di, offset cache
repz cmpsb
jne start
mov ah, 4Ch
int 21h
main endp
code ends
end main