SlashNext Threat Intelligence
App Vendor: SlashNext
App Category: Data Enrichment & Threat Intelligence
Connector Version: 1.0.0
API Version: 1.0.0
About App
The SlashNext app allows security teams to integrate with the SlashNext enterprise application to stop threats across mobile, email, and web platforms using anti-phishing solutions, thus dramatically reducing the risk of data theft, cyber extortion, and breaches.
The SlashNext app is configured with the Orchestrate application to perform the following actions:
| Action Name | Description | 
|---|---|
| Host Reputation | The action retrieves the reputation of the specified host. | 
| Host Report | The action retrieves details of the specified host. | 
| URL Scan | The action retrieves the results of a URL scan. If scan results are not available, a check back later message is displayed. | 
| URL Sync Scan | The action performs a real-time scan of the provided URL. If URL exists in the SlashNext database, results are returned immediately. If not, a URL scan request is submitted and a check back later message is displayed. | 
| Download Screenshot | This action downloads a website screenshot for a URL you scanned. | 
Configuration Parameters
The following configuration parameters are required for the SlashNext app to communicate with the SlashNext enterprise application. The parameters can be configured by creating instances in the app.
| Parameter | Description | Field Type | Required/Optional | Comments | 
|---|---|---|---|---|
| Base URL | Enter the base URL provided to you by SlashNext. Example: https://example-url | Text | Required | |
| API Key | Enter the API key provided to you by SlashNext. Example: 34dccdd26c5c99ceb3af22f392b708bf | Text | Required | 
Action: Host Reputation
The action retrieves the reputation of the specified host.
Action Input Parameters
| Parameter | Description | Field Type | Required/Optional | Comments | 
|---|---|---|---|---|
| Host | Enter the host for which you want to retrieve details. This can either be a domain name or an IPv4 address. Example: 
 | Text | Required | 
Example Request
[
  {
    "host": "120.136.167.86"
  }
]Action: Host Report
The action retrieves details of the specified host.
Action Input Parameters
| Parameter | Description | Field Type | Required/Optional | Comments | 
|---|---|---|---|---|
| Host | Enter the host for which you want to fetch details. You can enter either a domain name or IPv4 address. Example: 
 | Text | Required | 
Example Request
[
  {
    "host": "120.136.167.86"
  }
]Action: URL Scan
The action retrieves the results of a URL scan. If scan results are not available, a check back later message is displayed.
Action Input Parameters
| Parameter | Description | Field Type | Required/Optional | Comments | 
|---|---|---|---|---|
| URL | Enter the URL you want to scan. Example: https://www.google.com | Text | Required | |
| Scan ID | Enter the scan id returned by the URL Scan Sync API. Example: 086db19e-8869-4610-a72c-d3e215c9d319 | Text | Required | Obtain this from the URL Sync Scan API. | 
Example Request
[
  {
    "url": "https://www.google.com",
    "scan_id": "086db19e-8869-4610-a72c-d3e215c9d319"
  }
]Action: URL Sync Scan
The action performs a real-time scan of the provided URL. If URL exists in the SlashNext database, results are returned immediately.
Action Input Parameters
| Parameter | Description | Field Type | Required/Optional | Comments | 
|---|---|---|---|---|
| URL | Enter the URL you want to scan. Example: https://www.google.com | Text | Required | |
| Timeout | Enter the timeout value in seconds. If the scan is not complete within the specified limit, a timeout message is returned. Example: 120 | Integer | Optional | 
Example Request
[
  {
    "url": "https://www.google.com",
    "timeout": 120
  }
]Action: Download Screenshot
This action downloads a website screenshot for a URL you scanned.
Action Input Parameters
| Parameter | Description | Field Type | Required/Optional | Comments | 
|---|---|---|---|---|
| Scan ID | Enter the scan id returned by the URL Scan Sync API. Example: 086db19e-8869-4610-a72c-d3e215c9d319 | Text | Required | Obtain this from the URL Sync Scan API. | 
| Resolution | Enter the resolution for the screenshot. Example: high | Text | Required | Allowed values: 
 | 
Example Request
[
  {
    "scan_id": "086db19e-8869-4610-a72c-d3e215c9d319",
    "resolution": "high"
  }
]