File: mkcracker

package info (click to toggle)
crack 5.0a-7
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 8,456 kB
  • ctags: 574
  • sloc: ansic: 7,444; perl: 1,316; sh: 1,053; makefile: 296
file content (46 lines) | stat: -rwxr-xr-x 1,064 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#!/bin/sh -x
###
# This program was written by and is copyright Alec Muffett 1991,
# 1992, 1993, 1994, 1995, and 1996, and is provided as part of the
# Crack v5.0 Password Cracking package.
#
# The copyright holder disclaims all responsibility or liability with
# respect to its usage or its effect upon hardware or computer
# systems, and maintains copyright as set out in the "LICENCE"
# document which accompanies distributions of Crack v5.0 and upwards.
###

# Eulogy for Paul Revere, upon visiting his grave in Boston:
# "Of course, you realise, this is all your fault..."

prefix=$1

shift

if [ -d ../libdes ] # libdes from eay
then

    ( cd ../libdes ; make ) || exit 1
    exec make "$@" $prefix/libdes-cracker

elif [ -d ../ufc-crypt ] # UFC from comp.sources.misc
then

    ( cd ../ufc-crypt ; make ) || exit 1
    exec make "$@" $prefix/ufc-cracker

elif [ -d ../crypt ] # GNU UFC in disguise
then

    ( cd ../crypt ; make ) || exit 1
    exec make "$@" $prefix/gnu-cracker

else

    exec make "$@" $prefix/stdlib-cracker

fi

echo "WTF!?!"

exit 1