File size: 47,570 Bytes
8ecd256 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 | ==Phrack Magazine==
Volume Four, Issue Forty-Two, File 8 of 14
The SprintNet/Telenet Directory
===
=======
===========
===============
---------------------===========
------------------=============
---------------=================
------------===================
===============
===========
=======
===
Scanned and written by Skylar
Release date: 12/92
Part I Basic SprintNet Info
Part II SprintNet Directory
How to Access SprintNet:
~~~~~~~~~~~~~~~~~~~~~~~~
(Compliments of Sprint)
SPRINTNET LOCAL ACCESS NUMBERS
FOR THE MOST UP-TO-DATE LISTING OF THE U.S. ACCESS TELEPHONE NUMBERS
FOR PC OUTDIAL SERVICES, DO THE FOLLOWING:
1. USE A MODEM TO DIAL 1-800-546-1000 WITH PARAMETERS SET AT 7-E-1
2. TYPE THREE CARRIAGE RETURNS (CR) (CR) (CR)
3. INPUT YOUR AREA CODE AND LOCAL EXCHANGE
4. YOU WILL THEN RECEIVE THE PROMPT SIGN "@"
5. THEN, TYPE:
MAIL (CR)
USER NAME: PHONES (CR)
PASSWORD: PHONES (CR)
Follow the menus to get your local dialup, then logon through that using the
same procedure until you get to the "@" prompt. From here, you can type in
commands. Below is a list of commands available from the "@" prompt.
Notes: while connected, you can escape to the command prompt by sending
<cr>@<cr>
while waiting for a connection, you can escape to the command prompt by
sending a hard BREAK
Command <parameter> Explanation
BYE Closes session (same as disconnect)
CONNECT <nua> Connects to a network user address
CONTINUE Continue session (used after breaking)
DISCONNECT Closes session (same as bye)
DTAPE Builds optimum circuit for bulk file transfer
DISABLE ECHO
DISABLE FLOW Pad to host flow control
DISABLE TFLOW Terminal to pad flow control
ENABLE ECHO
ENABLE FLOW
ENABLE TFLOW
FULL Set full duplex
HALF Set half duplex
HANGUP Self explanitory
ID <nui> Sets the network user id for charged calls
RESET Resets your port (as if you just dialed up)
RST Show remote parameters
RST? Set remote parameters
PAR? Show ITI parameters
STATUS Shows your current network address and port
SET? <param>:<value> Set ITI parameters.
TERM <termtype> Set your termtype
TEST CHAR Test of all ascii characters
TEST ECHO Echos what you type
TEST TRIANGLE
TEST VERSION Shows current pad software ver
Note: I didn't include any of the parameters for SET? or termtypes because
they would have increased the length of this file by about 20%. If you
want these, you can get them from the PC-PURSUIT BBS file section via
C PURSUIT from SprintNet or 031109090063100 international.
Network Messages:
~~~~~~~~~~~~~~~~~
While attempting to CONNECT to addresses on SprintNet, you may run into various
messages from the network. This should help you determine what they mean.
If you are connected and break your connection or are disconnected by the
remote host, you will recieve a disconnect message. Below is a breakdown of
the message.
DISCONNECTED 00 00 00:00:00:00 000 00
^ ^ ^_________^ ^ ^
| | | | |
| | | | +-- Packets sent
| | | +----- Packets recieved
| | +------------- Days:Hours:Minutes:Seconds connected
| +--------------------- Clearing diagnostic code
+------------------------ Clearing cause code
If you are unable to make a connection or abort an attempted connection, you
will only receive cause and diagnostic codes (as no time was spent connected
and obviously no packets were sent!) along with a very general plain-text of
what the problem might be (i.e. rejecting, not operating...). Below is a list
of cause and diagnostic codes to give you a more detailed idea of why you were
unable to connect or why you were disconnected.
Clear cause codes:
0 "DTE originated clear"
1 "Number busy"
3 "Invalid facility requested"
5 "Network congestion"
9 "Out of Order"
11 "Access barred"
13 "Not obtainable"
17 "Remote Procedure Error"
19 "Local Procedure error"
21 "RPOA out of order"
25 "Reverse Charge not Subscribed to"
33 "Incompatible destination"
41 "Fast Select acceptance not subscribed"
49 "Ship absent"
128 "DTE originated clear with top bit set"
193 "Gateway procedural error"
195 "Gateway congestion"
199 "Gateway Operational"
Clear diagnostic codes
0 "No additional Information"
1 "Invalid Ps"
2 "Invalid Pr"
16 "Packet Type Invalid"
17 "Packet Type Invalid in state r1"
18 "Packet Type Invalid in state r2"
19 "Packet Type Invalid in state r3"
20 "Packet Type Invalid in state p1"
21 "Packet Type Invalid in state p2"
22 "Packet Type Invalid in state p3"
23 "Packet Type Invalid in state p4"
24 "Packet Type Invalid in state p5"
25 "Packet Type Invalid in state p6"
26 "Packet Type Invalid in state p7"
27 "Packet Type Invalid in state d1"
28 "Packet Type Invalid in state d2"
29 "Packet Type Invalid in state d3"
32 "Packet not allowed"
33 "Packet Type Unidentifiable"
34 "Call on One way LC"
35 "Invalid PVC packet type"
36 "Packet on Unassigned logical channel"
37 "Reject not Subscribed to"
38 "Packet too short"
39 "Packet too long"
40 "Invalid GFI"
41 "Restart/Registration Packet has LC"
42 "Packet type not compatible with Facility"
43 "Unauthorised Interrupt Confirmation"
44 "Unauthorised Interrupt"
45 "Unauthorised Reject"
48 "Timer expired"
49 "Timer expired for Incoming call"
50 "Timer expired for clear Indication"
51 "Timer expired for reset indication"
52 "Timer expired for restart indication"
53 "Timer expired for call forwarding"
64 "Call set up/clear/registration problem"
65 "Facility/registration code not allowed"
66 "Facility parameter not allowed"
67 "Invalid Called Address"
68 "Invalid calling address"
69 "Invalid facility registration length"
70 "Incoming call barred"
71 "No logical channel available"
72 "Call Collision"
73 "Duplicate facility ested"
74 "Non zero address length"
75 "Non zero facility length"
76 "Facility not provided when expected"
77 "Invalid CCITT spec'd facility"
78 "Maximum call redirections/forwardings exceeded"
80 "Miscellaneous"
81 "Improper cause code from DTE"
82 "Non alligned octet"
83 "Inconsistent Q bit setting"
84 "NUI Related problem"
96 "International setup/clearing problem"
97 "Unknown calling DNIC "
98 "TNIC mismatch "
99 "Call identifier mismatch"
100 "Neg' error in utility parm' value"
101 "Invalid utility length "
102 "Non-zero utility length "
103 "M bit violation "
112 "International problem "
113 "Remote Network problem "
114 "International Protocol problem "
115 "International Link out of order "
116 "International Link busy"
117 "Transit Network Facility Problem"
118 "Remote Network Facility Problem"
119 "International routing problem"
120 "Temporary routing problem"
121 "Unknown called DNIC"
122 "MAintenance action"
128 "Network Specific Diagnostic"
218 "trax_trap error for user call"
219 "user task error"
220 "x25 task error"
Note: If you're getting LOCAL/REMOTE PROCEDURE ERROR or REJECTING, try using
different ports with the same address.
Other Than SprintNet:
~~~~~~~~~~~~~~~~~~~~~
International or other than SprintNet users, follow the table below to expand
these addresses to suit your network:
202 224 <--- Address from list
031102020022400 <--- Translated to international format
03110 202 00224 00 <--- Explanation of international format
^^^^^ ^^^ ^^^^^ ^^
| | | |
| | | |____ Port Number
| | |_________ Network Address
| |______________ Network Prefix
|___________________ DNIC
DNIC : This will be be 03110 for all translations. On some networks, you
won't need the leading 0 and can use 3110, and a few networks
(DataPac?) use a 1 instead of 0, thus: 13110.
Prefix : Throughout this file, it will always be a three digit prefix.
Address: You may have to experiment a little to get the correct place holders,
but as a general rule they will translate like this:
1 = 00001
11 = 00011
111 = 00111
1111 = 01111
11111 = 11111
Ports : Port numbers range from .1 to .99. The first 27 ports may be
alternately displayed as A-Z. Ports are generally not listed as most
addresses will find a free port for you if you leave it off, but in
some cases you must use it, so they translate like this:
.1 or A = 01
.2 or B = 02
and so on...
Examples of translated addresses:
201 1.5 = 031102010000105
415 9 = 031104150000900
223 25 = 031102230002500
714 218 = 031107140021800
617 2027 = 031106170202700
If this seems a bit essoteric or confusing, don't worry. A little bit of
experimenting will get you on the right track.
Notes:
~~~~~~
- You can usually omit leading and trailing 0's
- Most networks and PADs do NOT allow any spaces
- From SprintNet, you can use either form of address
Conventions in this list:
~~~~~~~~~~~~~~~~~~~~~~~~~
Addresses followed by a "$" do not accept collect connections (if you're not
coming on from SprintNet, ignore the $).
Addresses followed by a "*" do not accept collect connections, and I was unable
to connect to them to determine what they are.
When both the OS and the RESPONSE fields are left blank, this means that I
connected and either couldn't evoke response or got a garbage response.
LOGIN/PW's removed from this release.
SprintNet Directory
~~~~~~~~~~~~~~~~~~~
201 - New Jersey Scanned:[0-2000]
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
201 1 $ outdial (201)
201 22 $ outdial (201)
201 25 Unix HP-UX ciathp A.B7.00 U 9000/835
201 30
201 32 D&B Terminal
201 34 $ Prime
201 36 * (incoming call barred)
201 37 $
201 40 $ Welcome to our PSI via X.29
201 42 *
201 43 $
201 44 $
201 45 Prime NewsNet
201 46 $
201 48 $ VAX/VMS Welcome to MicroVMS V5.3
201 49 $ VAX/VMS
201 53 WELCOME TO COLGATE'S IICS
201 57 * (incoming call barred)
201 58 * (incoming call barred)
201 59 * (incoming call barred)
201 66 $ Prime
201 67 warner computer systems
201 68 warner computer systems
201 69 warner computer systems
201 83 ENTER ID:
201 84 D&B Terminal
201 86 D&B Terminal
201 88 D&B Terminal
201 89 Prudential
201 107 $ outdial (201)
201 108 $ outdial (201)
201 138 HP-3000 EXPECTED HELLO, :JOB, :DATA, OR (CMD) AS LOGON.
201 140 $ Enter One Time Password:
201 156 Unix Securities Data Company (SDC7)
201 163 VU/TEXT * PLEASE SIGN ON:
201 164 VU/TEXT * PLEASE SIGN ON:
201 167 DTC DTC01.HP.COM
201 170 Prudential
201 173 MHP201A UPK19130 APPLICATION:
201 174 CRYPTO ENTER "IDX" OR "ID" AND USER ID -->
201 179 APPLICATION:
201 200 D&B Terminal
201 201 D&B Terminal
201 235 *
201 241 $ (immediate hangup)
201 242 D&B Terminal
201 243 D&B Terminal
201 244 D&B Terminal
201 246 D&B Terminal
201 247 VTAM Shearson Lehman Brothers NPSI
201 252 Prime PRIMENET 21.0.6 BOR
201 254 $ Unix field login:
201 257 Please press <Return> . . .(
201 259 Please press <Return> . . .(
201 271 $ User Access Verification Password:
201 301 $ outdial
201 334 $ HP-3000 :
201 335 *
201 336 $ Concurrent Computer Corporation's DATALINK
201 337 $ out of order
201 339 $ ??? (echo)
201 340 *
201 341 *
201 342 $ Unix ocpt
201 343 $ Enviornmental Control Monitor (PENNET)
201 344 *
201 348 *
201 350 $ $$ 4200 MODEL: $$ 50 DEVICE TYPE IDENTIFIER :
201 355 $ Concurrent Computer Corporation's DATALINK
201 430 * (incoming call barred)
201 465 VAX/VMS V5.5 on VBH301
201 471 Prudential
201 472 APPLICATION:
201 474 Prudential
201 475 Prudential
201 477 VM/CMS? ENTER AS SHOWN: L/LOGON/TSO/INFO/CICS
201 479 VM/CMS
201 730 *
201 770 *
201 830 $ INSCI/90 SYSTEM MV-10/13, LOGON PLEASE
201 870 $ INSCI/90 SYSTEM MV-10/13, LOGON PLEASE
201 890 $ INSCI/90 SYSTEM MV-10/13, LOGON PLEASE
201 895 $ INSCI/90 SYSTEM MV-10/10, LOGON PLEASE
201 899 $ (hangs up)
201 910 $ (echo)
201 912 $ (echo)
201 914 $ (echo)
201 916 $ (echo)
201 950 Bankers Trust Online
201 999 $ (hangs up)
201 1030 USER ID
201 1050 VU/TEXT
201 1051 VU/TEXT
201 1052 VU/TEXT
201 1053 VU/TEXT
201 1054 VU/TEXT
201 1055 VU/TEXT
201 1056 VU/TEXT
201 1057 VU/TEXT
201 1059 VU/TEXT
201 1060 VU/TEXT
201 1061 VU/TEXT
201 1062 VU/TEXT
201 1063 VU/TEXT
201 1064 VU/TEXT
201 1065 VU/TEXT
201 1066 VU/TEXT
201 1067 VU/TEXT
201 1068 VU/TEXT
201 1069 VU/TEXT
201 1070 VU/TEXT
201 1071 VU/TEXT
201 1072 VU/TEXT
201 1073 VU/TEXT
201 1074 VU/TEXT
201 1075 VU/TEXT
201 1076 VU/TEXT
201 1077 VU/TEXT
201 1078 VU/TEXT
201 1079 VU/TEXT
201 1135 $ ACCESS BARRED
201 1137 $ Finlay Fine Jewelry Corp.
201 1139 CONNECTED TO PACKET/400
201 1143 $ MHP201A UPK19040 APPLICATION:
201 1156 *
201 1160 Shaw Data Services
201 1163 * (incoming call barred)
201 1164 * (incoming call barred)
201 1168 CONNECTED TO PACKET/400
201 1170.1 $ Johnson and Johnson Network
201 1171 *
201 1172 $ Unix/SCO TCSS
201 1173 *
201 1174 *
201 1176 NSP READY
201 1177 NSP READY
201 1232 VAX/VMS Username:
201 1233 VAX/VMS Username:
201 1243 VAX/VMS Friden Neopost (NJCRAN Node)
201 1251 VM/CMS GSERV
201 1258 VM/CMS GSERV
201 1259 VM/CMS GSERV
201 1263 * (incoming call barred)
201 1264 * (incoming call barred)
201 1265 *
201 1266 *
201 1267 *
201 1268 *
201 1270
201 1272
201 1275 VAX/VMS Shaw Data Services
201 1277
201 1330 *
201 1331 *
201 1332 *
201 1333 $ (echo)
201 1335 $ Environment Control Monitor
201 1340 *
201 1341 *
201 1342 *
201 1343 Prudential
201 1344 Prudential
201 1345 Prudential
201 1346 Prudential
201 1347 Prudential
201 1354 *
201 1359 $ Finlay Fine Jewelry Corp.
201 1370.1 $ HP-3000 CORPHP.CIS.HCC
201 1371 *
201 1372 *
201 1373 *
201 1374 *
201 1375 *
201 1376 *
201 1377 *
201 1378 *
201 1379 $
201 1430 * (incoming call barred)
201 1431 * (incoming call barred)
201 1432 * (incoming call barred)
201 1433 * (incoming call barred)
201 1434 * (incoming call barred)
201 1435 * (incoming call barred)
201 1442 *
201 1443 *
201 1446 *
201 1454 *
201 1455 *
201 1456 *
201 1460
201 1510
201 2030 Lynx Technologies Inc.
201 2031 VTAM Shearson Lehman Brothers NPSI
201 11234 VAX/VMS
202 - Washington D.C. Scanned: [0 - 3000] & various
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
202 1 Prime
202 2 Prime
202 10 Prime
202 12 Prime
202 31 NewsMachine 5.1
202 36 $ NETWORK SIGN-ON FAILED
202 38 $ NETWORK SIGN-ON FAILED
202 42 *
202 48 $ U.S.I.A. Computer Center.
202 49 enter system id --
202 115 $ outdial (202)
202 116 $ outdial (202)
202 117 $ outdial (202)
202 123 $ xxxx
202 138 $ VAX/VMS Gaullaudet University
202 141 >909 761 User name?
202 142 >909 406 User name?
202 149 $
202 150 UPI>
202 152 *
202 201 CompuServe User ID: phones
202 202 CompuServe
202 203 CompuServe
202 224 $ outdial (global)
202 235 $ Prime
202 239 $ Prime
202 241 *
202 243 *
202 245 AOS Username:
202 253 *
202 255 Morgan Stanley Network
202 260 $ PLEASE SELECT: TSOMVS, ANOTHER APPLICATION
202 265 $ USER ID
202 266 $ USER ID
202 275 *
202 276 *
202 277 *
202 278 $ USER ID
202 330 *
202 331 *
202 332 *
202 333 *
202 334 *
202 335 *
202 336 VAX/VMS Congressional Quarterly Online Systems
202 337 VAX/VMS Congressional Quarterly Online Systems
202 353 *
202 356 PRIME PRIMENET 22.1.1.R36 SYSA
202 361 *
202 362 *
202 363 *
202 364 *
202 365 Lexis and Nexis
202 366 Lexis and Nexis
202 367 Lexis and Nexis
202 371 *
202 372 *
202 373 *
202 377 *
202 390 $ #CONNECT REQUESTED TO HOST GSAHOST : CANDE
202 391 $ #CONNECT REQUESTED TO HOST GSAHOST : CANDE
202 403 $ outdial (202)
202 433 *
202 453 USER ID
202 454 VAX/VMS Connect to GBS
202 455 *
202 456 *
202 458 *
202 459 *
202 465 *
202 466 *
202 467 *
202 468 *
202 469 *
202 472 *
202 477 UPI>
202 478 UPI>
202 479 UPI>
202 550 UPI>
202 616 *
202 617 *
202 1030 *
202 1031 *
202 1032 *
202 1033 *
202 1034 *
202 1155 *
202 1156 *
202 1157 *
202 1158 *
202 1159 *
202 1261 *
202 1262 *
202 1263 *
202 1264 *
202 1265 *
202 1266 *
202 1267 *
202 1268 *
202 1269 *
202 1270 *
202 1323 $
202 1325 VAX/VMS
202 1363 Enter your User Name:
202 1364.1 Unix System name: fmis
202 1365.3 Unix/SysV X.29 Terminal Service (person)
202 1385 Prime PRIMENET 22.1.3 CGYARD
202 1407 Unix/SysV X.29 Terminal Service (person)
202 1440 VAX/VMS Username:
202 3011 *
202 3012 *
202 3030A ASYNC TO 3270 -> FIRST AMERICAN BANK OF GEORGIA
202 3036 $ GS/1 GS/X.25 Gateway Server
202 3060 *
202 3067 $ Major BBS Power Exchange (adult bbs and chat) Member-ID? new
202 3069 $ E06A26B3
202 3070 $
202 3071 $
202 3072 $
202 3074 $ VAX/VMS Welcome to VAX/VMS V5.5-1
202 3075 *
202 3130 GTE Contel DUAT System (login as visitor)
202 3131 GTE Contel DUAT System (airplane info galore)
202 3134 USER ID
202 3135 USER ID
202 3138 *
202 3139 *
202 3140 *
202 3142 *
202 3145 &StArT&
202 3242 VOS Please login (try 'help')
202 3243 VOS Please login
202 3244 Unix tmn!login:
202 3246 *
202 3247 *
202 3254 VOS Please login
202 3255 VOS Please login
202 3256 VOS Please login
202 3257 (locks up)
202 3258 VOS Please login
202 3259 VOS Please login
202 3260 VOS Please login
202 3261 VOS Please login
202 3262 VOS Please login
202 3263 VOS Please login
202 3264 $ AMS SYSTEM=
202 3269
202 3330 *
202 3332 *
202 3333 *
202 3335 $ NETX A000VD00 READY FOR LOGON
202 3336 $ NETX A000VD00 READY FOR LOGON
202 3337 *
202 3338 *
202 3600 *
202 3601 *
202 3602 *
202 3603 *
202 3604 *
202 3605 *
202 3606 *
202 3611 *
202 3612 *
202 3613 *
202 3614 *
202 3630 *
202 4220
202 4222
202 4226 MSG10-RJRT TERMINAL-ID:GSSCXA63 IS NOW IN SESSION
202 60031 VAX/VMS V5.4-2
202 60033 Unix/SunOS Welcome to QHDS!
202 60035 *
202 60036 NETX A0A0VD00 READY FOR LOGON
202 60039 Unix/SunOS (QHDS.MXBC)
202 60040 Lexis and Nexis
202 60043 *
202 60056
202 60058 *
202 60059 *
202 60060 *
202 60064 *
202 60068 PIN:
202 60069 PIN:
202 60070 PIN:
202 60071 PIN:
202 60073 *
203 - Connecticut Scanned: [0 - 500]
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
203 22 VM/CMS
203 28 VM/CMS
203 50 CONNECTED TO PACKET/74
203 60 $ GEN*NET Private Switched Data Network
203 61 *
203 62 VAX/VMS ACM Enter SecurID PASSCODE:
203 66 Login Please :
203 67 Login Please :
203 77 *
203 78 $ Novell Netware Access Server (DDS)
203 79 *
203 105 $ outdial (203)
203 120 $ outdial (203)
203 121 $ outdial (203)
203 136 PRIME PRIMENET 20.2.7 SYSA
203 159 $ access barred
203 160 *
203 161 $ Novell Netware Access Server (INFOSYS)
203 165 Panoramic, Inc. PLEASE LOGON: help
203 242 Login Please :
203 274 $ ACF/VTAM
203 277 * (incoming call barred)
203 310
203 317
203 346 *
203 347 SB >
203 350 *
203 362 * (incoming call barred)
203 367 CONNECTED TO PACKET/74
203 434 $ (hangs up)
203 435 $ ACF/VTAM
203 438 $ (echo)
203 442 $ (echo)
203 452 *
203 455
203 458 * (incoming call barred)
203 463 *
203 465 *
205 - Alabama Scanned: 0 - 300
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
205 237 *
205 245 *
205 246 *
206 - Washington Scanned: [0 - 500]
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
206 40 $ Prime PRIMENET 23.2.0.r26 P6450
206 60 *
206 65 PRIME PRIMENET 22.1.4 OAD
206 66
206 67 $
206 138 $ MHP201A UPK0BY60 * VERSION 5.5.4 *.
206 139 $ Wang VS Logon
206 154 $ DTC THE SEATTLE DTC (DTC01.MACON.USOPM)
206 158 VAX/VMS Username:
206 167 * (incoming call barred)
206 170 $ hp-3000
206 173 $ Renex Connect, SN-00100201
206 205 $ outdial (206)
206 206 $ outdial (206)
206 208 $ outdial (206)
206 239.1$ + Log on please
206 240.1$ ***investigate***
206 250 $ logins to this workstation temp. barred
206 251 $ Wang SYSTEM TWO (TACOMA:TACOMA)
206 351 *
206 352 *
206 357 $ HP-3000
206 360 CUSTOMER ID:
206 368 *
206 369 *
206 371 $
206 375 Prime PRIMENET 23.2.0.r26 DZ-BLV
206 430 $ 911 Monitor HATSLNCT is currently not available
206 470 VAX/VMS
206 479 $ + Log on please
207 - Maine Scanned: 0 - 300
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
207 40 *
207 260 ??? Please login:
208 - Idaho Scanned: 0 - 300
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
208 236 *
208 250 $ USER ID
208 252 Welcome to the NET, X.29 Password:
209 - California Scanned: 0 - 300
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
209 241 *
209 243 *
209 245 *
209 246 *
209 270 $ VAX/VMS Continental PET Technologies, MODESTO
209 273 DACS III ***investigate***
211 - Dun & Broadstreet Scanned: various
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
211 1140 D&B terminal
211 1142 D&B terminal
211 1145 VAX/VMS on VBH302
211 1240 Please enter your terminal id; '?' for MENU
211 1242 D&B terminal
211 1244 Please enter your terminal id; '?' for MENU
211 1245 ??? GNETMAIL
211 2150 Prime
211 2240 DunsNet's User Verification Service
211 2247 DUNSCENTER (connects to many machines)
211 2249 ID?>
211 2255 ID?>
211 2450 Prime
211 2451 Prime
211 3290 CMS? IDC/370 Ready-
211 3291 CMS? IDC/370 Ready-
211 3292 CMS? IDC/370 Ready-
211 3390 CMS? IDC/370 Ready-
211 3391 CMS? IDC/370 Ready-
211 3392 CMS? IDC/370 Ready-
211 3490 CMS? IDC/370 Ready-
211 4190 DunsNet's User Verification Service
211 4240 Enter service code -
211 4241 Enter service code -
211 5140 DTC Nielsen Household Services (DTC03.NY.NPD)
211 5240 VAX/VMS GUMBY...
211 5290 DTC Nielsen Household Services (DTC02.NY.NPD)
211 6140 PLEASE ENTER SUBSCRIBERID;PASSWORD
211 6141 A. C. Nielsen Information Center.
211 6142 A. C. Nielsen Information Center.
211 6145
211 6190 PLEASE ENTER SUBSCRIBERID;PASSWORD
211 6240 A. C. Nielsen Information Center.
211 6250 ??? USERNAME?
211 6290 PLEASE ENTER SUBSCRIBERID;PASSWORD
211 8140 DIALOG INFORMATION SERVICES
211 8142 VAX/VMS Username:
211 11140 VM/CMS VM/370 ONLINE--
211 11142 VM/CMS VM/370 ONLINE--
211 11144 VAX/VMS Username:
211 13190 D&B terminal (in spanish)
211 13191 D&B terminal
211 14110 Renex Connect, Enter password -
211 15140 NEODATA SERVICES NETWORK
212 - New York Scanned: [0 - 3000] & various
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
212 30 ENTER ID:
212 31 $ VM/CMS
212 34 *
212 40 PLEASE ENTER /LOGIN
212 41 MHP201A UPK05173 APPLICATION:
212 48 *
212 52 $ Prime
212 53 VAX/VMS
212 73 $ Prime
212 79 ENTER ID:
212 100 VAX/VMS Username:
212 101 VAX/VMS Username:
212 102 **** Invalid sign-on, please try again ****
212 103 VAX/VMS Username:
212 104 **** Invalid sign-on, please try again ****
212 105 **** Invalid sign-on, please try again ****
212 106 **** Invalid sign-on, please try again ****
212 108 **** Invalid sign-on, please try again ****
212 109 **** Invalid sign-on, please try again ****
212 110 **** Invalid sign-on, please try again ****
212 112 Shearson Lehman Brothers
212 124 $ VAX/VMS Username:
212 130 you are now connected to the host computer
212 131 Shearson Lehman Brothers
212 137 Prime PRIMENET 22.1.1.R17.STS.6 NY60
212 145 ENTER ACCESS ID:
212 146 ENTER ACCESS ID:
212 152 VAX/VMS Username:
212 170 $ TWX2V LOGGED INTO AN INFORMATION SERVICES NETWORK
212 172 $ TWX2V LOGGED INTO AN INFORMATION SERVICES NETWORK
212 174 $ TWX2V LOGGED INTO AN INFORMATION SERVICES NETWORK
212 197 BANKERS TRUST
212 202 VAX/VMS Username:
212 226 USER ID ?
212 231 $ VM/CMS
212 242 ENTER IDENTIFICATION:
212 255 VAX/VMS (PB2 - PBS Development System)
212 259 VAX/VMS (NYTASD - TAS SYSTEM)
212 260 Bankers Trust Online
212 274 $ INVALID INPUT
212 275 Bankers Trust Online
212 276 *
212 277 ****POSSIBLE DATA LOSS 00 00****
212 278 Bankers Trust Online
212 279 User: (RSTS V9.3-20)
212 285 Invalid login attempt
212 306 *
212 315 $ outdial (212)
212 320 ENTER IDENTIFICATION:
212 321 ENTER IDENTIFICATION:
212 322 $ COMMAND UNRECOGNIZED
212 336 *
212 344 *
212 345 Prime PRIMENET 23.2.0.R32 NMSG
212 352 *
212 359 (drops connection right away)
212 376 -> 201 950 Bankers Trust Online
212 430 -> 312 59 Id Please: User Id: Password:
212 432 *
212 437 *
212 438 *
212 440 *
212 444 Prime PRIMENET 21.0.7.R31 EMCO
212 446 $ VAX/VMS
212 449 $ VM/CMS
212 500 enter a for astra
212 501 enter a for astra
212 502 enter a for astra
212 503 enter a for astra
212 504 enter a for astra
212 505 enter a for astra
212 509 $ Transamerican Leasing (White Plains Data Center)
212 539 (drops connections right away)
212 546 $ APLICACAO:
212 549 $ BT-Tymnet Gateway
212 561 VAX/VMS Username:
212 571 You are not authorized to connect to this machine.
212 572 $ No access to this DTE.
212 580 enter a for astra
212 603 Shearson Lehman Brothers
212 615 Shearson Lehman Brothers
212 623 Shearson Lehman Brothers
212 693 $ USER ID
212 703 Unix
212 704 Unix
212 713 Prime PRIMENET 22.1.1.R17.STS.6 NY60
212 726 $ VAX/VMS
212 731
212 970 *
212 971 *
212 972 *
212 973 *
212 974 *
212 975 *
212 976 *
212 977 *
212 978 *
212 979 *
212 1000 $ Enter ID:
212 1001 $ Enter ID:
212 1002 $ Enter ID:
212 1004 $ Enter ID:
212 1009 $ outdial (212)
212 1045 $ HP-3000 White & Case - HP 3000 Computer System
212 1046 *
212 1049 APPLICATION:
212 1050 NSP READY?
212 1052 Prime PRIMENET 20.2.4.R11 FTC0
212 1053 VAX/VMS
212 1065 $ AOS Track Data System 12
212 1069 #
212 1071 $ GS/1 CS/100T>
212 1072 $ GS/1 CS/100T>
212 1076 NSP READY
212 1233 *
212 1355 *
212 1356 *
212 1367 You are not authorized to connect to this machine.
212 1373 enter a for astra
212 1450 RadioSuisse Services.
212 1469
212 1477 n042ppp> enter system id
212 1478 n042ppp> enter system id
212 2050B Unix softdollar login:
212 2050D Unix softdollar login:
212 2060 $ T.S.S.G
212 2061 $ Boston Safe Deposit and Trust Company
212 2062 $ TWX40 LOGGED INTO AN INFORMATION SERVICES NETWORK
212 2071 VM/CMS GSERV
212 2079 VM/CMS GSERV
212 2130 $ (echo)
212 2131 $ (echo)
212 2134 $ (echo)
212 2135 $ (echo)
212 2230 $ (echo)
212 2231 $ (echo)
212 2234 $ (echo)
212 2235 $ (echo)
212 2245 $ Finlay Fine Jewelry Corp.
212 2250 VAX/VMS Username:
212 2251 **** Invalid sign-on, please try again ****
212 2252 **** Invalid sign-on, please try again ****
212 2253 **** Invalid sign-on, please try again ****
212 2254 **** Invalid sign-on, please try again ****
212 2270 **** Invalid sign-on, please try again ****
212 2271 **** Invalid sign-on, please try again ****
212 2272 **** Invalid sign-on, please try again ****
212 2273 **** Invalid sign-on, please try again ****
212 2274 **** Invalid sign-on, please try again ****
212 60002 You are not authorized to connect to this machine.
212 60007 You are not authorized to connect to this machine.
212 60010 You are not authorized to connect to this machine.
212 60031 VM/CMS
212 60032 ENTER ID:
212 60033 Prime CDA Online Services
212 60034 CHANNEL 03/009. ENTER RESOURCE
212 60037 VAX/VMS MuniView
212 60044 *
212 60051 *
212 60055 USER ID
213 - California Scanned: [0 - 2000]
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
213 21 Prime PRIMENET 23.2.0.R32 C6
213 22 Prime PRIMENET 23.2.0.R32 D6
213 23 $ outdial (213)
213 24 Marketron Research and Sales System
213 25 $ outdial (213)
213 35 Marketron Research and Sales System
213 41 $ (echo)
213 45 $ ENTER NETWORK SIGN-ON:
213 50 $ (echo)
213 52 $ Prime
213 53 CONNECTED TO PACKET/74
213 55 CONNECTED TO PACKET/74
213 56 CONNECTED TO PACKET/74
213 60 CONNECTED TO PACKET/74
213 61 CONNECTED TO PACKET/74
213 68 *
213 70 *
213 102 Prime PRIMENET 21.0.7.R10 TRWE.A
213 103 $ outdial (213)
213 105 Prime PRIMENET 22.1.3.beta1 SWOP
213 121 Prime PRIMENET 23.0.0 SWWE1
213 122 Unix Computervision Los Angeles District Admin System
213 123 Prime PRIMENET 23.3.0.r29 SWWA1
213 129 Prime PRIMENET 22.0.3vA CALMA1
213 151 Prime PRIMENET 22.1.3 CSSWR1
213 154 Prime PRIMENET 22.1.1.R27 SWWCR
213 155 Prime PRIMENET 22.1.3 CS.LA
213 199 Prime PRIMENET 23.2.0.R32 C6
213 220A TELENET ASYNC TO 3270 SERVICE
213 221A TELENET ASYNC TO 3270 SERVICE
213 248 *
213 249 *
213 262 *
213 265 *
213 340 Prime PRIMENET 23.2.0 TRNGW
213 336 *
213 337 $ HP-3000
213 351 Unix/SunOS SunOS Release 4.1.2 (X25)
213 357 Unix/SunOS SunOS Release 4.1.1 (X25)
213 359 Unix
213 371 *
213 373 HP-3000 SAGAN.HP.COM
213 412 $ outdial (213)
213 413 $ outdial (213)
213 540 *
213 541 *
213 542 *
213 543 *
213 660
213 1052 $ Environment Control Monitor
213 1053 $ Unix milpitas login:
213 1054 *
213 1055 $ Environment Control Monitor
213 1056 *
213 1057 $ Denver Service System (ECM)
213 1064 *
213 1065 HP-3000 EXPECTED HELLO, :JOB, :DATA, OR (CMD) AS LOGON.
213 1073
213 1079 *
213 1160 *
213 1418 *
213 1419 *
213 1420 *
213 1421 *
213 1422 *
213 1423 *
213 1424 *
213 1425 *
213 1426 *
213 1427 *
213 1428 *
213 1429 *
213 1430 *
213 1450 MACNET:
214 - Texas Scanned: [0 - 2000]
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
214 20 SIM3278
214 21 SIM3278
214 22 $ outdial (214)
214 42 VAX/VMS Username:
214 60 HP-3000 DELTA.RCO.NTI
214 68 $ VAX/VMS GTECVC
214 76 Cyber Power Computing Cyber Service
214 231
214 240
214 245 *
214 337
214 352 IST451I ENTER VALID COMMAND - NETX B0A8VD00
214 355 *
214 358 *
214 364 $ VAX/VMS GTECVC
214 366 Renex Connect, Enter service code -
214 371 Prime PRIMENET 21.0.2S GCAD..
214 372
214 373 *
214 1031 *
214 1032 *
214 1033 *
214 1034 $ (echo)
214 1035 *
214 1040 $ (echo)
214 1048 Renex Connect, Enter terminal type or "M" for menu
214 1070 BT-Tymnet Gateway please log in: information
214 1071 Cyber You may enter CDCNET commands.
214 1075 Cyber You may enter CDCNET commands.
214 1131 *
214 1151 VAX/VMS Username:
214 1152 *
214 1153
214 1158 *
214 1161 VAX/VMS Username:
214 1230 *
214 1237
214 1238
214 1241 *
214 1242 *
214 1243 *
214 1244 *
214 1245 *
214 1246 *
214 1247 *
214 1248 *
214 1249 *
214 1250 *
214 1251 *
214 1252 *
214 1253 *
214 1254 *
214 1255 *
214 1256 *
214 1257 *
214 1258 *
214 1260 *
214 1261 *
214 1262 *
214 1263 *
214 1264 *
214 1265 VAX/VMS Username:
214 1277 *
214 1278 *
214 1334 *
214 1335 *
214 1336 *
214 1337 *
214 1338 *
214 1339 *
214 1340 *
214 1341 *
214 1343 *
214 1358 *
214 1359 *
214 1362 VAX/VMS Username:
214 1363 *
214 1364 *
214 1365 *
214 1366 *
215 - Pennsylvania Scanned: 0 - 300
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
215 5 $ outdial (215)
215 22 $ outdial (215)
215 30 *
215 38 *
215 40 VU/TEXT
215 44 *
215 55 *
215 60 *
215 66 Prime NewsNet
215 112 $ outdial (215)
215 121 VM/CMS TOWERS PERRIN ONLINE--PHILA
215 134 *
215 135 VU/TEXT
215 139 *
215 140 VU/TEXT
215 143 *
215 154
215 163 Unix
215 164 Unix
215 165 Unix
215 166 Unix
215 167 Unix
215 168 Unix
215 169 Unix
215 170 Unix
215 171 Unix
215 172 *
215 173 *
215 176 *
215 179 Unix PLASPEC Engineering & Marketing Network
215 231
215 251 Unix
215 252 Unix
215 253 Unix
215 254 Unix
215 255 Unix
215 261 VAX/VMS File Transfer and Gateway Service Node ARGO
215 262
215 263
215 263
215 264 %@CVTTAUD@dUYECVGUIiED
215 270 CONNECTED TO PACKET/400
215 530 $
215 531 $
215 532 $
215 533 $
215 534 $
215 535 $
215 536 $
215 537 $
215 538 $
215 539 $
215 540 $
215 541 $
216 - Ohio Scanned: [0 - 2000]
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
216 20 $ outdial (216)
216 21 $ outdial (216)
216 38 VAX/VMS Username:
216 49
216 51 *
216 59 *
216 60 APPLICATION:
216 63 *
216 64 Prime PRIMENET 20.2.4 LIPC
216 74 $ hp-x000
216 75 *
216 120 $ outdial (216)
216 134 *
216 135 *
216 140
216 201 $ HP-3000
216 202 *
216 203 *
216 204 *
216 205 *
216 209 *
216 210 *
216 211 *
216 212 $ HP-3000
216 530 *
216 531 *
216 532 *
216 533 *
216 534 *
216 535 *
216 536 *
216 537 *
216 538 *
216 539 $ (echo)
216 1351 Prime PRIMENET 22.1.4 OPSPRO
216 1352 Prime Good morning
216 1353 Prime PRIMENET 22.1.4 OPSPRO
216 1354 Prime Good morning
216 1355 $ Prime PRIMENET 22.1.4.R63 OPSSEC
216 1356 *
216 1357 Prime Good morning
216 1358 Prime PRIMENET 22.1.4 OPSPRO
216 1369 *
216 1370 *
216 1371 *
216 1372 *
217 - Illinois Scanned: 0 - 200
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
217 45 *
217 46 *
219 - Indiana Scanned: 0 - 200
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
219 3 Prime PRIMENET 22.1.0vA2 NODE.0
219 8 Prime PRIMENET 23.2.0vA NODE.8
219 9 ENTER GROUP NAME>
219 10 Lincoln National Corporation
219 35 $ MHP201A ZMA0PZ10 * VERSION 6.0.1 *.
219 140 Prime PRIMENET 23.2.0vA CS.FTW
219 150 *
222 - unknown Scanned: various
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
222 100 Prime
222 140 Prime
222 320 Prime
222 340
223 - Citibank Scanned: various
ADDRESS OS/SYSTEM PROMPT/RESPONSE/OWNER/ETC LOGIN/PW
---------- ----------- -------------------------------------------------
223 1 $ GS/1 CITITRUST/WIN Gateway! (Toll 25 cents)
223 6 PLEASE ENTER TRANSACTION ID:
223 10 Prime
223 11 Prime
223 13 Prime
223 15 Prime
223 17 CDS DATA PROCESSING SUPPORT
223 19 $ HP-3000
223 26 NETWORK USER VALIDATION.
223 31
223 32 enter a for astra
223 34 NETWORK USER VALIDATION.
223 35 VAX/VMS TREASURY PRODUCTS
223 39 Major BBS GALACTICOMM User-ID? new
223 40 Global Report from Citicorp
223 41 VOS (other systems connect from there)
223 42 CITICORP/CITIBANK - 0005,PORT 3
223 46 $ Enter Secure Access ID -02->
223 47 CCMS
223 48A CITIBANK ,PORT 5
223 50 Prime
223 54 CITI CASH MANAGEMENT NETWORK -
223 55 NETWORK USER VALIDATION.
223 57
223 65 VOS
223 68 $ Citimail II
223 70 ELECTRONIC CHECK MANAGER ENTER 'ECM'
223 71 ""
223 74A ""
223 79 VAX/VMS Audit login --- Your session will be recorded.
223 87 VOS CitiShare Milwaukee, Wisconsin
223 91 VAX/VMS Unauthorized Use Is Prohibited
223 92 <<please enter logon>>
223 93 Major BBS? Citibank Customer Delivery Systems (#95298116)
223 94 <<ENTER PASSWORD>>
223 95
223 96 <<ENTER PASSWORD>>
223 103 <<ENTER PASSWORD>>
223 104 $ VAX/VMS
223 106
223 175 enter a for astra
223 176 VAX/VMS
223 178 NETWORK USER VALIDATION.
223 179 $
223 183 Prime
223 184 Prime PRIMENET 23.2.0vB PROD-C
223 185 Citibank Hongkong
223 186 Citibank Hongking
223 187 $ DECserver
223 188 GS/1 CITITRUST/WIN Gateway! (Toll 25 cents)
223 189 $ DECserver
223 191 (need x.citipc terminal emulator)
223 193 Prime
223 194 VAX/VMS
223 199 $
223 200 NETWORK USER VALIDATION.
223 201 C/C/M INT'L 3 ENTER YOUR ID : [ ]
223 202 C/C/M INT'L 4 ENTER YOUR ID : [ ]
223 204 C/C/M INT'L 6 ENTER YOUR ID : [ ]
223 208 C/C/M ENTER YOUR ID : [ ]
223 210 NETWORK USER VALIDATION.
223 211 CITI Master Policy Bulletin Board
223 212 ""
223 216 VAX/VMS *** Unauthorized Access Prohibited ***
223 217
223 218
223 222 Unix SysV Citibank PDC Registration System
223 223 CITIBANK SINGAPORE
223 223 Unix discovery login:
223 227 Prime PRIMENET 23.2.0.R43 BASCOS
223 234 VCP-1000 Terminal Server
223 256 VOS CITIBANK - NSO NEW YORK, NY
223 258 VOS CITIBANK - NSO NEW YORK, NY
223 259 VOS CITIBANK - NSO NEW YORK, NY
223 260 VAX/VMS Unauthorized Use Is Prohibited
223 503 ??? :
223 508
223 510 VOS Citibank Puerto Rico
223 512 VAX/VMS #6 Node: NYF050
223 513 CITI CASH MANAGEMENT NETWORK -
223 515 Prime PRIMENET 23.2.0.R43 BASCOS
223 519 Prime PRIMENET 23.2.0.R43 OBSPOM
223 520 $ CitiMail II
223 521 $ Major BBS User-ID? new
223 523 Prime PRIMENET 23.2.0.R43 LATPRI
223 524 $ GS/1 Cititrust (Cayman)'s WIN Gateway!
223 527 INVALID COMMAND SYNTAX
223 600
223 1000 CITI CASH MANAGEMENT NETWORK
223 1002
223 3002 NETWORK USER VALIDATION.
223 3003 ??? Welcome to Citiswitch, New York
223 3008 ??? ""
223 3011 Unix DG/UX Release 4.32. AViiON (gnccsvr)
223 3012 Unix DG/UX Release 4.32. AViiON (gnccsvr)
223 3020 Prime
223 3030 $ VAX/VMS
223 3031 *
223 3042A CITI Master Policy Bulletin Board
223 3044
223 3046
223 3048 $ DECserver
223 3052 Unix DG/UX Release 4.32. AViiON (parsvr)
223 3056 *
223 3060B TBBS Citicorp Futures Corp.
223 3064 $
223 3066
223 3067 NETWORK USER VALIDATION.
223 3070 *
223 3074 NETWORK USER VALIDATION.
223 3075A Port Selec Systems: EQX/SUP,SECURID,TS,TS1,TS2,TS3,PBX
223 3077
223 3080A PERSONNEL SERVICES & TECHNOLOGY'S DATA PABX NETWORK.
223 3082
223 3083 ENQUIRE GSM User ID?
223 3086 VOS Citishare
223 3088 HP-3000 SYSTEMC.HP.CITIBANK
223 4700 *
223 8050 ILLEGAL SOURCE ADDRESS 0B 80
223 8052
223 8053 TYPE .
223 8056 ILLEGAL SOURCE ADDRESS 0B 80
223 8057 *
223 8058 ILLEGAL SOURCE ADDRESS 0B 80
223 8059 ILLEGAL SOURCE ADDRESS 0B 80
223 8100 Prime PRIMENET 23.1.0 LATRG1
223 8101 Prime PRIMENET 23.1.0 LATRG2
223 8201
223 8202 Enter password:
223 8602 Prime PRIMENET 23.2.0.R43 OBSPOM
223 8804 11 - FORMAT ERROR
223 10009 I/P LOGIN CODE
223 10010 I/P LOGIN CODE
223 10015 I/P LOGIN CODE
223 10030 UMP 15, TP (DEV A) >
223 10032 UMP 2, XGATE (NODE 6)
223 10050 I/P LOGIN CODE
|