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

DOS/BAT
如何在DOS下使用长文件名
DOS未公开的命令与参数
DOS下硬件设备的使用与设置
DOS下联网的方法
Emm386、Lh、Memmaker命令使用说明
Msd、Undelete命令使用说明
DOS下的多媒体
DOS命令行下常见的错误信息
DOS下的必备工具
Prompt、Restore命令使用说明
bat过滤任意字符
批处理文件简介与编写
DOS命令字典2
超经典的DOS命令全集
[推荐]批处理的教学
学会批处理
定时检查网站是否掉线的批处理
BIOS中英文对照表
用bat文件修改ip
dos环境下修改ip地址

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


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 388 ::
收藏到网摘: 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