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
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
: 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
[courtesy cc of this posting sent to Jeff Hamblin via email]
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
The patches below will make crack run on an Alpha. It's a fineQuote:>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,
--
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);
}
: 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
: 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
I won't say so...Quote:>However, a large part of it is Polish dictionary - not too useful for
>users outside Poland.
--
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
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 #
2. Use one ethernet with two ip's.
3. Crack 5 on Digital Unix 4.0D
4. How to install a modem on Red Hat 5.0?
5. Crack aborted on Digital UNIX v4.0a!!
7. Cracking passwords on Digital Unix with C2 (enhanced security)
8. Need performance hints for large servers
10. Crack 4.1 on an Alpha AXP?
12. Crack 4.1 - doesnt crypt properly on NeXTs?
13. Difference from Crack 4.1 to 5.0