home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / cpm / utils / sysutl / egutil53.lbr / EGPASS.DZC / EGPASS.DOC
Encoding:
Text File  |  1988-07-12  |  2.5 KB  |  60 lines

  1. ;;09-21-86
  2.                          EGPASS.DOC v2
  3.                             01/11/87
  4. Eric Gans
  5. French Dep't UCLA
  6. Los Angeles, CA 90024
  7.  
  8. Version 2 update:
  9.  
  10. PASS now accepts passwords between 3 and 12 letters (change using 
  11. PASCH.COM  v2).   If you get the password wrong,  it looks on A0: 
  12. for  OFF.COM  or SAFETY.COM and runs that;  if  it  doesn't  find 
  13. either  name,  it goes into and endless loop.   PASS now prints a 
  14. "#" for each letter typed,  so you can keep track of what  you're 
  15. doing when you enter your password.
  16.  
  17.                               * * *
  18.  
  19.      The  password  program PASS.COM affords a modest  degree  of 
  20. protection  for  users  of systems that boot from  a  hard  (i.e. 
  21. fixed)  disk.   It  gives  the user three chances  to  enter  the 
  22. correct  pasword,  then  either  runs  the  hard-disk  protection 
  23. program  SAFETY.COM  (often  renamed  OFF.COM) or  goes  into  an 
  24. endless loop.  
  25.  
  26.      By autoloading PASS on (cold) boot,  you make it  impossible 
  27. to  get  around  the password without rebooting from  the  floppy 
  28. drive (and you need a floppy with system tracks to do  it).  This 
  29. should  prevent casual pests from using your computer when you're 
  30. not around, although of course it won't stop the hackers.
  31.  
  32.      The password must be between three and twelve letters  long, 
  33. and  can  contain  any printable character  (lower-case  will  be 
  34. folded to upper-case).  The original password is ...  you guessed 
  35. it,  PASSWORD.  The  enclosed file PASCH.COM (v2) can be used  to 
  36. change the password (don't leave it on your disk!).  
  37.  
  38. NB - previous versions of PASCH.COM will not work with PASS v2!
  39.  
  40.      Autoloading can be accomplished most simply by using  CMDLN.
  41. Or you can patch the CCP in SYSGEN, PUTSYS etc. &  then write the 
  42. new  image  back to the system tracks of the hard  disk.  On  the 
  43. Kaypro-10 the file is called PUTSYS.COM. The patch location is at 
  44. 987h, the standard location of the CCP on  all such programs.
  45.  
  46. 987h --> 4 (number of characters) 
  47. 988h --> 50h (=P) 
  48. 989h --> 41h (=A) 
  49. 98ah --> 53h (=S)
  50. 98bh --> 53h (=S) 
  51. 98ch --> 0 (terminator)
  52.  
  53. The  same patch can be placed on floppies (it requires a copy  of 
  54. PASS on each disk).
  55.  
  56. NB  -- On some systems a file autoloaded in this manner  will  be 
  57. run at each warm boot.  The K-10 doesn't do this because the BIOS 
  58. warm  boot routine zeroes the character count byte at  CCP+7.  If 
  59. your BIOS doesn't do this you should patch it, unless you want to 
  60. enter passwords all day long.