You got hacked!!! Heres the reason why...password encryption!!

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • borked
    Totally Borked
    • Feb 2005
    • 6284

    #101
    Originally posted by interracialtoons
    Ahhhhh! Put a sock in it!

    I had said that a 3char encrypted (using crypt() )password was bad and could be cracked in no time by someone who saw the encrypted password(like a employee of the site).

    That's all I said. The you go off into space and make a big deal about it.

    Did you run the last fucking code I posted?

    Go ahead and try your 3char encryption in my code and it will undo that shit in less than 3 secs!
    what you actulaly said was that a 6char passwd was better than an 8char passwd

    For coding work - hit me up on andy // borkedcoder // com
    (consider figuring out the email as test #1)



    All models are wrong, but some are useful. George E.P. Box. p202

    Comment

    • interracialtoons
      Confirmed User
      • May 2006
      • 1910

      #102
      Originally posted by darksoul
      haha, so you finnaly read what a rainbow table is

      HAHAHA! I bet a million dollars you don't have a fucking rainbow table and you will have to wait 2 fucking years to build one.
      Done.

      Comment

      • darksoul
        Confirmed User
        • Apr 2002
        • 4997

        #103
        Originally posted by borked
        anyway, I said random salts.
        rainbow tables are lookup tables. No good if the salt is random - the encrypted pass will change each time
        sure, but there are better ways to crack DES
        I was mainly pointing that bf is not as time expensive as it used to be
        1337 5y54|)m1n: 157717888
        BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
        Cambooth

        Comment

        • darksoul
          Confirmed User
          • Apr 2002
          • 4997

          #104
          Originally posted by interracialtoons
          HAHAHA! I bet a million dollars you don't have a fucking rainbow table and you will have to wait 2 fucking years to build one.
          lets see the money
          1337 5y54|)m1n: 157717888
          BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
          Cambooth

          Comment

          • MaddCaz
            Confirmed User
            • Mar 2006
            • 9483

            #105
            ssuspect witness dont come OUTSIIIIDE...

            BigCocks.com -
            MatureWomen.com -
            Tranny.com -
            DrunkGirls.com -
            TeenGirls.com -
            MonsterCock.com and
            many more... Click
            here to see them all!

            Comment

            • borked
              Totally Borked
              • Feb 2005
              • 6284

              #106
              Originally posted by darksoul
              sure, but there are better ways to crack DES
              I was mainly pointing that bf is not as time expensive as it used to be
              no, i do agree. But like all, there are limitations.
              Best to use blowfish as cipher anyways ;)

              For coding work - hit me up on andy // borkedcoder // com
              (consider figuring out the email as test #1)



              All models are wrong, but some are useful. George E.P. Box. p202

              Comment

              • ServerGenius
                Confirmed User
                • Feb 2002
                • 9377

                #107
                Originally posted by borked
                if you have access to the encrypted passwd file, yeah. but then wouldn't the server be already hacked?
                You'd be suprised how many people store password files in web accessible folders and have Options +Indexes in their httpd.conf
                | http://www.sinnerscash.com/ | ICQ: 370820 | Skype: SinnersCash | AdultWhosWho |

                Comment

                • darksoul
                  Confirmed User
                  • Apr 2002
                  • 4997

                  #108
                  Originally posted by ServerGenius
                  You'd be suprised how many people store password files in web accessible folders and have Options +Indexes in their httpd.conf
                  Options +Indexes
                  doesn't make .ht* files show.
                  1337 5y54|)m1n: 157717888
                  BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
                  Cambooth

                  Comment

                  • ServerGenius
                    Confirmed User
                    • Feb 2002
                    • 9377

                    #109
                    Originally posted by darksoul
                    Options +Indexes
                    doesn't make .ht* files show.
                    no but people who have this their password file is called htpasswd
                    | http://www.sinnerscash.com/ | ICQ: 370820 | Skype: SinnersCash | AdultWhosWho |

                    Comment

                    • darksoul
                      Confirmed User
                      • Apr 2002
                      • 4997

                      #110
                      Originally posted by ServerGenius
                      no but people who have this their password file is called htpasswd
                      the standard is .htpasswd tho which is the most used.
                      but yea, some are that stupid.
                      1337 5y54|)m1n: 157717888
                      BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
                      Cambooth

                      Comment

                      • interracialtoons
                        Confirmed User
                        • May 2006
                        • 1910

                        #111
                        Originally posted by borked
                        anyway, I said random salts.
                        rainbow tables are lookup tables. No good if the salt is random - the encrypted pass will change each time

                        Will you stop with the random salts shit! It doesn't fucking matter.


                        Here's the code to brute force any three letter password no matter how is was created or whatever "salt":



                        $alphadata = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLM NOPQRSTUVWXYZ";
                        @one = split(//, $alphadata);
                        @two = @one;
                        @three = @one;
                        $a = 0;
                        foreach (@one) {
                        $b=0;
                        foreach(@two) {
                        $c = 0;
                        foreach (@three) {
                        $pw = "$one[$a]$two[$b]$three[$c]";
                        #### HTTP REQUEST LOGIN USING $pw;
                        #### IF RETURN CODE = 20 BAMM!!!!! I'M IN!!
                        $c++;}
                        $b++;}

                        $a++;}



                        Yeah, you can limit login tries to defeat it; but get off the random salt shit. That does fucking nothing.
                        Done.

                        Comment

                        • borked
                          Totally Borked
                          • Feb 2005
                          • 6284

                          #112
                          Originally posted by interracialtoons
                          Will you stop with the random salts shit! It doesn't fucking matter.


                          Here's the code to brute force any three letter password no matter how is was created or whatever "salt":



                          $alphadata = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLM NOPQRSTUVWXYZ";
                          @one = split(//, $alphadata);
                          @two = @one;
                          @three = @one;
                          $a = 0;
                          foreach (@one) {
                          $b=0;
                          foreach(@two) {
                          $c = 0;
                          foreach (@three) {
                          $pw = "$one[$a]$two[$b]$three[$c]";
                          #### HTTP REQUEST LOGIN USING $pw;
                          #### IF RETURN CODE = 20 BAMM!!!!! I'M IN!!
                          $c++;}
                          $b++;}

                          $a++;}



                          Yeah, you can limit login tries to defeat it; but get off the random salt shit. That does fucking nothing.
                          Will you shut the fuck up and read the context of my post?

                          For coding work - hit me up on andy // borkedcoder // com
                          (consider figuring out the email as test #1)



                          All models are wrong, but some are useful. George E.P. Box. p202

                          Comment

                          • interracialtoons
                            Confirmed User
                            • May 2006
                            • 1910

                            #113
                            Originally posted by ServerGenius
                            no but people who have this their password file is called htpasswd
                            Yeah, but if you're smart like me you don't even use .htpassword.
                            You can use any file in any directory to store passwords.

                            You tell htaccess where the file is in the .htacces file!

                            AuthUserFile /usr/home/Rootdirectory/8usdn2873hs772nas723a.txt

                            Stupid name in the root directory...not accessible to the web even if not password protected.
                            Done.

                            Comment

                            • ServerGenius
                              Confirmed User
                              • Feb 2002
                              • 9377

                              #114
                              Originally posted by interracialtoons
                              Yeah, but if you're smart like me you don't even use .htpassword.
                              You can use any file in any directory to store passwords.

                              You tell htaccess where the file is in the .htacces file!

                              AuthUserFile /usr/home/Rootdirectory/8usdn2873hs772nas723a.txt

                              Stupid name in the root directory...not accessible to the web even if not password protected.
                              I know I wasn't talking about me. If you're smart like me you store user accounts into a db on a seperate server over local lan and use sessions to
                              avoid lookups for every file that is loaded.
                              | http://www.sinnerscash.com/ | ICQ: 370820 | Skype: SinnersCash | AdultWhosWho |

                              Comment

                              • interracialtoons
                                Confirmed User
                                • May 2006
                                • 1910

                                #115
                                Originally posted by borked
                                Will you shut the fuck up and read the context of my post?
                                I will STFU if you will admit that I did as promissed!

                                I cracked a 3char encrypted password that was made with crypt(no matter the salt) in one fucking try!


                                --------------------------------
                                $passencrypted = "fill_it_in";

                                $alphadata = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLM NOPQRSTUVWXYZ";
                                @one = split(//, $alphadata);
                                @two = @one;
                                @three = @one;

                                $salt = substr($passencrypted, 0, 2);
                                print "salt = $salt<br>";
                                $a = 0;
                                foreach (@one) {
                                $b=0;
                                foreach(@two) {
                                $c = 0;
                                foreach (@three) {
                                $pw = "$one[$a]$two[$b]$three[$c]";
                                $check = crypt($pw, $salt);
                                if ($check eq $passencrypted) {print "$pw - is a possible password<br>"; exit;}
                                $c++;}
                                $b++;}

                                $a++;}
                                print "Ended OK";
                                Done.

                                Comment

                                • darksoul
                                  Confirmed User
                                  • Apr 2002
                                  • 4997

                                  #116
                                  Originally posted by interracialtoons
                                  I will STFU if you will admit that I did as promissed!

                                  I cracked a 3char encrypted password that was made with crypt(no matter the salt) in one fucking try!

                                  genius!

                                  and btw its more than 1 try
                                  1337 5y54|)m1n: 157717888
                                  BM-2cUBw4B2fgiYAfjkE7JvWaJMiUXD96n9tN
                                  Cambooth

                                  Comment

                                  • mrkris
                                    Confirmed User
                                    • May 2005
                                    • 2737

                                    #117
                                    Originally posted by borked
                                    if you have access to the encrypted passwd file, yeah. but then wouldn't the server be already hacked?
                                    Pulled from gooooooogle

                                    http://www.cs.wright.edu/~pmateti/In...etc-passwd.txt

                                    Not a real password file, but google will allow you tp find stuff.

                                    PHP-MySQL-Rails | ICQ: 342500546

                                    Comment

                                    • mrkris
                                      Confirmed User
                                      • May 2005
                                      • 2737

                                      #118
                                      Originally posted by mrkris
                                      Pulled from gooooooogle

                                      http://www.cs.wright.edu/~pmateti/In...etc-passwd.txt

                                      Not a real password file, but google will allow you tp find stuff.
                                      I just realized i posted the passwd file lol

                                      PHP-MySQL-Rails | ICQ: 342500546

                                      Comment

                                      • interracialtoons
                                        Confirmed User
                                        • May 2006
                                        • 1910

                                        #119
                                        Originally posted by darksoul
                                        genius!

                                        and btw its more than 1 try
                                        No...it took me one try to write the script and get the result needed to login.
                                        Done.

                                        Comment

                                        • mrkris
                                          Confirmed User
                                          • May 2005
                                          • 2737

                                          #120
                                          Originally posted by interracialtoons
                                          No...it took me one try to write the script and get the result needed to login.
                                          ICQ me you cock loving thunder cunt

                                          PHP-MySQL-Rails | ICQ: 342500546

                                          Comment

                                          • interracialtoons
                                            Confirmed User
                                            • May 2006
                                            • 1910

                                            #121
                                            Originally posted by mrkris
                                            ICQ me you cock loving thunder cunt
                                            Why don't you post your address so I can come over and put my foot up your ass and my fist down your throat.
                                            Done.

                                            Comment

                                            • interracialtoons
                                              Confirmed User
                                              • May 2006
                                              • 1910

                                              #122
                                              Hmmmm... better yet...whay don't I hack your password and post under your name.

                                              Go ahead and challege me to do it....BITCH!
                                              Done.

                                              Comment

                                              • mrkris
                                                Confirmed User
                                                • May 2005
                                                • 2737

                                                #123
                                                Originally posted by interracialtoons
                                                Why don't you post your address so I can come over and put my foot up your ass and my fist down your throat.
                                                Wasn't using that to talk shit but if you want to be a crybaby keyboard warrior so be it.

                                                PHP-MySQL-Rails | ICQ: 342500546

                                                Comment

                                                • mrkris
                                                  Confirmed User
                                                  • May 2005
                                                  • 2737

                                                  #124
                                                  Originally posted by interracialtoons
                                                  Hmmmm... better yet...whay don't I hack your password and post under your name.

                                                  Go ahead and challege me to do it....BITCH!
                                                  "I DARE YOU TO CHALLENGE ME". Please, crack my gfy password, violate a law. You're probably the same stupid kiddy that runs around throwing out words such as "Heap Overflow" and "NOP Slides". I WILL HAX YUR INTERWEB

                                                  PHP-MySQL-Rails | ICQ: 342500546

                                                  Comment

                                                  • GrouchyAdmin
                                                    Now choke yourself!
                                                    • Apr 2006
                                                    • 12085

                                                    #125
                                                    wats ur asn nubr

                                                    Comment

                                                    • mrkris
                                                      Confirmed User
                                                      • May 2005
                                                      • 2737

                                                      #126
                                                      Originally posted by toonpornblog
                                                      wats ur asn nubr
                                                      roflmao ...

                                                      PHP-MySQL-Rails | ICQ: 342500546

                                                      Comment

                                                      • GrouchyAdmin
                                                        Now choke yourself!
                                                        • Apr 2006
                                                        • 12085

                                                        #127
                                                        I know I'm beating a dead horse, here... but is this like the first time you've seen crypt(), I mean, ever? DES is only significant to EIGHT bytes, and that's all that is guaranteed. Period.

                                                        Not to mention your proposed salt is either static, or the password itself. It doesn't work that way. Ya might want to look into ROT13. Now that will take any sized string, man.. and DAMN is it fast!

                                                        Comment

                                                        • mrkris
                                                          Confirmed User
                                                          • May 2005
                                                          • 2737

                                                          #128
                                                          Originally posted by toonpornblog
                                                          I know I'm beating a dead horse, here... but is this like the first time you've seen crypt(), I mean, ever? DES is only significant to EIGHT bytes, and that's all that is guaranteed. Period.

                                                          Not to mention your proposed salt is either static, or the password itself. It doesn't work that way. Ya might want to look into ROT13. Now that will take any sized string, man.. and DAMN is it fast!
                                                          He's to busy cracking our passwords with retardo scripts from packetstormsecurity.nl to reply, so yes, beating a dead horse

                                                          PHP-MySQL-Rails | ICQ: 342500546

                                                          Comment

                                                          • AgentCash
                                                            Confirmed User
                                                            • Feb 2002
                                                            • 720

                                                            #129
                                                            What I'd really like to know is why you bother with

                                                            $alphadata = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHI JKLM NOPQRSTUVWXYZ";
                                                            @one = split(//, $alphadata);
                                                            @two = @one;
                                                            @three = @one;
                                                            when

                                                            @one = (A..Z, a..z, 0..9);
                                                            gets you the same thing. Then you needlessly copy the array to @two & @three... why?

                                                            $pw = "$one[$a]$one[$b]$one[$c]";
                                                            would accomplish the same thing as

                                                            $pw = "$one[$a]$two[$b]$three[$c]";
                                                            I just fool around with perl in my free time and even I can see you're a total novice.

                                                            Comment

                                                            • interracialtoons
                                                              Confirmed User
                                                              • May 2006
                                                              • 1910

                                                              #130
                                                              Originally posted by AgentCash
                                                              What I'd really like to know is why you bother with



                                                              when



                                                              gets you the same thing. Then you needlessly copy the array to @two & @three... why?



                                                              would accomplish the same thing as



                                                              I just fool around with perl in my free time and even I can see you're a total novice.
                                                              Because I wanted a stupid MoFo like you to understand it.

                                                              I wasn't trying to write "secret code" to baffle webmasters who don't even write scripts. How would that illustrate anything to them?

                                                              BTW: It's really fucking lame to take a solution that you could never have done yourself and then spend 24 hours since it was posted trying to pick at it.
                                                              why didn't you post a solution yesterday and end this thread?... Because you couldn't.

                                                              Stop acting like a jealous fagot. It will not make you a better webmaster.

                                                              Now I'm done. Gotta go do something more productive than listening to stupid shit.
                                                              Done.

                                                              Comment

                                                              • AgentCash
                                                                Confirmed User
                                                                • Feb 2002
                                                                • 720

                                                                #131

                                                                Comment

                                                                Working...