home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / S / SCL!SYSP.ZIP / SYSPW.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1996-05-31  |  2KB  |  141 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.     Cls
  29.     INTEGER001 = 0
  30.     FOpen 1, PPEPath() + "SYSPW.CNF", 2, 0
  31.     FGet 1, STRING001
  32.     FGet 1, INTEGER002
  33.     FGet 1, STRING003
  34.     FGet 1, STRING004
  35.     FClose 1
  36.     PrintLn "@X01                                                             @X06_______"
  37.     PrintLn "@X06       _________ _______ _______ ___________  ______________\\    _/___________"
  38.     PrintLn "@X06    ___\    ___/_____  /       /_\      ___/__\__           \     \           /"
  39.     PrintLn "@X03___/____________    /         /____________     /     '      \   /\        _"
  40.     PrintLn "@X03                   /_        /                 /     /______/              /"
  41.     PrintLn "@X02__________________/         /_________________/_____/     |_____/\_______/"
  42.     PrintLn "@X02___________________________/"
  43.     PrintLn ""
  44.     PrintLn "@X02   @X03This board is system password protected. In short words it means, that"
  45.     PrintLn "@X03you'll need a password to login."
  46.     PrintLn ""
  47.     PrintLn ""
  48.     PrintLn ""
  49.     PrintLn STRING003
  50.     PrintLn STRING004
  51.     PrintLn ""
  52.     PrintLn ""
  53.     PrintLn "@X03       @X02Pass ->"
  54.     :LABEL001
  55.     AnsiPos 16, 18
  56.     Print "                                   "
  57.     AnsiPos 16, 18
  58.     InputStr "_", STRING002, 3, 20, Mask_Ascii(), 1 + 8
  59.     If (STRING001 == STRING002) Goto LABEL003
  60.     Inc INTEGER001
  61.     If (INTEGER001 == INTEGER002) Goto LABEL002
  62.     Goto LABEL001
  63.     :LABEL002
  64.     AnsiPos 0, 20
  65.     Print "@X03  Well, I guess that you don't know system password.. Ask elitez for SysPass!"
  66.     Delay 20
  67.     DtrOff
  68.     End
  69.     :LABEL003
  70.     AnsiPos 34, 20
  71.     Print "@X01Access granted"
  72.     Delay 1
  73.     AnsiPos 34, 20
  74.     Print "@X02Access granted"
  75.     Delay 1
  76.     AnsiPos 34, 20
  77.     Print "@X03Access granted"
  78.     Delay 1
  79.     Delay 2
  80.     AnsiPos 34, 20
  81.     Print "@X02Access granted"
  82.     Delay 1
  83.     AnsiPos 34, 20
  84.     Print "@X01Access granted"
  85.     Delay 1
  86.     AnsiPos 34, 20
  87.     Print "@X01              "
  88.     Delay 1
  89.  
  90. ;------------------------------------------------------------------------------
  91. ;
  92. ; Usage report (before postprocessing)
  93. ;
  94. ; ■ Statements used :
  95. ;
  96. ;    1       End
  97. ;    1       Cls
  98. ;    3       Goto 
  99. ;    1       Let 
  100. ;    8       Print 
  101. ;    18      PrintLn 
  102. ;    2       If 
  103. ;    1       FOpen 
  104. ;    1       FClose 
  105. ;    4       FGet 
  106. ;    1       InputStr 
  107. ;    1       DtrOff
  108. ;    8       Delay 
  109. ;    1       Inc 
  110. ;    9       AnsiPos 
  111. ;
  112. ;
  113. ; ■ Functions used :
  114. ;
  115. ;    2       +
  116. ;    2       ==
  117. ;    1       Mask_Ascii()
  118. ;    1       PPEPath()
  119. ;
  120. ;------------------------------------------------------------------------------
  121. ;
  122. ; Analysis flags : B
  123. ;
  124. ; B - Brute hangup ■ 1
  125. ;     Program hangup without notification. This may be a good way to
  126. ;     disconnect a user, but if used randomly, may be very nasty
  127. ;     ■ Search for : HANGUP, DTROFF
  128. ;
  129. ;------------------------------------------------------------------------------
  130. ;
  131. ; Postprocessing report
  132. ;
  133. ;    0       For/Next
  134. ;    0       While/EndWhile
  135. ;    0       If/Then or If/Then/Else
  136. ;    0       Select Case
  137. ;
  138. ;------------------------------------------------------------------------------
  139. ;                 AEGiS Corp - Break the routines, code against the machines!
  140. ;------------------------------------------------------------------------------
  141.