SRX

last person joined: 4 days ago 

Ask questions and share experiences about the SRX Series, vSRX, and cSRX.
  • 1.  Howto scan HTTP uploads for Viruses?

    Posted 07-10-2012 12:33

     

    Hello everyone,

     

    i have a little issue with my SRX.

     

    So far it detects the eicar testfile when downloading it from the internal webserver (and a neat message appears in the browser).

     

    But if I upload the same file to my internal webserver via an HTML form (unencrypted HTTP connection!), then the file gets through without detection.

     

    Which config option did i miss?

     



  • 2.  RE: Howto scan HTTP uploads for Viruses?

    Posted 07-10-2012 18:54
    may be utm policy is not implemented in reverse direction... post config


  • 3.  RE: Howto scan HTTP uploads for Viruses?
    Best Answer

    Posted 07-11-2012 14:22

    Problem solved, the eicar was just not submitted in the form at all ...

     

    I'll share the simple html which was the actual probleme here:

     

    <form action="" enctype="multipart/form-data" method="post">
    <input type="file" multiple="multiple"/>
    <input type="submit"/>
    </form>

     

    -> this did not transfer the selected files at all, and thus of course no anti-virus could ever detect the virus in the not transferred files.

     

    after adding the name="uploads" attribute in the file-input, it transferred the files, and antivir correctly detected the eicar test:

    <input type="file" multiple="multiple" name="uploads"/>

     

    thx,

     

    Jan