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 >
Wrap
PCBoard Programming Language Executable
|
1995-06-24
|
1KB
|
107 lines
;------------------------------------------------------------------------------
; .ss.
; `²²'
; .,sS$Ss,,s$ .,sS$$$Ss. .,sS$Ss,,s$ .ss. .sSs.
; .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
; $$$' .$$$' $$$²Sçsµ²' .$$$' .$$$'.$$$' .$$$' `$$b.
; $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$' ;$$$
; `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
; .sS²°$$$²²°"' d²°'
; .$$² .$$'
; $$$.,d$$'
; `²S$$S²'
;------------------------------------------------------------------------------
; P.P.L.X. 2.OO (C)1996 - Lone Runner / AEGiS CoRP'96
;------------------------------------------------------------------------------
; PPE 3.1O (Encryption type I) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
Integer INTEGER001
Integer INTEGER002
String STRING001
String STRING002
String STRING003
String STRING004
String STRING005
String STRING006
String STRING007
;------------------------------------------------------------------------------
STRING001 = FindFirst("*.*")
STRING001 = ""
FOpen 1, PPEPath() + "notify.cfg", 0, 2
FGet 1, INTEGER001
FGet 1, STRING002
FGet 1, INTEGER002
FGet 1, STRING003
FGet 1, STRING004
FGet 1, STRING005
FGet 1, STRING006
FClose 1
GetUser
If (OnLocal() && (Upper(STRING002) == "NO")) Goto LABEL001
If (U_Sec == INTEGER002) Goto LABEL001
STRING007 = String(U_Name()) + " "
If (Upper(STRING006) == "YES") STRING007 = STRING007 + "[L:" + String(U_Sec) + "] "
If (Upper(STRING005) == "YES") STRING007 = STRING007 + "[" + String(U_City) + "] "
STRING007 = STRING007 + "has logged on "
If (Upper(STRING004) == "YES") STRING007 = STRING007 + "to node " + String(PcbNode()) + " "
If (Upper(STRING003) == "YES") STRING007 = STRING007 + "at " + String(Time()) + " "
Broadcast 1, INTEGER001, STRING007
:LABEL001
End
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 1 End
; 2 Goto
; 8 Let
; 6 If
; 1 FOpen
; 1 FClose
; 7 FGet
; 1 GetUser
; 1 Broadcast
;
;
; ■ Functions used :
;
; 15 +
; 6 ==
; 1 &&
; 5 Upper()
; 1 Time()
; 1 U_Name()
; 5 String()
; 1 PPEPath()
; 1 PcbNode()
; 1 OnLocal()
; 1 FindFirst()
;
;------------------------------------------------------------------------------
;
; Analysis flags : i
;
; i - Sequencially read files in directory ■ 3
; Program is reading files in directory sequencially, maybe to get
; a DIR image, but this can be to look for targets to destroy
; ■ Search for : FINDFIRST(), FINDNEXT()
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 0 While/EndWhile
; 0 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------