|
ch0ngch0ng
新手上路

积分 3
发帖 1
注册 2005-8-16
状态 离线
|
『楼 主』:
求助!!!!!如何设置进入dos的密码?
使用 LLM 解释/回答一下
请问怎么设置进入dos的密码?
How to set a password to enter DOS?
|
|
2005-8-16 13:48 |
|
|
chenhui530
高级用户
   
积分 772
发帖 273
注册 2004-10-23
状态 离线
|
『第 2 楼』:
使用 LLM 解释/回答一下
在AUTOEXEC。BAT加上判断就行了
但是要提供一个输入设备
比如WABT什么的
Just add a judgment in AUTOEXEC.BAT, but you need to provide an input device, such as WABT or something like that
|

http://www.msfans.net/bbs/ |
|
2005-8-16 16:33 |
|
|
cheng059830
初级用户
 
积分 46
发帖 15
注册 2005-8-13
状态 离线
|
|
2005-8-16 20:38 |
|
|
Michael
钻石会员
       
积分 10046
发帖 3039
注册 2002-11-11
状态 离线
|
『第 4 楼』:
使用 LLM 解释/回答一下
先禁用了ctrl+c 才行啊,呵呵。
You need to disable Ctrl+C first, heh.
|

简单就是美 |
|
2005-8-16 21:17 |
|
|
chenhui530
高级用户
   
积分 772
发帖 273
注册 2004-10-23
状态 离线
|
『第 5 楼』:
使用 LLM 解释/回答一下
call w.bat box (+white on +blue) @autoexec.bat:mima
boff>nul
if errorlevel 100 goto next
if errorlevel 4 off.com
if errorlevel 3 restart.com
if errorlevel 2 goto find
:mima
※※※※※※※密码管理程序※※※※※※※[x]
※**************************************※
※* 请输入管理员密码:[$w,8 ] *※
※* ---------------------------------- *※
※* [确定(&O)] [重启(&R)] [关机(&S)] *※
※**************************************※
※※※※※※※※※※※※※※※※※※※※※
::
....
这是我自己写的一个密码程序你可以把boff放到更前面更安全
call w.bat box (+white on +blue) @autoexec.bat:mima
boff>nul
if errorlevel 100 goto next
if errorlevel 4 off.com
if errorlevel 3 restart.com
if errorlevel 2 goto find
:mima
※※※※※※※密码管理程序※※※※※※※
※**************************************※
※* 请输入管理员密码: *※
※* ---------------------------------- *※
※* *※
※**************************************※
※※※※※※※※※※※※※※※※※※※※※
::
....
This is a password program I wrote myself. You can put boff earlier for more security
|

http://www.msfans.net/bbs/ |
|
2005-8-17 13:27 |
|
|
Climbing
铂金会员
       网络独行侠
积分 6962
发帖 2753
注册 2003-4-16 来自 河北保定
状态 离线
|
『第 6 楼』:
使用 LLM 解释/回答一下
纯正的DOS就没有加密的功能,自己编一个DOS的shell倒有可能。
Pure DOS doesn't have encryption functions. It's possible to make a DOS shell by yourself.
|

偶只喜欢回答那些标题和描述都很清晰的帖子!
如想解决问题,请认真学习“这个帖子”和“这个帖子”并努力遵守,如果可能,请告诉更多的人!
|
|
2005-8-17 14:22 |
|
|
Michael
钻石会员
       
积分 10046
发帖 3039
注册 2002-11-11
状态 离线
|
『第 7 楼』:
使用 LLM 解释/回答一下
f4 ......f5。。。。。。。都可以让dos干净启动的。
F4......F5...... can all make the DOS start cleanly.
|

简单就是美 |
|
2005-8-17 19:45 |
|
|
cheng059830
初级用户
 
积分 46
发帖 15
注册 2005-8-13
状态 离线
|
『第 8 楼』:
使用 LLM 解释/回答一下
Originally posted by chenhui530 at 2005-8-17 13:27:
call w.bat box (+white on +blue) @autoexec.bat:mima
boff>nul
if errorlevel 100 goto next
if errorlevel 4 off.com
if errorlevel 3 restart.com
if errorlevel 2 goto find
:mima
※※※※†...
能不能详细解释一下呢,还有,W.bat的内容是什么呢?能不能公开一下.
Originally posted by chenhui530 at 2005-8-17 13:27:
call w.bat box (+white on +blue) @autoexec.bat:mima
boff>nul
if errorlevel 100 goto next
if errorlevel 4 off.com
if errorlevel 3 restart.com
if errorlevel 2 goto find
:mima
※※※※†...
Can you explain it in detail? Also, what is the content of w.bat? Can you make it public?
|
|
2005-9-19 14:45 |
|
|
yhcamel
初级用户
 
积分 26
发帖 8
注册 2005-9-16
状态 离线
|
|
2005-9-20 15:36 |
|
|
yhcamel
初级用户
 
积分 26
发帖 8
注册 2005-9-16
状态 离线
|
『第 10 楼』:
使用 LLM 解释/回答一下
E:\>autoexec1
E:\>call w.bat box (+white on +blue) @autoexec.bat:mima
E:\>boff1>nul
'boff' 不是内部或外部命令,也不是可运行的程序
或批处理文件。
E:\>if errorlevel 100 goto next
系统找不到指定的批处理标签 - next
E:\>
E:\>autoexec1
E:\>call w.bat box (+white on +blue) @autoexec.bat:mima
E:\>boff1>nul
'boff' is not an internal or external command, nor is it a runnable program
or batch file.
E:\>if errorlevel 100 goto next
The system cannot find the specified batch label - next
E:\>
|
|
2005-9-20 15:39 |
|
|
heilong240
新手上路

积分 2
发帖 1
注册 2006-9-5
状态 离线
|
|
2007-3-28 11:13 |
|
|
wzsunlight
初级用户
 
积分 107
发帖 52
注册 2007-3-10
状态 离线
|
|
2007-3-28 17:53 |
|
|
Kinglion
铂金会员
       痴迷DOS者
积分 5798
发帖 1924
注册 2003-6-20 来自 金獅電腦軟體工作室
状态 离线
|
『第 13 楼』:
使用 LLM 解释/回答一下
首先,为了实现真正的安全,需要先对IO.SYS进行修改,以屏蔽开机按F8键进行开机选择菜单的功能。再次,在CONFIG.SYS加载按指令屏蔽键盘的程序,在需要输入密码时先允许键盘输入,然后马上启动密码验证程序,此程序在编写时要加入防止CTRL+C的代码。
First, in order to achieve real security, it is necessary to modify IO.SYS first to block the function of pressing the F8 key during boot to enter the boot selection menu. Second, load a program to block the keyboard according to the instructions in CONFIG.SYS. When a password needs to be entered, first allow keyboard input, and then immediately start the password verification program. When writing this program, code to prevent CTRL+C should be added.
|

熟能生巧,巧能生精,一艺不精,终生无成,精亦求精,始有所成,臻于完美,永无止境!
金狮電腦軟體工作室愿竭诚为您服务!
QQ群:8393170(定期清理不发言者)
个人网站:http://www.520269.cn
电子邮件:doujiehui@vip.qq.com
微信公众号: doujiehui
|
|
2007-3-28 22:00 |
|