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

DOS/BAT
Ver、Vol、Ctty命令的使用教程
Setver、Share、Subst命令的使用方法
Expand、Fasthelp、Fc命令的用法
Time、Set、Smartdrv命令的使用方法
Doskey命令的使用方法
dos常用命令列表与使用说明
在DOS下使用长文件名的方法
DOS下内存的配置方法
DOS未公开命令与参数列表
研究下DOS下联网的方法
DOS下网络浏览器的使用方法
IF-ERRORLEVEL使用方法
dos之bat批处理文件语法介绍
写的不错批处理教程一
DOS批处理脚本语言简介与详细说明
一键清除_desktop.ini文件的批处理文件
安全清除你C盘垃圾 让你多出近2G的空间
关于制作一个通用的DOS批处理段注释命令的思路介绍
在批处理文件或配置文件中加入注释
MS-DOS 7.10完整安装版(含图文安装程序)

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


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