home *** CD-ROM | disk | FTP | other *** search
/ Carsten's PPE Collection / Carstens_PPE_Collection_2007.zip / F / FSN_NTFY.ZIP / NOTIFY.PPE (.txt) < prev    next >
PCBoard Programming Language Executable  |  1995-06-24  |  1KB  |  107 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.1O (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.     String   STRING005
  26.     String   STRING006
  27.     String   STRING007
  28.  
  29. ;------------------------------------------------------------------------------
  30.  
  31.     STRING001 = FindFirst("*.*")
  32.     STRING001 = ""
  33.     FOpen 1, PPEPath() + "notify.cfg", 0, 2
  34.     FGet 1, INTEGER001
  35.     FGet 1, STRING002
  36.     FGet 1, INTEGER002
  37.     FGet 1, STRING003
  38.     FGet 1, STRING004
  39.     FGet 1, STRING005
  40.     FGet 1, STRING006
  41.     FClose 1
  42.     GetUser
  43.     If (OnLocal() && (Upper(STRING002) == "NO")) Goto LABEL001
  44.     If (U_Sec == INTEGER002) Goto LABEL001
  45.     STRING007 = String(U_Name()) + " "
  46.     If (Upper(STRING006) == "YES") STRING007 = STRING007 + "[L:" + String(U_Sec) + "] "
  47.     If (Upper(STRING005) == "YES") STRING007 = STRING007 + "[" + String(U_City) + "] "
  48.     STRING007 = STRING007 + "has logged on "
  49.     If (Upper(STRING004) == "YES") STRING007 = STRING007 + "to node " + String(PcbNode()) + " "
  50.     If (Upper(STRING003) == "YES") STRING007 = STRING007 + "at " + String(Time()) + " "
  51.     Broadcast 1, INTEGER001, STRING007
  52.     :LABEL001
  53.     End
  54.  
  55. ;------------------------------------------------------------------------------
  56. ;
  57. ; Usage report (before postprocessing)
  58. ;
  59. ; ■ Statements used :
  60. ;
  61. ;    1       End
  62. ;    2       Goto 
  63. ;    8       Let 
  64. ;    6       If 
  65. ;    1       FOpen 
  66. ;    1       FClose 
  67. ;    7       FGet 
  68. ;    1       GetUser
  69. ;    1       Broadcast 
  70. ;
  71. ;
  72. ; ■ Functions used :
  73. ;
  74. ;    15      +
  75. ;    6       ==
  76. ;    1       &&
  77. ;    5       Upper()
  78. ;    1       Time()
  79. ;    1       U_Name()
  80. ;    5       String()
  81. ;    1       PPEPath()
  82. ;    1       PcbNode()
  83. ;    1       OnLocal()
  84. ;    1       FindFirst()
  85. ;
  86. ;------------------------------------------------------------------------------
  87. ;
  88. ; Analysis flags : i
  89. ;
  90. ; i - Sequencially read files in directory ■ 3
  91. ;     Program is reading files in directory sequencially, maybe to get
  92. ;     a DIR image, but this can be to look for targets to destroy
  93. ;     ■ Search for : FINDFIRST(), FINDNEXT()
  94. ;
  95. ;------------------------------------------------------------------------------
  96. ;
  97. ; Postprocessing report
  98. ;
  99. ;    0       For/Next
  100. ;    0       While/EndWhile
  101. ;    0       If/Then or If/Then/Else
  102. ;    0       Select Case
  103. ;
  104. ;------------------------------------------------------------------------------
  105. ;                 AEGiS Corp - Break the routines, code against the machines!
  106. ;------------------------------------------------------------------------------
  107.