1
0
-1

We have a few boxes that are on our network and are getting scanned into not audited and we would like to move them into audited and manually clear the errors. We know what these boxes are and cannot be accessed remotely.

    CommentAdd your comment...

    1 answer

    1.  
      1
      0
      -1

      Only using SQL, and they will reappear next time they are "discovered".

      Get the system ID form the URL.

      In MySQL run -

      DELETE FROM discovery_log WHERE system_id = X

      Obviously replace X with the ID of the device in question. I would add an entry to exclude these IP Addresses from being scanned in the future. Depending on your version, that's either in the config or the individual discovery entry.

        CommentAdd your comment...