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

DOS/BAT
一个“灵异”批处理引发的思考加补充说明
批处理提取不同行上的内容的代码
windows 复制隐藏帐号完全批处理
使用regini.exe修改注册表命令
将bat文件注册为windows系统服务的方法
恶意软件\垃圾流氓通用反删除批处理文件
G8.3做的GHO G8.3不识别的问题的完美解决方案!
MD和RD命令的使用方法
DOS的启动过程详解分析
Msd、Undelete命令的使用方法
win32下的命令行集合
制作bat批处理和任意QQ号聊天!
用批处理实现将文件以数字重命名的代码
批处理之家发现的用批处理实现的系统类应用代码
纯脚本备份_还原驱动增强版附相关sleep.exe
批处理删除使用所有Windows Update功能的访问[图文+bat]
批处理 数码雨代码解释
按扩展名分类的批处理
批处理 网络配置信息查看器
获取文件更新列表 批处理

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


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