Stolen laptop, if password protected, can they ever get my files?

Someone broke into my car and stole my Macbook Pro (among other expensive things in the trunk), if it is password protected on both the OS X and Vista sides, can they ever get to my files?
I think they'd wipe the drive, right?
I'm so not lucky...
MacBook Pro 17"   Mac OS X (10.4.8)   dual boot Vista Ultimate

http://www.samspublishing.com/library/content.asp?b=MacOS_XUnleashed&seqNum=104&rl=1
Enabling the root Account
As mentioned earlier, the administrator account is a powerful account. But the most powerful account on a Unix machine is the account called root. People also refer to root as the super user, but the account name itself is root. On most Unix systems, the first available account is the root account. In OS X, however, the root account is disabled by default as a security precaution.
At some time, however, you might find it necessary to enable the root account. The root account can modify system settings, modify files it does not own, modify files that are not writable by default, modify a user's password, install software, become another user without having to know the password of that account, and so on. In other words, root can do anything anywhere, making the power of root immense. Because root has so much power, the only users who can become root are users with administrative privileges. Because a user with administrative privileges can become the root user, you should assign these capabilities to only completely trusted individuals.
If you choose to enable the root account, please remember to use it with caution. Although the root account might provide some extra utility, you could accidentally wipe out your system if you do not pay careful attention to what you type. In addition, the root password you choose should be difficult to guess. Finally, become the root user only as long as necessary to complete the task at hand.
With the presence of an administrative user, it might be a long time, if ever, before you discover a need for enabling the root user. There are many approaches that you can take for dealing with the root user, from ways to use root without enabling the root account to actually enabling the root account.
Let's take a look at four different ways to gain root access to your system. Although you can choose whichever method you like, it's useful to understand that even though some of these methods appear to work magic, they all accomplish very much the same thing.
The root user is disabled because it does not have a valid password set. Because there are a number of ways to set a password, there are also several ways to enable root, including one method (the first we'll look at), that was designed specifically for assigning the root account password and only the root password. In addition, you'll see how the sudo command can provide root-level access even when the root password is disabled. We recommend that users access the root account only when absolutely necessary.
Using the NetInfo Manager Utility
There are a couple of graphical ways to enable the root account using the NetInfo Manager utility. Do not worry if you do not understand what the NetInfo Manager utility is at this time. We will take an in-depth look at the NetInfo Manager utility in Chapter 23.
NetInfo Manager: Method One
Click on Applications in the Finder window toolbar. Open the Utilities folder and then open the NetInfo Manager utility.
If nothing appears automatically when you open the NetInfo Manager, under the Domain menu, select Open; then select the default domain, which will be /.
Click on the lock button in the bottom-left side of the window to enable a mode that allows making changes. Enter the name and password of an administrative user; then click OK.
Under the Domain menu, select Security. Then choose Enable Root User from the submenu. Unless you have previously set a root password, a message appears with a NetInfo Error, indicating that the password is blank. Click OK.
Enter the root password you want to use, and then click Set. Remember that the root password should not be easily guessable.
Enter the password again for verification, and then click Verify.
Under the Domain menu, select Save. A request to Confirm Modification appears. Click on Update this copy.
Under the Options menu, select Restart All NetInfo Domains on Local Host. An alert asking whether you really want to restart the machine's NetInfo servers appears. Click Yes.
Click on the lock button again to prevent any further changes. Then close the NetInfo Manager.
You might find it sufficient just to click on the lock button again to save your changes. Figure 11.5 shows an example of what an enabled root account looks like in the NetInfo Manager. Note that the password field no longer has an * in it.
Figure 11.5 The root account has been enabled on this machine. Note the * that was in the password field has been replaced with an encrypted password.
NetInfo Manager: Method Two
You could try this alternative NetInfo Manager utility method if the first one does not work for you. The danger to this method is that it copies the password of another user to the root user.
Click on Applications in the Finder window toolbar. Open the Utilities folder; then open the NetInfo Manager utility. If nothing appears automatically when you first open the NetInfo Manager, from the Domain menu, select Open and then select the default domain, which will be /.
Click on the lock button in the bottom-left side of the window to enable a mode that allows making changes. Enter the name and password of an administrative user. Then click OK.
Click on Users in the second list, and then click on a user you created whose password you know.
Double-click on the value across from passwd in the bottom section of the window and copy it. What you are looking at is an encoded copy of the user's password.
Click on root in the users list. Note that the default value for the password for root is *, which means that no one can log in as root right now. Using * in the passwd field is a way to lock a user from the machine.
Double-click in the field with the *; then paste in the encoded password from the previous user to replace the *. The * should no longer be present when you are done.
Select Save from the Domain menu. A request to Confirm Modification appears. Click Update This Copy.
Select Restart All NetInfo Domains on Local Host under the Options menu. An alert asking whether you really want to restart the machine's NetInfo servers appears. Click Yes.
Click the lock button again to prevent any further changes; then close the NetInfo Manager.
Again, note that you might find it sufficient to just click on the lock button again to save your changes.
Using the OS X Installation CD
Because the OS X installation CD comes with an option to reset a user's password, you could use the installation CD itself to enable the root user.
To enable the root account using the OS X installation CD, do the following:
Insert the OS X CD.
With the CD in the CD-ROM drive, reboot the machine. Hold the C key while the machine reboots.
Wait for the Installer to appear and then select the Reset Password option under the Installer menu.
Select the OS X disk that contains the root account you want to enable. If you notice a spinning CD icon appear after you have chosen the Reset Password option, don't wait for the spinning to end to select your OS X disk. The System Administrator (root) user appears as the default user.
Enter a new password and then re-enter the password for verification. Click Save. Click OK when the Password Saved box appears.
Quit the Password Reset application, quit the Installer, and click Restart.
Using sudo at the Command Line
Although we won't start looking at the command-line utilities in depth until Chapter 15, "Command-Line Applications," we take this opportunity to demonstrate some ways to accomplish tasks that root might do by using the sudo command-line utility. It is all right if you do not feel comfortable with trying anything you see in this section at this time. When you are more familiar with working with the command line, you can return to this section. If you do want to try anything in this section, you can run the commands in a terminal window. Just open the Terminal application in the Utilities folder in the Applications folder.
Using sudo to Run Commands as root
sudo is a command-line utility that allows use of the root account without necessarily enabling root.
For example, in a terminal window, you could use sudo to reboot the machine now:
[localhost:~] joray% sudo shutdown -r now
The most common way to use sudo is to preface each command that you want root to do with the sudo utility. If you are asked for a password, use the password of the user who is executing the sudo command. If the user is not eligible to execute sudo, the command is not executed.
If you need to execute a few commands in a row as root, you could try a couple alternative uses of sudo. When you are done with the tasks for root, type exit at the end of your session.
In this example, your shell is elevated to that of root until you exit the session:
[localhost:~] joray% sudo -s
We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these two things:
#1) Respect the privacy of others.
#2) Think before you type.
Password:
[localhost:~] root#
Notice that the prompt changes to include root#, as a reminder that you now have the power of root.
In this example, sudo is used to run su to become root until you exit the session. When root is enabled, su can be used to switch to the root user. When using su by itself, the password you enter to become root is that of root, rather than yours, as you do with sudo.
[localhost:~] joray% sudo su
Password:
[localhost:/Users/joray] root#
Notice that in this example, the prompt also includes root# as a reminder of your power as root. Remember, to return to the status of a regular user, type exit when you are done with your root session.
Using sudo to Enable the root Account
Recall that the sudo command is used to execute a command that root might execute. A way to enable the root account is to use sudo to execute passwd, which is a command used to change passwords.
Here is an example:
[localhost:~] joray% sudo passwd root
Password:
Changing password for root.
New password:
Retype new password:
[localhost:~] joray%
The password that you initially enter is your password. Then you supply a password for root, and re-enter it for verification. If you mistype the password, you will be prompted again, as shown in this example:
[localhost:~] joray% sudo passwd root
Password:
Changing password for root.
New password:
Retype new password:
Mismatch; try again, EOF to quit.
New password:
Retype new password:
[localhost:~] joray%

Similar Messages

  • Can I ever get my puchases back? Dead hard drive.........

    My old macbook died - I made tv show purchases through itunes on that computer. I have lost the hard drive forever - and got a new macbook. I was not able to load all purchases to my ipod before it died. Can I ever get those purchases back?

    The policy on lost purchases is that you have to pay to download them again:
    "Once a Product is purchased and you receive the Product, it is your responsibility not to lose, destroy, or damage the Product, and Apple shall be without liability to you in the event of any loss, destruction, or damage."
    You could try contacting the iTunes Music Store Customer Service and you might be able to persuade them to sanction a second free download. There have been occasional reports in the iTunes forum of this happening, however just be aware that they are not under any obligation to do so. If you click on any of the links on this page you'll find a space at the bottom to email your query: iTMS Customer Service

  • Can i ever get my photos back if i have deleted them and then emptied the trash?

    can i ever get my photos back if i have deleted them and then emptied the trash?

    Yes — just restore them from your backup.
    No backup? This is why you need one. Now you know.
    You may be able to recover some or all of your pictures, but not the structure of your iPhoto Library, using one of these data recovery utilities:
    Data Rescue 3: http://www.prosofteng.com/products/data_rescue.php
    FileSalvage 7: http://subrosasoft.com/OSXSoftware/index.php?main_page=product_info&products_id= 1
    Both are offered in demo versions that will show you what the full version could recover before you have to pay for anything.

  • How can I launch a site that I designed for a client using their MobileMe account? Can they 'open' my iWeb files on their iWeb software?

    How can I launch a site that I designed for a client using their MobileMe account? Can they 'open' my iWeb files on their iWeb software?

    If you give them the Domain.sites2 file that iWeb used to create the site  they will be able to open it with iWeb application (it has to be the same version as you have) and make changes.  But if you're expected to also make changes you'll need a way to send that file back and forth between the two. 
    Also there's an online MacWorld article that describes a way that both of you could manage the site using Dropbox.  Look at Managing an iWeb site from multiple Macs.
    OT

  • I bought a relative's original iPad. I want to leave the apps on it and add my own pdfs to read. My itunes account is really for my iPod. the computer says that if I "Sync" the iPad will be erase, and become like my iPods. how can I just get my files onto

    I am a first-time iPad owner/user. I bought a relative's original iPad. I want to leave the apps on it and add my own pdfs to read. My itunes account is really for my iPod. iTunes message says that if I "Sync" the iPad will be erase, and become like my iPods. If I make a new iTunes account, would the apps be erased when I tried to use it?
    How can I just get my files onto this iPad, and still have the apps that my relative left there for me?
    Thank you.

    iPads sync to 1 computer only.
    All media and apps are tied to the Apple ID that purchased them.
    Without your relatives ID and password, you cannot update any of the Apps.
    I am pretty certain he is also violating Apples terms of service by giving you the apps.

  • Stolen Itouch and password protection

    My Itouch was stolen today. I had it password protected. Can the thief access it any other way? I hope not. At least I get the satisfaction of knowing they can't use it!

    If you were accessing email on the iPT, I would change the password to that account immediately.
    Sorry to pop your bubble, but even though the thief can't access the iPT in its current state, they could restore it to factory settings...

  • Attachments appearing as password-protected when they're not

    Several times recently, I've had clients (on windows) tell me that attachments I've sent them in Mail -- whether they're zipped archives or single files -- indicate that a password is required before the file can be accessed. I've set no password protections, though, and this never happened before the past week. Anybody else having the same problem? Is this an issue with a recent upgrade?

    Here's your problem. Select the objects and click on the Expand button in the Pathfinder panel
    After this just click on the straight lines to delete.

  • Is there any way I can recover deleted pictures from Camera Roll and iCloud? Please please help me. All of my precious pictures are gone that I can never EVER get back. I dont have any iCloud or Camera Roll backup; and my PC can't download more software.

    Hi everyone! I'm in need of extreme help. You see, today, two months ago I went out of the country from the United States of America. I took about 1500 pictures ONLY on my iPod touch. When I returned to the United States to my home, I accidentally deleted a little more than 100 pictures. Then, thinking I could get ALL of the pictures back at once, I restored my iPod touch from an iCloud backup I had a couple of days before. Instead of getting all of my pics back, they all got erased. The pictures that I did delete were deleted from Camera Roll AND Photo Stream (iCloud). Then, I was only able to get about 500 pictures back from iCloud. So about 1000 are still gone. When i did the restore, I thought all my pictures would be there, but they weren't and I couldn't possibly figure out why; because a restore from iTunes or iCloud is supposed to restore your device to the settings of the time you backed up your device. All of my other settings were just the way they were supposed tone for the time being, all except my pictures, which contained not one picture in any folder. So EVERYTHING from Cameta Roll was gone, and only about 500 pictures survived. I kept retoring and restoring, hoping they would come back but unfortunately they didn't. Then one time a restored again, I saw all of them back!! But then, within a blink of an eye, they disappeared as soon as I tapped on one picture. Then, I knew they were still in reach, but I just had to find them. Where could those 1000 pictures go? I looked up how to recover deleted photos, but I have to install a software. My computer CANNOT possibly take anymore software on it, my PC is very sensitive and I cannot delete anything off of it. Please please help me. What can I do to get my pictures back? They are memories that I can never EVER EVER get back. Thank you so much.

    Please please help me, if you know how.

  • Password Protecting a directory (say a htm file on a Y drive)

    Hope someone can help. I am looking to password protect a .htm file in a Y drive directory. I have downloaded some JAVA script but it doesnt seem to work on the destination file (it work on a web page but not on the htm file i want!).
    Someone mentioned a file:// protocol, ring any bells?
    Thanks

    I don't know how to do that but Java programming isn't where I would look for the answer. You do know that Java and Javascript are different languages, right?

  • Password protected - how do I get back in?

    I have somebody else's MBP which is password protected from the Boot-Up screen = the name of the Owner appears, of course, but I do not have the password. This is probably a OS X question too, probably - but
    How do I get in there? Can I use Target-Disk mode and get in there and extract the files I want?
    Perhaps that's too easy - then anybody can get in, right?
    Is there a safe, proper work around to get past the password? I need to be able to extract the files before I go in there and delete everything and re-install.
    Thank you very much.

    OK. Try http://support.apple.com/kb/HT1274
    Cheers
    Rod

  • BB stolen and no BB protect - can I still block the BB ?

    After my BB was stolen last Saturday I blocked my number but because I swithched from Mobistar (where I bought it) to Ortel, Mobistar cannot block the BB. I only found out after the theft that I should have installed BB protect - is there anyway to block my stolen BB device ?

    Well, you said you switched service to Ortel, since they are your service provider they should be able to block it, I'm not sure how all that works, but blocking stolen phones is good for their business - forces people to buy their phones. I don't see why they wouldn't be able to block it, even though you didn't buy it from them. Maybe one day all stolen phones will be rendered useless and people will stop stealing them. Would be nice if you could detonate a stolen phone, lol.
    Well Behaved Women Rarely Make History

  • Lost ipod touch it was password protected can apple track it.  i have the serial number

    lost ipod touch it was passcode protected.  can apple track it.  i have the serial number

    Apple does not track stolen devices. If you didn't have the Find My iPod touch app installed, you're pretty much out of luck.
    Reporting a lost or stolen Apple product

  • SEO and Flash, can they ever be friends

    Hi All,
    I have recently been questioning the SEO side of things; and
    am currently trying to better optimize my site. I use quite a lot
    of flash on my site, and it sorted dawned on me that Flash is doing
    me no favours when it comes down to SEO - I will need to get a good
    ranking, as this year I will be putting a lot of money and time
    into making our site a success story ;)
    Am I a little green on this or what?
    Anyone know any tips/tricks on how best to bring SEO and
    Flash together, to better work in page ranking?
    What do folks with totally 100% Flash sites do when it comes
    down to SEO? As there is only a few meta tags and title tag
    available?
    I love Flash, and would never let go! However, this SEO thing
    will always be a "Flash Avoidance" for new clients; how can one
    best assure them that Flash provides more than just a better brand
    image?
    A few weeks ago, a potential client stated "I would never
    have a flash menu".
    Kind Regards,
    Boxing Boom

    @kglad: swfaddress need not be timeline based, flash just has
    to respond by displaying the relevant content - which could be
    loaded content.
    My view is that the best way to achieve SEO is to use
    swfaddress in combination with a CMS. The CMS provides the same
    content in html for search spiders and to flash in a more 'flash
    friendly' format when flash is 'rendering' it. SWFaddress supports
    the deep-linking from search queries etc.
    The way you could think about this is that when flash
    requests the same content it gets (for example) xml defining what
    it needs to do, whereas if the browser requests it , it gets the
    basic html version. But the content is only ever defined once for
    both versions of the output from the CMS.
    Drupal (a CMS I am familiar with, but I'm sure other CMSes
    have similar modules) has a swfaddress module as well as
    services/amfphp modules that let flash request content.
    My own (somewhat neglected) site has flash requesting all the
    content via Drupal. I am not currently 'displaying' it using flash:
    flash is loading the content (using as2 LoadVars in json format)
    and 'rendering' it via the browser via ExternalInterface and
    javascript. This was a kind of experiment just to see if I could do
    it - it does store pages in flash memory so some things happen a
    little different when navigating to a previously viewed page. But
    it could also easily do its own alternate rendering of the same
    content, as more structured data and rendering them in its own way
    inside flash.
    My own example is not so great (it is due for an overhaul)
    but I know there are examples out there using this approach with
    flash.
    The beauty of this approach is that you get SEO via the
    traditional spidering approaches, deeplinking to the correct
    content from search query results, forward/back button support,
    non-flash based browser support, along with easy content
    maintenance. It does require learning a CMS and the approaches for
    integration with flash though.

  • Password Protect - Can Anyone Help ??

    My boyfriend has his password on on his blackberry and the attempt was 10 tries. Unsuccessfully the 10 attempts were up and it just automatically wiped his phone. I thought it was suppose to lock you out for a certain amount of time before you could try again. I also looked in my curve 9300 for the option to see if you could change this instead of having the phone itself wiped but I am not able to find it.
    Does anyone know if this is just a general option and can not be changed or is it somewhere's where you can change the feature?
    Any help would be great ! I got nervous and turned my password off for the fear of my handheld being wiped.
    Thanks !
    `__;;* Freedom Is The Potential To Challenge Yourself Far Beyond The Constraints Of Traditional Rule
    Solved!
    Go to Solution.

    Hello,
    BB's are highly secure. When the device lock password is enabled, it adds the functionality to wipe itself clean if the password is entered wrongly too many times. That is just the way it works. There is no setting to change to alter how it works.
    Taking regular backups is, as with all computing devices, not an optional venture.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I'm unable to commbine pdf's files?...they are not password protected and they are adobe files

    Any idea?

    Hi tquinn24
    Are you using Acrobat ?
    If Yes, Please Refer : http://www.adobe.com/in/products/acrobat/merge-pdf-files.html
    Or provide more details ...

Maybe you are looking for

  • Ipod Touch frozen - white apple logo on black screen

    Today - after downloading a couple updates to Ap's - my touch mysteriously went to a black screen with white apple logo.   I have been searching everywhere for solutions - and theone of holding the home and on-off button for 20seconds gets it to turn

  • HT204088 Is there anyway to download my Purchase history?

    Is there any way I can download my iTunes purchases, specificlly my in app purchases?  I have hundres of purchases, and need to copy some (maybe 150+) of the order numbers.  iTunes does not allow me to copy and paste the order number, and with the co

  • Regarding tables for Invoice

    Hi What are the tables for INVOICE. Regards Sandeep. Edited by: Sandeep Reddy on Feb 28, 2008 3:41 PM

  • How to assign PGI date manually

    Hi experts, System uses current date for the PGI date automatically.  Our requirement is that it should be editable.  Presently we are using the following cycle - SO>DO>Picking >Shipment.  We do the PGI from the shipment u2013 shipment start button. 

  • Our website account domain is suspended- how can it be restored?

    our website account domain is suspended- how can it be restored?