RSA NetWitness Endpoint

RSA NetWitness Endpoint provides deep visibility beyond basic endpoint security solutions by monitoring and collecting activity across all of your endpoints on and off your network. The RSA Demisto integration provides access to information about endpoints, modules and indicators.

Endpoint · RSA NetWitness Endpoint

Details

IDRSA NetWitness Endpoint
ProviderPartnerOne
CategoryEndpoint
From Version5.0.0
Docker Imagedemisto/python3:3.12.13.10116658
Supported ModulesAgentix XSIAM

README

Overview


RSA NetWitness Endpoint provides deep visibility beyond basic endpoint security solutions by monitoring and collecting activity across all of your endpoints—on and off your network.
Use this integration to access to information about endpoints, modules, and indicators.

This integration was integrated and tested with RSA NetWitness Endpoint v4.0.

 

Configure RSA NetWitness Endpoint on Cortex XSOAR


  1. Navigate to Settings > Integrations > Servers & Services.
  2. Search for RSA NetWitness Endpoint.
  3. Click Add instance to create and configure a new integration instance.
    • Name: a textual name for the integration instance.
    • Server URL (e.g. https://192.168.0.1:30022)
    • credentials
    • Trust any certificate (not secure)
    • Use system proxy settings
  4. Click Test to validate the URL and credentials.

Commands


You can execute these commands from the Cortex XSOAR CLI, as part of an automation, or in a playbook.
After you successfully execute a command, a DBot message appears in the War Room with the command details.

  1. Get GUIDs for multiple machines: netwitness-get-machines
  2. Get the GUID for a single machine: netwitness-get-machine
  3. List IOCs for a specific machine: netwitness-get-machine-iocs
  4. Get information for machine modules: netwitness-get-machine-modules
  5. Get information for a single machine module: netwitness-get-machine-module
  6. Blacklist IP addresses: netwitness-blacklist-ips
  7. Blacklist domains: netwitness-blacklist-domains

1. Get GUIDs for multiple machines


Get machine GUID. Search by machine name and more.

Base Command
netwitness-get-machines
Input
Argument Name Description Required
machineName Hostname to filter results by. Not case sensitive. Optional
iocScoreGreaterThan Filter all machines whose IOC score is greater than or equal to this value. Default = 0. Optional
iocScoreLessThan Filter all machines whose IOC score is less than or equal to this value. Default = 1024. Cannot be zero. Optional
ipAdress Filter all machines based on IP address. Optional
macAddress Filter all machines based on MAC address. Optional
limit Limit the number of results. Default = 100. Optional
includeMachineData Include full machine data Optional
includeMachineIOCs Include machine IOCs Optional
includeMachineModules Include machine modules Optional
 
Context Output
Path Description
NetWitness.Machines.MachineGUID Machine GUID
NetWitness.Machines.AgentID Agent ID
NetWitness.Machines.MachineName Machine name
NetWitness.Machines.LocalIP Local IP
NetWitness.Machines.RemoteIP Remote IP
NetWitness.Machines.MAC MAC
NetWitness.Machines.MachineStatus Machine status
NetWitness.Machines.IIOCScore IIOC score
NetWitness.Machines.IIOCLevel0 IIOC Level 0
NetWitness.Machines.IIOCLevel1 IIOC Level 1
NetWitness.Machines.IIOCLevel2 IIOC Level 2
NetWitness.Machine.IIOCLevel3 IIOC Level 3
NetWitness.Machines.AntiVirusDisabled Anti-virus disabled
NetWitness.Machines.Comment Comment
NetWitness.Machines.ContainmentStatus Containment status
NetWitness.Machines.ContainmentSupported Containment supported
NetWitness.Machines.Country Country
NetWitness.Machines.DNS DNS
NetWitness.Machines.DomainName Domain name
NetWitness.Machines.FirewallDisabled Firewall disabled
NetWitness.Machines.Gateway Gateway
NetWitness.Machines.Group Group
NetWitness.Machines.Idle Idle
NetWitness.Machines.InstallTime Install time
NetWitness.Machines.InstallationFailed Installation failed
NetWitness.Machines.LastScan Last scan
NetWitness.Machines.LastSeen Last seen
NetWitness.Machines.NetworkSegment Network segment
NetWitness.Machines.OperatingSystem Operating system
NetWitness.Machines.OrganizationUnit Organization unit
NetWitness.Machines.Platform Platform
NetWitness.Machines.Scanning Scanning
NetWitness.Machines.UserName User name
NetWitness.Machine.VersionInfo Version information
NetWitness.IOCs.Description Description
NetWitness.IOCs.Type Type
NetWitness.IOCs.MachineCount Machine count
NetWitness.IOCs.ModuleCount Module count
NetWitness.IOCs.IOCLevel IOC level
NetWitness.IOCs.Priority Priority
NetWitness.IOCs.Active Active
NetWitness.IOCs.LastExecuted Last executed
NetWitness.IOCs.Alertable Alertable
NetWitness.IOCs.IOCTriggeredOnMachine IOC Triggered On Machine
NetWitness.Machines.MachineGUID Machine GUID
NetWitness.Modules.ModuleName Module name
NetWitness.Modules.ModuleID Module ID
NetWitness.Modules.Description Description
NetWitness.Modules.IOCScore IOC score
NetWitness.Modules.AnalyticsScore Analytics score
NetWitness.Modules.GlobalMachineCount Global machine count
NetWitness.Modules.MD5 MD5
NetWitness.Modules.SHA256 SHA-256
 
Command Example
!netwitness-get-machines limit="100" includeMachineData="no" includeMachineIOCs="no" includeMachineModules="no"
Context Example
{
    "NetWitness": {
        "Machines": {
            "IOCScore": {
                "FilterValue": 71,
                "FullScore": 8016,
                "Level": 3,
                "Level0": 0,
                "Level1": 0,
                "Level2": 8,
                "Level3": 16,
                "Score": 71,
                "__type": "Tools.IOCScore, Tools"
            },
            "LastScan": "2018-09-12T15:59:48Z",
            "LocalIp": "xxx.xxx.xxx.xxx",
            "MacAddress": "xx:xx:xx:xx:xx:xxx",
            "MachineGUID": "xxxxxx",
            "MachineName": "NWE",
            "Online": true,
            "OperatingSystem": "Microsoft Windows Server 2012 R2 Datacenter"
        }
    }
}
Human Readable Output

NetWitness Endpoint - Get Machines

MachineName MachineGUID Online OperatingSystem LastScan IOCScore MacAddress LocalIp
NWE xxxxxxxx true Microsoft Windows Server 2012 R2 Datacenter 2018-09-12T15:59:48Z FilterValue: 71
Level: 3
Score: 71
Level0: 0
Level1: 0
Level2: 8
Level3: 16
__type: Tools.IOCScore, Tools
FullScore: 8016
xx:xx:xx:xx:xx:xx xxx.xxx.xxx.xxx

 

2. Get the GUID for a single machine


Get information on a specific machine.

Base Command
netwitness-get-machine
Input
Argument Name Description Required
machineGUID GUID of the machine Required
 
Context Output
Path Description
NetWitness.Machines.AgentID Agent ID
NetWitness.Machines.MachineName Machine name
NetWitness.Machines.LocalIP Local IP
NetWitness.Machines.RemoteIP Remote IP
NetWitness.Machines.MAC MAC
NetWitness.Machines.MachineStatus Machine status
NetWitness.Machines.IIOCScore IIOC score
NetWitness.Machines.IIOCLevel0 IIOC Level 0
NetWitness.Machines.IIOCLevel1 IIOC Level 1
NetWitness.Machines.IIOCLevel2 IIOC Level 2
NetWitness.Machine.IIOCLevel3 IIOC Level 3
NetWitness.Machines.AntiVirusDisabled Anti-virus disabled
NetWitness.Machines.Comment Comment
NetWitness.Machines.ContainmentStatus Containment status
NetWitness.Machines.ContainmentSupported Containment supported
NetWitness.Machines.Country Country
NetWitness.Machines.DNS DNS
NetWitness.Machines.DomainName Domain name
NetWitness.Machines.FirewallDisabled Firewall disabled
NetWitness.Machines.Gateway Gateway
NetWitness.Machines.Group Group
NetWitness.Machines.Idle Idle
NetWitness.Machines.InstallTime Installation time
NetWitness.Machines.InstallationFailed Installation failed
NetWitness.Machines.LastScan Last scan
NetWitness.Machines.LastSeen Last seen
NetWitness.Machines.NetworkSegment Network segment
NetWitness.Machines.OperatingSystem Operating system
NetWitness.Machines.OrganizationUnit Organization unit
NetWitness.Machines.Platform Platform
NetWitness.Machines.Scanning Scanning
NetWitness.Machines.UserName User name
NetWitness.Machine.VersionInfo Version information
 
Command Example
!netwitness-get-machine machineGUID=abc123def456
Context Example
{
    "NetWitness": {
        "Machine": {
            "AgentID": "xxxxxx",
            "AntiVirusDisabled": "False",
            "Comment": "",
            "ContainmentStatus": "Not Contained",
            "ContainmentSupported": "True",
            "Country": "USA",
            "DNS": "8.8.8.8",
            "DomainName": "WORKGROUP",
            "FirewallDisabled": "False",
            "Gateway": "xxx.xxx.xxx.xxx",
            "Group": "Default",
            "IIOCLevel0": "0",
            "IIOCLevel1": "0",
            "IIOCLevel2": "8",
            "IIOCLevel3": "16",
            "IIOCScore": "71",
            "Idle": "True",
            "InstallTime": "9/3/2018 4:01:03 PM",
            "InstallationFailed": "False",
            "LastScan": "9/12/2018 3:59:48 PM",
            "LastSeen": "9/25/2018 1:27:01 PM",
            "LocalIP": "xxx.xxx.xxx.xxx",
            "MAC": "xx:xx:xx:xx:xx:xx",
            "MachineName": "NWE",
            "MachineStatus": "Online",
            "NetworkSegment": "xxx.xxx.xxx.xxx",
            "OperatingSystem": "Microsoft Windows Server 2012 R2 Datacenter",
            "OrganizationUnit": "",
            "Platform": "64-bit (x64)",
            "RemoteIP": "xxx.xxx.xxx.xxx",
            "Scanning": "False",
            "UserName": "",
            "VersionInfo": "4.4.0.6"
        }
    }
}
Human Readable Output

NetWitness Endpoint - Machine NWE Full Data

AgentID MachineName LocalIP RemoteIP MAC MachineStatus IIOCScore IIOCLevel0 IIOCLevel1 IIOCLevel2 IIOCLevel3 AntiVirusDisabled Comment ContainmentStatus ContainmentSupported Country DNS DomainName FirewallDisabled Gateway Group Idle InstallTime InstallationFailed LastScan LastSeen NetworkSegment OperatingSystem OrganizationUnit Platform Scanning UserName VersionInfo
xxxxxx NWE xxx.xxx.xxx.xxx xxx.xxx.xxx.xx xx:xx:xx:xx:xx:xx Online 71 0 0 8 16 False   Not Contained True USA 8.8.8.8 WORKGROUP False xxx.xxx.xxx.xxx Default True 9/3/2018 4:01:03 PM False 9/12/2018 3:59:48 PM 9/25/2018 1:27:01 PM xxx.xxx.xxx.xxx Microsoft Windows Server 2012 R2 Datacenter   64-bit (x64) False   4.4.0.6

 

3. List IOCs for a specific machine


List IOCs for a specific machine.

Base Command
netwitness-get-machine-iocs
Input
Argument Name Description Required
machineGUID The machine GUID Required
limit Limit the number of results. Default = 100. Optional
 
Context Output
Path Description
NetWitness.Machines.MachineGUID Machine GUID
NetWitness.IOCs.Description Description
NetWitness.IOCs.Type Type
NetWitness.IOCs.MachineCount Machine count
NetWitness.IOCs.ModuleCount Module count
NetWitness.IOCs.IOCLevel IOC level
NetWitness.IOCs.Priority Priority
NetWitness.IOCs.Active Active
NetWitness.IOCs.LastExecuted Last executed
NetWitness.IOCs.Alertable Alertable
NetWitness.IOCs.IOCTriggeredOnMachine IOC Triggered On Machine
 
Command Example
Context Example
Human Readable Output

4. Get information for machine modules


Get Names and ID's of modules of the machine. Filter by name or IOC score.

Base Command
netwitness-get-machine-modules
Input
Argument Name Description Required
machineGUID The machine GUID Required
moduleName Module name to filter results by (not case sensitive). Example: ModuleName=".exe "will match all machines which have the word ".exe" in their module name. Optional
iocScoreGreaterThan Filter all modules whose IOC score is greater than or equal to this value. Default = 0. Optional
iocScoreLessThan Filter all modules whose IOC score is less than or equal to this value. Default = 1024. Cannot be zero. Optional
limit Limit the number of results. Default 50. Optional
 
Context Output
Path Description
NetWitness.Machines.MachineGUID Machine GUID
NetWitness.Modules.ModuleName Module name
NetWitness.Modules.ModuleID Module ID
NetWitness.Modules.Description Description
NetWitness.Modules.IOCScore IOC score
NetWitness.Modules.AnalyticsScore Analytics score
NetWitness.Modules.GlobalMachineCount Global machine count
NetWitness.Modules.MD5 MD5
NetWitness.Modules.SHA256 SHA-256
 
Command Example
!netwitness-get-machine-modules machineGUID= iocScoreGreaterThan="20" limit="50"
Context Example
{
    "File": {
        "MD5": XX,
        "Name": AdobeARMHelper.exe
    },
    "NetWitness": {
        "Modules": {
            "AnalyticsScore": "1",
            "Description": "Adobe Reader and Acrobat Manager Helper",
            "GlobalMachineCount": 1,
            "IOCScore": {
                "FilterValue": 25,
                "FullScore": 3001,
                "Level": 3,
                "Level0": 0,
                "Level1": 0,
                "Level2": 3,
                "Level3": 1,
                "Score": 25,
                "__type": "Tools.IOCScore, Tools"
            },
            "MD5": "XX",
            "MachineGUID": "XX",
            "ModuleID": 685,
            "ModuleName": "AdobeARMHelper.exe",
            "SHA256": "XX"
        }
    }
}
Human Readable Output

NetWitness Endpoint - Get Modules

ModuleName ModuleID Description IOCScore AnalyticsScore GlobalMachineCount MD5 SHA256
AdobeARMHelper.exe 685 Adobe Reader and Acrobat Manager Helper FilterValue: 25
Level: 3
Score: 25
Level0: 0
Level1: 0
Level2: 3
Level3: 1
__type: Tools.IOCScore, Tools
FullScore: 3001
1 1 XX XX

 

5. Get information for a single machine module


Get information for a specific machine module.

Base Command
netwitness-get-machine-module
Input
Argument Name Description Required
machineGUID The machine GUID Required
moduleID The module ID Required
 
Context Output
Path Description
NetWitness.Modules.MachineGUID Machine GUID
NetWitness.Modules.ModuleID Module ID
NetWitness.Modules.FileName File name
NetWitness.Modules.FullPath Full path
NetWitness.Modules.MD5 MD5
NetWitness.Modules.RiskScore Risk score
NetWitness.Modules.SHA1 SHA-1
NetWitness.Modules.SHA256 SHA-256
NetWitness.Modules.IIOCScore IIOC score
NetWitness.Modules.Blacklisted Blacklisted
NetWitness.Modules.Graylisted Graylisted
NetWitness.Modules.Whitelisted Whitelisted
NetWitness.Modules.MachineCount Machine count
NetWitness.Modules.IIOCLevel0 IIOC Level 0
NetWitness.Modules.IIOCLevel1 IIOC Level 1
NetWitness.Modules.IIOCLevel2 IIOC Level 2
NetWitness.Modules.IIOCLevel3 IIOC Level 3
NetWitness.Modules.FirstSeenName First seen name
NetWitness.Modules.FirstSeenDate First seen date
File.Name The file name
File.MD5 File MD5
File.SHA1 File SHA-1
File.Path File full path
 
Command Example
!netwitness-get-machine-module machineGUID= moduleID=
Context Example
{
    "File": {
        "MD5": null,
        "Name": null,
        "Path": "C:\\Program Files (x86)\\Common Files\\Adobe\\ARM\\1.0\\Temp\\242902160\\AdobeARMHelper.exe",
        "SHA1": "7AFB5FDF4FAC3C682877B22B90F3D9C3737271D2"
    },
    "NetWitness": {
        "Module": {
            "Blacklisted": "None",
            "FileName": "AdobeARMHelper.exe",
            "FirstSeenDate": "9/18/2018 8:13:02 PM",
            "FirstSeenName": "AdobeARMHelper.exe",
            "FullPath": "C:\\Program Files (x86)\\Common Files\\Adobe\\ARM\\1.0\\Temp\\242902160\\AdobeARMHelper.exe",
            "Graylisted": "None",
            "IIOCLevel0": "0",
            "IIOCLevel1": "0",
            "IIOCLevel2": "3",
            "IIOCLevel3": "1",
            "IIOCScore": "25",
            "MD5": "7182705213142EE4DCF722AA247DD55C",
            "MachineCount": "1",
            "MachineGUID": "ea946082-0563-c15e-8128-c5b6e8b2fea9",
            "RiskScore": "1",
            "SHA1": "7AFB5FDF4FAC3C682877B22B90F3D9C3737271D2",
            "SHA256": "F9B595F657589A25F6F247B4CDD0DE7F2BA0319B015D33F000728BFC11D0A1C2",
            "Whitelisted": "None"
        }
    }
}
Human Readable Output

NetWitness Endpoint - Get Module

ModuleID ModuleName FullPath FirstSeenName FirstSeenDate MD5 SHA1 SHA256 IIOCLevel0 IIOCLevel1 IIOCLevel2 IIOCLevel3 IIOCScore Blacklisted Graylisted Whitelisted MachineCount RiskScore AVDefinitionHash AVDescription AVFirstThreat AVScanResult AccessNetwork AnalysisTime AppDataLocal AppDataRoaming AutoStartCategory Autorun BlacklistCategory BlockingStatus Desktop Downloaded DownloadedTime FakeStartAddress FileAccessDenied FileAccessTime FileCreationTime FileEncrypted FileHiddenAttributes FileModificationTime FileName FileOccurrences Floating HashLookup Hooking ImportedDLLCount ImportedDLLs LiveConnectRiskEnum LiveConnectRiskReason Loaded OriginalFileName Packed Platform RelativeFileName RelativePath RemoteFileName RemotePath Signature SignatureTimeStamp SizeInBytes Status YaraDefinitionHash YaraScanDescription YaraScanFirstThreat YaraScanresult Windows WritetoExecutable SysWOW64 System32 Temporary TooManyConnections User SignatureValid SignedbyMicrosoft SignatureExpired SignaturePresent RenametoExecutable ReservedName ProcessAccessDenied ProgramData ProgramFiles ReadDocument MD5Collision InstallerDirectory LikelyPacked Listen ImageHidden ImageMismatch FirewallAuthorized AutorunScheduledTask Beacon
  AdobeARMHelper.exe C:\Program Files (x86)\Common Files\Adobe\ARM\1.0\Temp\242902160\AdobeARMHelper.exe AdobeARMHelper.exe 9/18/2018 8:13:02 PM XX XX XX 0 0 3 1 25 None None None 1 1 0     Unknown False 1/1/0001 12:00:00 AM False False None False Generic Malware Unknown False False 1/1/0001 12:00:00 AM False False 9/18/2018 8:11:45 PM 9/18/2018 8:11:45 PM False False 3/21/2018 7:21:48 AM AdobeARMHelper.exe 10343 False Good False 16 PSAPI.DLL; msi.dll; USERENV.dll; KERNEL32.dll; USER32.dll; ADVAPI32.dll; SHELL32.dll; ole32.dll; SHLWAPI.dll; CRYPT32.dll; WINTRUST.dll; OLEACC.dll; GDI32.dll; WINSPOOL.DRV; COMDLG32.dll; OLEAUT32.dll Unknown None True   False I386         Valid: Adobe Systems, Incorporated 3/21/2018 9:19:15 AM 413.5 kB Neutral 0     Unknown False True False False True False False True False False True False False False False True False False True False False False False False False False

 

6. Block list IP addresses


Add a list of IP addresses to block list.

Base Command
netwitness-blacklist-ips
Input
Argument Name Description Required
ips Comma separated list of IP addresses Required
 
Context Output

There is no context output for this command.

Command Example

!netwitness-blacklist-ips ips="1.1.1.1,2.2.2.2"

Context Example
{
    "NetWitness": {
        "Blacklist": {
            "IPs": [
                "1.2.3.4"
            ]
        }
    }
}
Human Readable Output

IPs Successfully Block listed

IP
1.2.3.4

 

7. Block list domains


Add a list of domain block list.

Base Command
netwitness-blacklist-domains
Input
Argument Name Description Required
domains Comma separated list of domains Required
 
Context Output

There is no context output for this command.

Command Example
!netwitness-blacklist-domains domains="https://www.example2.com,https://www.example2.com"
Context Example
{
    "NetWitness": {
        "Blacklist": {
            "Domains": [
                "www.example.com"
            ]
        }
    }
}
Human Readable Output

Domains Successfully Block listed

Domain
www.example.com

Configuration parameters

  • server — Server URL (e.g. https://192.168.0.1:30022) (required)
  • credentials — Username
  • insecure — Trust any certificate (not secure)
  • proxy — Use system proxy settings

Commands (7)

  • netwitness-blacklist-domains

    Add a list of domains to block list

  • netwitness-blacklist-ips

    Add a list of IP addresses to block list

  • netwitness-get-machine

    Get information on a specific machine.

  • netwitness-get-machine-iocs

    List IOC's for a specific machine.

  • netwitness-get-machine-module

    Get information on a specific machine module.

  • netwitness-get-machine-modules

    Get Names and ID's of modules of the machine. Filter by name or IOC score.

  • netwitness-get-machines

    Get machine GUID. Search by machine name and more.

commonfields:
  id: RSA NetWitness Endpoint
  version: -1
name: RSA NetWitness Endpoint
display: RSA NetWitness Endpoint
category: Endpoint
provider: PartnerOne
description: 'RSA NetWitness Endpoint provides deep visibility beyond basic endpoint security solutions by monitoring and collecting activity across all of your endpoints on and off your network. The RSA Demisto integration provides access to information about endpoints, modules and indicators. '
configuration:
- display: Server URL (e.g. https://192.168.0.1:30022)
  name: server
  defaultvalue: ""
  type: 0
  required: true
- display: Username
  name: credentials
  defaultvalue: ""
  type: 9
  required: false
- display: Trust any certificate (not secure)
  name: insecure
  type: 8
  required: false
- display: Use system proxy settings
  name: proxy
  type: 8
  required: false
script:
  script: ''
  type: python
  subtype: python3
  commands:
  - name: netwitness-get-machines
    arguments:
    - name: machineName
      description: Hostname to filter result. Case insensitive.
    - name: iocScoreGreaterThan
      description: Filter all machines whose IOC score is greater than or equal to this value. Default = 0.
    - name: iocScoreLessThan
      description: Filter all machines whose IOC score is less than or equal to this value. Default = 1024. Cant be zero.
    - name: ipAddress
      description: Filter all machines based on IP address.
    - name: macAddress
      description: Filter all machines based on MAC address.
    - name: limit
      description: Limit the results. Default 100.
      defaultValue: "100"
    - name: includeMachineData
      auto: PREDEFINED
      predefined:
      - "no"
      - "yes"
      description: Include Full Machine Data.
      defaultValue: "no"
    - name: includeMachineIOCs
      auto: PREDEFINED
      predefined:
      - "yes"
      - "no"
      description: Include machine IOC's.
      defaultValue: "no"
    - name: includeMachineModules
      auto: PREDEFINED
      predefined:
      - "yes"
      - "no"
      description: Include machine moduls.
      defaultValue: "no"
    outputs:
    - contextPath: NetWitness.Machines.MachineGUID
      description: Machine GUID.
    - contextPath: NetWitness.Machines.AgentID
      description: Agent ID.
    - contextPath: NetWitness.Machines.MachineName
      description: Machine Name.
    - contextPath: NetWitness.Machines.LocalIP
      description: Local IP.
    - contextPath: NetWitness.Machines.RemoteIP
      description: Remote IP.
    - contextPath: NetWitness.Machines.MAC
      description: MAC.
    - contextPath: NetWitness.Machines.MachineStatus
      description: Machine Status.
    - contextPath: NetWitness.Machines.IIOCScore
      description: IIOC Score.
    - contextPath: NetWitness.Machines.IIOCLevel0
      description: IIOC Level0.
    - contextPath: NetWitness.Machines.IIOCLevel1
      description: IIOC Level1.
    - contextPath: NetWitness.Machines.IIOCLevel2
      description: IIOC Level2.
    - contextPath: NetWitness.Machine.IIOCLevel3
      description: IIOC Level3.
    - contextPath: NetWitness.Machines.AntiVirusDisabled
      description: Anti Virus Disabled.
    - contextPath: NetWitness.Machines.Comment
      description: Comment.
    - contextPath: NetWitness.Machines.ContainmentStatus
      description: Containment Status.
    - contextPath: NetWitness.Machines.ContainmentSupported
      description: Containment Supported.
    - contextPath: NetWitness.Machines.Country
      description: Country.
    - contextPath: NetWitness.Machines.DNS
      description: DNS.
    - contextPath: NetWitness.Machines.DomainName
      description: Domain Name.
    - contextPath: NetWitness.Machines.FirewallDisabled
      description: Firewall Disabled.
    - contextPath: NetWitness.Machines.Gateway
      description: Gateway.
    - contextPath: NetWitness.Machines.Group
      description: Group.
    - contextPath: NetWitness.Machines.Idle
      description: Idle.
    - contextPath: NetWitness.Machines.InstallTime
      description: Install Time.
    - contextPath: NetWitness.Machines.InstallationFailed
      description: Installation Failed.
    - contextPath: NetWitness.Machines.LastScan
      description: Last Scan.
    - contextPath: NetWitness.Machines.LastSeen
      description: Last Seen.
    - contextPath: NetWitness.Machines.NetworkSegment
      description: Network Segment.
    - contextPath: NetWitness.Machines.OperatingSystem
      description: Operating System.
    - contextPath: NetWitness.Machines.OrganizationUnit
      description: Organization Unit.
    - contextPath: NetWitness.Machines.Platform
      description: Platform.
    - contextPath: NetWitness.Machines.Scanning
      description: Scanning.
    - contextPath: NetWitness.Machines.UserName
      description: User Name.
    - contextPath: NetWitness.Machine.VersionInfo
      description: Version Info.
    - contextPath: NetWitness.IOCs.Description
      description: Description.
    - contextPath: NetWitness.IOCs.Type
      description: Type.
    - contextPath: NetWitness.IOCs.MachineCount
      description: Machine Count.
    - contextPath: NetWitness.IOCs.ModuleCount
      description: Module Count.
    - contextPath: NetWitness.IOCs.IOCLevel
      description: IOC Level.
    - contextPath: NetWitness.IOCs.Priority
      description: Priority.
    - contextPath: NetWitness.IOCs.Active
      description: Active.
    - contextPath: NetWitness.IOCs.LastExecuted
      description: Last Executed.
    - contextPath: NetWitness.IOCs.Alertable
      description: Alertable.
    - contextPath: NetWitness.IOCs.IOCTriggeredOnMachine
      description: IOC Triggered On Machine.
    - contextPath: NetWitness.Machines.MachineGUID
      description: Machine GUID.
    - contextPath: NetWitness.Modules.ModuleName
      description: Module Name.
    - contextPath: NetWitness.Modules.ModuleID
      description: Module ID.
    - contextPath: NetWitness.Modules.Description
      description: Description.
    - contextPath: NetWitness.Modules.IOCScore
      description: IOC Score.
    - contextPath: NetWitness.Modules.AnalyticsScore
      description: Analytics Score.
    - contextPath: NetWitness.Modules.GlobalMachineCount
      description: Global Machine Count.
    - contextPath: NetWitness.Modules.MD5
      description: MD5.
    - contextPath: NetWitness.Modules.SHA256
      description: SHA256.
    description: Get machine GUID. Search by machine name and more.
  - name: netwitness-get-machine
    arguments:
    - name: machineGUID
      required: true
      default: true
      description: The machine GUID.
    outputs:
    - contextPath: NetWitness.Machines.AgentID
      description: Agent ID.
    - contextPath: NetWitness.Machines.MachineName
      description: Machine Name.
    - contextPath: NetWitness.Machines.LocalIP
      description: Local IP.
    - contextPath: NetWitness.Machines.RemoteIP
      description: Remote IP.
    - contextPath: NetWitness.Machines.MAC
      description: MAC.
    - contextPath: NetWitness.Machines.MachineStatus
      description: Machine Status.
    - contextPath: NetWitness.Machines.IIOCScore
      description: IIOC Score.
    - contextPath: NetWitness.Machines.IIOCLevel0
      description: IIOC Level0.
    - contextPath: NetWitness.Machines.IIOCLevel1
      description: IIOC Level1.
    - contextPath: NetWitness.Machines.IIOCLevel2
      description: IIOC Level2.
    - contextPath: NetWitness.Machine.IIOCLevel3
      description: IIOC Level3.
    - contextPath: NetWitness.Machines.AntiVirusDisabled
      description: Anti Virus Disabled.
    - contextPath: NetWitness.Machines.Comment
      description: Comment.
    - contextPath: NetWitness.Machines.ContainmentStatus
      description: Containment Status.
    - contextPath: NetWitness.Machines.ContainmentSupported
      description: Containment Supported.
    - contextPath: NetWitness.Machines.Country
      description: Country.
    - contextPath: NetWitness.Machines.DNS
      description: DNS.
    - contextPath: NetWitness.Machines.DomainName
      description: Domain Name.
    - contextPath: NetWitness.Machines.FirewallDisabled
      description: Firewall Disabled.
    - contextPath: NetWitness.Machines.Gateway
      description: Gateway.
    - contextPath: NetWitness.Machines.Group
      description: Group.
    - contextPath: NetWitness.Machines.Idle
      description: Idle.
    - contextPath: NetWitness.Machines.InstallTime
      description: Install Time.
    - contextPath: NetWitness.Machines.InstallationFailed
      description: Installation Failed.
    - contextPath: NetWitness.Machines.LastScan
      description: Last Scan.
    - contextPath: NetWitness.Machines.LastSeen
      description: Last Seen.
    - contextPath: NetWitness.Machines.NetworkSegment
      description: Network Segment.
    - contextPath: NetWitness.Machines.OperatingSystem
      description: Operating System.
    - contextPath: NetWitness.Machines.OrganizationUnit
      description: Organization Unit.
    - contextPath: NetWitness.Machines.Platform
      description: Platform.
    - contextPath: NetWitness.Machines.Scanning
      description: Scanning.
    - contextPath: NetWitness.Machines.UserName
      description: User Name.
    - contextPath: NetWitness.Machine.VersionInfo
      description: Version Info.
    description: Get information on a specific machine.
  - name: netwitness-get-machine-iocs
    arguments:
    - name: machineGUID
      required: true
      default: true
      description: The machine GUID.
    - name: limit
      description: Limit the results. Default 100.
      defaultValue: "100"
    outputs:
    - contextPath: NetWitness.Machines.MachineGUID
      description: Machine GUID.
    - contextPath: NetWitness.IOCs.Description
      description: Description.
    - contextPath: NetWitness.IOCs.Type
      description: Type.
    - contextPath: NetWitness.IOCs.MachineCount
      description: Machine Count.
    - contextPath: NetWitness.IOCs.ModuleCount
      description: Module Count.
    - contextPath: NetWitness.IOCs.IOCLevel
      description: IOC Level.
    - contextPath: NetWitness.IOCs.Priority
      description: Priority.
    - contextPath: NetWitness.IOCs.Active
      description: Active.
    - contextPath: NetWitness.IOCs.LastExecuted
      description: Last Executed.
    - contextPath: NetWitness.IOCs.Alertable
      description: Alertable.
    - contextPath: NetWitness.IOCs.IOCTriggeredOnMachine
      description: IOC Triggered On Machine.
    description: List IOC's for a specific machine.
  - name: netwitness-get-machine-modules
    arguments:
    - name: machineGUID
      required: true
      description: The machine GUID.
    - name: moduleName
      description: 'Module name to filter result. Case insesitive. Example: ModuleName=".exe "will match all machines which have the word ".exe" in their module name.'
    - name: iocScoreGreaterThan
      description: "\t Filter all modules whose IOC score is greater than or equal to this value. Default = 0."
    - name: iocScoreLessThan
      description: "\t Filter all modules whose IOC score is less than or equal to this value. Default = 1024. Cant be zero."
    - name: limit
      description: limit the results. Default 50.
      defaultValue: "50"
    outputs:
    - contextPath: NetWitness.Machines.MachineGUID
      description: Machine GUID.
    - contextPath: NetWitness.Modules.ModuleName
      description: Module Name.
    - contextPath: NetWitness.Modules.ModuleID
      description: Module ID.
    - contextPath: NetWitness.Modules.Description
      description: Description.
    - contextPath: NetWitness.Modules.IOCScore
      description: IOC Score.
    - contextPath: NetWitness.Modules.AnalyticsScore
      description: Analytics Score.
    - contextPath: NetWitness.Modules.GlobalMachineCount
      description: Global Machine Count.
    - contextPath: NetWitness.Modules.MD5
      description: MD5.
    - contextPath: NetWitness.Modules.SHA256
      description: SHA256.
    description: Get Names and ID's of modules of the machine. Filter by name or IOC score.
  - name: netwitness-get-machine-module
    arguments:
    - name: machineGUID
      required: true
      description: The machine GUID.
    - name: moduleID
      required: true
      description: The module ID.
    outputs:
    - contextPath: NetWitness.Modules.MachineGUID
      description: Machine GUID.
    - contextPath: NetWitness.Modules.ModuleID
      description: Module ID.
    - contextPath: NetWitness.Modules.FileName
      description: File Name.
    - contextPath: NetWitness.Modules.FullPath
      description: Full Path.
    - contextPath: NetWitness.Modules.MD5
      description: MD5.
    - contextPath: NetWitness.Modules.RiskScore
      description: Risk Score.
    - contextPath: NetWitness.Modules.SHA1
      description: SHA1.
    - contextPath: NetWitness.Modules.SHA256
      description: SHA256.
    - contextPath: NetWitness.Modules.IIOCScore
      description: IIOC Score.
    - contextPath: NetWitness.Modules.Blacklisted
      description: Blacklisted.
    - contextPath: NetWitness.Modules.Graylisted
      description: Graylisted.
    - contextPath: NetWitness.Modules.Whitelisted
      description: Whitelisted.
    - contextPath: NetWitness.Modules.MachineCount
      description: Machine Count.
    - contextPath: NetWitness.Modules.IIOCLevel0
      description: IIOC Level0.
    - contextPath: NetWitness.Modules.IIOCLevel1
      description: IIOC Level1.
    - contextPath: NetWitness.Modules.IIOCLevel2
      description: IIOC Level2.
    - contextPath: NetWitness.Modules.IIOCLevel3
      description: IIOC Level3.
    - contextPath: NetWitness.Modules.FirstSeenName
      description: First Seen Name.
    - contextPath: NetWitness.Modules.FirstSeenDate
      description: First Seen Date.
    - contextPath: File.Name
      description: The file name.
    - contextPath: File.MD5
      description: File MD5.
    - contextPath: File.SHA1
      description: File SHA1.
    - contextPath: File.Path
      description: File full path.
    description: Get information on a specific machine module.
  - name: netwitness-blacklist-ips
    arguments:
    - name: ips
      required: true
      default: true
      description: 'Comma separated IP addresses.'
    outputs:
    - contextPath: NetWitness.Blacklist.IPs
      description: IPs block listed successfully.
    description: Add a list of IP addresses to block list
  - name: netwitness-blacklist-domains
    arguments:
    - name: domains
      required: true
      default: true
      description: Comma separated list of domains.
    outputs:
    - contextPath: NetWitness.Blacklist.Domains
      description: Domains block listed successfully.
    description: 'Add a list of domains to block list '
  dockerimage: demisto/python3:3.12.13.10116658
tests:
- NetWitness Endpoint Test
fromversion: 5.0.0