Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

encryption cracking

Name: Anonymous 2008-09-07 5:28

i forgot my password to my truecrypt volume now i can't watch my 20 gigs of porn help

AES encryption algorithm
RIPEMD-160 hash algorithm

Name: Anonymous 2008-09-07 5:39

If you start bruteforcing now you'll be done in a few million years.
You're fucked. There's a reason AES is an international encryption standard.

Name: Anonymous 2008-09-07 6:04

i pretty sure the password only has 19 unique character two of witch are numbers but i could any where from 8 up to 39 character long

does any one know a password generator that will string together dictionary words and add numbers in between them because i found a java-app that that will test passwords from a txt file but i need to make the password list.

Name: Anonymous 2008-09-07 10:26

Do the math, it's:

8 chars? (2^10 + 6^26) * 8P2 = 3,0 * 10^18 passwords
9 chars? (2^10 + 7^26) * 9P2 = 1,3 * 10^20 passwords
...
39 chars? (2^10 + 37^26) * 39P2 = 4,0 * 10^37 passowrds

I might be rusty on my statistics, but sum it up and you have... a fuckton.

Name: Anonymous 2008-09-07 10:26

Do the math, it's:

8 chars? (2^10 + 6^26) * 8P2 = 3,0 * 10^18 passwords
9 chars? (2^10 + 7^26) * 9P2 = 1,3 * 10^20 passwords
...
39 chars? (2^10 + 37^26) * 39P2 = 4,0 * 10^37 passowrds

I might be rusty on my statistics, but sum it up and you have... a fuckton.

Name: Anonymous 2008-09-07 15:01

Do the math it's:
1/3   =   0.33333~
3/3   =   0.99999~

1 = 0.999999~

Name: Anonymous 2008-09-07 18:41

>>6
1/2 = 0.50
2/2 = 1

1=1

Name: Anonymous 2008-09-07 22:24

>>3
#!/usr/bin/python

dic = open('/usr/share/dict/words')
for word1 in dic:
    for word2 in dic:
        for i in range(10, 100):
            print word1 + i + word2


My words file has 98,569 entries, so that will generate a list of 864,710,450,729 potential passwords.
That's assuming you aren't doing anything fancy with capitalisation.

Name: Anonymous 2008-09-07 22:27

Incidentally, that password file will be 16.4 TB, so you may want to do something more clever than just dumping stdout to a file. It shouldn't take more than a few hundred years to crack, though.

Good luck!

Name: Anonymous 2008-09-07 23:32

op here
i know what the numbers are so that would cut the potential passwords down a lot
but how would i change the  script to just insert '36' into the string instread of a ramdom number between 10 and 100

and the characters available are 'abcefghlmnorstuwz' so instead of any words just ones that contain only these characters will be strung together

one more thing is that the password could be up to 10 words (with the word 'the' repeating up to 4 times) long plus the numbers

Name: Anonymous 2008-09-08 0:15

>>10
Give it up, dude. You aren't getting your files back.

Name: Anonymous 2008-09-08 0:28

dont be a dumb shit and lose your password.

Name: Anonymous 2008-09-08 2:37

>>10
$ grep '^[^dijkpqvxy]*$' /usr/share/dict/words | wc -l
19122


So that's 1912210! * 9! possible combinations, give or take a handful. Even just calculating that number would take days.

Name: Anonymous 2008-09-18 16:54

Pornhub is your best option. Unless you remember that password..

Name: Anonymous 2008-09-27 19:13

Why don't people get simple math like this?  Haven't they heard the "grains of rice on a chessboard" story?

OP: are you talking about a password or a passphrase?

Imaging a 10 character password, where each letter could be A through Z (26 different chars).

1 char == 26 possibilities
2 chars == 26 * 26 possibilities
3 chars == 26 * 26 * 26 possibilities
ETC

tldr you've lost your porn.

Name: Anonymous 2008-09-29 9:48

>>16
Welcome to three weeks ago. We've had this entire discussion already.

Name: Anonymous 2008-09-30 0:17

needs more quantam computing.

Name: Anonymous 2008-09-30 10:09

As well as TIME people need to remember POWER.  Each calculation uses some amount of power.

Assign some amount of power to each calculation, then multiply that up for the number of calculations needed to brutus, and you see that most reasonable encryption schemes need ridiculous amounts of power to brute force.

Name: Anonymous 2008-10-01 10:12

>>17
Useful relevant facts are useful.

Name: Anonymous 2008-10-03 1:06

ok i narrowed it down to 12 possible word, and i tried the python script but it only prints the first word with the other word after it

ex
word1word2
word1word3
word1word4
...

can any one help with a better script?

Name: Anonymous 2008-10-03 23:55

>>21
Open the dictionary file twice rather than using the same open file twice. But before you do, read >>9.

Name: Anonymous 2008-10-05 4:12

>>22
i narrowed it down to 12 words and with the password not being more then 10 words that 12^10 or 61917364224 combinations.

Name: Anonymous 2008-10-05 4:46

Just walk away. Dumbfuck.

Name: Anonymous 2008-10-21 3:06

haha you lost your porn 61917364224 will take over a hundred years.

Name: Anonymous 2009-03-22 8:09

bump

Name: Anonymous 2009-03-26 10:08

why would you encrypt porn?

Name: Anonymous 2009-03-26 11:32

>>27
i live with my parents

Name: Anonymous 2009-03-26 21:28

>>28
underage b&

Name: Anonymous 2009-03-29 5:15

put it on the internet, and let us try to break it. It'll be faster that way, and when someone gets a password, you'll hear about it

Name: Anonymous 2009-03-30 15:58

>>29
i knew some one was going to say that but i'm 21
>>30
it's a 20 gig volume so that's not going to happen

Name: Anonymous 2009-04-01 20:15

some friend of mine in the same position made a cluster of about 150 computers solved it in 2 hours and only took 4 hours of prep. :D but he's Bulgarian....

Name: Anonymous 2009-04-06 17:03

The password is "God".

Pic related, there isn't one.

Name: Anonymous 2009-04-23 7:57

>>33
i lol'd

and i had a hard drive failure and don't have the truecrypt volume anymore oh well

Name: Anonymous 2009-04-26 4:30

Name: Anonymous 2009-04-27 1:32

dude, reverse the encryption system, a few megabytes of encryption can be un-hashed until you get the key, much better than 20 million years of brute force.

Reverse hashing.

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List