home *** CD-ROM | disk | FTP | other *** search
/ Hacker Chronicles 1 / HACKER1.ISO / hack / vthack3.txt < prev    next >
Text File  |  1992-03-04  |  29KB  |  788 lines

  1.  
  2.      Well, it's time for yet another installment in Virginia Tech
  3. hacking.  Yes, it's....   VTHACK #3!!!!  Brought to you by the
  4. Mad Hermit and crew.  This time, we're going to focus on the OTHER
  5. big network on campus: LocalNet.  LocalNet (L-Net) has been around
  6. for a much longer period of time, and as such has quite a few more
  7. caves and back alleys to explore.  Its main purpose is to connect
  8. the faculty and grad students directly to mainframes, and thus
  9. much of what is found when poking around are login prompts.  An
  10. aggrivating factor that has been added to this is the inclusion of
  11. "Port Servers" (PS's).  You know when you've hit a PS when L-Net
  12. tells you you've connected, but no key that you press has any
  13. effect.  The purpose of a PS is to act as a deterrent to hackers.
  14. It also might have the additional function of baud rate detection,
  15. but though it sounds logical, we haven't found out for sure.  We
  16. must admit that it does protect.  The best way to keep system
  17. crashers away is not to tell them what they've found through simple
  18. redialing.  This is a lot like keeping party crashers away by 
  19. saying that there's a party going on at a certain place, but not
  20. telling them who's invited or who's giving the bash.  Effective for
  21. the dim-witted, impatient, and amateur party crashers, but not for
  22. others. 
  23.      PS's sit and stare out at you until you start sending it
  24. characters.  If the first few aren't the specific ones it's looking
  25. for, it will continue to gobble up everything else until you give
  26. up and hang up.  Typical PS "codes" are easy-to-remember sequences
  27. like 'ZZ' or 'ASDF', and they then pass you on to the main login
  28. prompt.  These "codes" aren't like passwords, since the added
  29. access they give you isn't worth beans unless you've got a line on
  30. where to go from the login prompt.  However, we here feel that
  31. information like that is in fact "restricted" in that you are
  32. gaining unauthorized additional access to systems.  As such, we've
  33. decided to leave the fun of figuring them out to those interested
  34. in such weekend diversiions.
  35.      Before we give you what you're probably waiting for: neato
  36. numbers to call on L-Net, we'd like to explain stuff.  First, this
  37. isn't a complete list, nor could it really be.  L-Net addresses are
  38. in Hexidecimal and range from 0000 to FFFF.  That's 65536 different
  39. possibilities.  We only went through ten thousand of these, and are
  40. only listing those that got any response.  Second, L-Net addresses 
  41. may connect to any number of ports, but we haven't seen any more
  42. than 4 or 5.  Thus, the total possible connections assuming an
  43. average of 2 ports per connection and an average of about 15
  44. connections per thousand addresses comes to just under 2000.  
  45. Assuming this is correct (very doubtful), finding where these are
  46. is quite a task.  Third, and on the positive side, some connections
  47. open up large worlds of access.  These unpassworded gateways are 
  48. known as servers, and typically are DECservers.  The biggest and
  49. most notorious is listed at 0358 and can handle a max of 128 users.
  50. You can use these servers to connect to multiple computers at once,
  51. and have extensive help files telling you what to do.  Fourth, and
  52. also on the plus side, L-Net doesn't kick you off.  Ever.  Multiple
  53. redialing is the name of the game, and listed below is a Red Ryder
  54. script that works under version 9.4 that dials consecutive integers
  55. at a rate of about 40 a minute.  Fifth and finally, bum connections
  56. don't just leave you in the cold.  Hitting CONTROL-A twice pops you
  57. immediately into local mode, where a STATUS tells you where you are
  58. connected, and a "DONE X" will disconnect you from session number
  59. X.  Calling, by the way, is done by typing "CALL XXXX[,P]" where
  60. XXXX is the hex address, and P is the optional port number, which
  61. is seperated by a comma.
  62.  
  63.      Red Ryder 9.4 Local-Net Scanner Script.
  64.  
  65. COPYINTO ~8,ENTER NUMBER TO START AT
  66. (GET1)
  67. QUERY1 ~1
  68. EMPTY ~1
  69. IF YES JUMPTO (GET1)
  70. LET EQUAL `1,~1
  71. LET EQUAL `3,`1
  72. COPYINTO ~8,ENTER LENGTH OF SEARCH
  73. (GET2)
  74. QUERY1 ~2
  75. EMPTY ~2
  76. IF YES JUMPTO (GET2)
  77. LET EQUAL `2,~2
  78. ADD `3,`2
  79. COPYINTO ~3,`3
  80. SUBTRACT `1,1
  81. (NEXT)
  82. ADD `1,1
  83. TEST `1=~3
  84. IF YES JUMPTO (QUIT)
  85. TYPE Call 
  86. TYPE `1
  87. TYPE ^M
  88. ALERT1 UNIT/JUMPTO (NEXT)
  89. ALERT2 BUSY/JUMPTO (NEXT)
  90. PANICAFTER 10
  91. PROMPT CONNECTED
  92. PAUSE
  93. BELL
  94. BELL
  95. BELL
  96. BELL
  97. JUMPTO (QUIT)
  98. (QUIT)
  99. END
  100.  
  101.    And here's what our illustrious, untiring crew have discovered:
  102.  
  103. Node    Port#    What 
  104. ----    -----    ----
  105. 0008      1
  106. 0074     0,1     VTME (Mechanical Engineering)
  107. 0116     0,1
  108. 0124     0,1
  109. 0126     0,1
  110. 000A      1
  111. 000B     0,1
  112. 000C     0,1
  113. 000E     0,1
  114. 00FF     0,1
  115. 0170     0,1
  116. 0175     0,1     Popeye (Computer Science)
  117. 0350      0      VTCC1
  118. 0351     0,1      " "
  119. 0352     0,1      " "
  120. 0354     0,1      " "
  121. 0355      1       " "
  122. 0356     0,1      " "
  123. 0357     0,1      " "
  124. 0358     0,1     DECServer 500
  125. 0359     0,1     DECServer 500 (same as above, different port bank)
  126. 0400     0,1     VTME (again)
  127. 0401     0,1      "   "   "
  128. 0402     0,1      "   "   "
  129. 0403     0,1
  130. 0404     0,1     VTME (yet again)
  131. 0405      0       "   "   "   "
  132. 0450     0,1     DECServers (see note 3)
  133. 0451     0,1      "   "  "
  134. 0452     0,1      "   "  "
  135. 0453     0,1      "   "  "
  136. 0454     0,1      "   "  "
  137. 0455     0,1      "   "  "
  138. 0536     0,1
  139. 600-601         "Remote Ports Busy"
  140. 603-607         "Remote Ports Busy"
  141. 1010     0,1
  142. 1100-1103       "Remote Ports Busy"
  143. 1300      0      VTVM1
  144. 5100      1      VTVM1
  145. 5300     0,1
  146. 5500-5503       "Remote Ports Busy"
  147. 5510     0,1
  148. 5512     0,1
  149. 5514     0,1
  150. 5516     0,1
  151. 5518      1
  152. 5530     0,1
  153. 5534     0,1
  154. 5536     0,1
  155. 5548     0,1
  156. 5548     0,1
  157. 5550     0,1
  158. 5552     0,1
  159. 5554      0
  160. 6000      1
  161. 6002      0      Node[20] (see note 1)
  162. 6003     0,1
  163. 6100-6103       "Remote Ports Busy"
  164. 6200      1      Node[2] (see note 2)
  165. 6230-6231       "Remote Ports Busy"
  166. 6300     0,1
  167. 6301     0,1
  168. 6302     0,1     Node[2] (see note 2)
  169. 6303      0
  170. 6410      1
  171. 6414      0
  172. 6419      1
  173. 6420      1
  174. 6428     0,1
  175. 6429      1
  176. 6433      0
  177. 6437      1
  178. 643A      1
  179. 643B      0
  180. 6502      0      VTVMS
  181. 6503      0       " "
  182. 6504      0       " "
  183. 6505      0       " "
  184. 6506      0       " "
  185. 6507      0       " "
  186. 6508      0       " "
  187. 6509      0       " "
  188. 8001      1
  189. 8002      0
  190. 8003      0
  191. 8004     0,1
  192. 8005      0
  193. 8006      1
  194. 8007      1
  195. 8008      0
  196. 8009      0
  197. 8080     0,1
  198. 9000-9016       "Remote Ports Busy"
  199. 9018-9019       "Remote Ports Busy"
  200. 9302      0
  201. 9300     0,1,2,3,4
  202.  
  203. Notes:
  204. ------
  205. 1) Node[20], popularly known as the Node Router, went out of
  206. services shortly after VTHacker #2 was distributed.  Apologies
  207. are NOT extended to those who assumed that the list in VTHack2
  208. was gospel.  Things change all the time, and those things that
  209. are especially good tend to go away.  Apparently, number 40062
  210. was used by CNS's chief diagnostician as a way to test the VA
  211. Council of Higher Education's access to the Net and L-Net.
  212. Poking around there was terminated, but our scan of L-Net turned
  213. up another way in...
  214.  
  215. 2) If you wondered why the Node Router was labelled "20" (really,
  216. what happened to the other 19?), then this might clear things up.
  217. The following connections were observed:
  218.      Node   What
  219.      ----   ----
  220.       0    Passworded
  221.       1    L-Net
  222.       3    the Net
  223.       5    Passworded
  224.       6    Passworded
  225.       9    Dead End
  226.      10    Dead End
  227.      12    L-Net
  228.      20    Restricted (*)
  229.  
  230. *) This did connect you to a really screwed up L-Net port, which
  231. continually spewed out garbage and error messages, but we think
  232. our poking around in it got it shut off, due to the incredible
  233. quickness with which it was restricted (we were still on-line!)
  234.  
  235. 3) Ah, what a joy it is to explore, and find a pristine cavern
  236. laden with sweet delight, and a menu to boot!  Well, what I'm
  237. talking about is BAMBI and THUMPR, two side-by-side DECServers.
  238. Calling the listed numbers with port 0 gets you BAMBI, and using
  239. port 1 gets you THUMPR.  In our experience, nobody has ever been
  240. dumped for staying on too long, and though the computers you can
  241. connect to aren't all that interesting (all Mechanical Engineering)
  242. the services and privileges allowed to ordinary users is about
  243. as generous as possible.  The listings that follow are vebatim
  244. text sent by the servers, and we think that you'll be able to
  245. figure out what's going on.
  246.  
  247. DECserver 200 Terminal Server V2.0 (BL29) - LAT V5.1
  248. AMDF Network - Server BAMBI
  249.  
  250. Please type HELP if you need assistance
  251. Enter username> Jack Meoff
  252.  
  253. Local> show nodes all
  254.  
  255. Node Name       Status       Identification
  256.  
  257. BAMBI           Reachable    AMDF Network - Server BAMBI
  258. BERT            Reachable    AMDF VAXstation I (VMS 4.2)
  259. ERNIE           Reachable    AMDF VAXstation I (VMS 4.2)
  260. POOH            Reachable    AMDF MicroVAX II (VMS 4.6)
  261. SPOCK           Reachable    ZONIC Lab VAXstation 2000 (VMS 4.6)
  262. SULU            Unreachable  AMDF Cluster VAXstation 2000 (Color)
  263. THUMPR          Reachable    AMDF Network - Server THUMPR
  264. UHURA           Unreachable  AMDF Cluster VAXstation 2000 (B & W)
  265. VTME            Reachable    ME VAX 11/780 (VMS 4.4)
  266. VTMEX           Reachable    AMDF Cluster VAXserver 3600 (VMS 4.7)
  267.  
  268. Local> show ports all
  269.  
  270.  
  271. Port    Access    Status        Services Offered
  272.  
  273.   1     Dynamic   Idle          
  274.   2     Dynamic   Idle          
  275.   3     Dynamic   Local mode    
  276.   4     Dynamic   Idle          
  277.   5     Dynamic   Idle          
  278.   6     Dynamic   Idle          
  279.   7     Dynamic   Idle          VTLAN
  280.   8     Dynamic   Idle          VTLAN
  281.  
  282. Local> help
  283.  
  284. HELP
  285.  
  286. The online HELP facility allows you to access reference and tutorial information about the DECserver 200.   Choose one of the following  options:
  287.  
  288. o Enter TUTORIAL to see a succession of HELP frames  with  "getting
  289.   started" information on basic DECserver functions (for beginners)
  290. o Enter HELP for full information on how to use the  HELP  facility
  291.  
  292. o Choose a HELP topic from the following list:
  293. BACKWARDS                  FORWARDS                   RESUME
  294. BROADCAST                  HELP                       SET
  295. CONNECT                    LIST                       SHOW
  296. DEFINE                     LOCK                       TEST
  297. DISCONNECT                 LOGOUT
  298.  
  299. Topic? list
  300.  
  301. LIST
  302.  
  303. Use the LIST command to display information from the permanent database.
  304. LIST option
  305. The option value is a topic about which you need information.
  306. Additional HELP is available for the LIST options:
  307. PORTS     SERVER    SERVICES
  308.  
  309. LIST Subtopic? server
  310.  
  311. SHOW/LIST SERVER
  312.  
  313. Use the SHOW SERVER  command  to  display  information  about  the  current
  314. operational state of the server.  Use LIST SERVER to show values for the
  315. permanent server characteristics.
  316. Command formats:
  317. SHOW SERVER [CHARACTERISTICS]
  318.             [COUNTERS       ]
  319.             [STATUS         ]
  320.             [SUMMARY        ]
  321. LIST SERVER [CHARACTERISTICS]
  322.             [SUMMARY        ]
  323. The default option for SHOW/LIST SERVER is CHARACTERISTICS.
  324.  
  325. Additional help available for:
  326.  
  327. CHARACTERISTICS          COUNTERS  STATUS SUMMARY
  328.  
  329. SHOW/LIST SERVER Subtopic? 
  330.  
  331. LIST Subtopic? 
  332.  
  333. Topic? show
  334.  
  335. SHOW
  336.  
  337. Use SHOW commands to display current status or  information  from  the  server's
  338. operational database.
  339. SHOW option
  340. The option value is the topic about which you need information.
  341.  
  342. Additional HELP is available for the SHOW options:
  343. NODES     PORTS     QUEUE     SERVER    SERVICES  SESSIONS  USERS
  344.  
  345. SHOW Subtopic? 
  346.  
  347. Topic? 
  348.  
  349. Local> show server
  350.  
  351. DECserver 200 V2.0 BL29     LAT V5.1   ROM BL20    Uptime:   6 08:14:20
  352.  
  353. Address:   08-00-2B-0B-C4-EA   Name:   BAMBI              Number:     0
  354.  
  355. Identification:  AMDF Network - Server BAMBI
  356.  
  357. Circuit Timer:            80           Password Limit:            3
  358. Console Port:              1           Queue Limit:              24
  359. Inactivity Timer:         30           Retransmit Limit:          8
  360. Keepalive Timer:          20           Session Limit:            64
  361. Multicast Timer:          30           Software:          PR0801ENG
  362. Node Limit:              100
  363.  
  364. Service Groups:   0
  365.  
  366. Enabled Characteristics:
  367.  
  368. Announcements,  Broadcast,  Dump
  369.  
  370. Local> help 
  371.  
  372. Topic? tutorial
  373.  
  374. TUTORIAL HELP
  375.  
  376. LOGGING INTO THE DECSERVER
  377. To login to the DECserver you may be required by your server manager to enter a login password.  If you are not required to do so, go on to the next screen.  If you are, here are the steps to take to log in.
  378. 1  Press <RETURN> twice; a number sign (#) appears along with an audible "beep".
  379. 2  Enter the login password.  (You get the password from your server manager.)
  380.    For example, to log in with the password A1B2C3...
  381.        <RETURN> <RETURN>    enter <RETURN> twice
  382.        # A1B2C3             type the password (which is not echoed)
  383. 3  If you make a mistake, the  prompt reappears (and the "beep")  to let you try again.  You have several chances to enter the correct password.
  384. 4  If you use a dial-in modem, you have 60 seconds to respond to  the  #  prompt with the correct password.  If you don't,  the server disconnects your modem.
  385.  
  386. If you do not need to enter a login password, press <RETURN> twice to  log  into
  387. your DECserver.
  388. When you log in, an introductory line of text appears...
  389.       DECserver 200 Terminal Server V1.0 (BL20) - LAT V5.1
  390. If your port does not have a permanent username defined, enter your name (1  to
  391. 16  keyboard characters) after the following text appears...
  392.       Please type HELP if you need assistance
  393.       Enter username>
  394. The Local> prompt appears after you type your username.
  395. If your port does have a permanent username, here's what you see...
  396.      Please type HELP if you need assistance
  397.      Local>
  398.  
  399. USING ONLINE HELP
  400. Online help is documentation about DECserver commands that is
  401. stored  in  server memory.  You can see this documentation
  402. interactively on your terminal while you are using the DECserver. The HELP command gives you access to online help.  You
  403. can use it in two ways:
  404. You can type HELP at the Local> prompt...
  405.       Local> HELP
  406. This generates a succession of HELP "frames", "menus", and prompts.
  407. Frames are made  up of the information that can fit on one or more
  408. terminal screens.  Menus are lists of topics you can choose from.
  409. Alternatively, you can specify topics and subtopics  when  you
  410. enter the HELP command.  For example...
  411.       Local> HELP SET PORT
  412. This command produces online documentation that describes the SET
  413. PORT command.
  414.  
  415. SOME DEFINITIONS
  416. The primary function of the DECserver is to allow you to connect  to  "services" offered  on  your  network.  A service can be a computer system that you can use just as though your terminal were attached directly to the system, or it can  be a function offered by such a system. In addition,  services  can  be  set-up  to
  417. allow access to printers,  dial-out  modems,  personal  computers  and  terminal switches. To connect to a service, you only need to know the service name.
  418.  
  419. A "service node" is a computer system or server that offers services.
  420.  
  421. A "session" is a connection to a service.  You can have one or more simultaneous sessions  with  one  service,  or more than one service.  The connection you are using at any one time is called your "current  session". Your other sessions are inactive, but can be resumed by using server commands or session switches.
  422. "Service mode" is your environment  when  you  interact  with  a  service.   For example,  if the service is a computer system, your environment is the same as a terminal directly wired to the system.  You can all use  the  system's  commands and resources.
  423. "Local mode" is your environment when you  interact  with  the  DECserver  using commands entered at the Local> prompt.
  424.  
  425. CONNECTING TO A SERVICE
  426. Use the local mode SHOW SERVICES command to display a list of services you  can use.
  427.       Local> SHOW SERVICES
  428. To connect to a service  (establish  a  session  with  the  service)  enter  the DECserver  CONNECT  command with the name of the service you want.  For example, for a service called SALES, enter the following command:
  429.       Local> CONNECT SALES
  430. This  command  places you  in  service  mode  in  an  active  session  with  the service SALES.
  431.  
  432.  
  433. RETURNING TO LOCAL MODE FROM A SERVICE SESSION
  434. To return to local mode without ending your session, press <BREAK> or press your local  switch  character.   Both  these  characters  are,  in  effect, DECserver commands that instruct the server to go back to local mode.
  435. The <BREAK> character must be set up to permit this (by default it is), and  the local switch character must be defined (by default it is not).
  436. Use the HELP command for more details on setting up the  <BREAK> character  and local switch character.
  437.                                       NOTE
  438.    Some modems interprets the <BREAK> character as a command to end
  439.    your  dial-in connection.  If you are using one of these modems,
  440.    do not use <BREAK> to return to local mode.
  441.  
  442. Your session, now inactive, is still your current  session  because
  443. it is the session your were using most recently.
  444.  
  445.  
  446. RESUMING YOUR SERVICE SESSION FROM LOCAL MODE
  447. To resume your current session (and service mode) while your are in local  mode, enter the DECserver RESUME command.
  448.       Local> RESUME
  449.  
  450. You go back to where you left off when before returning to local mode.
  451.  
  452.  
  453. DISCONNECTING FROM A SERVICE
  454. To end your current  session  while  in  service  mode,  use  the  command  that terminates  whatever  process  you  are using.  For example, you can terminate a session on a VAX/VMS system by typing the VMS  LOGOUT  command.   Refer  to  the documentation for the service node that offers the service.
  455.  
  456. To end your current session while in local mode, enter the DECserver  DISCONNECT command.
  457.       Local> DISCONNECT
  458.  
  459. You  cannot  resume  a  service  session  after  you  end  the  connection  with DISCONNECT.
  460.  
  461.  
  462. CONNECTING TO A SECOND SERVICE
  463. The DECserver allows you to have several sessions at one time, to the same or to different services. To connect to a second (or subsequent) service, simply enter another CONNECT command from local mode, specifying the name of the service. For example, to connect to the service PRODUCTION, enter the following command:
  464.       Local> CONNECT PRODUCTION
  465.  
  466. To resume one of your non-current sessions, use the FORWARDS command  to  switch to your next session,  or the BACKWARDS  command  to  switch  to  your  previous session.  Alternatively,  you can use the RESUME command and specify the session
  467. number.  You can find this number from the SHOW SESSIONS display:
  468.       Local> RESUME SESSION 2
  469. To disconnect a particular session,  use the DISCONNECT command  and specify the session number. For example:
  470.  
  471.       Local> DISCONNECT SESSION 1
  472. LOGGING OUT OF THE DECSERVER
  473. To logout from the DECserver, enter  the  DECserver  LOGOUT  command  (in  local mode).
  474.  
  475.       Local> LOGOUT
  476.  
  477. LOGOUT disconnects all sessions.  A  DECserver  message  appears  verifying  the logout.
  478.  
  479.  
  480. The next batch of stuff comes from DECServer 500:
  481.  
  482. Local> show users
  483.  
  484. Port    Username                 Status            Service
  485.  
  486.   5     LC-1-5                   Connected         VTCC1
  487.   6     LC-1-6                   Connected         VTCC1
  488.   7     LC-1-7                   Connected         VTCC1
  489.   8     LC-1-8                   Connected         VTCC1
  490.  34     LC-3-2                   Connected         VTCC1
  491.  53     LC-4-5                   Local Mode
  492.  67     LC-5-3                   Connected         VTCC1
  493.  
  494. Local> show devices all
  495.  
  496.       Device   Device  Port     Device    CSR      Vector      Total
  497. Slot  Name   Type    List     Status    Address  Address     Errors
  498.  
  499.   1   CONSOLE  DL      0     Running    177560       60          1
  500.   2   NETWORK  DEQNA         Running    174440      120         37
  501.   3   LC-1     CXY08  1-8    Running    160440      310          2
  502.   4   LC-2     CXY08  17-24  Running    160460      320          0
  503.   5   LC-3     CXY08  33-40  Running    160500      330          1
  504.   6   LC-4     CXY08  49-56  Running    160520      340          0
  505.   7   LC-5     CXY08  65-72  Running    160540      350          0
  506.   8   LC-6     CXY08  81-88  Running    160560      360          0
  507.   9   LC-7     CXY08  97-104 Running    160600      370       5085
  508.  10   LC-8     CXY08  113-120Running    160620      400         15
  509.  
  510. Local> show server
  511.  
  512. DECserver 500 V1.0 LAT V5.1    ROM V1.0.2     Uptime: 12 7:18:36
  513. Address:   08-00-2B-0A-10-63   Name:   CCSRV2      Number:    22
  514. Identification:
  515. Circuit Timer:            80    
  516. Password Limit:            3
  517. Inactivity Timer:          2    
  518. Queue Limit:               8
  519. Keepalive Timer:          20    
  520. Retransmit Limit:         10
  521. Multicast Timer:          60    
  522. Session Limit:           256
  523. Node Limit:              100
  524. Service Groups:  0
  525.  
  526. Backup Hosts:  None
  527. Enabled Characteristics:
  528. Announcements
  529.  
  530. Local> show services all
  531.  
  532. Service Name         Status       Identification
  533.  
  534. DCSSVX       Unavailable  VT CC DCSS VS2000 Ultrix 2.2/UNIX
  535. DSW          Unavailable  VT CNS dataswitch
  536. GOLEM        Unavailable  VT Mathematics VAXstation I  VMS - Node
  537. LAN          Unavailable  VT CNS LocalNet
  538. MTHOPR       Unavailable  VT Mathematics VAXstation I  VMS - Node
  539. MTHSUN       Unavailable  VT Mathematics Sun 3/50 - MTHSUN
  540. MTHUNH       Unavailable  VT Mathematics VS2000 Ultrix 2.2 - Node
  541. MTHUNX       Unavailable  VT Mathematics VS2000 Ultrix 2.2 - Node
  542. NFNITY       Unavailable  VT Mathematics VS2000 VMS - Node NFNITY
  543. POPEYE       Unavailable  Systems Research Center VAX-11/785 SVR2/
  544. QUANTM       Unavailable  VT Mathematics VS2000 Ultrix 2.2 - Node
  545. VTAGE1       Unavailable  Ag. Engineering MicroVAX II / MicroVMS V
  546. VTCC1      6 Connected    TechCluster - Node VTCC1
  547. VTCPE1       Unavailable  VT EE Department VS2000 Ultrix 2.2/UNIX
  548. VTCPE2       Unavailable  VT EE Department VS2000 Ultrix 2.2/UNIX
  549. VTCPE3       Unavailable  VT EE Department VS2000 Ultrix 2.2/UNIX
  550. VTCPE4       Unavailable  VT EE Department VS3200 Ultrix 2.2/UNIX
  551. VTCS1        Unavailable  Va Tech CS Lab:  VMS Service
  552. VTDAL3       Unavailable  VT EE Department VS2000 Ultrix 2.0/UNIX
  553. VTDAL4       Unavailable  VT EE DAL VS3200 Ultrix 2.2/Unix
  554. VTDAL5       Unavailable  VT EE DAL VS3200 Ultrix 2.2/UNIX
  555. VTDAL6       Unavailable  VT EE DAL VS3200 Ultrix 2.2/Unix
  556. VTHCL        Unavailable  Va Tech Human/Computer Interface Lab
  557. VTMAP        Unavailable  CE-Geography SDA Lab -Node VTMAP - Micro
  558. VTMATH       Available    TechCluster - Node VTCC1
  559. VTMILO       Unavailable  Human/Computer Lab - VAXStation II
  560. VTODIE       Unavailable  VT CS Department MicroVax 2000 Ultrix 2.0
  561. VTSDA        Unavailable  Spatial Data Analysis Lab - Vax 11/785
  562. VTUNIX       Available    VT CC VAX 11/785 Ultrix 2.2/UNIX
  563. VTYR         Unavailable  VT Mathematics VS2000 VMS - Node VTYR
  564. XPRT549      Unavailable  Fifth floor printer
  565.  
  566. Local> show ports all
  567.  
  568. Port    Access    Status         Local Services
  569.  
  570.   1     Local     Idle           
  571.   2     Local     Idle           
  572.   3     Local     Idle           
  573.   4     Local     Idle           
  574.   5     Local     Connected      
  575.   6     Local     Connected      
  576.   7     Local     Connected      
  577.   8     Local     Connected      
  578.   9     Local     Offline        
  579.  10     Local     Offline        
  580.  11     Local     Offline        
  581.  12     Local     Offline        
  582.  13     Local     Offline        
  583.  14     Local     Offline        
  584.  15     Local     Offline        
  585.  16     Local     Offline        
  586.  17     Local     Idle           
  587.  18     Local     Idle           
  588.  19     Local     Idle           
  589.  20     Local     Idle           
  590.  21     Local     Local mode     
  591.  22     Local     Idle           
  592.  23     Local     Idle           
  593.  24     Local     Idle           
  594.  25     Local     Offline        
  595.  26     Local     Offline        
  596.  27     Local     Offline        
  597.  28     Local     Offline        
  598.  29     Local     Offline        
  599.  30     Local     Offline        
  600.  31     Local     Offline        
  601.  32     Local     Offline        
  602.  33     Local     Idle           
  603.  34     Local     Connected      
  604.  35     Local     Idle           
  605.  36     Local     Idle           
  606.  37     Local     Idle           
  607.  38     Local     Idle           
  608.  39     Local     Idle           
  609.  40     Local     Idle           
  610.  41     Local     Offline        
  611.  42     Local     Offline        
  612.  43     Local     Offline        
  613.  44     Local     Offline        
  614.  45     Local     Offline        
  615.  46     Local     Offline        
  616.  47     Local     Offline        
  617.  48     Local     Offline        
  618.  49     Local     Idle           
  619.  50     Local     Idle           
  620.  51     Local     Idle           
  621.  52     Local     Idle           
  622.  53     Local     Idle           
  623.  54     Local     Idle           
  624.  55     Local     Idle           
  625.  56     Local     Idle           
  626.  57     Local     Offline        
  627.  58     Local     Offline        
  628.  59     Local     Offline        
  629.  60     Local     Offline        
  630.  61     Local     Offline        
  631.  62     Local     Offline        
  632.  63     Local     Offline        
  633.  64     Local     Offline        
  634.  65     Local     Idle           
  635.  66     Local     Idle           
  636.  67     Local     Connected      
  637.  68     Local     Idle           
  638.  69     Local     Idle           
  639.  70     Local     Idle           
  640.  71     Local     Idle           
  641.  72     Local     Idle           
  642.  73     Local     Offline        
  643.  74     Local     Offline        
  644.  75     Local     Offline        
  645.  76     Local     Offline        
  646.  77     Local     Offline        
  647.  78     Local     Offline        
  648.  79     Local     Offline        
  649.  80     Local     Offline        
  650.  81     Local     Idle           
  651.  82     Local     Idle           
  652.  83     Local     Idle           
  653.  84     Local     Idle           
  654.  85     Local     Idle           
  655.  86     Local     Idle           
  656.  87     Local     Idle           
  657.  88     Local     Idle           
  658.  89     Local     Offline        
  659.  90     Local     Offline        
  660.  91     Local     Offline        
  661.  92     Local     Offline        
  662.  93     Local     Offline        
  663.  94     Local     Offline        
  664.  95     Local     Offline        
  665.  96     Local     Offline        
  666.  97     Local     Idle           
  667.  98     Local     Idle           
  668.  99     Local     Idle           
  669. 100     Local     Idle           
  670. 101     Local     Idle           
  671. 102     Local     Idle           
  672. 103     Local     Idle           
  673. 104     Local     Idle           
  674. 105     Local     Offline        
  675. 106     Local     Offline        
  676. 107     Local     Offline        
  677. 108     Local     Offline        
  678. 109     Local     Offline        
  679. 110     Local     Offline        
  680. 111     Local  Offline        
  681. 112     Local     Offline        
  682. 113     Local     Idle           
  683. 114     Local     Idle           
  684. 115     Local     Idle           
  685. 116     Local     Idle           
  686. 117     Local     Idle           
  687. 118     Local     Idle           
  688. 119     Local     Idle           
  689. 120     Local     Idle           
  690. 121     Local     Offline        
  691. 122     Local     Offline        
  692. 123     Local     Offline        
  693. 124     Local     Offline        
  694. 125     Local     Offline        
  695. 126     Local     Offline        
  696. 127     Local     Offline        
  697. 128     Local     Offline        
  698.  
  699. Enough stuff, huh?  Well, we've got MORE news.  If you're going to
  700. poke around L-Net, the following numbers into L-Net have been known
  701. to be dead (i.e. CONNECTED, but no response): 40499, 40507, 40482.
  702.  
  703. And here's an update on VTHack #2's list of Net numbers:
  704. 40600-40615     No Answer
  705. 40625-40656     Originate Only
  706. 40657           Not Accessable
  707. 40658           No Answer
  708. 40659-40686     Not a Dataline
  709. 40687           No Answer
  710. 40688-40690     Not Accessable
  711. 40691           1200 baud line
  712. 40692           No Answer
  713. 40693-40699     Not a Dataline
  714.  
  715. 40700-40723     Connection Failed
  716. 40724           No Answer
  717. 40725-40799     VM/XA VT
  718.  
  719. 40800-40817     VM/XA VT
  720. 40818-40833     Originate Only
  721. 40834-40837     Not Accessable
  722. 40838-40839     Originate Only
  723. 40840-40899     Not a Dataline
  724.  
  725. 40900-40999     Not a Dataline
  726.  
  727. And what about the other 55 thousand L-Net addresses we didn't try?
  728. Hey, why don't YOU try them, and then share the news...?  We're 
  729. already moving on to brighter futures in hacking, so stay tuned on
  730. your local BBS or pass-the-disk network for: VTHacker #4 - Viruses,
  731. reader response, Telenet, and more updates on previous info...
  732.  
  733. Downloaded From P-80 Systems 304-744-2253
  734.