SPE9 application console does not contain the Reports from SPE8 Java UI
search cancel

SPE9 application console does not contain the Reports from SPE8 Java UI

book

Article ID: 275811

calendar_today

Updated On:

Products

Protection Engine for Cloud Services

Issue/Introduction

The application console for Symantec Protection Engine (SPE) 9 does not contain the Reports from the SPE 8 Java UI.

Resolution

This is behavior by design.

To add your weight to a feature request, contact your sales team or reseller.

Additional Information

Much of the information available in the Dashboard or Reports of SPE8 Java UI can be obtained through the SPE 9 REST API.

For example...

Files scanned

 

>curl -X POST "http://localhost:8008/spe/api/v1/scan-statistics" -H "accept: application/xml" -H "Content-Type: application/json" -d "{ \"startDate\": \"2023-10-01T00:00:00\", \"endDate\": \"2023-10-23T00:00:00\", \"type\": \"scan\"}"
<Statistics><scanStatistics><fileScanCount>1</fileScanCount><totalFileScanCount>1</totalFileScanCount><dataScannedInMegaBytes>0</dataScannedInMegaBytes><totalDataScannedInMegaBytes>0</totalDataScannedInMegaBytes><fileAllowByHashCount>0</fileAllowByHashCount><fileDeniedByHashCount>0</fileDeniedByHashCount><fileQuarantinedCount>0</fileQuarantinedCount><scanRequestCount>2</scanRequestCount></scanStatistics></Statistics>

 

Infection Found

 

>curl -X POST "http://localhost:8008/spe/api/v1/scan-statistics" -H "accept: application/xml" -H "Content-Type: application/json" -d "{ \"startDate\": \"2023-10-01T00:00:00\", \"endDate\": \"2023-10-23T00:00:00\", \"type\": \"violation\"}"
<Statistics><violationStatistics> <virusCount>0</virusCount> <securityRiskCount>0</securityRiskCount><fileAttributeViolationCount>0</fileAttributeViolationCount><containerViolationCount>0</containerViolationCount><highRiskRatingCount>0</highRiskRatingCount><mediumRiskRatingCount>0</mediumRiskRatingCount><lowRiskRatingCount>0</lowRiskRatingCount><activeContentViolationCount>0</activeContentViolationCount><activeContentRemoveCount>0</activeContentRemoveCount><activeContentDeleteCount>0</activeContentDeleteCount><suspiciousThreatCount>0</suspiciousThreatCount><encryptedContainers>0</encryptedContainers></violationStatistics></Statistics>

 

Security Risk Found

 

>curl -X POST "http://localhost:8008/spe/api/v1/scan-statistics" -H "accept: application/xml" -H "Content-Type: application/json" -d "{ \"startDate\": \"2023-10-01T00:00:00\", \"endDate\": \"2023-10-23T00:00:00\", \"type\": \"violation\"}"
<Statistics><violationStatistics><virusCount>0</virusCount>
<securityRiskCount>0</securityRiskCount>
<fileAttributeViolationCount>0</fileAttributeViolationCount><containerViolationCount>0</containerViolationCount><highRiskRatingCount>0</highRiskRatingCount><mediumRiskRatingCount>0</mediumRiskRatingCount><lowRiskRatingCount>0</lowRiskRatingCount><activeContentViolationCount>0</activeContentViolationCount><activeContentRemoveCount>0</activeContentRemoveCount><activeContentDeleteCount>0</activeContentDeleteCount><suspiciousThreatCount>0</suspiciousThreatCount><encryptedContainers>0</encryptedContainers></violationStatistics></Statistics>

 

Container Violation Found

 

>curl -X POST "http://localhost:8008/spe/api/v1/scan-statistics" -H "accept: application/xml" -H "Content-Type: application/json" -d "{ \"startDate\": \"2023-10-01T00:00:00\", \"endDate\": \"2023-10-23T00:00:00\", \"type\": \"violation\"}"
<Statistics><violationStatistics><virusCount>0</virusCount><securityRiskCount>0</securityRiskCount><fileAttributeViolationCount>0</fileAttributeViolationCount> <containerViolationCount>0</containerViolationCount> <highRiskRatingCount>0</highRiskRatingCount><mediumRiskRatingCount>0</mediumRiskRatingCount><lowRiskRatingCount>0</lowRiskRatingCount><activeContentViolationCount>0</activeContentViolationCount><activeContentRemoveCount>0</activeContentRemoveCount><activeContentDeleteCount>0</activeContentDeleteCount><suspiciousThreatCount>0</suspiciousThreatCount><encryptedContainers>0</encryptedContainers></violationStatistics></Statistics>

 

File access allowed

 

>curl -X POST "http://localhost:8008/spe/api/v1/scan-statistics" -H "accept: application/xml" -H "Content-Type: application/json" -d "{ \"startDate\": \"2023-10-01T00:00:00\", \"endDate\": \"2023-10-23T00:00:00\", \"type\": \"scan\"}"
<Statistics><scanStatistics><fileScanCount>1</fileScanCount><totalFileScanCount>1</totalFileScanCount><dataScannedInMegaBytes>0</dataScannedInMegaBytes><totalDataScannedInMegaBytes>0</totalDataScannedInMegaBytes><fileAllowByHashCount>0</fileAllowByHashCount><fileDeniedByHashCount>0</fileDeniedByHashCount><fileQuarantinedCount>0</fileQuarantinedCount><scanRequestCount>2</scanRequestCount></scanStatistics></Statistics>