Advertisement
Civilization Fanatics' Center  

Welcome to Civilization Fanatics' Center.

You are currently viewing our site as a guest which gives you limited access to our site features. By joining our free community, you will be able to participate in the discussions, search the forum, send private messages, vote in polls, upload your own screenshots to the gallery, and access many other special features. Registration is fast, simple and absolutely free, so sign up today! If you have any problems with the registration process or your account login, please contact support.

Go Back   Civilization Fanatics' Forums > COLOSSEUM > Computer Talk

Notices

Reply
 
Thread Tools
Old Nov 27, 2007, 08:50 AM   #1
Lonkut
..........:run:..........
 
Lonkut's Avatar
 
Join Date: Jul 2004
Location: ......
Posts: 859
Can username and password of something be extracted from computer?

I have heard that ppl can extract password and username of pretty much anything just by accessing the comp where pass and username were inserted. How is that possible without a virus or any other program? I've heard that ppl go to regedit and look it up in the appropriate folder? How is that possible?
Lonkut is offline   Reply With Quote
Old Nov 27, 2007, 07:12 PM   #2
Genocidicbunny
Mr [10]
 
Genocidicbunny's Avatar
 
Join Date: Feb 2005
Location: In the motherland.
Posts: 5,472
That depends a lot on the program. I have pulled the passwords off my login on XP before, so I know thats possible for sure. With a lot of patience and skill, if the person has access to your computer, they can pull any password from it.
__________________
Optimists learn English, Pessimists learn Chinese. Realists learn to assemble an AK-47.
Genocidicbunny is offline   Reply With Quote
Old Nov 27, 2007, 09:50 PM   #3
STATS
Habitual Wonder Builder
 
Join Date: Aug 2006
Location: Raleigh, NC
Posts: 37
Sometimes people use a keylogger program to get usr names and pwds
STATS is offline   Reply With Quote
Old Nov 27, 2007, 09:58 PM   #4
GVBN
Emperor
 
GVBN's Avatar
 
Join Date: Aug 2004
Location: Finland
Posts: 1,794
Passwords are most likely encrypted
GVBN is offline   Reply With Quote
Old Nov 28, 2007, 08:11 AM   #5
Genocidicbunny
Mr [10]
 
Genocidicbunny's Avatar
 
Join Date: Feb 2005
Location: In the motherland.
Posts: 5,472
Quote:
Originally Posted by GVBN View Post
Passwords are most likely encrypted
Encryption can be broken.
__________________
Optimists learn English, Pessimists learn Chinese. Realists learn to assemble an AK-47.
Genocidicbunny is offline   Reply With Quote
Old Nov 28, 2007, 01:32 PM   #6
Pentium
Digital Matter
 
Pentium's Avatar
 
Join Date: Nov 2004
Location: www.noughmad.org
Posts: 2,673
It's possible to do pretty much anything you want with a computer if you have physical access to it.
__________________
Noughmad's Land

Wouldn't it be great if you could ask a woman what she's thinking? - Jerry Seinfeld
(Avatar by Mistfit)
Pentium is offline   Reply With Quote
Old Nov 28, 2007, 10:34 PM   #7
kcwong
Emperor
 
Join Date: Jan 2002
Location: Hong Kong
Posts: 1,108
Images: 1
It depends on kind of password it is. Stupid password systems store passwords in plain, at the same location as the things those passwords are supposed to protected. Smarter ones store the password encrypted (i.e. can be decrypted, a reversible process) in a more secure location, away from the data they're protecting. A password system implemented with modern security-related common sense would NEVER store the password; instead the hash/digest (a non-reversible process) of the password is stored in a secure location, and when checking passwords, the password is hashed on the client machine and sent over network in a secure channel.

Some systems do not have such a choice, e.g. Windows can encrypt your files with a password. All data would have to be stored locally. I haven't read the specifics of the implementation (and I doubt that knowledge to open to public), but I guess Windows generate an encryption key using a password the user chose. The password and key will never be stored except in memory, when encrypting/decrypting files.

Though if I have physical access to a Windows machine, I can just overwrite the user account's password by using a special boot disc. Or I make my way in by cheating the user to run my programs. Then I can do things from the inside.

Once I have access, I can either wait for the user to input password (and capture it), or spirit the files away so I can crack it with brute force (try all possible combinations of password). I've read on news that PS3 is proved to be a cheap and efficient hardware for that purpose, even better than PCs.

Vista's User Access Control (UAC) could help a lot... provided that the user does not just blindly click "Yes" on every security dialog that pop up.
kcwong is offline   Reply With Quote
Old Nov 29, 2007, 08:50 AM   #8
warpus
pork strike force
 
warpus's Avatar
 
Join Date: Aug 2005
Location: Stamford Bridge
Posts: 30,744
Physical access to the computer would allow you to lift most passwords from it.

My work hired a company to do an analysis of how good our security was. Well, they STOLE one of our computers and used the passwords off it to hack into our servers. It was very embarrassing.
warpus is offline   Reply With Quote
Old Dec 05, 2007, 09:55 PM   #9
Souron
The Dark Lord
 
Souron's Avatar
 
Join Date: Mar 2003
Location: (GMT-5)
Posts: 5,518
I've heard hard disk passwords are supposed to be secure. Unfortunately, these are still vulnerable to brute force attacks.
__________________
One Civ to rule them all,
. . One Civ to find them,
One Civ to bring them all,
. . And in the darkness bind them.

If the above sig apears too large, download this font.
Souron is offline   Reply With Quote
Old Dec 05, 2007, 10:52 PM   #10
kcwong
Emperor
 
Join Date: Jan 2002
Location: Hong Kong
Posts: 1,108
Images: 1
Quote:
Originally Posted by Souron View Post
I've heard hard disk passwords are supposed to be secure. Unfortunately, these are still vulnerable to brute force attacks.
Yes, provided you have sufficient computing power, how much exactly depending on the strength of the encryption, you can brute force anything.

That's why we use session keys - a randomly generated key used to encrypt data. The session key is generated (and thus different) for each encryption. Session keys are typically symmetric keys - which means you use the same key to encrypt and decrypt. Encryption using symmetric algorithms are typically faster - thus encryption large amount of data won't be too much of a problem.

Then the session key is encrypted with asymmetric key - the public/private key pairs you usually hear about. The private key is held by the receiver, and is never revealed. The public key of the receiver is given to anyone who needs to send confidential data to the receiver. The public key will be used to encrypt the session key in the previous paragraph, and then the encrypted data plus the encrypted session key will be delivered to the receiver. The receiver then decrypt the encrypted session key with his private key, and then use the decrypted session key to decrypt the data. Asymmetric algorithms are typically much slower than symmetric ones - but this is less of a problem as it is only used to encrypt a relatively short session key.

Since the session key changes on each encryption, hackers will be spending a lot of effort to crack the encryption to gain just a single piece of data. On top of that, the public/private key pairs are periodically updated (with old data re-encrypted), giving less hints to hackers (with more and more data encrypted using the same key, cracking becomes easier) and making it even more futile to brute force.

And some systems will limit how many times you can present a wrong password... after that the data will be blocked or even self-destruct.

Though, of course, there are other ways to attack.

Last edited by kcwong; Dec 05, 2007 at 11:51 PM.
kcwong is offline   Reply With Quote
Reply

Bookmarks

Go Back Civilization Fanatics' Forums > COLOSSEUM > Computer Talk > Can username and password of something be extracted from computer?

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Extracted zip files go missing Zedi Civ4 - Technical Support 3 Jul 07, 2007 09:28 AM
What's behind your username? Phallus Civ4 - Rhye's and Fall of Civilization 39 Mar 22, 2007 02:10 PM
Patch 1.52 - Internet Civlization Password, Wrong Password Bug eelektrik Civ4 - Bug Reports 11 Apr 08, 2006 03:02 PM
If you entered a password to your civ, it says "worng password", but its right, ENTER roadkill15 Civ4 - Technical Support 2 Apr 07, 2006 04:32 AM
Oldest Fossil Protein Sequenced: Protein Sequence From Neanderthal Extracted And Sequ Knight-Dragon World History 0 Mar 31, 2005 10:25 PM


Advertisement

All times are GMT -6. The time now is 04:52 AM.


Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
This site is copyright © Civilization Fanatics' Center.
Support CFC: Amazon.com | Amazon UK | Amazon DE | Amazon CA | Amazon FR