home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / hacking / internet / win95.hak < prev    next >
Encoding:
Text File  |  2003-06-11  |  4.2 KB  |  90 lines

  1.  
  2. -----------------------------------------------------------------------------
  3.                            Hacking In Windows 95 v1.0
  4.                                   November 1997
  5.                                    By: Phluck
  6. -----------------------------------------------------------------------------
  7.  
  8. -1.0 INTRODUCTION-
  9.         This document is about accessing and/or changing settings under
  10. someone else's profile in Windows 95. I have found that despite the fact that
  11. the .pwl files (password files) in Win95 are well encoded and (to my knowledge)
  12. impossible to decode, Win95 doesn't have much security stopping anyone from
  13. changing things about the other user's settings. So pretty much anything
  14. documented in this file is easy to do, I just thought I's share it with anyone
  15. who's just beggining to hack, so they can get some ideas about how hacking works
  16. etc...
  17. _NOTE_ This stuff will probably only work on a home computer, computers at
  18. school,
  19. work etc. use better security programs to prevent you from doing this.
  20.  
  21. -1.1 THE USER PROFILES-
  22.         Ok, as you probably already know the user's profiles are kept under
  23. c:\WINDOWS\PROFILES\USERNAME\ where USERNAME is the name or login name of the
  24. user. (In case you are wondering the .pwl files are kept in the c:\windows
  25. directory, not in the user's profile directory).
  26.  
  27. -1.2 CHANGING BACKGROUNDS/SOUNDS-
  28.         Ok, so you want to change someones background to something as a joke.
  29. Well this is really easy, it shouldn't even be considered hacking. Anyway all
  30. you need to know is the name of the .bmp file the have as their background,
  31. or the .wav file they have as their sound. If you don't know it, search the
  32. harddrive .wav or .bmp files and look through them, you should find it
  33. eventually.
  34. Once you have found the file(s) rename it(them) to something else(skip this step
  35. if you don't mind deleting the file), then rename the .bmp you want their
  36. background to look like to what their old background was called and there you
  37. are,
  38. easy.
  39.  
  40. -1.3 FINDING PASSWORDS-
  41.         Ok, this is a little harder, but it's still easy, and it doesn't involve
  42. the .pwl file. The only real difficulty is that you need to have visual basic
  43. and a little Visual Basic knowledge (like I said, easy). What you need to do
  44. is make a little program that says something like "An error occurred while
  45. logging in, Please re-enter your password" and then it saves the password to
  46. a file and closes the program when you click a button. Compile the program
  47. and hide it in some directory where no one will look.
  48.         Now, open up Windows Explorer (I like to use the old File Manager, but
  49. it just won't work in this situation) and go to:
  50. C:\Windows\Profiles\Joey\StartMenu\Startup\
  51. and drag the file from the other directory to there. It will automatically make
  52. a link to it.
  53.         So now, when they log in, this program will load. Now the crappy part
  54. is that this looks a little suspicious cause the program pops up after
  55. everything
  56. has loaded. But it still seems to work whenever I've used it. Just don't try
  57. it on a computer expert I guess.
  58.         If you have VB but you don't have the knowledge to make that program,
  59. look in the next section.
  60.  
  61. -1.4 MAKING THAT VB PROGRAM-
  62.         Ok, I'll make really easy for you, maybe too easy:
  63. 1. Open Up Visual Basic (Duh)
  64. 2. Start a new program (Just a regual .exe)
  65. 3. Make the form a little smaller
  66. 4. Change the caption of the form to "Error"
  67. 5. Put in a Label
  68. 6. Change the Caption of the label to "An Error occured while logging in,
  69. Please re-enter your Password" or whatever you want it to say.
  70. 8. Make a text box change the text to nothing,
  71. and change the Password character to *
  72. 9. Make a Command Button and change the caption to "Ok"
  73. 10. On the menu Bar go to "view" then "code"
  74. 11. Type "Dim pass" and press enter
  75. 12. Close the Code Window
  76. 13. Double Click the Ok button
  77. 14. Enter the following code:
  78. pass = text1.text
  79. Open "c:\physics.txt" for output as #1
  80. Write #1, pass
  81. end
  82. 15. You can change the "c:\physics.txt" to whatever you want, so you can save
  83. the password wherever you want.
  84. 16. Compile it! Your finished.
  85.  
  86. -1.5 MORE INFORMATION-
  87.         If you want to add on to this file, go ahead, just change it to v1.1
  88. and put your name next to mine on top.
  89.  
  90.