Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | Re: RE: Password secured using? |
|---|---|
| Date: | Thu, 27 Apr 2006 04:05:44 +0200 (CEST) |
Hello,
When I repeated it often enough. I got this pattern. a=707 aa=7073e aaa=7073e45 aaaa=7073e455b
The general idea of the encryption is as follows:
------ #include <stdio.h>
int key[11] =
{ 0x21, 0x76, 0xe4, 0x39, 0x22, 0x32, 0xa7, 0x66, 0x5f, 0x24, 0x3a };int main() {
int k, c;
for (scanf("%1x", &k); scanf("%02x", &c) == 1; k++)
putchar(c^key[k%11]);
putchar('\n');
return 0;
}
------Peter
-- [Name] Peter Kosinar [Quote] 2B | ~2B = exp(i*PI) [ICQ] 134813278
------------------------------------------------------------------------------ This List Sponsored by: Cenzic
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: RE: Password secured using?, Krugger |
|---|---|
| Next by Date: | RE: Licensed Penetration Tester LPT, Craig Wright |
| Previous by Thread: | Re: RE: Password secured using?, Krugger |
| Next by Thread: | RE: RE: Password secured using?, Dario Ciccarone (dciccaro) |
| Indexes: | [Date] [Thread] [Top] [All Lists] |