Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Security and Privacy
FedoraForum Search

Forgot Password? Join Us!

Security and Privacy Sadly, malware, spyware, hackers and privacy threats abound in today's world. Let's be paranoid and secure our penguins, and slam the doors on privacy exploits.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 4th May 2004, 11:48 AM
ghenry's Avatar
ghenry Offline
Retired Community Manager
 
Join Date: Mar 2004
Location: Scotland
Age: 34
Posts: 1,019
Interesting article about Passwords

http://www.pclinuxonline.com/modules...rder=0&thold=0

Bear in mind that just because your password isn't in English, that you're safe.

I once got into a webcam for fun. It had a public username/pass to view the pictures it took, but had ftp access enabled. Guess what, the same username/pass let you into the camera, then the /etc/passwd file was the old style, i.e. not shadowed and had read access.

A simple download of this, accompanied with John the Ripper and a 80MB dictionary file I made from every language and word available for download, cracked it in 5 mins (it was in French) on a PIII450 and gave me root access.

Why? Just for fun, then I fixed for our admin.
__________________
http://blog.suretecsystems.com
Reply With Quote
  #2  
Old 5th May 2004, 12:11 AM
Jman Offline
Registered User
 
Join Date: Mar 2004
Location: Minnesota, USA
Age: 27
Posts: 7,909
And the worst password of all: password.

Any password that's actually a word will fail to a dictionary attack eventually, no matter what the language.
Reply With Quote
  #3  
Old 9th February 2005, 09:53 PM
perigee Offline
Registered User
 
Join Date: Dec 2004
Posts: 12
but if you set password as ''https://www.findyou.info', try this case. One of my friend used to use this method to set the password
Reply With Quote
  #4  
Old 10th February 2005, 12:41 AM
greatscot
Guest
 
Posts: n/a
Call me paranoid if you like, but my system passwords are a mix of upper case. lower case, special chars and numbers. And all passwords are 16 characters with mandatory changes every 30 days. I wonder how many passwords could be made from those combinations. Heh, I suck at math, anyone know what formula would be used to find this out?
Reply With Quote
  #5  
Old 10th February 2005, 12:44 AM
kosmosik's Avatar
kosmosik Offline
Registered User
 
Join Date: Apr 2004
Location: Warsaw, Poland
Age: 32
Posts: 1,085
I use keys :] to remote systems, my local logins are passwordless since nobody untrusted will login locally anyway...
as for web I let my firefox remember all passwords (randomly generated via apg) and I use master password for it...
Reply With Quote
  #6  
Old 10th February 2005, 12:48 AM
Jman Offline
Registered User
 
Join Date: Mar 2004
Location: Minnesota, USA
Age: 27
Posts: 7,909
Quote:
Originally Posted by greatscot
Call me paranoid if you like, but my system passwords are a mix of upper case. lower case, special chars and numbers. And all passwords are 16 characters with mandatory changes every 30 days. I wonder how many passwords could be made from those combinations. Heh, I suck at math, anyone know what formula would be used to find this out?
Assuming you just used upper and lowercase alphanumeric, it would be 62^16 (26 * 2 + 10, multipled by itself 16 times), which is 47,672,401,706,823,533,450,263,330,816.
Reply With Quote
  #7  
Old 10th February 2005, 01:04 AM
greatscot
Guest
 
Posts: n/a
Speaking of passwords, I use this nice app for password storage: http://passwordmanager.sourceforge.net/

PwManager saves your passwords blowfish-encrypted in one file, so you have to remember only one master-password to open the master file list instead of remembering tons of passwords. Instead of the master-password you can use a chipcard, so you don't have to remember a password to access the list.
Reply With Quote
  #8  
Old 10th February 2005, 01:07 AM
greatscot
Guest
 
Posts: n/a
Jman: thanks for that info, that's a lot of combinations.
Reply With Quote
  #9  
Old 10th February 2007, 11:00 PM
THE Ralfinator's Avatar
THE Ralfinator Offline
Registered User
 
Join Date: Feb 2006
Location: Vermont, USA
Age: 24
Posts: 184
Does anyone know of a wordlist generator for use with John the Ripper? I mean is the only way of having a wordlist to use with it to download one from the internet? Sometimes you remember certain things about the password you forgot, so being able to generate your own wordlist using the things you remember would seem like a good way of doing it.
__________________
Gigabyte GA-MA785GPM-US2H
Athlon II X2 240 @2.8 GHz
2 GB G.Skill ddr2 pc2-6400
500 GB Western Digital Caviar Blue HDD
40 GB Western Digital HDD
Reply With Quote
  #10  
Old 11th February 2007, 04:13 AM
Jman Offline
Registered User
 
Join Date: Mar 2004
Location: Minnesota, USA
Age: 27
Posts: 7,909
Quote:
Originally Posted by THE Ralfinator
Does anyone know of a wordlist generator for use with John the Ripper? I mean is the only way of having a wordlist to use with it to download one from the internet? Sometimes you remember certain things about the password you forgot, so being able to generate your own wordlist using the things you remember would seem like a good way of doing it.
If you needed to crack your own passwords yes that would help. It would be a lot more efficient than throwing the dictionary at it. As far as I know you only need a new line delimited file.
Reply With Quote
  #11  
Old 11th February 2007, 02:27 PM
pdb Offline
Registered User
 
Join Date: May 2004
Posts: 269
Quote:
Originally Posted by THE Ralfinator
Does anyone know of a wordlist generator for use with John the Ripper? I mean is the only way of having a wordlist to use with it to download one from the internet? Sometimes you remember certain things about the password you forgot, so being able to generate your own wordlist using the things you remember would seem like a good way of doing it.
You could also run the downloaded wordlist through a regular expression to get just the words that match what you remember. This would handle simple stuff like "I think it started with either s or t" while still allowing the password cracker to try words that you might not explicitly think to put in a wordlist.
__________________
http://pdb.homelinux.net
Registered Linux User # 348314
Reply With Quote
  #12  
Old 11th February 2007, 05:59 PM
THE Ralfinator's Avatar
THE Ralfinator Offline
Registered User
 
Join Date: Feb 2006
Location: Vermont, USA
Age: 24
Posts: 184
Quote:
If you needed to crack your own passwords yes that would help. It would be a lot more efficient than throwing the dictionary at it. As far as I know you only need a new line delimited file.
So is there a program out there that can generate a new line delimited file using the arguments you provide? Things like starting with certain letters, or having a certain amount of characters in it?

Quote:
You could also run the downloaded wordlist through a regular expression to get just the words that match what you remember. This would handle simple stuff like "I think it started with either s or t" while still allowing the password cracker to try words that you might not explicitly think to put in a wordlist.
I agree that method would to a degree, but only if your password is indeed in the wordlist to begin with.
__________________
Gigabyte GA-MA785GPM-US2H
Athlon II X2 240 @2.8 GHz
2 GB G.Skill ddr2 pc2-6400
500 GB Western Digital Caviar Blue HDD
40 GB Western Digital HDD
Reply With Quote
  #13  
Old 11th February 2007, 09:59 PM
pdb Offline
Registered User
 
Join Date: May 2004
Posts: 269
Quote:
Originally Posted by THE Ralfinator
So is there a program out there that can generate a new line delimited file using the arguments you provide? Things like starting with certain letters, or having a certain amount of characters in it?

I agree that method would to a degree, but only if your password is indeed in the wordlist to begin with.
Grep could do it with carefully constructed regular expressions.
__________________
http://pdb.homelinux.net
Registered Linux User # 348314
Reply With Quote
  #14  
Old 16th February 2007, 12:58 PM
tornadof3's Avatar
tornadof3 Offline
Registered User
 
Join Date: May 2006
Location: UK
Posts: 164
Quote:
Originally Posted by Jman
Assuming you just used upper and lowercase alphanumeric, it would be 62^16 (26 * 2 + 10, multipled by itself 16 times), which is 47,672,401,706,823,533,450,263,330,816.

To make people feel *even* safer/happier etc etc, if you include special chars eg $ % " * ^ < ? etc etc then that number would go up. A quick count on my keyboard reveals 24 such special chars (prob more)... yielding

(26 * 2 + 10 + 24)^16 = 86^16
= 8,953,136,790,196,197,357,146,289,012,736
~= 8.95 x 10^30

Assuming a crack system could try 5,000,000 combinations per second (optimistic!), that would still take 56,780,421,043,862,236 years to exhaust all combinations via 'brute force'..
__________________
CPU: AMD Athlon 64 X2 5600+
RAM: 4GB DDR2
HDD: 1x320GB
Fedora 9 x86_64
Reply With Quote
Reply

Tags
article, interesting, passwords

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Interesting article about the "Linux attitude" Thetargos Linux Chat 51 16th June 2008 11:20 AM
Interesting Article: EWeek northcornice Linux Chat 2 25th December 2007 10:50 PM
Interesting article rerushg Linux Chat 2 20th August 2007 03:32 PM


Current GMT-time: 10:09 (Saturday, 25-05-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat