Crack 4.1 on Digital Unix

Crack 4.1 on Digital Unix

Post by Jeff Hambli » Sat, 12 Oct 1996 04:00:00



has anyone been able to get crack to run on Digital Unix?  I have it
working on the machines running SunOS but not the Digitals.  Thanks,

jeff

 
 
 

Crack 4.1 on Digital Unix

Post by Karel.DeBruy » Tue, 15 Oct 1996 04:00:00


: has anyone been able to get crack to run on Digital Unix?  I have it
: working on the machines running SunOS but not the Digitals.  Thanks,

Yes, I did.
I compiled it long time ago, so I don't remember the details.
Send me a mail if you want me to send you the binaries.

Karel
--
=======================================================================
Karel De Bruyne
System/Network Manager                      phone      + 32 3 820 22 04
UIA - Computer Centre                       fax        + 32 3 820 22 49

 
 
 

Crack 4.1 on Digital Unix

Post by Ollivier Robe » Tue, 15 Oct 1996 04:00:00


    [courtesy cc of this posting sent to Jeff Hamblin via email]



> I compiled it long time ago, so I don't remember the details.
> Send me a mail if you want me to send you the binaries.

Here is the summary which was posted in alpha-osf-managers a while ago:



Subject: [SUMMARY] Crack

Dear colleagues,

Some time ago I asked for the patches that would enable me to compile and
install Crack4.1 on a DU box. In my previous summary, I just stated that I
received them and that everything was fine ... which was really too short,
as indicated by the number of mails that I subsequently received.
Hence in this more complete summary I indicate clearly (I hope) how to
retreive the necessary patches.

Good luck!

Jean-Loup

---------------------------------------------------------

I have put the following files for Crack in my anonymous ftp server:

ftp://genome.genetique.uvsq.fr/pub/outgoing

1) the patch crack-4.1.Patch.OSF.Z that you should first apply to Crack.
   Put it in Crack-4.1/Sources, uncompress and
   "patch -i crack-4.1.Patch.OSF"

2) the file ufc-crypt.tar.Z.
   Put it in Crack-4.1, uncompress and untar  --> it will put the files in
   ufc-crypt/

3) the patch ufc.patch. Put it in the Crack directory and patch.

You can also find extra dictionaries everywhere on the net (try Archie
      dictionaries). They are all the same everywhere. I got them in
      France from ftp://ftp.ibp.fr/pub/unix/security/dictionaries, and put
      them in DictSrc. Crack will do what it must do with them, see its
      README file. Now my bigdict.Z file is about 2.5 Mbytes.... which may
      explain why Crack is VERY long to run: about 36 h to scan ca. 100
      passwords. Thus don't forget the -n option when launching Crack!
      Anyway Crack is very efficient and did crack passwords like
      "Castafio", "Crocotte", "Schillo", ....

--

Usenet C*Historique

 
 
 

Crack 4.1 on Digital Unix

Post by Mike Iglesi » Wed, 16 Oct 1996 04:00:00




Quote:>has anyone been able to get crack to run on Digital Unix?  I have it
>working on the machines running SunOS but not the Digitals.  Thanks,

The patches below will make crack run on an Alpha.  It's a fine
system for checking passwords!

--

University of California, Irvine     phone:       (714) 824-6926
Office of Academic Computing         FAX:         (714) 824-2069

*** ufc-crypt/ufc-crypt.h.dist  Thu Mar 19 21:24:09 1992
--- ufc-crypt/ufc-crypt.h       Wed Nov 25 08:52:18 1992
***************
*** 53,58 ****
--- 53,64 ----
  #define _UFC_64_
  #endif

+ #ifdef __alpha
+ typedef unsigned long ufc_long;
+ typedef unsigned long long64;
+ #define _UFC_64_
+ #endif
+
  /*
   * For debugging 64 bit code etc with 'gcc'
   */
*** Sources/bytesex.c.dist      Thu Mar 19 21:13:46 1992
--- Sources/bytesex.c   Tue Feb 23 17:26:25 1993
***************
*** 4,9 ****
--- 4,10 ----
  {
      char *p;
      long int l;
+     int endian = 0;    /* 1 = big, -1 = little */

      l = 'a' << 24 | 'b' << 16 | 'c' << 8 | 'd';
      p = (char *) &l;
***************
*** 23,32 ****
      }
      if (!strncmp (p, "abcd", 4))
      {
!       puts ("-DBIG_ENDIAN");
      } else if (!strncmp (p, "dcba", 4))
      {
!       puts ("-DLITTLE_ENDIAN");
      }
      exit (0);
  }
--- 24,56 ----
      }
      if (!strncmp (p, "abcd", 4))
      {
!         endian = 1;
      } else if (!strncmp (p, "dcba", 4))
      {
!         endian = -1;
      }
+     if (endian == 0) {               /* try again after shifting l back 32 */
+         l >>= 32;
+         if (!strncmp (p, "abcd", 4))
+         {
+             endian = 1;
+         } else if (!strncmp (p, "dcba", 4))
+         {
+             endian = -1;
+         }
+     }
+     switch (endian)
+     {
+     case 0:
+         fprintf (stderr, "bytesex: Can't figure out endian of this system!\n");
+         exit(1);
+     case 1:
+         puts ("-DBIG_ENDIAN");
+       break;
+     case -1:
+         puts ("-DLITTLE_ENDIAN");
+     }
+
+
      exit (0);
  }
*** Sources/crack-supp.c.dist   Thu Mar 19 21:13:47 1992
--- Sources/crack-supp.c        Fri Nov 27 17:46:18 1992
***************
*** 44,53 ****
      char *fmt;
      long int a, b, c, d, e, f, g, h, i, j;
  {
!     long t;

      time (&t);
!     printf ("pwc: %-15.15s ", ctime (&t) + 4);
      printf (fmt, a, b, c, d, e, f, g, h, i, j);
      fflush (stdout);
  }
--- 44,53 ----
      char *fmt;
      long int a, b, c, d, e, f, g, h, i, j;
  {
!     time_t t;

      time (&t);
!     printf ("pwc: %-15.15s ", (char *) ctime (&t) + 4);
      printf (fmt, a, b, c, d, e, f, g, h, i, j);
      fflush (stdout);
  }

 
 
 

Crack 4.1 on Digital Unix

Post by Trever Mill » Fri, 18 Oct 1996 04:00:00


: You can also find extra dictionaries everywhere on the net (try Archie
:       dictionaries). They are all the same everywhere. I got them in
:       France from ftp://ftp.ibp.fr/pub/unix/security/dictionaries, and put
:       them in DictSrc. Crack will do what it must do with them, see its
:       README file. Now my bigdict.Z file is about 2.5 Mbytes.... which may
:       explain why Crack is VERY long to run: about 36 h to scan ca. 100
:       passwords. Thus don't forget the -n option when launching Crack!
:       Anyway Crack is very efficient and did crack passwords like
:       "Castafio", "Crocotte", "Schillo", ....

2.5 Mb is small.  I have a 7Mb COMPRESSED bigdict file.

[Now I've seen everything, a dict-size war no-less :-)]
--


"The stupider it looks, the more important it probably is." -- J.R. 'Bob' Dobbs

 
 
 

Crack 4.1 on Digital Unix

Post by Szymon Sok » Fri, 18 Oct 1996 04:00:00


: 2.5 Mb is small.  I have a 7Mb COMPRESSED bigdict file.

: [Now I've seen everything, a dict-size war no-less :-)]

"My bigdict is bigger than yours!" :-)

-rw-------  1 szymon    7031333 Apr  9  1996 bigdict.gz

(if compressed with compress instead of gzip, it would be over 8MB)
However, a large part of it is Polish dictionary - not too useful for
users outside Poland.
--
                   Szymon Sokol -- Network Manager
U   U M   M M   M  University of Mining and Metallurgy, Computer Center
U   U MM MM MM MM  Mickiewicza 30, 30-059 Krakow, POLAND.    FAX +48 12 338907
 UUU  M M M M M M  http://galaxy.uci.agh.edu.pl/~szymon/     TEL +48 12 172894

 
 
 

Crack 4.1 on Digital Unix

Post by Rene Muell » Mon, 21 Oct 1996 04:00:00



Quote:>However, a large part of it is Polish dictionary - not too useful for
>users outside Poland.

I won't say so...
Even so we're within germany our dictinary includes also transcriptions
of russion, polish, chineese, arabic, aegyptian, japaneese, vitnam and other
languages...
And we've found a lot of such password's ;)

--

                TEAM OS/2 Member         Certified OS/2 Engineer
       pgp 2.6.2 key available on keyserver or by eMail (Subject: pgpkey)
 PGP-Key fingerprint (1024) =  22 71 97 61 92 AC BF E5  8A 99 01 89 BF 4F 69 8C
 PGP-Key fingerprint (2047) =  FB 34 1A 1C 2B A1 61 91  1E B5 2F A2 63 6D 1E A1

 
 
 

Crack 4.1 on Digital Unix

Post by Nick O'Bri » Wed, 30 Oct 1996 04:00:00


Out of interest has anyone got Crack to working with Digital Unix's
Enhanced Security???  The problem is that with Enhanced security
passwords are not stored in /etc/passwd but in a separate tcb
authorization file for each user.

I know it would be quite easy to hand-roll a script to do this but if
someone has already done this I would be very grateful for a copy of what
was written.

        Rgds.,

                Nick.

--
# Nick O'Brien Computer Technician "It gives me a headache just to     #
# Canterbury Christ Church College  think down to your level", Marvin  #
# Phone: +44 1227 782468            the Paranoid Android, HHGTTG       #