home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / T / TNH!NOM.ZIP / NOM.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1996-02-13  |  2KB  |  134 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 3.O1 (Encryption type I) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     Integer  INTEGER002
  21.     String   STRING001
  22.     String   STRING002
  23.     String   STRING003
  24.     String   STRING004
  25.  
  26. ;------------------------------------------------------------------------------
  27.  
  28.     FOpen 1, PPEPath() + "NOM.CFG", 0, 0
  29.     FGet 1, STRING001
  30.     INTEGER001 = 2
  31.     STRING002 = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz _!./,'"
  32.     Cls
  33.     AnsiPos 0, 1
  34.     PrintLn "@X07NOM ENGINEER WORK SYSTEM"
  35.     AnsiPos 0, 2
  36.     PrintLn "Model: CPS-7133"
  37.     AnsiPos 0, 4
  38.     PrintLn "Copyright (c) 2105,2109,2114"
  39.     AnsiPos 0, 5
  40.     PrintLn "NOM Corporation"
  41.     Delay 1
  42.     AnsiPos 0, 6
  43.     PrintLn "All Rights Reserved"
  44.     AnsiPos 0, 8
  45.     PrintLn "real   mem = 8192 TB"
  46.     Delay 3
  47.     AnsiPos 0, 9
  48.     PrintLn "avail  mem = 32668 TB"
  49.     Delay 3
  50.     AnsiPos 0, 11
  51.     PrintLn "Primary data cache :512KB"
  52.     Delay 3
  53.     AnsiPos 0, 12
  54.     PrintLn "Primary inst.cache :768KB"
  55.     Delay 3
  56.     AnsiPos 0, 13
  57.     PrintLn "Secondary cache    :32768KB"
  58.     Delay 3
  59.     AnsiPos 0, 14
  60.     PrintLn " "
  61.     Delay 10
  62.     INTEGER002 = 0
  63.     FOpen 2, PPEPath() + "NOM.ID", 4 + 2 + 1, 0
  64.     FGet 2, STRING004
  65.     :LABEL001
  66.     InputStr STRING004, STRING003, 10, Len(STRING001) + 5, STRING002, 1
  67.     Log "SystemPassword '" + STRING003 + "' was usedx", 0
  68.     Inc INTEGER002
  69.     If (Upper(STRING003) == STRING001) Goto LABEL003
  70.     If (INTEGER002 == INTEGER001 + 1) Goto LABEL002
  71.     PrintLn 
  72.     Goto LABEL001
  73.     :LABEL002
  74.     DispFile PPEPath() + "LOGOFF", 4 + 2 + 1
  75.     Log "User failed SystemPassword verification.", 0
  76.     Hangup
  77.     :LABEL003
  78.     PrintLn 
  79.     DispFile PPEPath() + "LOGIN", 4 + 2 + 1
  80.     Log "SysPass Entry on Attempt #" + INTEGER002 + "", 0
  81.     Cls
  82.  
  83. ;------------------------------------------------------------------------------
  84. ;
  85. ; Usage report (before postprocessing)
  86. ;
  87. ; ■ Statements used :
  88. ;
  89. ;    2       Cls
  90. ;    3       Goto 
  91. ;    3       Let 
  92. ;    13      PrintLn 
  93. ;    2       If 
  94. ;    2       DispFile 
  95. ;    2       FOpen 
  96. ;    2       FGet 
  97. ;    1       Hangup
  98. ;    3       Log 
  99. ;    1       InputStr 
  100. ;    7       Delay 
  101. ;    1       Inc 
  102. ;    11      AnsiPos 
  103. ;
  104. ;
  105. ; ■ Functions used :
  106. ;
  107. ;    16      +
  108. ;    2       ==
  109. ;    1       Len(
  110. ;    1       Upper()
  111. ;    4       PPEPath()
  112. ;
  113. ;------------------------------------------------------------------------------
  114. ;
  115. ; Analysis flags : B
  116. ;
  117. ; B - Brute hangup ■ 1
  118. ;     Program hangup without notification. This may be a good way to
  119. ;     disconnect a user, but if used randomly, may be very nasty
  120. ;     ■ Search for : HANGUP, DTROFF
  121. ;
  122. ;------------------------------------------------------------------------------
  123. ;
  124. ; Postprocessing report
  125. ;
  126. ;    0       For/Next
  127. ;    0       While/EndWhile
  128. ;    0       If/Then or If/Then/Else
  129. ;    0       Select Case
  130. ;
  131. ;------------------------------------------------------------------------------
  132. ;                 AEGiS Corp - Break the routines, code against the machines!
  133. ;------------------------------------------------------------------------------
  134.