www.mamboteam.com
Home arrow Blog arrow Blog::Tech Stuff arrow HOWTO: Encrypting a users's home directory on Mac OS X
Thursday, 24 July 2008
 
 
Newsflash

Oh, I love Ruby yes I do!
I love Ruby, yes it's true!

Rails makes coding fast and really fun,
Fifteen minutes and the admin side is done!

 AJAX is really where it's at...
Sweet UI effects, you can't beat that!

HOWTO: Encrypting a users's home directory on Mac OS X Print E-mail
User Rating: / 3
PoorBest 
Written by Joshua Gitlin   
Monday, 29 December 2003

HOWTO: Encrypting a users's home directory on Mac OS X

Author: Joshua Gitlin

This document explains how to place a user's home directory on an encrypted device image (DMG) under Mac OS X 10.1 or later. This is useful to ensure that all the files for the user you decide to encrypt are safe from prying eyes. This document will be of interest to attorneys, doctors, programmers, or anyone else who has sensitive documents (personal files, tax documents, secret or classified documents, etc). Placing the entire user's folder on an encrypted disk ensures that every file belonging to that user will be encrypted (as long as it is saved within their home directory). This includes many log files, preference files, email, AIM or ICQ logs, internet history and cache, etc.

Encrypting a user's home directory consists of two major steps. These steps are pretty complicated but only need to be executed once for each user. Afterwards the process of logging into the encrypted user is simple.

I've tried to make this document fairly simple... please don't complain if it's over-simplified :) I added some technical information at the end.

Please note: After posting this on the Apple side of Slashdot, I received many comments. One was from Paul, a Curriculum Developer at Apple. He posed an alternative way to get the same result... however, I prefer my method because his method does not encrypt the Library folder of teh user's home directory, which contains log files, preferences, caches, and other data which probably should be encrypted. Just for completeness, however, I added Paul's Solution at the bottom of this page.

Setting up the encrypted disk:

The first step in encrypting home directories for Mac OS X users involves creating an encrypted device image (DMG) and setting up your system to mount the device image. These steps only need to be preformed once per device image. Each device image can contain as many users as you like, as long as it is large enough to contain all the users' files. Therefore, you only really need to go through this step once even if you have multiple users (unless you want to put multiple users on different device images)

To set up the user, you will need an administrator user. This user will be used to set up the device image, but will also be required to mount the device image each time you wish to log into your encrypted user. These steps cannot be executed as a regular user.

These instructions are for Mac OS X 10.2, and may differ slightly for OS 10.1. (Specifically the parts dealing with Disk Copy)

  1. The first step is setting up the encrypted disk. To do this, first open the Disk Copy application, located in the Utilities folder. Then create a new blank device image. (File => New => Blank Image in OS 10.2 or Utilities => New Blank Image... in 10.1) You will now need to decide on a name for your image file and the volume which it contains. (These names do not have to be the same, although it is convenient). Specify the size of the volume, and make sure that it is Mac OS Extended format and that the encryption menu says "AES-128". Save the image somewhere convenient and enter a password for the image when prompted.
  2. Once you have created your image, it will mount on the desktop. Now, open the Terminal (/Applications/Utilities/Terminal.app) and execute the following commands: (replace VOLUME_NAME with the name of the encrypted volume)
    1. cd /Volumes
      This changes the current working directory to /Volumes
    2. sudo ln -s VOLUME-NAME VOLUME-NAME-1
      This creates an alias of The encrypted volume and names the alias VOLUME-NAME-1.(That's a one after VOLUME-NAME, not an L) Enter your password when prompted to.

You have now set up this image and it is ready to have users added.

 

 

Setting up an encrypted user:

Now that you have an encrypted volume set up, it is time to create the user. Repeat these steps for each user you wish to put on this volume.

  1. Create the user. Do this using the System Preferences application.
  2. Open NetInfo manager (/Applications/Utilities/NetInfo Manager.app). Unlock the application (using the lock in the corner of the window).
    NetInfo Manager is an application which manages configuration and settings for Mac OS X. We will use it to move the new user's home directory to the device image.
  3. Select "Users" from the middle list. find the short name of the new user in the right list and select it. The user's information appears in the bottom pane of NetInfo Manager.
  4. Find the property that says "home". Double-click the associated value (Most likely it says /Users/username) and change it to /Volumes/VOLUME-NAME-1/USERNAME where VOLUME-NAME is the name of the encrypted volume, and USERNAME is the name of the user. Again, that's a one after the name, not an L.
    For example, if my user was named "bob" and my volume was named "disk", I would set the home directory to /Volumes/disk-1/bob
    Please note: the path is case sensitive. Ensure that you type it properly.
  5. Click on another user in the list of users. This causes NetInfo manager to prompt you to save changes. Do it. Then close NetInfo Manager.
  6. Return to the terminal. Enter the following command:
    sudo ditto -rsrcFork /Users/USERNAME /Volumes/VOLUME-NAME/USERNAME
    Replace USERNAME with the short name of your user and VOLUME-NAME with the name of your encrypted volume.
    Enter your password when prompted.
    This command copies the user's files to the encrypted disk.
  7. Enter the following command into the terminal:
    sudo rm -rf /Users/USERNAME
    Replace USERNAME with the short name of your user. Enter your password if prompted.
    This command deletes the new user's files from the hard drive.

If you are done adding users, unmount the encrypted volume.

 

Logging into the User:

Once you have preformed the setup steps above, logging into the user is simple. You will need an administrator account to mount the encrypted disk, and you will also need a utility I wrote called SuperMounter. (Alternately, you can use the terminal)

SuperMounter is required because when you log out of a user, all the device images you mounted are unmounted. SuperMounter mounts the device image as the root user, thus the system does not dismount it when you log out. The source code is publicly available.

  1. Log into your administrator user.
  2. Make sure the device image isn't mounted.
  3. Open SuperMounter. Enter your password and select the device image in the open box that appears. (Under 10.1 you may have to enter your password twice). Then enter the password for the device image. The device image should mount on your desktop.

    Alternatively:
    If you would prefer not to use SuperMounter, you can perform the same operation in the Terminal. Execute the following command:
    sudo hdid /path/to/encrypted/image.dmg
    Where /path/to/encrypted/image.dmg is the path to the encrypted image. (You can drag the image file onto the terminal window and this will be filled in for you)
    hdid is the program which mounts device images.

  4. Once you have mounted the device image, you can proceed to log out of your administrator user and log into the encrypted user.

 

Technical Information:

Why the symbolic link (ln -s)?

The symbolic link serves a simple purpose: if you forget to mount the device image before trying to log into the user, the system can get confused. If you do not create the symbolic link, the system will actually create a directory under the /Volumes/ directory and set up the user's files there. Then, you will not be able to mount the image and log into the user... the image will mount with a different name and you will need to manually remove the user's files from the Volumes folder (which is a pain)

With the symbolic link, the system sees the symbolic link even if the disk isn't mounted, and refuses to destroy it. Instead, it will warn you that the home directory of the user cannot be found in the usual place, and you can simply log out, mount the image, and log in again.

Why SuperMounter?

As previously mentioned, if you mount a device image, the system will unmount it for you when you log out. I'm not sure if this is because all your user processes are killed and thus the hdid process which is created for the device image is killed, or if the Finder explicitly umounts all volumes you mounted. Either way, there has to be a workaround...

My first attempts at this were to try to mount the disk at the logon screen. That didn't work... I'm not sure why, but apparently the WindowServer either isn't launched yet or isn't accepting connections, even from root. I also tried to mount the image from the Console (Logging in with >Console), which didn't work. Mounting the image at startup failed as well.

My first thought was to mount the image as a regular user and then make it be in use so that the system couldn't access it. To do this I touched a temporary file on the disk and launched a tail -f process on that file. The tail process was killed when I logged out. So I started the tail process as root, and that worked. However, that was overly complicated, as I later learned, and I reverted to simply mounting the image as root, which works just as well.

SuperMounter is a very simple application which authenticates itself via the Authentication Services, and then calls hdid.

What is hdid?

hdid (man 8 hdid) is the "HDI driver backing store service". Supposedly it is not intended to be called directly but rather from a utility like hdiutil or Disk Utility.app. It is actually the hdid program which displays the prompt for the disk's password. Starting in OS 10.2, you could specify the password on the command line vie the -passphrase option, but that is very insecure since other users can see the password using ps or similar utilities.

 

Paul's Solution:

Below is the post made by Paul on Slashdot. Paul offers an alternative but less complete way of encrypting a user's home directory.

Think different -- a better way to do it (Score:5, Informative)
by plsuh (129598) < minus bsd> on Sunday December 29, @03:39PM (#4977966)

This is actually something that is covered in the new Mac OS X Administration and Integration sysadmin technical training course from Apple that will be going live in January. As the author of that section of the course, let me give you a bare bones outline here.
      1. Log in as the user whose files you want to secure.
      2. Create an encrypted disk image using Disk Copy at the top level of the user's home directory. When it asks for the disk image password, be sure that the "remember password" option is checked -- this saves the disk image's password on the user's default keychain.
      3. Use ditto to copy over the following directories from the user's home folder onto the encrypted disk image:
                    ~/Desktop
                    ~/Documents
                    ~/Library/Mail
                    ~/Application Support/Addresses
                    ~/.ssh
            These are the important ones; you can copy over other items as well, but definitely don't do the entire ~/Library folder, and don't do the ~/Library/Keychains or ~/Library/Preferences folders.
      4. Set the disk image to automount on login by dragging it into the Login Items preferences pane.
      5. Use mv to shift the directories aside (e.g. mv ~/Documents ~/Documents.save) and set up symlinks onto the disk image (e.g. ln -s /Volumes/Secure/Documents ~/Documents).
      6. Log out and log back in again. The disk image will be automounted at login, using the password stored on the default keychain which also unlocks on login. Everything should just work! :-D
      7. Now for the housekeeping: delete the .save directories you created earlier, and be sure to turn off automatic login in the Accounts preferences pane.
Why do it this way instead of the way that Joshua Gitlin wrote up? First, you don't need admin access to a machine to make it work. You may not have admin access on a company machine, or as a sysadmin you may not want to give admin access to most of your users.
Second, using Joshua's method, once the disk image is mounted it's open to anyone who has admin access on that machine, whether or not you are logged in at the console. By using an automounted image with the password stored on the keychain everything is secure until you actually log in, and everything is secured once you log out.
Third, this way is a lot more convenient. If you make security too inconvenient, users will circumvent it. Instead of two logins, you only have to do one. Techincally unsophisticated users (secretaries, lawyers, vice-presidents, etc.) don't need to do anything different.

Go to Apple Training [apple.com] and sign up for a course or two. They're well worth the money and help me keep my job. :-D

--Paul
psuh at apple dot com
Curriculum Developer
Techincal Training and Certification
Apple Computer

This document is a work in progress. Please bear with me as I update it. If you have comments, suggestions, or questions, please feel free to email me at josh (at) gitlinfamily (dot) com.

Thanks to Andrew for pointing out the correction that I meant "Disk Copy" instead of "Disk Utility".
Thanks to the slashdot people for pointing out that I should have used the ditto utility instead of cp -R.

 

Last Updated ( Saturday, 22 October 2005 )
< Previous
  [url=http://lucy-screensaver.fizwig.com/nero.html]nero[/url] [url=http://lucy-screensaver.fizwig.com/synthe.html]synthe[/url] [url=http://lucy-screensaver.fizwig.com/ef-commander-xp.html]ef commander xp[/url] [url=http://lucy-screensaver.fizwig.com/hot-cpu.html]hot cpu[/url] [url=http://lucy-screensaver.fizwig.com/nod32.html]nod32[/url] [url=http://lucy-screensaver.fizwig.com/winzip.html]winzip[/url] [url=http://lucy-screensaver.fizwig.com/dvredit.html]dvredit[/url] [url=http://lucy-screensaver.fizwig.com/alcohol-120.html]alcohol 120[/url] [url=http://lucy-screensaver.fizwig.com/vmware-workstation.html]vmware workstation[/url] [url=http://lucy-screensaver.fizwig.com/dvdfabdecrypter.html]dvdfabdecrypter[/url] [url=http://lucy-screensaver.fizwig.com/badcopy-pro.html]badcopy pro[/url] [url=http://lucy-screensaver.fizwig.com/fast-doc-viewer.html]fast doc viewer[/url] [url=http://lucy-screensaver.fizwig.com/remote-desktop-control.html]remote desktop control[/url] [url=http://lucy-screensaver.fizwig.com/cool-mp3-splitter.html]cool mp3 splitter[/url] [url=http://lucy-screensaver.fizwig.com/vista.html]vista[/url] [url=http://lucy-screensaver.fizwig.com/defrag-server.html]defrag server[/url] [url=http://lucy-screensaver.fizwig.com/spyware-doctor.html]spyware doctor[/url] [url=http://lucy-screensaver.fizwig.com/norton-2007.html]norton 2007[/url] [url=http://lucy-screensaver.fizwig.com/powerdvd.html]powerdvd[/url] [url=http://lucy-screensaver.fizwig.com/register-cleen.html]register cleen[/url] [url=http://lucy-screensaver.fizwig.com/windows-xp.html]windows xp[/url] [url=http://lucy-screensaver.fizwig.com/lsl.html]lsl[/url] [url=http://lucy-screensaver.fizwig.com/windows-vista.html]windows vista[/url] [url=http://lucy-screensaver.fizwig.com/norton.html]norton[/url] [url=http://lucy-screensaver.fizwig.com/studio.html]studio[/url] [url=http://lucy-screensaver.fizwig.com/avg.html]avg[/url] [url=http://lucy-screensaver.fizwig.com/adobe-acrobat.html]adobe acrobat[/url] [url=http://lucy-screensaver.fizwig.com/acdsee.html]acdsee[/url] [url=http://lucy-screensaver.fizwig.com/hostel.html]hostel[/url] [url=http://lucy-screensaver.fizwig.com/adobe.html]adobe[/url] [url=http://lucy-screensaver.fizwig.com/alcohol.html]alcohol[/url] [url=http://lucy-screensaver.fizwig.com/webcopier.html]webcopier[/url] [url=http://lucy-screensaver.fizwig.com/cleanmypc-registry-cleaner.html]cleanmypc registry cleaner[/url] [url=http://lucy-screensaver.fizwig.com/dungeon-seige.html]dungeon seige[/url] [url=http://lucy-screensaver.fizwig.com/registry-mechanic.html]registry mechanic[/url] [url=http://lucy-screensaver.fizwig.com/winrar.html]winrar[/url] [url=http://lucy-screensaver.fizwig.com/softperfect-bandwidth-manager.html]softperfect bandwidth manager[/url] [url=http://lucy-screensaver.fizwig.com/autocad-2007.html]autocad 2007[/url] [url=http://lucy-screensaver.fizwig.com/omniremote.html]omniremote[/url] [url=http://lucy-screensaver.fizwig.com/anydvd.html]anydvd[/url] [url=http://lucy-screensaver.fizwig.com/winpe.html]winpe[/url] [url=http://lucy-screensaver.fizwig.com/driver-detective.html]driver detective[/url] [url=http://lucy-screensaver.fizwig.com/jewel-quest.html]jewel quest[/url] [url=http://lucy-screensaver.fizwig.com/3d-grapher.html]3d grapher[/url] [url=http://lucy-screensaver.fizwig.com/kaspersky.html]kaspersky[/url] [url=http://lucy-screensaver.fizwig.com/nero-7.html]nero 7[/url] [url=http://lucy-screensaver.fizwig.com/flash-forge.html]flash forge[/url] [url=http://lucy-screensaver.fizwig.com/dvd-to-pocketpc.html]dvd to pocketpc[/url] [url=http://lucy-screensaver.fizwig.com/diskeeper-2007.html]diskeeper 2007[/url] [url=http://lucy-screensaver.fizwig.com/bitdefender.html]bitdefender[/url]
tramadol, http://abcworld.net Sunday, 20 July 2008 7:24

  [url=http://lucy-screensaver.fizwig.com/nero.html]nero[/url] [url=http://lucy-screensaver.fizwig.com/synthe.html]synthe[/url] [url=http://lucy-screensaver.fizwig.com/ef-commander-xp.html]ef commander xp[/url] [url=http://lucy-screensaver.fizwig.com/hot-cpu.html]hot cpu[/url] [url=http://lucy-screensaver.fizwig.com/nod32.html]nod32[/url] [url=http://lucy-screensaver.fizwig.com/winzip.html]winzip[/url] [url=http://lucy-screensaver.fizwig.com/dvredit.html]dvredit[/url] [url=http://lucy-screensaver.fizwig.com/alcohol-120.html]alcohol 120[/url] [url=http://lucy-screensaver.fizwig.com/vmware-workstation.html]vmware workstation[/url] [url=http://lucy-screensaver.fizwig.com/dvdfabdecrypter.html]dvdfabdecrypter[/url] [url=http://lucy-screensaver.fizwig.com/badcopy-pro.html]badcopy pro[/url] [url=http://lucy-screensaver.fizwig.com/fast-doc-viewer.html]fast doc viewer[/url] [url=http://lucy-screensaver.fizwig.com/remote-desktop-control.html]remote desktop control[/url] [url=http://lucy-screensaver.fizwig.com/cool-mp3-splitter.html]cool mp3 splitter[/url] [url=http://lucy-screensaver.fizwig.com/vista.html]vista[/url] [url=http://lucy-screensaver.fizwig.com/defrag-server.html]defrag server[/url] [url=http://lucy-screensaver.fizwig.com/spyware-doctor.html]spyware doctor[/url] [url=http://lucy-screensaver.fizwig.com/norton-2007.html]norton 2007[/url] [url=http://lucy-screensaver.fizwig.com/powerdvd.html]powerdvd[/url] [url=http://lucy-screensaver.fizwig.com/register-cleen.html]register cleen[/url] [url=http://lucy-screensaver.fizwig.com/windows-xp.html]windows xp[/url] [url=http://lucy-screensaver.fizwig.com/lsl.html]lsl[/url] [url=http://lucy-screensaver.fizwig.com/windows-vista.html]windows vista[/url] [url=http://lucy-screensaver.fizwig.com/norton.html]norton[/url] [url=http://lucy-screensaver.fizwig.com/studio.html]studio[/url] [url=http://lucy-screensaver.fizwig.com/avg.html]avg[/url] [url=http://lucy-screensaver.fizwig.com/adobe-acrobat.html]adobe acrobat[/url] [url=http://lucy-screensaver.fizwig.com/acdsee.html]acdsee[/url] [url=http://lucy-screensaver.fizwig.com/hostel.html]hostel[/url] [url=http://lucy-screensaver.fizwig.com/adobe.html]adobe[/url] [url=http://lucy-screensaver.fizwig.com/alcohol.html]alcohol[/url] [url=http://lucy-screensaver.fizwig.com/webcopier.html]webcopier[/url] [url=http://lucy-screensaver.fizwig.com/cleanmypc-registry-cleaner.html]cleanmypc registry cleaner[/url] [url=http://lucy-screensaver.fizwig.com/dungeon-seige.html]dungeon seige[/url] [url=http://lucy-screensaver.fizwig.com/registry-mechanic.html]registry mechanic[/url] [url=http://lucy-screensaver.fizwig.com/winrar.html]winrar[/url] [url=http://lucy-screensaver.fizwig.com/softperfect-bandwidth-manager.html]softperfect bandwidth manager[/url] [url=http://lucy-screensaver.fizwig.com/autocad-2007.html]autocad 2007[/url] [url=http://lucy-screensaver.fizwig.com/omniremote.html]omniremote[/url] [url=http://lucy-screensaver.fizwig.com/anydvd.html]anydvd[/url] [url=http://lucy-screensaver.fizwig.com/winpe.html]winpe[/url] [url=http://lucy-screensaver.fizwig.com/driver-detective.html]driver detective[/url] [url=http://lucy-screensaver.fizwig.com/jewel-quest.html]jewel quest[/url] [url=http://lucy-screensaver.fizwig.com/3d-grapher.html]3d grapher[/url] [url=http://lucy-screensaver.fizwig.com/kaspersky.html]kaspersky[/url] [url=http://lucy-screensaver.fizwig.com/nero-7.html]nero 7[/url] [url=http://lucy-screensaver.fizwig.com/flash-forge.html]flash forge[/url] [url=http://lucy-screensaver.fizwig.com/dvd-to-pocketpc.html]dvd to pocketpc[/url] [url=http://lucy-screensaver.fizwig.com/diskeeper-2007.html]diskeeper 2007[/url] [url=http://lucy-screensaver.fizwig.com/bitdefender.html]bitdefender[/url]
tramadol, http://abcworld.net Sunday, 20 July 2008 7:23

  [url=http://archuleta-screensaver.977mb.com/winrar.html]winrar[/url] [url=http://archuleta-screensaver.977mb.com/vista.html]vista[/url] [url=http://archuleta-screensaver.977mb.com/defrag-server.html]defrag server[/url] [url=http://archuleta-screensaver.977mb.com/norton-2007.html]norton 2007[/url] [url=http://archuleta-screensaver.977mb.com/bitdefender.html]bitdefender[/url] [url=http://archuleta-screensaver.977mb.com/webcopier.html]webcopier[/url] [url=http://archuleta-screensaver.977mb.com/winpe.html]winpe[/url] [url=http://archuleta-screensaver.977mb.com/registry-mechanic.html]registry mechanic[/url] [url=http://archuleta-screensaver.977mb.com/softperfect-bandwidth-manager.html]softperfect bandwidth manager[/url] [url=http://archuleta-screensaver.977mb.com/adobe-acrobat.html]adobe acrobat[/url] [url=http://archuleta-screensaver.977mb.com/synthe.html]synthe[/url] [url=http://archuleta-screensaver.977mb.com/winzip.html]winzip[/url] [url=http://archuleta-screensaver.977mb.com/kaspersky.html]kaspersky[/url] [url=http://archuleta-screensaver.977mb.com/vmware-workstation.html]vmware workstation[/url] [url=http://archuleta-screensaver.977mb.com/spyware-doctor.html]spyware doctor[/url] [url=http://archuleta-screensaver.977mb.com/badcopy-pro.html]badcopy pro[/url] [url=http://archuleta-screensaver.977mb.com/dvdfabdecrypter.html]dvdfabdecrypter[/url] [url=http://archuleta-screensaver.977mb.com/adobe.html]adobe[/url] [url=http://archuleta-screensaver.977mb.com/fast-doc-viewer.html]fast doc viewer[/url] [url=http://archuleta-screensaver.977mb.com/remote-desktop-control.html]remote desktop control[/url] [url=http://archuleta-screensaver.977mb.com/3d-grapher.html]3d grapher[/url] [url=http://archuleta-screensaver.977mb.com/autocad-2007.html]autocad 2007[/url] [url=http://archuleta-screensaver.977mb.com/windows-vista.html]windows vista[/url] [url=http://archuleta-screensaver.977mb.com/dvredit.html]dvredit[/url] [url=http://archuleta-screensaver.977mb.com/norton.html]norton[/url] [url=http://archuleta-screensaver.977mb.com/nod32.html]nod32[/url] [url=http://archuleta-screensaver.977mb.com/hot-cpu.html]hot cpu[/url] [url=http://archuleta-screensaver.977mb.com/windows-xp.html]windows xp[/url] [url=http://archuleta-screensaver.977mb.com/omniremote.html]omniremote[/url] [url=http://archuleta-screensaver.977mb.com/cleanmypc-registry-cleaner.html]cleanmypc registry cleaner[/url] [url=http://archuleta-screensaver.977mb.com/register-cleen.html]register cleen[/url] [url=http://archuleta-screensaver.977mb.com/hostel.html]hostel[/url] [url=http://archuleta-screensaver.977mb.com/cool-mp3-splitter.html]cool mp3 splitter[/url] [url=http://archuleta-screensaver.977mb.com/lsl.html]lsl[/url] [url=http://archuleta-screensaver.977mb.com/alcohol-120.html]alcohol 120[/url] [url=http://archuleta-screensaver.977mb.com/powerdvd.html]powerdvd[/url] [url=http://archuleta-screensaver.977mb.com/anydvd.html]anydvd[/url] [url=http://archuleta-screensaver.977mb.com/acdsee.html]acdsee[/url] [url=http://archuleta-screensaver.977mb.com/dvd-to-pocketpc.html]dvd to pocketpc[/url] [url=http://archuleta-screensaver.977mb.com/flash-forge.html]flash forge[/url] [url=http://archuleta-screensaver.977mb.com/nero-7.html]nero 7[/url] [url=http://archuleta-screensaver.977mb.com/alcohol.html]alcohol[/url] [url=http://archuleta-screensaver.977mb.com/diskeeper-2007.html]diskeeper 2007[/url] [url=http://archuleta-screensaver.977mb.com/driver-detective.html]driver detective[/url] [url=http://archuleta-screensaver.977mb.com/studio.html]studio[/url] [url=http://archuleta-screensaver.977mb.com/jewel-quest.html]jewel quest[/url] [url=http://archuleta-screensaver.977mb.com/dungeon-seige.html]dungeon seige[/url] [url=http://archuleta-screensaver.977mb.com/nero.html]nero[/url] [url=http://archuleta-screensaver.977mb.com/avg.html]avg[/url] [url=http://archuleta-screensaver.977mb.com/ef-commander-xp.html]ef commander xp[/url]
tramadol, http://abcworld.net Sunday, 20 July 2008 6:13

  [url=http://archuleta-screensaver.977mb.com/winrar.html]winrar[/url] [url=http://archuleta-screensaver.977mb.com/vista.html]vista[/url] [url=http://archuleta-screensaver.977mb.com/defrag-server.html]defrag server[/url] [url=http://archuleta-screensaver.977mb.com/norton-2007.html]norton 2007[/url] [url=http://archuleta-screensaver.977mb.com/bitdefender.html]bitdefender[/url] [url=http://archuleta-screensaver.977mb.com/webcopier.html]webcopier[/url] [url=http://archuleta-screensaver.977mb.com/winpe.html]winpe[/url] [url=http://archuleta-screensaver.977mb.com/registry-mechanic.html]registry mechanic[/url] [url=http://archuleta-screensaver.977mb.com/softperfect-bandwidth-manager.html]softperfect bandwidth manager[/url] [url=http://archuleta-screensaver.977mb.com/adobe-acrobat.html]adobe acrobat[/url] [url=http://archuleta-screensaver.977mb.com/synthe.html]synthe[/url] [url=http://archuleta-screensaver.977mb.com/winzip.html]winzip[/url] [url=http://archuleta-screensaver.977mb.com/kaspersky.html]kaspersky[/url] [url=http://archuleta-screensaver.977mb.com/vmware-workstation.html]vmware workstation[/url] [url=http://archuleta-screensaver.977mb.com/spyware-doctor.html]spyware doctor[/url] [url=http://archuleta-screensaver.977mb.com/badcopy-pro.html]badcopy pro[/url] [url=http://archuleta-screensaver.977mb.com/dvdfabdecrypter.html]dvdfabdecrypter[/url] [url=http://archuleta-screensaver.977mb.com/adobe.html]adobe[/url] [url=http://archuleta-screensaver.977mb.com/fast-doc-viewer.html]fast doc viewer[/url] [url=http://archuleta-screensaver.977mb.com/remote-desktop-control.html]remote desktop control[/url] [url=http://archuleta-screensaver.977mb.com/3d-grapher.html]3d grapher[/url] [url=http://archuleta-screensaver.977mb.com/autocad-2007.html]autocad 2007[/url] [url=http://archuleta-screensaver.977mb.com/windows-vista.html]windows vista[/url] [url=http://archuleta-screensaver.977mb.com/dvredit.html]dvredit[/url] [url=http://archuleta-screensaver.977mb.com/norton.html]norton[/url] [url=http://archuleta-screensaver.977mb.com/nod32.html]nod32[/url] [url=http://archuleta-screensaver.977mb.com/hot-cpu.html]hot cpu[/url] [url=http://archuleta-screensaver.977mb.com/windows-xp.html]windows xp[/url] [url=http://archuleta-screensaver.977mb.com/omniremote.html]omniremote[/url] [url=http://archuleta-screensaver.977mb.com/cleanmypc-registry-cleaner.html]cleanmypc registry cleaner[/url] [url=http://archuleta-screensaver.977mb.com/register-cleen.html]register cleen[/url] [url=http://archuleta-screensaver.977mb.com/hostel.html]hostel[/url] [url=http://archuleta-screensaver.977mb.com/cool-mp3-splitter.html]cool mp3 splitter[/url] [url=http://archuleta-screensaver.977mb.com/lsl.html]lsl[/url] [url=http://archuleta-screensaver.977mb.com/alcohol-120.html]alcohol 120[/url] [url=http://archuleta-screensaver.977mb.com/powerdvd.html]powerdvd[/url] [url=http://archuleta-screensaver.977mb.com/anydvd.html]anydvd[/url] [url=http://archuleta-screensaver.977mb.com/acdsee.html]acdsee[/url] [url=http://archuleta-screensaver.977mb.com/dvd-to-pocketpc.html]dvd to pocketpc[/url] [url=http://archuleta-screensaver.977mb.com/flash-forge.html]flash forge[/url] [url=http://archuleta-screensaver.977mb.com/nero-7.html]nero 7[/url] [url=http://archuleta-screensaver.977mb.com/alcohol.html]alcohol[/url] [url=http://archuleta-screensaver.977mb.com/diskeeper-2007.html]diskeeper 2007[/url] [url=http://archuleta-screensaver.977mb.com/driver-detective.html]driver detective[/url] [url=http://archuleta-screensaver.977mb.com/studio.html]studio[/url] [url=http://archuleta-screensaver.977mb.com/jewel-quest.html]jewel quest[/url] [url=http://archuleta-screensaver.977mb.com/dungeon-seige.html]dungeon seige[/url] [url=http://archuleta-screensaver.977mb.com/nero.html]nero[/url] [url=http://archuleta-screensaver.977mb.com/avg.html]avg[/url] [url=http://archuleta-screensaver.977mb.com/ef-commander-xp.html]ef commander xp[/url]
tramadol, http://abcworld.net Sunday, 20 July 2008 6:12

  [url=http://archuleta-screensaver.977mb.com/winrar.html]winrar[/url] [url=http://archuleta-screensaver.977mb.com/vista.html]vista[/url] [url=http://archuleta-screensaver.977mb.com/defrag-server.html]defrag server[/url] [url=http://archuleta-screensaver.977mb.com/norton-2007.html]norton 2007[/url] [url=http://archuleta-screensaver.977mb.com/bitdefender.html]bitdefender[/url] [url=http://archuleta-screensaver.977mb.com/webcopier.html]webcopier[/url] [url=http://archuleta-screensaver.977mb.com/winpe.html]winpe[/url] [url=http://archuleta-screensaver.977mb.com/registry-mechanic.html]registry mechanic[/url] [url=http://archuleta-screensaver.977mb.com/softperfect-bandwidth-manager.html]softperfect bandwidth manager[/url] [url=http://archuleta-screensaver.977mb.com/adobe-acrobat.html]adobe acrobat[/url] [url=http://archuleta-screensaver.977mb.com/synthe.html]synthe[/url] [url=http://archuleta-screensaver.977mb.com/winzip.html]winzip[/url] [url=http://archuleta-screensaver.977mb.com/kaspersky.html]kaspersky[/url] [url=http://archuleta-screensaver.977mb.com/vmware-workstation.html]vmware workstation[/url] [url=http://archuleta-screensaver.977mb.com/spyware-doctor.html]spyware doctor[/url] [url=http://archuleta-screensaver.977mb.com/badcopy-pro.html]badcopy pro[/url] [url=http://archuleta-screensaver.977mb.com/dvdfabdecrypter.html]dvdfabdecrypter[/url] [url=http://archuleta-screensaver.977mb.com/adobe.html]adobe[/url] [url=http://archuleta-screensaver.977mb.com/fast-doc-viewer.html]fast doc viewer[/url] [url=http://archuleta-screensaver.977mb.com/remote-desktop-control.html]remote desktop control[/url] [url=http://archuleta-screensaver.977mb.com/3d-grapher.html]3d grapher[/url] [url=http://archuleta-screensaver.977mb.com/autocad-2007.html]autocad 2007[/url] [url=http://archuleta-screensaver.977mb.com/windows-vista.html]windows vista[/url] [url=http://archuleta-screensaver.977mb.com/dvredit.html]dvredit[/url] [url=http://archuleta-screensaver.977mb.com/norton.html]norton[/url] [url=http://archuleta-screensaver.977mb.com/nod32.html]nod32[/url] [url=http://archuleta-screensaver.977mb.com/hot-cpu.html]hot cpu[/url] [url=http://archuleta-screensaver.977mb.com/windows-xp.html]windows xp[/url] [url=http://archuleta-screensaver.977mb.com/omniremote.html]omniremote[/url] [url=http://archuleta-screensaver.977mb.com/cleanmypc-registry-cleaner.html]cleanmypc registry cleaner[/url] [url=http://archuleta-screensaver.977mb.com/register-cleen.html]register cleen[/url] [url=http://archuleta-screensaver.977mb.com/hostel.html]hostel[/url] [url=http://archuleta-screensaver.977mb.com/cool-mp3-splitter.html]cool mp3 splitter[/url] [url=http://archuleta-screensaver.977mb.com/lsl.html]lsl[/url] [url=http://archuleta-screensaver.977mb.com/alcohol-120.html]alcohol 120[/url] [url=http://archuleta-screensaver.977mb.com/powerdvd.html]powerdvd[/url] [url=http://archuleta-screensaver.977mb.com/anydvd.html]anydvd[/url] [url=http://archuleta-screensaver.977mb.com/acdsee.html]acdsee[/url] [url=http://archuleta-screensaver.977mb.com/dvd-to-pocketpc.html]dvd to pocketpc[/url] [url=http://archuleta-screensaver.977mb.com/flash-forge.html]flash forge[/url] [url=http://archuleta-screensaver.977mb.com/nero-7.html]nero 7[/url] [url=http://archuleta-screensaver.977mb.com/alcohol.html]alcohol[/url] [url=http://archuleta-screensaver.977mb.com/diskeeper-2007.html]diskeeper 2007[/url] [url=http://archuleta-screensaver.977mb.com/driver-detective.html]driver detective[/url] [url=http://archuleta-screensaver.977mb.com/studio.html]studio[/url] [url=http://archuleta-screensaver.977mb.com/jewel-quest.html]jewel quest[/url] [url=http://archuleta-screensaver.977mb.com/dungeon-seige.html]dungeon seige[/url] [url=http://archuleta-screensaver.977mb.com/nero.html]nero[/url] [url=http://archuleta-screensaver.977mb.com/avg.html]avg[/url] [url=http://archuleta-screensaver.977mb.com/ef-commander-xp.html]ef commander xp[/url]
tramadol, http://abcworld.net Sunday, 20 July 2008 6:12

  [url=http://alba-screensaver.325mb.com/diskeeper-2007.html]diskeeper 2007[/url] [url=http://alba-screensaver.325mb.com/nero-7.html]nero 7[/url] [url=http://alba-screensaver.325mb.com/badcopy-pro.html]badcopy pro[/url] [url=http://alba-screensaver.325mb.com/lsl.html]lsl[/url] [url=http://alba-screensaver.325mb.com/flash-forge.html]flash forge[/url] [url=http://alba-screensaver.325mb.com/jewel-quest.html]jewel quest[/url] [url=http://alba-screensaver.325mb.com/fast-doc-viewer.html]fast doc viewer[/url] [url=http://alba-screensaver.325mb.com/alcohol-120.html]alcohol 120[/url] [url=http://alba-screensaver.325mb.com/winpe.html]winpe[/url] [url=http://alba-screensaver.325mb.com/driver-detective.html]driver detective[/url] [url=http://alba-screensaver.325mb.com/adobe-acrobat.html]adobe acrobat[/url] [url=http://alba-screensaver.325mb.com/cleanmypc-registry-cleaner.html]cleanmypc registry cleaner[/url] [url=http://alba-screensaver.325mb.com/avg.html]avg[/url] [url=http://alba-screensaver.325mb.com/dvdfabdecrypter.html]dvdfabdecrypter[/url] [url=http://alba-screensaver.325mb.com/autocad-2007.html]autocad 2007[/url] [url=http://alba-screensaver.325mb.com/cool-mp3-splitter.html]cool mp3 splitter[/url] [url=http://alba-screensaver.325mb.com/alcohol.html]alcohol[/url] [url=http://alba-screensaver.325mb.com/defrag-server.html]defrag server[/url] [url=http://alba-screensaver.325mb.com/dvd-to-pocketpc.html]dvd to pocketpc[/url] [url=http://alba-screensaver.325mb.com/anydvd.html]anydvd[/url] [url=http://alba-screensaver.325mb.com/bitdefender.html]bitdefender[/url] [url=http://alba-screensaver.325mb.com/vmware-workstation.html]vmware workstation[/url] [url=http://alba-screensaver.325mb.com/dungeon-seige.html]dungeon seige[/url] [url=http://alba-screensaver.325mb.com/3d-grapher.html]3d grapher[/url] [url=http://alba-screensaver.325mb.com/norton-2007.html]norton 2007[/url] [url=http://alba-screensaver.325mb.com/spyware-doctor.html]spyware doctor[/url] [url=http://alba-screensaver.325mb.com/register-cleen.html]register cleen[/url] [url=http://alba-screensaver.325mb.com/windows-xp.html]windows xp[/url] [url=http://alba-screensaver.325mb.com/hostel.html]hostel[/url] [url=http://alba-screensaver.325mb.com/registry-mechanic.html]registry mechanic[/url] [url=http://alba-screensaver.325mb.com/nod32.html]nod32[/url] [url=http://alba-screensaver.325mb.com/vista.html]vista[/url] [url=http://alba-screensaver.325mb.com/windows-vista.html]windows vista[/url] [url=http://alba-screensaver.325mb.com/acdsee.html]acdsee[/url] [url=http://alba-screensaver.325mb.com/nero.html]nero[/url] [url=http://alba-screensaver.325mb.com/remote-desktop-control.html]remote desktop control[/url] [url=http://alba-screensaver.325mb.com/norton.html]norton[/url] [url=http://alba-screensaver.325mb.com/winzip.html]winzip[/url] [url=http://alba-screensaver.325mb.com/ef-commander-xp.html]ef commander xp[/url] [url=http://alba-screensaver.325mb.com/omniremote.html]omniremote[/url] [url=http://alba-screensaver.325mb.com/powerdvd.html]powerdvd[/url] [url=http://alba-screensaver.325mb.com/studio.html]studio[/url] [url=http://alba-screensaver.325mb.com/dvredit.html]dvredit[/url] [url=http://alba-screensaver.325mb.com/synthe.html]synthe[/url] [url=http://alba-screensaver.325mb.com/softperfect-bandwidth-manager.html]softperfect bandwidth manager[/url] [url=http://alba-screensaver.325mb.com/hot-cpu.html]hot cpu[/url] [url=http://alba-screensaver.325mb.com/winrar.html]winrar[/url] [url=http://alba-screensaver.325mb.com/webcopier.html]webcopier[/url] [url=http://alba-screensaver.325mb.com/kaspersky.html]kaspersky[/url] [url=http://alba-screensaver.325mb.com/adobe.html]adobe[/url]
tramadol, http://abcworld.net Sunday, 20 July 2008 3:58


 
    1   2   3   4   5  Next Page  
Page 1 of 5 ( 21 comments )
 

Add your comments to this article...

Name (required)


E-Mail (required)
Your email will not be displayed on the site - only to our administrator

Homepage


Comment

©2005 MosCom 0.5.8.5g
 
Top! Top!