DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download
Index: T m

⟦e6923a548⟧ TextFile

    Length: 1243 (0x4db)
    Types: TextFile
    Names: »mrgfbk«

Derivation

└─⟦4f9d7c866⟧ Bits:30007245 EUUGD6: Sikkerheds distributionen
    └─⟦this⟧ »./crack/Scripts/mrgfbk« 

TextFile

#!/bin/sh

###
# This program is copyright Alec Muffett 1991, and is provided as part of
# the Crack v4.0 Password Cracking package.  The author disclaims all
# responsibility or liability with respect to it's usage or its effect
# upon hardware or computer systems, and maintains copyright as set out in
# the "LICENCE" document which accompanies distributions of Crack v4.0 and
# upwards. So there...
###

###
# mrgfbk - a shell script to merge all of your feedback files into one
# before starting a Crack -F on a set of new dictionaries. This program
# is called from "Scripts/spotless"
###
# mrgfbk takes all the feedback files and filters out all the GUESSED
# passwords, and saves them to a new feedback file.  The UNGUESSED
# passwords are deleted, so that the new dictionaries can have a go at
# them 
###

tf=./mfb$$

echo ""
echo "Saving all CRACKABLE passwords.
Do you also want to save your UNCRACKABLE passwords ?
Answer NO if you have changed some rules or modified source dictionaries
(default: yes) "

read answer

case $answer in
	[Nn]*)
		cat Runtime/F* |
		awk -F: '$3 == "Y"' |
		sort |
		uniq > $tf
		;;
	*)
		cat Runtime/F* |
		sort |
		uniq > $tf
		;;
esac

rm -f Runtime/F*

cp $tf Runtime/F.merged

rm -f $tf

exit 0