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

DOS/BAT
批处理应用根据文件内容进行重命名操作
批处理应用 临时目录清理
批处理应用 "添加/删除程序"修复
批处理应用 OFFICE复位
计算机/网络设备状态监测脚本 批处理
使用批处理删除HOSTS中特定内容的行的代码
用批处理实现映射盘网络盘为固定盘符,请更改冲突的硬盘盘符
关于shell命令的定向输出 2>&1
批处理程序中的“多线程”处理代码
使用FTP下载目录,即FTP命令批量自动下载的bat文件
用DOS命令判断磁盘分区是否为NTFS格式
批处理的高级运用技巧
学会批处理,用心学很容易!另一不错的见解
批处理入门与提高
用DOS杀毒的一个不错的应用
Dos下终止进程的方法
批处理变量应用方法
批处理中实现替换文本内容
一个可以修复 IE浏览器的批处理文件
学习黑客必须要掌握的DOS命令全集

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


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