PS:用C语言就可以破解吗?
/*
* * descambles cisco IOS type-7 passwords
* * found somewhere on the internet, slightly modified,  [email]anonymous@segfault.net[/email]
* *
* * gcc -Wall -o ciscocrack ciscocrack.c
* * ./ciscocrack 01178E05590909022A
* *
* */
#include <stdio.h>
#include <ctype.h>
char xlat[] = {
        0x64, 0x73, 0x66, 0x64, 0x3b, 0x6b, 0x66, 0x6f,
        0x41, 0x2c, 0x2e, 0x69, 0x79, 0x65, 0x77, 0x72,
        0x6b, 0x6c, 0x64, 0x4a, 0x4b, 0x44, 0x48, 0x53, 
        0x55, 0x42 
};

int
cdecrypt(char *enc_pw, char *dec_pw)
{
        unsigned int seed, i, val = 0;
        if(strlen(enc_pw) & 1)
                return(-1);