403Webshell
Server IP : 82.208.35.60  /  Your IP : 216.73.216.89
Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31
System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64
User : studiokobylisy_cz ( 1008)
PHP Version : 7.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /usr/ports/mail/antivirus-milter/files/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/ports/mail/antivirus-milter/files/patch-antivirus.c
--- antivirus.c.orig	2003-07-15 19:27:14 UTC
+++ antivirus.c
@@ -85,6 +85,8 @@ static char *VIRUSACTION=NULL;
 static char *FORMAT=NULL;
 static sfsistat avfailcode=0;
 static int purgevirus=0;
+static int skipwords=0;
+static int ignorerror2=0;
 static char *avargs[]={NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
 
 /*
@@ -128,6 +130,12 @@ static char *badext[]={".com",".scr",".v
 #define FORMAT_SOPHOS ">>> Virus '%[^']s' found in file %*s"
 
 /*
+** This one is for clamav
+*/
+#define FORMAT_CLAMAV " %s FOUND"
+#define SCANARGS_CLAMAV "--disable-summary"
+
+/*
 ** this can be given on the command line
 */
 static char *configfile=NULL;
@@ -502,6 +510,7 @@ sfsistat virusscan(SMFICTX *ctx, char *p
   int retval;
   int fd;
   int i;
+  char *word;
   char *p=NULL;
   char *av[]={NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL};
 
@@ -552,13 +561,26 @@ sfsistat virusscan(SMFICTX *ctx, char *p
 	     (int)ctx, retval,priv->workdir);
     }
 
+  if (ignorerror2 > 0 )
+    {
+	if ( retval == 2 )
+		retval = 0;
+    }
+
   if (retval>0)
     {
       fseek(priv->childfp,0,SEEK_SET);
       memset(viruses,0,sizeof(buf));
       while (fgets(buf,sizeof(buf),priv->childfp)!=NULL)
 	{
-	  if (sscanf(buf,format,tmp)==1)
+	  word = buf;
+          if (skipwords > 0 )
+	    {
+              word = strchr( word, ' ' );
+              if ( word == NULL )
+	        word = buf;
+	    }
+	  if (sscanf(word,format,tmp)==1)
 	    {
 	      if (viruses[0])
 		strncat(viruses," ",sizeof(viruses));
@@ -572,10 +594,8 @@ sfsistat virusscan(SMFICTX *ctx, char *p
       if (viruses[0])
 	priv->viruses=strdup(viruses);
       else
-	priv->viruses=strdup("please contact postmaster");
-
-      if ((priv->viruses)==NULL)
 	{
+	  priv->viruses=strdup("please contact postmaster");
 	  return(avfailcode);
 	}
       return(SMFIS_REJECT);
@@ -1211,6 +1231,7 @@ int init(void)
   if (AVFAILACTION==NULL) AVFAILACTION=CONF_AVFAILACTION;
   if (VIRUSACTION==NULL) VIRUSACTION=CONF_VIRUSACTION;
 
+  skipwords = 0;
   if (strcasecmp(AVPRODUCT,"mcafee")==0)
     {
       FORMAT=FORMAT_MCAFEE;
@@ -1225,10 +1246,17 @@ int init(void)
     {
       FORMAT=FORMAT_FSAV;
     }
+  else if (strcasecmp(AVPRODUCT,"clamav")==0)
+    {
+      FORMAT=FORMAT_CLAMAV;
+      AVSCANARGS=SCANARGS_CLAMAV;
+      skipwords = 1;
+      ignorerror2 = 1;
+    }
   else
     {
       fprintf(stderr,"init(): unrecognized AVPRODUCT %s\n",AVPRODUCT);
-      fprintf(stderr,"init(): valid values are: mcafee, fsva, sophos\n");
+      fprintf(stderr,"init(): valid values are: mcafee, fsva, sophos, clamav\n");
       return(-1);
     }
 

Youez - 2016 - github.com/yon3zu
LinuXploit