home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 January / pcwk_01_1999_B.iso / PcwkTxt / Deszyfr2 / progs / FZC105 / STATIC.DEM < prev    next >
Text File  |  1998-02-15  |  3KB  |  55 lines

  1. # Brute-force cracking with static characters  (SAMPLE PROFILE)
  2.  
  3. # Empty lines and lines beginning with a "#" are ignored.
  4. # SPACES are NOT stripped: if you accidently put a space at the end of the
  5. # password, it will be used as a valid character.
  6.  
  7. # Password definition: use "?" in place of "don't know" chars.
  8. # Up to 16.  Well.. you can use more than 16 "?", but up to 16 may be really
  9. # variable (I mean with a charset of more than 1 character).
  10.  
  11. PASSWORD=pas?w??d
  12.  
  13. ####################
  14. # If no variables "?" are used, FZC will try to find the password assuming
  15. # that it is close enough (ie: with typing errors) to the one you defined.
  16. # It searches for a maximum of 3 simultaneous errors: 1 missing char, 1
  17. # added or changed char and a permutation of up to 4 (consecutive) chars.
  18. # Example: PASSWORD=following  can find  oflowung
  19. #                   ^^^^^^^^^            ^^^^^^^^
  20. #                      ^^                   ^^
  21. #  that's what you tried to write  ...  and THAT's what you wrote!
  22. # The "PASSWORD=following" (or any other of length 9) example takes 4m 46s
  23. # on a 486DLC/40. On the same PC, length 10 is completed in 7m 15s and
  24. # length 12 in 14m 31s.
  25. # The minimum allowed password length for this method is 4 characters, and
  26. # FZC will ***NOT*** find shorter ones (ie: if you define PASSWORD=worm and
  27. # the real one is "wrm", it won't be found).
  28. # If you know the password is 4 or less chars, use brute-force instead.
  29. # Note: sometimes the same password is reported more than one time.
  30. # Suspend/resume and view the current try are **NOT** implemented... the PC
  31. # will be inaccessable until the operation is completed.
  32. ####################
  33.  
  34. # Unknown chars definition: use one "?=xx..." for each "?" in PASSWORD,
  35. # where xx... is composed by:
  36. #         a     = all lowercase   (a..z)
  37. #         A     = all uppercase   (A..Z)
  38. #         1     = numbers         (0..9)
  39. #         !     = symbols         ( !"#$%&'()*+,-./:;<=>?@[\]^_`{|}~)
  40. #         #     = all the 251 possible chars (use alone or with @)
  41. #         %     = the " (double quote) character
  42. #         "abc" = the letters "a", "b" and "c"
  43. #         @     = empty char (ie: ab?de with ?="c"@ matches abcde and abde)
  44. #                 @ alone is not legal (ie: ?=@ will give an error)
  45. #
  46. #   Example:  ?=a"PWX "%1
  47. #   instructs FZC to use  lowercase+P+W+X+space+"+numbers  as the first "?"
  48. #
  49. # If a char of the password that you know is a REAL "?", you must set is as
  50. # unknown and then define it as ?="?"
  51.  
  52. ?=a"PWX "%1
  53. ?="oO0"
  54. ?="rR"!
  55.