The source of the script which works as the interface between the scanner and Noscript is as below:
Code: Select all
::pluginfilter.cmd
@echo off
::Check if both parameters are present
if "%~1"=="" (
exit /B 1
)
if "%~2"=="" (
exit /B 1
)
::Append current directory to path variable
set path=%~dp0;%path%
::Start scanner
sav32cli.exe "%1"
::Copy the file if file is clean
if %errorlevel%==0 (
copy "%1" "%2"
if not %errorlevel%==0 (
exit /B 1
)
exit /B 0
)
Code: Select all
shockwave|futuresplash|java
Please help me with this issue.
Thanks in advance.