-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from trendmicro/update_to_latest_version_v1.2.0
update to latest version: v1.2.0
- Loading branch information
Showing
10 changed files
with
193 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# CHANGELOG | ||
|
||
## 1.2.0 - 2024-07-05 | ||
|
||
* Support verbose scan result | ||
|
||
## 1.1.2 - 2024-04-10 | ||
|
||
* Update README.md | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
1.1.2 | ||
1.2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package client | ||
|
||
type ScanResult2Client struct { | ||
ScannerVersion string `json:"scannerVersion"` | ||
SchemaVersion string `json:"schemaVersion"` | ||
ScanResult int32 `json:"scanResult"` | ||
ScanId string `json:"scanId"` | ||
ScanTimestamp string `json:"scanTimestamp"` | ||
FileName string `json:"fileName"` | ||
FoundMalwares []MalwareDetail `json:"foundMalwares"` | ||
FoundErrors []ErrMsg `json:"foundErrors,omitempty"` | ||
FileSha1 string `json:"fileSHA1,omitempty"` | ||
FileSha256 string `json:"fileSHA256,omitempty"` | ||
} | ||
|
||
type MalwareDetail struct { | ||
FileName string `json:"fileName"` | ||
MalwareName string `json:"malwareName"` | ||
Engine string `json:"engine,omitempty"` | ||
} | ||
|
||
type ErrMsg struct { | ||
Name string `json:"name"` | ||
Description string `json:"description"` | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.