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

DOS/BAT
硬盘“逻辑锁”的解决办法
DOS多媒体播放器MPXPLAY的命令行参数大全
内存虚拟盘软件XMSDSK的使用教程
DUSE让DOS支持USB驱动器
如何在WinNT/2K/XP下安装纯DOS的方法
MSDOS.SYS文件的参数设置方法
ANSI.SYS程序的使用方法
DOS命令之ECHO命令的使用
备份硬盘引导记录的方法
DEBUG命令详解教程
细说FAT16与FAT32区别
DOS下常用的相关网络命令总结
DOS下对注册表的编程的方法
FTP命令基本使用方法
零磁道受损的软盘格式化小技巧
dos利用wget.exe让杀毒软件升级更自动化
wget各种选项分类列表与下载
设置高级NTFS权限的工具 XCACLS.vbs
ping命令的小秘密
at命令的详细用法

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


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