home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / zines / uxu / uxu_070.txt < prev    next >
Encoding:
Text File  |  2003-06-11  |  5.0 KB  |  139 lines

  1. ftp> get uxu-070.txt -
  2.  
  3.                                 ###     ###
  4.                                  ###   ###
  5.                       ###   ####  ### ###  ###   ####
  6.                       ###    ###   #####   ###    ###
  7.                       ###    ###    ###    ###    ###
  8.                       ###    ###   #####   ###    ###
  9.                       ##########  ### ###  ##########
  10.                                  ###   ###
  11.                                 ###     ###
  12.  
  13.                          Underground eXperts United
  14.  
  15.                                  Presents...
  16.  
  17.          ####### ## ##      #######     # #    ####### ####### #######
  18.          ##      ## ##      ##         #####   ##   ##      ## ##   ##
  19.          ####    ## ##      ####        # #    ##   ##     ##  ##   ##
  20.          ##      ## ##      ##         #####   ##   ##    ##   ##   ##
  21.          ##      ## ####### #######     # #    #######   ##    #######
  22.  
  23.          [  A Joke for VMS-Users  ]           [   By Ralph 124C41+   ]
  24.  
  25.  
  26.     ____________________________________________________________________
  27.     ____________________________________________________________________
  28.  
  29.  
  30.                               A joke for VMS-users
  31.                               --------------------
  32.                          by Ralph 124C41+ of PowerDrive
  33.  
  34.  
  35.  This is a little practical joke we have used a few times at my school when
  36. somebody forgot to log out (a quite common thing among pupils who aren't
  37. too experienced with computers). I think it could be quite fun for you to
  38. try it out if you have the possibility to do so.
  39.  
  40.  What it does is in short, is that it redefines almost every command to run
  41. a COM-file. What you put in that file is up to you. In this example we simply
  42. write the message "I'm sorry Dave, I'm afraid I can't do that", but you can
  43. change it as much as your imagination allow. A good idea is to have
  44.  
  45. $ WRITE SYS$OUTPUT F$MESS(%X <number>)
  46.  
  47. where <number> is a number. This writes a system error message, this is good
  48. fun and can keep an inexperienced user in confusion for a very long time. Even
  49. teachers have been fooled by this. Some good numbers to try is 360, 350, 290,
  50. 230 and 120. A nasty one is 0, which means that the program exited without an
  51. error. That's *very* confusing! He he he...
  52.  
  53.  Anyway, here come the files, just cut where marked and there shouldn't be a
  54. problem. The first file is to replace LOGIN.COM and the you should name the
  55. second LOG1.COM. If you want to be more advanced, you can have several files to
  56. produce different messages. The LOGIN.COM redefines the most common commands on
  57. our system, yours will probably be different but it's a good start.
  58.  
  59.  
  60. ---------------------------------< CUT HERE >-----------------------------------
  61. $! LOGIN.COM for VMS joke.
  62. $
  63. !
  64. $ edt           :==     @log1
  65. $ cop*y     :==        @log1
  66. $ am*is        :==    @log1
  67. $ hel*p        :==    @log1
  68. $ dir*ectory     :==    @log1
  69. $ set        :==    @log1
  70. $ sh*ow        :==    @log1
  71. $ def*ine        :==    @log1
  72. $ cre*ate         :==    @log1
  73. $ typ*e        :==    @log1
  74. $ ed*it     :==    @log1
  75. $ mai*l        :==    @log1
  76. $ pho*ne    :==    @log1
  77. $ ass*ign     :==    @log1
  78. $ conn*ect        :==    @log1
  79. $ cont*inue     :==    @log1
  80. $ del*ete      :==    @log1
  81. $ rena*me       :==    @log1
  82. $ pu*rge     :==    @log1
  83. $ li*nk      :==    @log1
  84. $ bas*ic      :==    @log1
  85. $ pas*cal    :==    @log1
  86. $ for*tran    :==    @log1
  87. $ req*uest     :==    @log1
  88. $ pr*int      :==    @log1
  89. $ ru*n        :==    @log1
  90. $ mes*sage    :==    @log1
  91. $ mer*ge      :==    @log1
  92. $ inq*uire      :==    @log1
  93. $ ini*tialize    :==    @log1
  94. $ mon*itor      :==    @log1
  95. $ exit
  96. ---------------------------------< CUT HERE >-----------------------------------
  97.  
  98.  Here follows the file that is the actual joke. If you don't like this you can
  99. change it to do whatever you like but I think this is good fun, at least if you
  100. have seen 2001...
  101.  
  102. ---------------------------------< CUT HERE >-----------------------------------
  103. $! LOG1.COM
  104. $
  105. $ WRITE SYS$OUTPUT ""
  106. $ WRITE SYS$OUTPUT "        I'm sorry Dave, I'm afraid I can't do that."
  107. $ WRITE SYS$OUTPUT ""
  108. $ EXIT
  109. ---------------------------------< CUT HERE >-----------------------------------
  110.  
  111.  One problem is how you are going to copy the files from your account to the
  112. one you are about to joke with. One idea would be to
  113.  
  114. $SET PROT=(W:RWED) <user>.DIR 
  115.  
  116. or perhaps use the ACL and then copy the files over. But this is not a very
  117. good idea, it can be traced and that's not what we want! It's much better to
  118. mail it, like this (from your account)
  119.  
  120. $MAIL LOG.COM <user>
  121. $MAIL LOG1.COM <user>
  122.  
  123. Then the files will be mailed to the user so you just can enter mail, read the
  124. message and
  125.  
  126. Mail>EXTRACT LOGIN.COM
  127. Mail>DELETE
  128.  
  129. It's important to delete the message because otherwise it's quite obvious who
  130. pulled the joke. Then you just edit the files to remove the header, remember to
  131. PURGE and everything is set.
  132.  
  133.  And that's about it. Have a fun life and remember: keep cool, if you can't be
  134. cool, be cold.
  135.  
  136.  
  137.     ______________________________________________________________________
  138.     ______________________________________________________________________
  139.