home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC Professionell 2007 April
/
PCpro_2007_04.ISO
/
files
/
dsl
/
NVinst.exe
/
Scripts
/
Scaner
/
tcp_netbus.nvs
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2007-02-10
|
264 b
|
17 lines
program Scan_NetBus;
var s,ch:string;
begin
s:='';ch:='';
while(ch<>chr(13))do
begin
ch:=recvch;
if(ch<>chr(13))then s:=s+ch;
end;
if(pos('x',s)=length(s))then
begin
delete(s,length(s),1);
s:=s+'. Password protected.'
end;
writeln(s);
end.