You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Trend Vision One File Security Go SDK User Guide
1
+
# Trend Vision One™ File Security Go SDK User Guide
2
2
3
-
The Trend Vision One File Security Go SDK empowers developers to craft applications seamlessly integrating with the cloud-based Trend Vision One anti-malware file scanning service. This ensures a thorough scan of data and artifacts within the applications, identifying potential malicious elements.
3
+
Trend Vision One™ - File Security is a scanner app for files and cloud storage. This scanner can detect all types of malicious software (malware) including trojans, ransomware, spyware, and more. Based on fragments of previously seen malware, File Security detects obfuscated or polymorphic variants of malware.
4
+
File Security can assess any file type or size for malware and display real-time results. With the latest file reputation and variant protection technologies backed by leading threat research, File Security automates malware scanning.
5
+
File Security can also scan objects across your environment in any application, whether on-premises or in the cloud.
4
6
5
-
This guide outlines the steps to establish your development environment and configure your project, laying the foundation for utilizing the File Security Go SDK effectively.
7
+
The Go software development kit (SDK) for Trend Vision One™ File Security empowers you to craft applications which seamlessly integrate with File Security. With this SDK you can perform a thorough scan of data and artifacts within your applications to identify potential malicious elements.
8
+
Follow the steps below to set up your development environment and configure your project, laying the foundation to effectively use File Security.
6
9
7
10
## Environment
8
11
9
12
- Golang 1.19 or newer
10
-
- Trend Vision One account with a chosen region - for more information, see the [Trend Vision One documentation](https://docs.trendmicro.com/en-us/enterprise/trend-micro-xdr-help/Home).
11
-
- A Trend Vision One API key with proper role - for more information, see the [Trend Vision One API key documentation](https://docs.trendmicro.com/en-us/enterprise/trend-vision-one/administrative-setti/accountspartfoundati/api-keys.aspx).
13
+
- Trend Vision One account with a chosen region - for more information, see the [Trend Vision One documentation](https://docs.trendmicro.com/en-us/documentation/article/trend-vision-one-trend-micro-xdr-abou_001).
14
+
- A Trend Vision One API key with proper role - for more information, see the [Trend Vision One API key documentation](https://docs.trendmicro.com/en-us/documentation/article/trend-vision-one-api-keys).
12
15
13
16
## Installation
14
17
15
18
To integrate with our service using the Golang SDK, you need to import the SDK package into your project. Here are the installation steps:
19
+
16
20
1. Open your Go project or create a new one if you haven't already.
17
21
2. Import the SDK package into your project by adding the following import statement:
18
22
@@ -42,9 +46,9 @@ If you plan on using a Trend Vision One region, be sure to pass in region parame
42
46
1. Login to the TrendVisionOne.
43
47
2. Create a new TrendVisionOneAPI key:
44
48
45
-
*Navigate to the TrendVisionOneUserRoles page.
46
-
*Verify that there is a role with the "Run file scan via SDK" permissions enabled. If not, create a role by clicking on "Add Role" and "Save" once finished.
47
-
*Directly configure a new key on the TrendVisionOneAPIKeys page, using the role which contains the "Run file scan via SDK" permission. It is advised to set an expiry time for the API key and make a record of it for future reference.
49
+
-Navigate to the TrendVisionOneUserRoles page.
50
+
-Verify that there is a role with the "Run file scan via SDK" permissions enabled. If not, create a role by clicking on "Add Role" and "Save" once finished.
51
+
-Directly configure a new key on the TrendVisionOneAPIKeys page, using the role which contains the "Run file scan via SDK" permission. It is advised to set an expiry time for the API key and make a record of it for future reference.
48
52
49
53
## Initialization
50
54
@@ -60,14 +64,8 @@ if err != nil {
60
64
panic(err)
61
65
}
62
66
```
63
-
Replace "YOUR_API_KEY_OR_TOKEN" and "YOUR_REGION" with your actual API key or token and the desired region.
| region | The region you obtained your api key. Value provided must be one of the Vision One regions, e.g. `us-east-1`, `eu-central-1`, `ap-northeast-1`, `ap-southeast-2`, `ap-southeast-1`, `ap-south-1`, etc. |
70
-
| apikey | Your own Vision One API Key. |
68
+
Replace "YOUR_API_KEY_OR_TOKEN" and "YOUR_REGION" with your actual API key or token and the desired region.
71
69
72
70
## Basic Usage
73
71
@@ -105,6 +103,7 @@ if err != nil {
105
103
```
106
104
107
105
**_Note_**
106
+
108
107
- Max number of tags is 8. And the length of each tag can't exceed 63.
109
108
110
109
## AdditionalFunctions
@@ -144,7 +143,120 @@ You can enable SPN feedback by calling the `SetFeedbackEnable` function:
144
143
client.SetFeedbackEnable()
145
144
```
146
145
146
+
## GolangClientSDKAPIReference
147
+
148
+
### ```func NewClient(key string, region string) (c *AmaasClient, e error)```
149
+
150
+
Creates a new instance of the client object, and provisions essential settings, including authentication/authorization credentials (API key), preferred service region, etc.
| key (string) | A valid API key must be provided if the environment variable `TM_AM_AUTH_KEY` is not set. |
157
+
| region (string) | The region you obtained your api key. Value provided must be one of the VisionOne regions: `us-east-1`, `eu-central-1`, `ap-southeast-1`, `ap-southeast-2`, `ap-northeast-1`, `ap-south-1` |
| buffer ([]byte) | Buffer containing the data to scan |
185
+
| identifier (string) | A caller-chosen string to associate with the scan that will be returned in JSON response as part of `fileName` name/value; can be empty |
186
+
| tags ([]string) | Tags to be used for scanning |
When malicious content is detected in the scanned object, `scanResult` will show a non-zero value. Otherwise, the value will be `0`. Moreover, when malware is detected, `foundMalwares` will be non-empty containing one or more name/value pairs of `fileName` and `malwareName`. `fileName` will be filename of malware detected while `malwareName` will be the name of the virus/malware found.
218
+
219
+
**_Errors Conditions_**
220
+
221
+
- Invalid authentication
222
+
- Invalid path specified
223
+
- Request timed out (deadline exceeded)
224
+
- Incompatible client used
225
+
- Service unreachable
226
+
- Client not ready for operation
227
+
228
+
---
229
+
230
+
### ```func (ac *AmaasClient) Destroy()```
231
+
232
+
Frees up internal resources used by client. It should only be invoked after one has finished scanning and no longer needs the client object.
233
+
234
+
---
235
+
236
+
### ```func SetLoggingLevel(level LogLevel)```
237
+
238
+
For configuring the SDK's active logging level. The change is applied globally to all client instances. Default level is `LogLevelOff`, corresponding to all logging disabled. If logging is enabled, unless custom logging is configured using `ConfigLoggingCallback()` logs will be written to stdout.
| f (function) | A function with the prototype `func(level LogLevel, levelStr string, format string, a ...interface{})` |
257
+
147
258
## Usage Examples
259
+
148
260
As examples, you can find two important files in the `tools/` directory of the SDK package:
149
261
150
262
`client.go`: This file contains the main client initialization logic and functions for scanning a single file.
@@ -156,13 +268,14 @@ You can refer to these files for a deeper understanding of how to integrate and
156
268
## Usage Instructions for File Security SDK Programs
157
269
158
270
### Prerequisites
271
+
159
272
Build the client tools requires the following:
160
273
Execute `make build` in the root directory to build the client tools.
161
274
162
275
The build process will produce the following inside the `tools/` directory:
163
276
164
-
* client
165
-
* scanfiles
277
+
- client
278
+
- scanfiles
166
279
167
280
### client
168
281
@@ -173,7 +286,7 @@ This program is located in the `tools/` folder. It supports the gRPC-based serve
173
286
The following flags are supported:
174
287
175
288
`-tls`
176
-
Specify to enable server authentication by client for gRPC
289
+
Specify to enable server authentication by client for gRPC. TLS should always be enabled when connecting to the File Security service. For more information, see the 'Ensuring SecureCommunication with TLS' section.
177
290
178
291
`-region <string>`
179
292
Specify the region to connect to for gRPC
@@ -214,7 +327,7 @@ Specify if scanning good/non-malicious files.
214
327
Specify if scanning of multiple files should be carried out simultaneously instead of sequentially.
215
328
216
329
`-tls`
217
-
Specify to enable server authentication by client for gRPC
330
+
Specify to enable server authentication by client for gRPC. TLS should always be enabled when connecting to the File Security service. For more information, see the 'Ensuring SecureCommunication with TLS' section.
218
331
219
332
`-region <string>`
220
333
Specify the region to connect to for gRPC
@@ -234,15 +347,38 @@ Specify to enable SPN feedback
234
347
`-tag <string>`
235
348
Specify the tags to be used for scanning, separated by commas
236
349
237
-
238
350
## Proxy Configuration
239
351
240
352
The cli tool loads the proxy configuration from the following set of optional environment variables
| `NO_PROXY` | Optional | Add the endpoints to the comma-separated list of host names if you want to skip proxy settings. Note: only an asterisk, '\*' matches all hosts |
| `HTTPS_PROXY` | Optional | `https://proxy.example.com`<br><br>If the proxy server is a SOCKS5 proxy, you must specify the SOCKS5 protocol in the URL as `socks5://socks_proxy.example.com` |
247
359
| `PROXY_USER` | Optional | Optional username for authentication header used in `Proxy-Authorization` |
248
360
| `PROXY_PASS` | Optional | Optional password for authentication header used in `Proxy-Authorization`, used only when `PROXY_USER` is configured |
361
+
362
+
## Environment Variables
363
+
364
+
The following environment variables are supported by Golang Client SDK and can be used in lieu of values specified as function arguments.
365
+
366
+
For example, the API key can be specified using the `TM_AM_AUTH_KEY` environment variable instead of hardcoded into the application.
| `TM_AM_SCAN_TIMEOUT_SECS` | Specify, in number of seconds, to override the default scan timeout period | 0, 1, 2, ... ; default=300 |
371
+
| `TM_AM_AUTH_KEY` | Can be used to specify the authorization key; overrides function call value | empty or string |
372
+
373
+
## Thread Safety
374
+
375
+
- ScanFile() or ScanBuffer() are designed to be thread-safe. It should be able to invoke ScanFile() concurrently from multiple threads without protecting ScanFile() with mutex or other synchronization mechanisms.
376
+
377
+
- The Destroy() method is NOT thread-safe, so it should only be called upon completion of all the scan routines.
378
+
379
+
## Ensuring Secure Communication with TLS
380
+
381
+
The communication channel between the client program or SDK and the Trend Vision One™ File Security service is fortified with robust server-side TLS encryption. This ensures that all data transmitted between the client and Trend service remains thoroughly encrypted and safeguarded.
382
+
The certificate employed by server-side TLS is a publicly-signed certificate from Trend Micro Inc, issued by a trusted Certificate Authority (CA), further bolstering security measures.
383
+
384
+
The File Security SDK consistently adopts TLS as the default communication channel, prioritizing security at all times. It is strongly advised not to disable TLS in a production environment while utilizing the File Security SDK, as doing so could compromise the integrity and confidentiality of transmitted data.
0 commit comments