|
|
| |
| Deep Freeze "makes computing environments easier to manage and maintain. Each restart eradicates all changes and resets the computer to its original state, right down to the last byte". This article describes a method to bypass the Deep Freeze's authentication mechanism. |
| |
Credit:
The information has been provided by Emiliano Torres.
The original article can be found at: http://usuarios.arnet.com.ar/fliamarconato/
|
| |
Vulnerable Systems:
* Deep Freeze versions 5.20.* and 5.30.*
* Deep Freeze versions 3.32.*
Immune Systems:
* DeepFreeze version 5.5
Tools needed:
Ollydgb to patch the program and run it.
OllyScript to run scripts on Ollydgb.
ASPack 2.12 OEP finder script by hacnho/VCT2k4 to find the OEP.
Process Explorer for 2K/XP to see the login program command line.
DeASPack for AsPack 2.11 to unpack the login program. (for Deep Freeze 3.32.000.0534)
Summary:
What we are going to do is to load a new instance of Deep Freeze login program and we'll change it in such a way that it will accept any password as a valid one.
Let's get to work:
1. The first thing we are going to do is finding some data we're going to use later to load our login program instance. To do that load Process Explorer. In this program we can see a list of all the processes our PC is running, among them is the login program called FrzState.exe or FrzState2k.exe. Find this program on the list, expanding the tree if necessary. Once you've found it, right click over the program's name and a menu with options will show up. Select the option 'Properties'. A window will show up with the process properties.
2. In the properties window you'll see a property called 'Command line'. On this box you can see the program's location, remember that. At the end of the text box there are three numbers that you have to write down to use later. Once you've written them down you can close Process Explorer.
Deep Freeze for Windows 2K/XP
3. Now run Ollydbg. Note: Make sure OllyScript is properly installed. There should be a menu called 'Plugins' where you'll find a submenu called 'OllyScript'. If this menu doesn't appear in the program, that means you haven't installed the plugin properly. To install it, go to the menu 'Options' and select 'Appearance'. In the 'Plugin path' box write the address where you copied OllyScript files, press OK and restart the program.
On the menu 'File' select 'Open' and look for the login program file (remember that Process Explorer told you where it was). In the 'Arguments' box write the three numbers you've written down. Now click 'Open'. If a warning message box shows up press 'OK', and if later a message box ask you if you want to continue the code analysis press 'No'.
4. We have loaded the program, the problem is that it's protected with Aspack 2.12 and we can't see the real code. To solve this we're going to use OllyScript and the ASPack 2.12 OEP finder script. Go to the 'Plugins' menu, and then to the 'OllyScript' submenu and select 'Run script'.
5. Look for the script and open it. The script will find the OEP (original entry point). If any window shows up dismiss it. Note: We are now on the OEP. If you are an experienced user you can dump the program using OllyDump to analyze the code with a disassembler.
6. Deep Freeze can be configured to hide the system tray icon (next to the clock). If you can't see the Deep Freeze icon follow the steps on this Annex and then resume this tutorial.
7. Right click over the code and a context menu will appear, select 'Go to' and then 'Expression' (or use the shortcut Ctrl+G).
8. In the text box enter the following value according to the Deep Freeze version you have installed and press OK.
Version Value
4.20.020.0598 40368D
4.20.120.0598 40368D
4.20.121.0613 4034F5
5.20.220.1125 4037E9
5.30.120.1181 4037E9
The program will jump to that line of code.
9. This is the line from where the password verification procedure is called. Let's set a breakpoint here. To do that right click over the line and in the context menu select 'Breakpoint' and then 'Toggle' (or press F2).
10. We are almost done! Now let's run this new Deep Freeze login program instance. To do that press F9. If everything went right now you should see two Deep Freeze icons on the system tray next to the clock. If Deep Freeze was configured to hide it (read annex), instead of two icons you'll see an empty icon.
Note: If the icon doesn't show up is possible that you haven't written the argument three numbers correctly or that you haven't opened the right file.
11. Now activate the login program by double clicking over the icon while you keep the shift key pressed. If there are two icons, is important that you click over the new icon and not over the old one. The login window will appear asking for the password. Write anything in the password box and press ENTER. The breakpoint we set earlier in Ollydbg will activate and the login program will freeze.
Note: If the breakpoint doesn't activate is possible that you've chosen the wrong icon. Try with the other one.
12. On Ollydbg press F8 to step over the function call. On the registers window (to the right of the code) you'll see that EAX register has the value 00000000. That means the password is incorrect, let's change that. Double click over the value of EAX to open the modification window. In the 'Hexadecimal' text box write 1 and press OK.
13. Now press F9 to continue. If everything went right the Deep Freeze configuration dialog will show up.
Deep Freeze 5.20.250.1125 and 5.30.150.1181 (Windows 9X):
3. Now we're going to kill the login program. If you try to close it now you'll see that the process shows up again on the list. To close it for good we first have to kill the process called MSGSRV32.EXE. Look for this process on the list, then right click over it and select 'Kill Process'. If a confirmation message appears answer Yes. Next, right click over the process FrzState9X.exe and select 'Kill Process' again. Now the login program should be dead. Note: If the icon of Deep Freeze still remains on the system tray next to the clock, hover the mouse cursor over it to make it disappear.
4. Now run Ollydbg. Note: Make sure OllyScript is properly installed. There should be a menu called 'Plugins' where you'll find a submenu called 'OllyScript'. If this menu doesn't appear in the program, that means you haven't installed the plugin properly. To install it, go to the menu 'Options' and select 'Appearance'. In the 'Plugin path' box write the address where you copied OllyScript files, press OK and restart the program. On the menu 'File' select 'Open' and look for the login program file (remember that Process Explorer told you where it was). Now click 'Open'. If a warning message box shows up press 'OK', and if later a message box ask you if you want to continue the code analysis press 'No'.
5. We have loaded the program, the problem is that it's protected with Aspack 2.12 and we can't see the real code. To solve this we're going to use OllyScript and the ASPack 2.12 OEP finder script. Go to the 'Plugins' menu, and then to the 'OllyScript' submenu and select 'Run script'.
6. Look for the script and open it. The script will find the OEP (original entry point). If any window shows up dismiss it. Note: We are now on the OEP. If you are an experienced user you can dump the program using OllyDump to analyze the code with a disassembler.
7. Right click over the code and a context menu will appear, select 'Go to' and then 'Expression' (or use the shortcut Ctrl+G).
8. In the text box enter the following value according to the Deep Freeze version you have installed and press OK.
Version Value
5.20.250.1125 408D34
5.30.150.1181 408E08
The program will jump to that line of code.
9. In this line the program decides if the password is correct. Let's set a breakpoint here. To do that right click over the line and in the context menu select 'Breakpoint' and then 'Toggle' (or press F2).
10. We are almost done! Now let's run this new Deep Freeze login program instance. To do that press F9. If Deep Freeze is configured to show the icon, now you'll see it on the system tray next to the clock.
11. Now activate the login program by double clicking over the icon while you keep the shift key pressed or by pressing CTRL+ALT+SHIFT+F6. The login window will appear asking for the password. Write anything in the password box and press ENTER. The breakpoint we set earlier in Ollydbg will activate and the login program will freeze.
12. On the registers window (to the right of the code) you'll see that the Z flag is set to 1. That means the password is incorrect, let's change that. Double click over the Z flag value and you'll see it changes to 0.
13. Now press F9 to continue. If everything went right the Deep Freeze configuration dialog will show up.
Deep Freeze 3.32.000.0534 (Windows 9X):
3. Now we're going to kill the login program. If you try to close it now you'll see that the process shows up again on the list. To close it for good we first have to kill the process called MSGSRV32.EXE. Look for this process on the list, then right click over it and select 'Kill Process'. If a confirmation message appears answer Yes. Next, right click over the process FrzState.exe and select 'Kill Process' again. Now the login program should be dead. Note: If the icon of Deep Freeze still remains on the system tray next to the clock, hover the mouse cursor over it to make it disappear.
4. This version of Deep Freeze is protected with Aspack 2.11, so before we can work with the login program we have to unpack the file, and for that we are going to use DeASPack. Run DeASPack and a dialog box will show up and ask you to select a file to unpack. Look for the login program file (remember that Process Explorer told you where it was). Now click 'Open'. The program will unpack the file and the dialog box will close.
5. Now run Ollydbg. On the menu 'File' select 'Open' and look for the unpacked file. The file is called out.exe and is in the same folder the login program is. Nex click 'Open'.
6. When Ollydbg finish analyzing the program, right click over the code and a context menu will appear, select 'Go to' and then 'Expression' (or use the shortcut Ctrl+G).
7. In the text box enter 417410 and press OK. The program will jump to that line of code.
8. In this line the program decides if the password is correct. Let's set a breakpoint here. To do that right click over the line and in the context menu select 'Breakpoint' and then 'Toggle' (or press F2).
9. We are almost done! Now let's run this new Deep Freeze login program instance. To do that press F9. If Deep Freeze is configured to show the icon, now you'll see it on the system tray next to the clock.
10. Now activate the login program by double clicking over the icon while you keep the shift key pressed or by pressing CTRL+ALT+SHIFT+F6. The login window will appear asking for the password. Write anything in the password box and press ENTER. The breakpoint we set earlier in Ollydbg will activate and the login program will freeze.
11. On the registers window (to the right of the code) you'll see that the Z flag is set to 1. That means the password is incorrect, let's change that. Double click over the Z flag value and you'll see it changes to 0.
12. Now press F9 to continue. If everything went right the Deep Freeze configuration dialog will show up.
Vendor Response:
"Faronics takes the security of our products very seriously and we began working on resolution to the password security issue as soon as we were made aware of it. We are happy to report that the issue was resolved on June 12, 2005 with a new Deep Freeze 5.5 release of the Standard, Professional, and Enterprise versions. In fact, the issue was already resolved before it was posted on the SecuriTeam site. We have already made all of our customers aware that the new version is available. If you are a Deep Freeze customer and have not received notification, you can request an update using the form at: http://www.faronics.com/html/updates.asp
It is important to note that the method described must be used on each workstation individually and the perpetrator would require physical access to the workstation; it will not work over a network.
It requires an industrious, knowledgeable user who can find, download, and use the utilities that are referred to in the tutorial. Even then, the procedure must be followed to the letter and will not work in all cases. In cases where it does work, the user has essentially fooled Deep Freeze into believing that a correct password has been entered on that one individual workstation. The user could then tell Deep Freeze to boot Thawed and would therefore be able to make a permanent change to that single computer. This has been resolved with the 5.5 release and the method will no longer function."
|
| Subject:
|
pleas explain ther is a bug |
Date: |
26 Oct. 2005 |
| From: |
forminguhotmail.com |
in the command line you say three numbers ther are 8 like 1 978598 5
and you click open then write in argument i can not write until i open i need first to open the to write that three numbers i have it about 8 on command line of frstate2k.exe thenks on advanced |
|
| Subject:
|
Deep Freeze Password Bypass Vulnerability |
Date: |
1 Nov. 2005 |
| From: |
John |
Faronics has not resolved this issue as claimed. In fact the situation has become worse. Emiliano has built his technique into a small program called Deep Unfreezer. It's wrong to say that "situation has been resolved". You can test it out yourself. It will probably work without switching to Local System or granting yourself the Debug Programs privilege. But if Unfreezer returns the error "Enough Privileges?", you can use ntrights.exe from the Windows Resouce Kit in order to grant SeDebugPrivilege to yourself. Then logoff and login again in order to make the changes to take effect.
Download Deep Unfreezer
http://usuarios.arnet.com.ar/fliamarconato/pages/edeepunfreezer.html |
|
| Subject:
|
Flawed vendor response |
Date: |
10 Nov. 2005 |
| From: |
John |
The vendor's response is totally flawed. The issue was not resolved with Deep Freeze 5.5 as claimed, or even later versions. In fact the current version, v5.60.120.1347, is still vulnerable. And the situation has even grown worse. The password bypass technique using OllyDbg is obsolete. Emiliano has now turned his technique into a program, Deep Unfreezer, which works to thaw almost all versions of Deep Freeze without a password.
Deep Unfreezer - Download
http://usuarios.arnet.com.ar/fliamarconato/pages/edeepunfreezer.html
The only thing Faronics has done so far is to disable the Debug Programs privilege in the last couple of versions. This stops Deep Unfreezer only under regular user accounts where the user cannot switch to Local System nor grant themselves the SeDebugPrivilege. Where the user is logged in at an internet cafe or school with admin rights under Windows XP Home Edition, Deep Freeze succumbs. Deep Freeze cannot protect administrator accounts as claimed by vendor. |
|
| Subject:
|
Deep Freeze Appears Permanently Thawed |
Date: |
15 Dec. 2005 |
| From: |
John |
It is no longer a procedure. It's a program, Deep Freeze Unfreezer.
http://usuarios.arnet.com.ar/fliamarconato/pages/edeepunfreezer.html
And it thaws all versions of Deep Freeze, even the newest version, v5.7, which was intended to permanently stop Unfreezer. It did not. The only requirement is to grant yourself the SeDebugPrivilege using ntrights.exe from the Windows Resource Kit. Then log off and log on again to make the privilege active, before running Unfreezer.
The issue has not been resolved as claimed by Faronics, and the method (a program now) still functions to thaw Deep Freeze without a password.
The hundred-year winter is over. |
|
| Subject:
|
deep frezze enterprise 5.70.220.1372 |
Date: |
4 Jan. 2006 |
| From: |
hkshinehoangsv2212hkshinegmail.com |
how deep frezze enterprise 5.70
do you thawed version enterprise |
|
| Subject:
|
Thanks |
Date: |
11 Jan. 2006 |
| From: |
THE_MAN - THE_MAN_MTMhotmail.com |
Thanks alot ..
that was so so good ...
so clear and so profession...
thanks again |
|
| Subject:
|
Deep Freeze Unfreezer v1.6 |
Date: |
30 Jan. 2006 |
| From: |
eggsploitergmail.com |
| Faronics released Deep Freeze v5.70.220.1378 on January 22nd. The only improvement was "e;enhanced security"e;. Was it enhanced? No. It took Emiliano only one week to update Unfreezer to thaw it without the password. Faronics introduced a new driver to protect the Deep Freeze processes from being debugged. But Emiliano figured it out in no time flat. Will you find any mention of Unfreezer on Faronics web site? No. Do they advise their customers that an hacking program exists to defeat the password security of Deep Freeze? No. Is that honest? No! |
|
| Subject:
|
i need deep unfreeze v5.5, v5.7 please! |
Date: |
16 Mar. 2006 |
| From: |
lukhach_votinhyahoo.com |
| i need deep unfreeze v5.5+, v5.7 please! |
|
| Subject:
|
Newest Deepfreeze |
Date: |
23 Mar. 2006 |
| From: |
hartwell.bobpctc.k12.oh.us |
Any updates on the newest release of Deep Freeze?
Has the problem been fixed? |
|
| Subject:
|
DF Build 1426 |
Date: |
10 Apr. 2006 |
| From: |
c4p0ne |
build 1426 eliminates the use of the unfreezer........... FOR NOW.
|
|
| Subject:
|
how |
Date: |
29 Apr. 2006 |
| From: |
shehureigmail.com |
| how to kill deep freeze |
|
| Subject:
|
How is it possible for you to be so ignorant |
Date: |
14 May 2006 |
| From: |
c4p0ne |
| You should modify your question; replace "e;deep freeze"e; with "e;me"e;. |
|
| Subject:
|
Hi |
Date: |
11 Jun. 2006 |
| From: |
minhct2004yahoo.com |
Dear,
Plz i wanna own a free DeepUnfreeze for my computer. But i can't find it on page. Can send me that free software plz ?
Thanks for sending me.
|
|
| Subject:
|
deep unfreezer not working! |
Date: |
12 Jun. 2006 |
| From: |
tenchiyahoo.com |
Deep Unfreezer is not working for Deep Freeze version 5.50.220.1288
Is that true?! (Coz i try it by myself). Or I made something wrong?! |
|
| Subject:
|
too many noobie bums |
Date: |
21 Jun. 2006 |
| From: |
c4p0neatgmaildotcom |
| Yes 'you made' something wrong. |
|
| Subject:
|
Will Deep Unfreeze work if the computer also has Anti Exe running |
Date: |
1 Jul. 2006 |
| From: |
Dami |
| Will Deep Unfreeze work if the computer also has Anti Exe running? |
|
| Subject:
|
no pdate |
Date: |
10 Jul. 2006 |
| From: |
surendra9hotmail.com |
| it creats administrator auto which creats difficult to update my computer . how i can do this ? |
|
| Subject:
|
help..! |
Date: |
11 Jul. 2006 |
| From: |
bandin_jjyahoo.com |
| how can i get deep unfreeze software cause i install deep freeze in my PC and i can't remmember my password. |
|
| Subject:
|
i need deeb unfreez v5.50.220.1288 |
Date: |
30 Jul. 2006 |
| From: |
juggler_man1988yahoo.com |
| i want to download it in my pc plz |
|
| Subject:
|
Unfreezer for version 5.70.021.1453 |
Date: |
3 Aug. 2006 |
| From: |
MkG |
| Even the latest Unfreezer from the link above doesn't work for this version. Anybody have the solution for this? |
|
| Subject:
|
new programme installing |
Date: |
8 Aug. 2006 |
| From: |
akila600hotmail.com |
is there anybody who can help me over this deepfreeze programme
it's intalled and it's working proberly,but anytime i wanna install pc camera and the camera works
i restart the computer and the camera is gone
|
|
| Subject:
|
i need deep unfreezer v 6 |
Date: |
10 Aug. 2006 |
| From: |
thangkhung-cuatoiyahoo.com |
difficult.............
i can't uninstall deep freezer v6
help me
|
|
| Subject:
|
i need deep unfreeze v5.70.21. pls help me |
Date: |
11 Aug. 2006 |
| From: |
crazyman037hotmail.com |
| i need unfreeze v.5.70.21.1453. thank you all frends. |
|
| Subject:
|
i need deep unfreeze v.6.x |
Date: |
24 Aug. 2006 |
| From: |
xitrumboy83yahoo.com |
| Could anybody help me ? Thanks in advance :) |
|
| Subject:
|
Not Working On Version 5.70.220.1426 |
Date: |
26 Aug. 2006 |
| From: |
roniwahyu at yahoo dot com |
| need deep unfreeze for that version thanks, friends |
|
| Subject:
|
i need deep unfreeze v5.70.220.1372 |
Date: |
30 Aug. 2006 |
| From: |
yocks_yokoyahoo.com |
| i need deep unfreeze v5.70.220.1372, but i don't have account as administrator.. someone can help me, because i want to install warcraft and game in office.. my bos didn't allow me to do that.. hiks.. please help me.. thanks alot. |
|
| Subject:
|
how do i unfreeze deep freeze v. 6.00.220.1523 |
Date: |
6 Sep. 2006 |
| From: |
ruminakmb2003yahoo.com |
| I need help badly |
|
| Subject:
|
Huhuhu!!! |
Date: |
14 Sep. 2006 |
| From: |
|
| I can kill the deep freeze v. 6.00.220.1523 |
|
| Subject:
|
yeh right |
Date: |
20 Sep. 2006 |
| From: |
|
yeh right!!! what a dumb joke! just how did you kill it without writing your email adress on the board. Do you think we will believe you?
If you know just let me know |
|
| Subject:
|
P3dr4m |
Date: |
21 Sep. 2006 |
| From: |
p3dr4m_hyahoo.com |
hi my friends
i need help to unactive deep freeze 6 who can help me?
(if you can help me mial me plz,thanks a lot ,good luck & bye) |
|
| Subject:
|
deep freeze v. 6 is a problem |
Date: |
28 Sep. 2006 |
| From: |
conical13yahoo.com |
hi everybody:
i get tired from deep freeze v 6, how can i disable it???????????????
if u can solve that ; please send me |
|
| Subject:
|
How to kill deep freeze |
Date: |
6 Oct. 2006 |
| From: |
rad1tz_z03lyahoo.com |
| How to kill deep freeze if the icon don't appear & the login window don't appear too. I had try Deep Unfreeze v1.6, Please Help Me!!!!!!!!! |
|
| Subject:
|
i want disable deep freeze |
Date: |
9 Oct. 2006 |
| From: |
ataamini2006yahoo.com |
| iwant disable deep freeze i forget my password , i can not chang my windows please helppppppppppppppppp me |
|
| Subject:
|
mmmmmmm |
Date: |
21 Oct. 2006 |
| From: |
cahedanhis_ig1yahoo.co.id |
john said "e; Deep Freeze Appears Permanently Thawed"e;
i think his xplanation is enough 2 unfreeze DF 5.70
isn't it? |
|
| Subject:
|
thanks |
Date: |
21 Oct. 2006 |
| From: |
his_ig1 yahoo.co.id |
| thanks a lot! i can unfreeze the DF 5.70 now! |
|
| Subject:
|
lot of thanks |
Date: |
21 Oct. 2006 |
| From: |
his_ig1yahoo.co.id |
bye2 the winter!!!!!!
DF 5.5, 5.6, 5.7, all of them...
just unfreeze them!
so easy, so simple, |
|
| Subject:
|
merci |
Date: |
24 Oct. 2006 |
| From: |
abde_h2007yahoo.fr |
| i need unfreeze v.5.70.21.1453. thank you all frends.
|
|
| Subject:
|
MindFreaK |
Date: |
28 Oct. 2006 |
| From: |
ivan_salta22hotmail.com |
| hola yo quiero pedir porfavor si pueden darme el deep freeze vercion 5.70.... para sacarlo xD porq no puedo sacar el pasw no me acuerdo :'( saludos |
|
| Subject:
|
tanks in advance |
Date: |
29 Oct. 2006 |
| From: |
shaukloveyahoo.co.uk |
| i need to protect my computer from nirus and all but i need my pc after reboot like i install it just now, been using deep freez while i was in emirates but it was down load from an arabic site and it is arabic version which is not supporting here in Pakistan, pls let me know the latest deep freez free version and send me the link where i can get it without any problem. thanks in advance |
|
| Subject:
|
How to disable Deep Freeze V6.00.020.1523 |
Date: |
30 Oct. 2006 |
| From: |
leixgoowy.com |
pls help... i need to disable my deep freeze 6 but i forgot the password.
lots of tnx and god bless... |
|
| Subject:
|
Unfreezer |
Date: |
30 Oct. 2006 |
| From: |
leixgoowy.com |
I found this while looking for solutions with my deep freeze 6.
(sigh) it works (maybe) for all of the mentioned versions but it doesn't work (as i've tried) on deep freeze 6.
Deep Freeze Unfreezer software.
http://usuarios.arnet.com.ar/fliamarconato/pages/edeepunfreezer.html
Windows 2K/XP woks with versions:
4.20.020.0598, 4.20.021.0613, 4.20.120.0604, 4.20.121.0613, 5.10.021.1089, 5.20.220.1125, 5.30.120.1181, 5.40.021.1248, 5.50.021.1288, 5.50.021.1299, 5.50.021.1302 (not patched/patched), 5.50.120.1302 (not patched/patched), 5.60.021.1347 (not patched/patched), 5.60.120.1347 (not patched/patched), 5.70.021.1372, 5.70.220.1372, 5.70.021.1378 and 5.70.220.1378
To perform the test you must first grant yourself the "e;Debug Programs"e; privilege (revoked by Deep Freeze) by escalating to the Local System account using Task Scheduler from the command line (Start/run, cmd):
1) Type: at 11:23pm /interactive taskmgr.exe (add one or two minutes from the current time). [ENTER]
2) Once Task Manager launches, End Task explorer.exe
3) On the Task Manager menu, choose File / New Task (Run...), Type explorer.exe to launch the explorer shell under the System account which has Debug Privileges
4) Run Deep Unfreezer from the System account.
GOODLUCK!!!
please e-mail me if you found out something on deepfreeze 6.
tnx a lot... |
|
| Subject:
|
How to stop UNFREEZER ... Help me :( |
Date: |
1 Nov. 2006 |
| From: |
M2A_XHOTMAIL.COM |
| Please help me ... I have an Internet cyber ( 12 PC ) I installed Deep Freeze 5.5 in all PC's, but their are some people who use ( Deep Freeze Unfreezer ) :( and made all PC in thawed mode ... what can I do ... many VIRUS attack the PC's ............. DAMN UNFREEZER .... please tell me what to do to stop this program from running in all PC's .... Please ASAP. |
|
| Subject:
|
I need unfreeze 1.7 |
Date: |
5 Nov. 2006 |
| From: |
.sina |
| help |
|
| Subject:
|
i need help |
Date: |
6 Nov. 2006 |
| From: |
falsacyahoo.com |
i know my password i cann't reboot pc with thawed mode
i did everything that is listed
i use 5.5.220.1288 |
|
| Subject:
|
why we need un deep freeze |
Date: |
22 Nov. 2006 |
| From: |
a few good man |
why we need un deep freeze ?
coz' i ve bomb LAN
for what ?
braken down the cyber cafe |
|
| Subject:
|
5.70.220.1426 cant be unfeeze |
Date: |
30 Nov. 2006 |
| From: |
bulongtoy69yahoo.com |
help me unfreeze this version of deep freeze 5.70.220.1426...
the software deep unfreezer casnnot detected this version please help......... |
|
| Subject:
|
DeepUnfreezer1.6 rocks :) |
Date: |
1 Dec. 2006 |
| From: |
Jadeyyosupcuzyahoo.com |
I have deep freeze pro (ver) 5.30.0120.1181 I used DeepUnfreezer1.6 to unfreeze it now i have full controll over my
Pc thanks to the person that made the 1.6 Unfreezer :) |
|
| Subject:
|
Me too can not Un Deep Freeze 5.70.220.1426 |
Date: |
1 Dec. 2006 |
| From: |
toanmktgmail.com |
| Please help send me the file to break it :(( |
|
| Subject:
|
DF 1.6 unfreeze should work for all (ver) of DF |
Date: |
3 Dec. 2006 |
| From: |
jadeyaiightyosupcuzyahoo.com |
DF unfreeze 1.6 should work on all versions of DF exe I cannot see why it won't, maybe you guys are not doing it right.
"e;Just read the instuctions properly then you will be fine"e; |
|
| Subject:
|
need help |
Date: |
13 Dec. 2006 |
| From: |
kingdragon391aol.com |
i forgot my password for deep freeze
so what do i do? |
|
| Subject:
|
New Version |
Date: |
18 Dec. 2006 |
| From: |
kpull1 |
| I've used the deep unfreezer hundreds of times but on 6.0 (the new version), that unfrozer doesn't works. |
|
| Subject:
|
anti deep freeze |
Date: |
23 Dec. 2006 |
| From: |
h2100_abdehotmail.com |
| anti deep freeze pour desactive deep freeze v5.70.021.1453 |
|
| Subject:
|
DF 6 still unfreezed |
Date: |
24 Dec. 2006 |
| From: |
alhoblkabirhotmail.fr |
| for the person who have the cyber, u just install the new version (6) as it cannot be unfreezed yet ... |
|
| Subject:
|
Deep Freeze 6 CANT Close |
Date: |
28 Dec. 2006 |
| From: |
magistra86hotmail.com |
| I cannt see icon on my tray - know the password but - cant close it no UNFREEZER avalible for this version |
|
| Subject:
|
DF 6.10 still unfreezed |
Date: |
17 Jan. 2007 |
| From: |
kooljoey7000yahoo.com |
| i use df v.6.10 i cant uninstall n thawed bcos that program not appear on my startup but my pc still freeze pls help me bro thank you |
|
| Subject:
|
me |
Date: |
19 Jan. 2007 |
| From: |
devil_xsx_2010yahoo.com |
| help plz how i can remove or unstill or unlock the deep freeze 6.00 ( or recovery genius) i have a Internet cyber and some one change the password |
|
| Subject:
|
deepfreeze 6 or higher |
Date: |
27 Jan. 2007 |
| From: |
jadey |
| Can someone give me a copy of deepfreeze 6 exe or higher or anyone of the df that ur having problems with and I c if I can unfreeze with the 1.6 exe. |
|
| Subject:
|
deep unfreezer 05 |
Date: |
4 Feb. 2007 |
| From: |
ppower8caramail.com |
| deep unfreezer 05 not detected deep freezv V6.00.020.1523......send me the solution of this problem's please....thnak'ssssssss |
|
| Subject:
|
pls help to un freeze deep freeze ver5.70 |
Date: |
4 Feb. 2007 |
| From: |
emadothman2001yahoo.com |
| pls help me to open deep freeze 5.70 |
|
| Subject:
|
deep freeze ,how do you destroy your pc |
Date: |
10 Feb. 2007 |
| From: |
gerit |
DISCLAIMER: It is assumed that users are familiar with the operating system they are using and comfortable with making the suggested changes. I will not be held responsible if changes you make cause a system failure.
This is NOT a list of tasks/processes taken from Task Manager or the Close Program window (CTRL+ALT+DEL) but a list of startup applications, although you will find some of them listed via this method. Pressing CTRL+ALT+DEL identifies programs that are currently running - not necessarily at startup. Therefore, before ending a task/process via CTRL+ALT+DEL just because it has an "e;X"e; recommendation, please check whether it's in MSCONFIG or the registry first. An example would be "e;svchost.exe"e; - which doesn't appear in either under normal conditions but does via CTRL+ALT+DEL. If in doubt, don't do anything.(with x they mean virus,but they called it an ''u''what means there is nothing wrong...)
note from ''3d avenue''......
yeah right!!!!''svchost.exe''which does''nt appear in either under normal conditions,great joke,
then they say you must use a program from there site, |
|
| Subject:
|
5.70.220.1426 cant be unfeeze |
Date: |
12 Feb. 2007 |
| From: |
bayusofthotmail.com |
help me unfreeze this version of deep freeze 5.70.220.1426...
the software deep unfreezer casnnot detected this version please help.........
Please help send me the file to break it :(( |
|
| Subject:
|
how can i Deep Freeze 6 unfreeze |
Date: |
14 Feb. 2007 |
| From: |
nik_4_82yahoo.com |
| pl. help me the above subject ? |
|
| Subject:
|
Forget about Deep Freeze and try PowerShadow |
Date: |
16 Feb. 2007 |
| From: |
anan |
| PowerShadow is much better than Deep Freeze |
|
| Subject:
|
Deep Freeze 6 cant be unfreeze |
Date: |
27 Feb. 2007 |
| From: |
ichsan_jsyahoo.com |
| somebody help me, i can't unfreeze deep freeze v6, i forgot the password, i can't change time and other in my computer, somebody please help send me unfreezer 1.7 or the tutorial... |
|
| Subject:
|
how can i remove deep freeze ver 6.00.220.1523. PLease HELP |
Date: |
25 Mar. 2007 |
| From: |
ChutChutchelly_philyahoo.com |
please help me with deep freeze ver6.00.220.1523. i cant thaw my computer.
i hope anyone can help me with disabling this program ive been stuck with this
for 2 weeks now. please please please help me.. i just want my computer to be
thawed those unfreezer programs doesnt work on ver6.00.220.1523 i hope
somebody can help me. big thanks in advance. my email is chelly_phil@yahoo.com
|
|
| Subject:
|
Deep Freeze 6 default password |
Date: |
4 May 2007 |
| From: |
sanurcafeyahoo.co.id |
I need to know the default password for deep freeze 6 workstation.
Many thanks for the help.
Regards,
Juli tw - Bali Indonesia |
|
| Subject:
|
solution for uninstalling deep freeze |
Date: |
5 May 2007 |
| From: |
jamalmorroco |
| i want a solution for the deep freeze that's installed in my pc and i forgot the code pls give something that will be efficient .i'll be marcieful to whole who'll give any information about the solution .thank in advance pls i'm waiting ++++ |
|
| Subject:
|
how to change the password for deep freeze 6.0 latest version |
Date: |
1 Oct. 2007 |
| From: |
ram4u2cuyahoo.co.in |
hi
can any one tell me how to uninstall 6.0 deep freeze or how to change the password , some one has changed the password of deefreeze in my system
|
|
| Subject:
|
Lost Deep Freeze Icon |
Date: |
4 Oct. 2007 |
| From: |
depradayahoo.com |
I know the password, but I don? know where I can write it, because the icon has gone from my tray. The PC is still frozen. I have also try with CONTROL+ALT+SHIFT+F6 but nothing happened.
Please help me.
Thank you. |
|
| Subject:
|
How to disable Deep Freeze V6.00.020.1523 |
Date: |
7 Oct. 2007 |
| From: |
g_penkd51hotmail.com |
| somebody help me, i can't unfreeze deep freeze v6, i forgot the password. I need deep unfreeze for that version thanks, friends |
|
| Subject:
|
cannot thame |
Date: |
7 Oct. 2007 |
| From: |
binju_susyahoo.com |
| how can i get deep unfreeze software cause i install deep freeze in my PC and i can't remmember my password. |
|
| Subject:
|
How to disable Deep Freeze V6.20.020.1692 |
Date: |
16 Oct. 2007 |
| From: |
soundermasteryahoo.com |
| pls help to diasble it. i forget my password. i cant save any files on my computer.. my computer is now useless... T_T |
|
| Subject:
|
Help me to disable Deep Freeze V6.00.020.1523 |
Date: |
30 Oct. 2007 |
| From: |
haditz_theaayahoo.com |
| i've just try to installed that version of df, but when i'm gonna install another program, i can't disable it....could some one help me.... |
|
| Subject:
|
cant disable Deep freezer v6.00.020.1523 |
Date: |
1 Nov. 2007 |
| From: |
zeroco2007yahoo.com |
| i used this software and cant unfreez it again please some one heple me overcome this becouse it's has limite me form doing my work. i can't store any thing on my pc . |
|
| Subject:
|
this may help |
Date: |
9 Nov. 2007 |
| From: |
just reply to this post |
| for all of you who said you forgot your passwords... I know your a hacker, but so am I... anyways. If you actually own a legit copy, u can use ur enterprise administrator program that u needed to distribute deep freeze in the first place, to create OTP (one time passwords). But that's probably not the case you hackers. If you are in a school or office... they will most likely have the software run in matinence mode once a day (at my school it's 6:00a.m). if it will let you, simply change the clock to this time, and if they keyboard and mouse aren't disabled, u will have 3 minutes to do whatever you want before it restarts itself (ie. uninstall the software). If you are using a trial version, or it will not let u change the time or date, go into the system BIOS and change it (60 days from when it was installed, if your using the trial edition, then it will expire and be thawed) or change the time if you are using the full version. And if none of those things work, boot from a DOS CD or floppy and delete all of the deep freeze files, and it should die and not bother you again. Any questions? |
|
| Subject:
|
grrrr |
Date: |
22 Nov. 2007 |
| From: |
kight_1230yahoo.com |
I can't Unfreeze
do you can? help me!!!!!!!!! |
|
| Subject:
|
hii |
Date: |
6 Dec. 2007 |
| From: |
smileyh92hotmail.com |
hii listen i forgot my password for deep freeze v6 is there any way to bypass it or change it plss helppp
anyone!!! |
|
| Subject:
|
way around deepfreeze |
Date: |
9 Aug. 2008 |
| From: |
batamizhotmail.com |
for those freind who have trouble with deepfreeze and can't get rid of deepfreeze etc. first install the norton partiation magic and resize the system partition which you have installed deepfreeze (system drive {c: in most users cases} ) then restart
deepfreeze protection should have gone completly. now either reinstall deepfreeze if you realy need it or do what ever you want.
tested this method on atleast 5 pc which have deepfreeze trouble and this method have sorted alomst all of htem.
regards |
|
| Subject:
|
deep freez |
Date: |
28 Oct. 2008 |
| From: |
loby loby-pcyahoo.com |
| press shitf+crtrl+alt + f6 bring up the deep freezer dialog for password
|
|
| Subject:
|
Anti Deep Freeze v0.1 |
Date: |
23 Nov. 2009 |
| From: |
none |
| search for Anti Deep Freeze v0.1 .>> work with V6 :) |
|
| Subject:
|
bad deep freeze |
Date: |
2 Dec. 2009 |
| From: |
software expert |
| this deep freeze in in fact worse than a virus.in most cases i used a problem with unability to unfreeze it with no icon in the task bar forced me to format more than viruses did |
|
| Subject:
|
help pls |
Date: |
18 Jan. 2010 |
| From: |
nicholas.loves.ugmail.com |
| somebody help me, i can't unfreeze deep freeze v6, i forgot the password, i can't change time and other in my computer, somebody please help send me unfreezer 1.7 or the tutorial... |
|
|
|
|