home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Bila Vrana
/
BILA_VRANA.iso
/
019A
/
PCBDEMO.ZIP
/
PCBDISK1.EXE
/
RIP
/
PPE
/
LANGDEMO.PPE
(
.txt
)
< prev
next >
Wrap
PCBoard Programming Language Executable
|
1993-01-01
|
2KB
|
163 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 2.OO (plain) - Analysis ON - Postprocessing ON
;------------------------------------------------------------------------------
Boolean BOOLEAN001
Boolean BOOLEAN002
Boolean BOOLEAN003
Integer INTEGER001
String STRING001
String STRING002
String STRING003
String STRING004
String STRING005
String STRING006
Int INT001
Int INT002
;------------------------------------------------------------------------------
STRING003 = Chr(8) + " " + Chr(8)
STRING004 = Chr(27)
BOOLEAN001 = 0
BOOLEAN002 = 0
BOOLEAN003 = 1
STRING006 = "Enter Language # to use (Enter)=no change"
If (OnLocal()) Goto LABEL001
MPrint STRING004 + "[!"
MPrint STRING003 + STRING003 + STRING003
MPrint STRING004 + " F"
MPrint STRING003 + STRING003 + STRING003
MPrint STRING004 + "[6n"
MPrint STRING003 + STRING003 + STRING003 + STRING003
STRING001 = Chr(MGetByte())
While ((STRING001 == "") && (INTEGER001 <= 36)) Do
STRING001 = Chr(MGetByte())
If (STRING001 == "") Then
Delay 2
INTEGER001 = INTEGER001 + 2
Endif
EndWhile
While (STRING001 <> "") Do
STRING002 = STRING002 + STRING001
STRING001 = Chr(MGetByte())
If (STRING001 == "") Then
Delay 2
STRING001 = Chr(MGetByte())
Endif
EndWhile
If (Left(STRING002, 8) == "RIPSCRIP") Then
BOOLEAN001 = 1
BOOLEAN002 = 1
Endif
If (BOOLEAN001) Then
FCreate 1, "CALR_HAS.RIP", 2, 0
FClose 1
Endif
:LABEL001
If (BOOLEAN001) Then
STRING005 = ReadLine(PCBDat(), 49)
FOpen 1, STRING005, 0, 0
FGet 1, STRING001
:LABEL002
If (Ferr(1)) Goto LABEL003
INT001 = INT001 + 1
If (InStr(STRING001, ".RIP")) Then
INT002 = INT001
If (BOOLEAN001) KbdStuff INT002
Endif
FGet 1, STRING001
Goto LABEL002
:LABEL003
FClose 1
Endif
If (PPLBufSize() == 0) Then
STRING002 = ""
InputStr STRING006, STRING002, 7, 2, Mask_Num(), 128 + 256
If (STRING002 == "") STRING002 = "1"
KbdStuff STRING002
Endif
End
;------------------------------------------------------------------------------
;
; Usage report (before postprocessing)
;
; ■ Statements used :
;
; 1 End
; 14 Goto
; 19 Let
; 13 If
; 1 FCreate
; 1 FOpen
; 2 FClose
; 2 FGet
; 1 InputStr
; 2 Delay
; 2 KbdStuff
; 6 MPrint
;
;
; ■ Functions used :
;
; 16 +
; 6 ==
; 1 <>
; 1 <=
; 10 !
; 1 &&
; 1 Left()
; 1 Ferr()
; 7 Chr()
; 1 InStr()
; 1 Mask_Num()
; 1 PCBDat()
; 1 ReadLine()
; 1 OnLocal()
; 4 MGetByte()
; 1 PPLBufSize()
;
;------------------------------------------------------------------------------
;
; Analysis flags : Md
;
; M - Send text to modem only ■ 4
; Some informations are sent only to the modem, not to the local
; screen, this is a well known way to make stealth backdoors, Check!
; ■ Search for : SENDMODEM, MPRINT, MPRINTLN
;
; d - Access PCBOARD.DAT ■ 2
; Program gets the full pathname to PCBOARD.DAT, this may be usefull
; for many PPE so they can find various informations on the system
; (system paths, max number of lines in messages, ...) but it may also
; be a way to gather vital informations.
; ■ Search for : PCBDAT()
;
;------------------------------------------------------------------------------
;
; Postprocessing report
;
; 0 For/Next
; 2 While/EndWhile
; 7 If/Then or If/Then/Else
; 0 Select Case
;
;------------------------------------------------------------------------------
; AEGiS Corp - Break the routines, code against the machines!
;------------------------------------------------------------------------------