From ff91b0eb96ffc1e1a026ad65c2d66cfa6c8177e3 Mon Sep 17 00:00:00 2001 From: Jeff Kala Date: Tue, 20 Jan 2026 09:04:08 -0700 Subject: [PATCH 01/13] Bump version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4616fe62..2948af71 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netutils" -version = "1.16.0" +version = "1.16.1a0" description = "Common helper functions useful in network automation." authors = ["Network to Code, LLC "] license = "Apache-2.0" From b3a305b5f71ba50c391b89d3cdd78103c4753512 Mon Sep 17 00:00:00 2001 From: Joe Wesch <10467633+joewesch@users.noreply.github.com> Date: Mon, 26 Jan 2026 21:09:20 -0600 Subject: [PATCH 02/13] Added HP full config parsing (#776) * Changed stripping whitespace for specific network_os --- changes/+class.deprecated | 1 + changes/752.added | 1 + netutils/config/compliance.py | 10 +- netutils/config/parser.py | 98 ++++- netutils/config/utils.py | 42 +++ .../hp_comware/hp_comware_full_backup.txt | 280 ++++++++++++++ .../hp_comware/hp_comware_full_feature.py | 36 ++ .../hp_comware/hp_comware_full_intended.txt | 216 +++++++++++ .../hp_comware/hp_comware_full_received.json | 342 ++++++++++++++++++ .../hp_comware/hp_comware_full_received.py | 316 ++++++++++++++++ .../base/hp_comware/hp_comware_full_sent.txt | 283 +++++++++++++++ .../hp_comware/hp_comware_special_received.py | 56 +++ .../hp_comware/hp_comware_special_sent.txt | 28 ++ tests/unit/test_deprecation.py | 14 + 14 files changed, 1711 insertions(+), 12 deletions(-) create mode 100644 changes/+class.deprecated create mode 100644 changes/752.added create mode 100644 tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_backup.txt create mode 100644 tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_feature.py create mode 100644 tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_intended.txt create mode 100644 tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_received.json create mode 100644 tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_received.py create mode 100644 tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_sent.txt create mode 100644 tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_received.py create mode 100644 tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_sent.txt create mode 100644 tests/unit/test_deprecation.py diff --git a/changes/+class.deprecated b/changes/+class.deprecated new file mode 100644 index 00000000..1d198ba0 --- /dev/null +++ b/changes/+class.deprecated @@ -0,0 +1 @@ +Deprecated the public HPEConfigParser class in lieu of a private class that should be subclassed for specific HP platforms. \ No newline at end of file diff --git a/changes/752.added b/changes/752.added new file mode 100644 index 00000000..eae143e4 --- /dev/null +++ b/changes/752.added @@ -0,0 +1 @@ +Added custom parsing of HP Network OS devices. \ No newline at end of file diff --git a/netutils/config/compliance.py b/netutils/config/compliance.py index 53063d21..c8f90278 100644 --- a/netutils/config/compliance.py +++ b/netutils/config/compliance.py @@ -39,6 +39,12 @@ } +# Network OSes that we do not strip leading whitespace from the config lines. +NON_STRIP_NETWORK_OS = [ + "hp_comware", +] + + # TODO: Once support for 3.7 is dropped, there should be a typing.TypedDict for this which should then also be used # as the return type for a bunch of the following methods. default_feature: t.Dict[str, t.Union[str, bool, None]] = { @@ -465,7 +471,9 @@ def section_config( else: match = False for line_start in section_starts_with: # type: ignore - if not match and line.config_line.startswith(line_start): + if not match and not line.parents and line.config_line.startswith(line_start): section_config_list.append(line.config_line) match = True + if network_os in NON_STRIP_NETWORK_OS: + return "\n".join(section_config_list) return "\n".join(section_config_list).strip() diff --git a/netutils/config/parser.py b/netutils/config/parser.py index e36d5473..0791c9d2 100644 --- a/netutils/config/parser.py +++ b/netutils/config/parser.py @@ -8,6 +8,7 @@ from netutils.banner import normalise_delimiter_caret_c from netutils.config.conversion import paloalto_panos_brace_to_set +from netutils.config.utils import _deprecated ConfigLine = namedtuple("ConfigLine", "config_line,parents") @@ -1675,16 +1676,91 @@ def config_lines_only(self) -> str: return "\n".join(config_lines) -class HPEConfigParser(BaseSpaceConfigParser): +class _HPEConfigParser(BaseSpaceConfigParser): """HPE Implementation of ConfigParser Class.""" - regex_banner = re.compile(r"^header\s(\w+)\s+(?P\^C|\S?)") + regex_banner = re.compile(r"^\s*header\s(\w+)\s+(?P\^C|\S?)") + banner_start: t.List[str] = ["header "] + comment_chars: t.List[str] = ["#"] def __init__(self, config: str): - """Initialize the HPEConfigParser object.""" + """Initialize the _HPEConfigParser object.""" self.delimiter = "" self._banner_end: t.Optional[str] = None - super(HPEConfigParser, self).__init__(config) + super(_HPEConfigParser, self).__init__(config) + + @property + def config_lines_only(self) -> str: + """Remove spaces and unwanted lines from config lines, but leave comments. + + Returns: + The non-space lines from ``config``. + """ + if self._config is None: + config_lines = (line.rstrip() for line in self.config.splitlines() if line and not line.isspace()) + self._config = "\n".join(config_lines) + return self._config + + def build_config_relationship(self) -> t.List[ConfigLine]: + r"""This is a custom build method for HPE Network OS. + + HP config is a bit different from other network operating systems. + It uses comments (#) to demarcate sections of the config. + Each new section that starts without a leading space is a new section. + That new section may or may not have children. + Each config line that has a leading space but not a parent is just a single config line. + Single lines that have leading spaces also sometimes differs between models (e.g., 59XX vs 79XX series). + + Examples: + >>> from netutils.config.parser import _HPEConfigParser, ConfigLine + >>> config = '''# + ... version 7.1.045, Release 2418P06 + ... # + ... sysname NTC123456 + ... # + ... vlan 101 + ... name Test-Vlan-101 + ... description Test Vlan 101 + ... #''' + >>> config_tree = _HPEConfigParser(config) + >>> config_tree.build_config_relationship() == \ + ... [ + ... ConfigLine(config_line="version 7.1.045, Release 2418P06", parents=()), + ... ConfigLine(config_line=" sysname NTC123456", parents=()), + ... ConfigLine(config_line="vlan 101", parents=()), + ... ConfigLine(config_line=" name Test-Vlan-101", parents=("vlan 101",)), + ... ConfigLine(config_line=" description Test Vlan 101", parents=("vlan 101",)), + ... ] + True + >>> + """ + new_section = True + for line in self.generator_config: + if line.startswith(tuple(self.comment_chars)): + # Closing any previous sections + self._current_parents = () + self.indent_level = 0 + new_section = True + continue + if line.strip().startswith(tuple(self.comment_chars)): + # Just ignore comments inside sections + continue + if self.is_banner_start(line): + # Special case for banners + self._build_banner(line) + continue + + current_spaces = self.get_leading_space_count(line) if line[0].isspace() else 0 + if current_spaces > self.indent_level and not new_section: + previous_config = self.config_lines[-1] + self._current_parents += (previous_config.config_line,) + elif current_spaces < self.indent_level: + self._current_parents = self._remove_parents(line, current_spaces) + + new_section = False + self.indent_level = current_spaces + self._update_config_lines(line) + return self.config_lines def _build_banner(self, config_line: str) -> t.Optional[str]: """ @@ -1744,7 +1820,7 @@ def is_banner_one_line(self, config_line: str) -> bool: def is_banner_start(self, line: str) -> bool: """Checks if the given line is the start of a banner.""" - state = super(HPEConfigParser, self).is_banner_start(line) + state = super(_HPEConfigParser, self).is_banner_start(line) if state: self.banner_end = line return state @@ -1763,15 +1839,15 @@ def banner_end(self, banner_start_line: str) -> None: self._banner_end = self.delimiter -class HPComwareConfigParser(HPEConfigParser, BaseSpaceConfigParser): +class HPComwareConfigParser(_HPEConfigParser): """HP Comware Implementation of ConfigParser Class.""" - banner_start: t.List[str] = ["header "] - comment_chars: t.List[str] = ["#"] - def _build_banner(self, config_line: str) -> t.Optional[str]: - """Build a banner from the given config line.""" - return super(HPComwareConfigParser, self)._build_banner(config_line) +@_deprecated( + "HPEConfigParser is deprecated and will be removed in a future version. Use subclasses like HPComwareConfigParser instead." +) +class HPEConfigParser(_HPEConfigParser): + """Deprecated in favor of internal class _HPEConfigParser.""" class NvidiaOnyxConfigParser(BaseConfigParser): # pylint: disable=abstract-method diff --git a/netutils/config/utils.py b/netutils/config/utils.py index a153d48a..9f959f6e 100644 --- a/netutils/config/utils.py +++ b/netutils/config/utils.py @@ -1,5 +1,9 @@ """Utility functions for working with device configurations.""" +import typing as t +import warnings +from functools import wraps + def _open_file_config(cfg_path: str) -> str: """Open config file from local disk.""" @@ -8,3 +12,41 @@ def _open_file_config(cfg_path: str) -> str: device_cfg = filehandler.read() return device_cfg.strip() + + +def _deprecated(custom_message: t.Optional[str] = None) -> t.Callable[[t.Any], t.Any]: + """Deprecate a function or class. + + Args: + custom_message: Custom deprecation message. If None, uses default message. + + Returns: + Decorator function that issues a deprecation warning when the decorated item is used. + """ + if custom_message is None: + custom_message = "This function or class is deprecated and will be removed in a future version." + + def decorator(obj: t.Any) -> t.Any: + """Decorator that wraps a class or function to issue deprecation warning.""" + if isinstance(obj, type): + # For classes, wrap __init__ to issue warning on instantiation + original_init = getattr(obj, "__init__", None) + if original_init is None: + return obj + + def __init__(self: t.Any, *args: t.Any, **kwargs: t.Any) -> None: + warnings.warn(custom_message, DeprecationWarning, stacklevel=2) + original_init(self, *args, **kwargs) + + setattr(obj, "__init__", __init__) + return obj + + # For functions, wrap the function + @wraps(obj) + def wrapper(*args: t.Any, **kwargs: t.Any) -> t.Any: + warnings.warn(custom_message, DeprecationWarning, stacklevel=2) + return obj(*args, **kwargs) + + return wrapper + + return decorator diff --git a/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_backup.txt b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_backup.txt new file mode 100644 index 00000000..f65c71af --- /dev/null +++ b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_backup.txt @@ -0,0 +1,280 @@ +# +version 7.1.045, Release 2418P06 +# + sysname NTC123456 +# + clock timezone EST minus 05:00:00 + clock summer-time EDT 02:00:00 03/11 02:00:00 11/04 01:00:00 + clock protocol ntp +# + undo copyright-info enable +# +ip vpn-instance vpn1 + route-distinguisher 65001:1 + description vpn1 + vpn-target 65001:1 import-extcommunity + vpn-target 65001:1 export-extcommunity +# +ip vpn-instance internal + route-distinguisher 1:1 + description internal +# + telnet server enable + telnet server acl 1111 +# + irf domain 123456 + irf mac-address persistent timer + irf auto-update enable + undo irf link-delay + irf member 1 priority 32 + irf member 2 priority 1 + irf mode normal +# +igmp-snooping +# + dns source-interface M-GigabitEthernet0/0/0 vpn-instance internal + dns domain example.com + dns domain example.com vpn-instance internal + dns server 192.0.2.47 vpn-instance internal + dns server 192.0.2.15 vpn-instance internal + dns server 192.0.2.11 vpn-instance internal + dns server 192.0.2.2 vpn-instance internal + dns server 192.0.2.6 vpn-instance internal +# + lldp global enable +# + system-working-mode standard + password-recovery enable +# +vlan 1 +# +vlan 101 +# +irf-port 1/1 + port group interface FortyGigE1/0/49 + port group interface FortyGigE1/0/50 +# +irf-port 2/2 + port group interface FortyGigE2/0/49 + port group interface FortyGigE2/0/50 +# +qos map-table dot1p-lp + import 0 export 0 + import 1 export 1 + import 2 export 2 +# +traffic classifier NTC-Classifier operator or + if-match dscp ntc + if-match acl 4000 +# +traffic behavior NTC-Behavior + remark dscp ntc +# +traffic behavior foo +# +qos policy NTC-Policy + classifier NTC-Classifier behavior NTC-Behavior +# +stp region-configuration + region-name NTC-Region + revision-level 100 + instance 1 vlan 1 to 4094 + active region-configuration +# + stp instance 0 to 1 priority 16384 + stp vlan 1 to 4094 priority 16384 + stp mode pvst + stp bpdu-protection + stp global enable +# + l2vpn enable +# +interface NULL0 +# +interface LoopBack1 + ip binding vpn-instance internal + ip address 192.0.2.1 255.255.255.255 +# +interface Vlan-interface102 + shutdown + ip binding vpn-instance vpn2 + ip address 192.0.2.2 255.255.255.255 +# +interface Ten-GigabitEthernet1/0/1 + port link-mode bridge + description Test-Port-1 + undo enable snmp trap updown + undo enable log updown + port link-type trunk + undo port trunk permit vlan 1 + port trunk permit vlan 101 to 102 104 to 105 + port trunk pvid vlan 103 + stp edged-port + lldp agent nearest-customer admin-status txrx + sflow flow collector 1 + sflow sampling-rate 1000 + sflow counter collector 1 + sflow counter interval 2 + qos trust dscp + qos wfq weight + qos wfq af1 group 1 weight 2 + qos wfq af2 group 1 weight 2 + qos wfq af3 group 1 weight 4 + qos wfq ef group sp + qos wfq cs6 group sp + qos wfq cs7 group sp + qos bandwidth queue be min 500000 + qos bandwidth queue af1 min 500000 + qos bandwidth queue af2 min 2000000 + qos bandwidth queue af3 min 6500000 + qos bandwidth queue af4 min 100000 +# +bgp 65003 + router-id 192.0.2.31 + timer keepalive 5 hold 15 + # + ip vpn-instance vpn2 + peer 192.0.2.61 as-number 65006 + peer 192.0.2.61 connect-interface LoopBack1 + peer 192.0.2.61 ebgp-max-hop 3 + peer 192.0.2.61 password cipher + peer 192.0.2.62 as-number 65006 + peer 192.0.2.62 connect-interface LoopBack1 + peer 192.0.2.62 ebgp-max-hop 3 + # + address-family ipv4 unicast + network 192.0.2.31 255.255.255.255 + network 192.0.2.8 255.255.255.248 + network 192.0.2.0 255.255.255.240 + network 192.0.2.16 255.255.255.240 + network 192.0.2.32 255.255.255.240 + network 192.0.2.48 255.255.255.240 + network 192.0.2.64 255.255.255.240 + peer 192.0.2.61 enable + peer 192.0.2.61 next-hop-local + peer 192.0.2.62 enable + peer 192.0.2.62 next-hop-local +# + scheduler logfile size 16 +# +line class aux + user-role network-admin +# +line class vty + user-role network-operator +# +line aux 0 1 + authentication-mode scheme + user-role level-0 + idle-timeout 15 0 + command authorization +# +line vty 0 4 + authentication-mode scheme + user-role level-15 + user-role network-operator + protocol inbound ssh + idle-timeout 60 0 + command authorization +# + ip route-static vpn-instance vpn1 0.0.0.0 0 192.0.2.1 + ip route-static vpn-instance vpn2 192.0.2.61 32 192.0.2.68 description Test-Peer-2 + ip route-static vpn-instance vpn2 192.0.2.62 32 192.0.2.68 description Test-Peer-2 +# + info-center timestamp loghost no-year-date + undo info-center logfile enable + info-center loghost source M-GigabitEthernet0/0/0 + info-center loghost vpn-instance internal 192.0.2.132 + info-center loghost vpn-instance internal 192.0.2.227 + info-center loghost vpn-instance internal 192.0.2.18 + info-center loghost vpn-instance internal 192.0.2.195 +# + snmp-agent + snmp-agent local-engineid 123456789012345678901234567890 + snmp-agent community read Test-Community acl 1234 + snmp-agent sys-info contact Test-Contact + snmp-agent sys-info location Test-Location + snmp-agent sys-info version v2c v3 + snmp-agent trap source M-GigabitEthernet0/0/0 +# + ssh server enable + ssh server acl 1234 +# + ftp client source interface M-GigabitEthernet0/0/0 +# + ssh client source interface M-GigabitEthernet0/0/0 + sftp client source interface M-GigabitEthernet0/0/0 +# + qos vlan-policy NTC-VLAN-Policy-101 vlan 101 inbound + qos vlan-policy NTC-VLAN-Policy-102 vlan 102 inbound +# + ntp-service enable + ntp-service source M-GigabitEthernet0/0/0 + ntp-service unicast-server 192.0.2.22 vpn-instance internal + ntp-service unicast-peer 192.0.2.10 vpn-instance internal + ntp-service unicast-server 192.0.2.27 vpn-instance internal + ntp-service unicast-server 192.0.2.70 vpn-instance internal + ntp-service unicast-server 192.0.2.251 vpn-instance internal + ntp-service unicast-server 192.0.2.182 vpn-instance internal +# +acl number 1234 name NTC-ACL + rule 0 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000 + rule 0 comment hello world +# + tftp client source interface M-GigabitEthernet0/0/0 +# + header motd % +******************************************************************************* +Unauthorized Access to or Use of this System is STRICTLY PROHIBITED. + ALL Access and Use May be Monitored and Recorded. +******************************************************************************* +% +# +hwtacacs scheme NTC-HWTACACS-Scheme + primary authentication 192.0.2.112 + primary authorization 192.0.2.112 + primary accounting 192.0.2.112 + secondary authentication 192.0.2.11 + secondary authorization 192.0.2.11 + secondary accounting 192.0.2.11 + key authentication cipher + key authorization cipher + key accounting cipher + user-name-format without-domain + vpn-instance internal +# +radius scheme system + user-name-format without-domain +# +domain example.com + authentication default hwtacacs-scheme NTC-HWTACACS-Scheme local + authorization default hwtacacs-scheme NTC-HWTACACS-Scheme local + accounting default hwtacacs-scheme NTC-HWTACACS-Scheme +# +domain system +# + domain default enable example.com +# +role name level-0 + description NTC-Level-0 role +# +role name level-1 + description NTC-Level-1 role +# +user-group system +# +local-user NTC-Admin class manage + password hash + service-type ssh telnet terminal + authorization-attribute user-role level-15 + authorization-attribute user-role network-admin + authorization-attribute user-role network-operator +# +local-user NTC-User class manage + password hash + service-type ssh telnet + authorization-attribute user-role level-15 + authorization-attribute user-role network-admin + authorization-attribute user-role network-operator +# +return \ No newline at end of file diff --git a/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_feature.py b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_feature.py new file mode 100644 index 00000000..4ec95b24 --- /dev/null +++ b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_feature.py @@ -0,0 +1,36 @@ +features = [ + {"name": "sysname", "ordered": False, "section": [" sysname"]}, + {"name": "clock", "ordered": False, "section": [" clock"]}, + {"name": "copyright-info", "ordered": False, "section": [" copyright-info", " undo copyright-info"]}, + {"name": "telnet", "ordered": False, "section": [" telnet"]}, + {"name": "irf", "ordered": False, "section": [" irf ", " undo irf "]}, + {"name": "igmp", "ordered": False, "section": ["igmp"]}, + {"name": "dns", "ordered": False, "section": [" dns"]}, + {"name": "lldp", "ordered": False, "section": [" lldp"]}, + {"name": "password-recovery", "ordered": False, "section": [" password-recovery"]}, + {"name": "vlan", "ordered": False, "section": ["vlan"]}, + {"name": "irf-port", "ordered": False, "section": ["irf-port"]}, + {"name": "qos map-table", "ordered": False, "section": ["qos map-table"]}, + {"name": "qos policy", "ordered": False, "section": ["qos policy"]}, + {"name": "qos vlan-policy", "ordered": False, "section": [" qos vlan-policy"]}, + {"name": "stp", "ordered": False, "section": ["stp", " stp"]}, + {"name": "l2vpn", "ordered": False, "section": [" l2vpn"]}, + {"name": "bgp", "ordered": False, "section": ["bgp"]}, + {"name": "line", "ordered": False, "section": ["line"]}, + {"name": "ip route-static", "ordered": False, "section": [" ip route-static"]}, + {"name": "info-center", "ordered": False, "section": [" info-center", " undo info-center"]}, + {"name": "snmp", "ordered": False, "section": [" snmp"]}, + {"name": "ssh", "ordered": False, "section": [" ssh"]}, + {"name": "ftp", "ordered": False, "section": [" ftp"]}, + {"name": "sftp", "ordered": False, "section": [" sftp"]}, + {"name": "ntp", "ordered": False, "section": [" ntp"]}, + {"name": "acl", "ordered": True, "section": ["acl"]}, + {"name": "tftp", "ordered": False, "section": [" tftp"]}, + {"name": "header", "ordered": False, "section": [" header"]}, + {"name": "hwtacacs", "ordered": False, "section": ["hwtacacs"]}, + {"name": "radius", "ordered": False, "section": ["radius"]}, + {"name": "domain", "ordered": False, "section": ["domain", " domain"]}, + {"name": "role", "ordered": False, "section": ["role"]}, + {"name": "user-group", "ordered": False, "section": ["user-group"]}, + {"name": "local-user", "ordered": False, "section": ["local-user"]}, +] diff --git a/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_intended.txt b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_intended.txt new file mode 100644 index 00000000..4a91096c --- /dev/null +++ b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_intended.txt @@ -0,0 +1,216 @@ +# + sysname NTC-Router +# + clock timezone EST minus 05:00:00 + clock summer-time EDT 02:00:00 03/11 02:00:00 11/04 01:00:00 + clock protocol ntp +# + copyright-info enable +# + telnet server enable + telnet server acl 1111 +# + irf domain 123456 + irf mac-address persistent timer + irf auto-update enable + undo irf link-delay + irf member 1 priority 48 + irf member 3 priority 16 + irf mode normal +# +igmp-snooping +# + dns source-interface M-GigabitEthernet0/0/0 vpn-instance internal + dns domain example.com + dns domain example.com vpn-instance internal + dns server 192.0.2.47 vpn-instance internal + dns server 192.0.2.15 vpn-instance internal + dns server 192.0.2.11 vpn-instance internal + dns server 192.0.2.2 vpn-instance internal + dns server 192.0.2.6 vpn-instance internal +# + lldp global enable +# + password-recovery enable +# +vlan 1 +# +vlan 101 + name Test-Vlan-101 + description Test Vlan 101 +# +irf-port 1/1 + port group interface FortyGigE1/0/49 + port group interface FortyGigE1/0/50 +irf-port 2/2 + port group interface FortyGigE2/0/49 + port group interface FortyGigE2/0/50 +# +qos map-table dot1p-lp + import 0 export 0 + import 1 export 1 + import 2 export 2 +# +traffic classifier NTC-Classifier operator or + if-match dscp ntc + if-match acl 4000 +# +traffic behavior NTC-Behavior + remark dscp ntc +# +traffic behavior foo +# +qos policy NTC-Policy + classifier NTC-Classifier behavior NTC-Behavior +# +stp region-configuration + region-name NTC-Region + revision-level 100 + instance 1 vlan 1 to 4094 + active region-configuration +# + stp instance 0 to 1 priority 16384 + stp vlan 1 to 4094 priority 16384 + stp mode pvst + stp bpdu-protection + stp global enable +# + l2vpn enable +# +bgp 65003 + router-id 192.0.2.31 + timer keepalive 5 hold 15 + ip vpn-instance vpn2 + peer 192.0.2.61 as-number 65007 + peer 192.0.2.61 connect-interface LoopBack1 + peer 192.0.2.61 ebgp-max-hop 4 + peer 192.0.2.61 password cipher + peer 192.0.2.62 as-number 65007 + peer 192.0.2.62 connect-interface LoopBack1 + peer 192.0.2.62 ebgp-max-hop 4 + address-family ipv4 unicast + network 192.0.2.31 255.255.255.255 + network 192.0.2.64 255.255.255.240 + peer 192.0.2.61 enable + peer 192.0.2.61 next-hop-local + peer 192.0.2.62 enable + peer 192.0.2.62 next-hop-local +# +line class aux + user-role network-admin +# +line class vty + user-role network-operator +# +line aux 0 1 + authentication-mode scheme + user-role level-0 + idle-timeout 15 0 + command authorization +# +line vty 0 4 + authentication-mode scheme + user-role level-15 + user-role network-operator + protocol inbound ssh + idle-timeout 60 0 + command authorization +# + ip route-static vpn-instance vpn1 0.0.0.0 0 192.0.2.1 + ip route-static vpn-instance vpn2 192.0.2.61 32 192.0.2.68 description Test-Peer-2 + ip route-static vpn-instance vpn2 192.0.2.62 32 192.0.2.68 description Test-Peer-2 +# + info-center timestamp loghost no-year-date + info-center logfile enable + info-center loghost source M-GigabitEthernet0/0/0 + info-center loghost vpn-instance internal 192.0.2.195 +# + snmp-agent + snmp-agent local-engineid 123456789012345678901234567890 + snmp-agent community read Test-Community acl 1234 + snmp-agent sys-info contact Test-Contact + snmp-agent sys-info location Test-Location + snmp-agent sys-info version v2c v3 + snmp-agent trap source M-GigabitEthernet0/0/0 +# + ssh server enable + ssh server acl 1234 +# + ftp client source interface M-GigabitEthernet0/0/0 +# + ssh client source interface M-GigabitEthernet0/0/0 + sftp client source interface M-GigabitEthernet0/0/0 +# + qos vlan-policy NTC-VLAN-Policy-101 vlan 101 inbound + qos vlan-policy NTC-VLAN-Policy-102 vlan 102 inbound +# + ntp-service enable + ntp-service source M-GigabitEthernet0/0/0 + ntp-service unicast-server 192.0.2.22 vpn-instance internal + ntp-service unicast-peer 192.0.2.10 vpn-instance internal + ntp-service unicast-server ntp.example.com vpn-instance internal + ntp-service unicast-server 192.0.2.27 vpn-instance internal + ntp-service unicast-server 192.0.2.70 vpn-instance internal + ntp-service unicast-server 192.0.2.251 vpn-instance internal + ntp-service unicast-server 192.0.2.182 vpn-instance internal +# +acl number 1234 name NTC-ACL + rule 0 permit icmp destination 0.0.0.0 255.255.255.0 + rule 1 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000 + rule 1 comment hello world +# + tftp client source interface M-GigabitEthernet0/0/0 +# + header motd % +******************************************************************************* +Unauthorized Access to or Use of this System is STRICTLY PROHIBITED. + ALL Access and Use May be Monitored and Recorded. +******************************************************************************* +% +# +hwtacacs scheme NTC-HWTACACS-Scheme + primary authentication 192.0.2.112 + primary authorization 192.0.2.112 + primary accounting 192.0.2.112 + secondary authentication 192.0.2.11 + secondary authorization 192.0.2.11 + secondary accounting 192.0.2.11 + key authentication cipher + key authorization cipher + key accounting cipher + user-name-format without-domain + vpn-instance internal +# +radius scheme system + user-name-format without-domain +# +domain example.com + authentication default hwtacacs-scheme NTC-HWTACACS-Scheme local + authorization default hwtacacs-scheme NTC-HWTACACS-Scheme local + accounting default hwtacacs-scheme NTC-HWTACACS-Scheme +domain system +# + domain default enable example.com +# +role name level-0 + description NTC-Level-0 role +# +role name level-1 + description NTC-Level-1 role +# +user-group system +# +local-user NTC-Admin class manage + password hash + service-type ssh telnet terminal + authorization-attribute user-role level-15 + authorization-attribute user-role network-admin + authorization-attribute user-role network-operator +# +local-user NTC-User class manage + password hash + service-type ssh telnet + authorization-attribute user-role level-15 + authorization-attribute user-role network-admin + authorization-attribute user-role network-operator +# \ No newline at end of file diff --git a/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_received.json b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_received.json new file mode 100644 index 00000000..b6087476 --- /dev/null +++ b/tests/unit/mock/config/compliance/compliance/hp_comware/hp_comware_full_received.json @@ -0,0 +1,342 @@ +{ + "sysname": { + "compliant": false, + "missing": " sysname NTC-Router", + "extra": " sysname NTC123456", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": " sysname NTC123456", + "intended": " sysname NTC-Router" + }, + "clock": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " clock timezone EST minus 05:00:00\n clock summer-time EDT 02:00:00 03/11 02:00:00 11/04 01:00:00\n clock protocol ntp", + "intended": " clock timezone EST minus 05:00:00\n clock summer-time EDT 02:00:00 03/11 02:00:00 11/04 01:00:00\n clock protocol ntp" + }, + "copyright-info": { + "compliant": false, + "missing": " copyright-info enable", + "extra": " undo copyright-info enable", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": " undo copyright-info enable", + "intended": " copyright-info enable" + }, + "telnet": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " telnet server enable\n telnet server acl 1111", + "intended": " telnet server enable\n telnet server acl 1111" + }, + "irf": { + "compliant": false, + "missing": " irf member 1 priority 48\n irf member 3 priority 16", + "extra": " irf member 1 priority 32\n irf member 2 priority 1", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": " irf domain 123456\n irf mac-address persistent timer\n irf auto-update enable\n undo irf link-delay\n irf member 1 priority 32\n irf member 2 priority 1\n irf mode normal", + "intended": " irf domain 123456\n irf mac-address persistent timer\n irf auto-update enable\n undo irf link-delay\n irf member 1 priority 48\n irf member 3 priority 16\n irf mode normal" + }, + "igmp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "igmp-snooping", + "intended": "igmp-snooping" + }, + "dns": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " dns source-interface M-GigabitEthernet0/0/0 vpn-instance internal\n dns domain example.com\n dns domain example.com vpn-instance internal\n dns server 192.0.2.47 vpn-instance internal\n dns server 192.0.2.15 vpn-instance internal\n dns server 192.0.2.11 vpn-instance internal\n dns server 192.0.2.2 vpn-instance internal\n dns server 192.0.2.6 vpn-instance internal", + "intended": " dns source-interface M-GigabitEthernet0/0/0 vpn-instance internal\n dns domain example.com\n dns domain example.com vpn-instance internal\n dns server 192.0.2.47 vpn-instance internal\n dns server 192.0.2.15 vpn-instance internal\n dns server 192.0.2.11 vpn-instance internal\n dns server 192.0.2.2 vpn-instance internal\n dns server 192.0.2.6 vpn-instance internal" + }, + "lldp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " lldp global enable", + "intended": " lldp global enable" + }, + "password-recovery": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " password-recovery enable", + "intended": " password-recovery enable" + }, + "vlan": { + "compliant": false, + "missing": "vlan 101\n name Test-Vlan-101\n description Test Vlan 101", + "extra": "", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": "vlan 1\nvlan 101", + "intended": "vlan 1\nvlan 101\n name Test-Vlan-101\n description Test Vlan 101" + }, + "irf-port": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "irf-port 1/1\n port group interface FortyGigE1/0/49\n port group interface FortyGigE1/0/50\nirf-port 2/2\n port group interface FortyGigE2/0/49\n port group interface FortyGigE2/0/50", + "intended": "irf-port 1/1\n port group interface FortyGigE1/0/49\n port group interface FortyGigE1/0/50\nirf-port 2/2\n port group interface FortyGigE2/0/49\n port group interface FortyGigE2/0/50" + }, + "qos map-table": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "qos map-table dot1p-lp\n import 0 export 0\n import 1 export 1\n import 2 export 2", + "intended": "qos map-table dot1p-lp\n import 0 export 0\n import 1 export 1\n import 2 export 2" + }, + "qos policy": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "qos policy NTC-Policy\n classifier NTC-Classifier behavior NTC-Behavior", + "intended": "qos policy NTC-Policy\n classifier NTC-Classifier behavior NTC-Behavior" + }, + "qos vlan-policy": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " qos vlan-policy NTC-VLAN-Policy-101 vlan 101 inbound\n qos vlan-policy NTC-VLAN-Policy-102 vlan 102 inbound", + "intended": " qos vlan-policy NTC-VLAN-Policy-101 vlan 101 inbound\n qos vlan-policy NTC-VLAN-Policy-102 vlan 102 inbound" + }, + "stp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "stp region-configuration\n region-name NTC-Region\n revision-level 100\n instance 1 vlan 1 to 4094\n active region-configuration\n stp instance 0 to 1 priority 16384\n stp vlan 1 to 4094 priority 16384\n stp mode pvst\n stp bpdu-protection\n stp global enable", + "intended": "stp region-configuration\n region-name NTC-Region\n revision-level 100\n instance 1 vlan 1 to 4094\n active region-configuration\n stp instance 0 to 1 priority 16384\n stp vlan 1 to 4094 priority 16384\n stp mode pvst\n stp bpdu-protection\n stp global enable" + }, + "l2vpn": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " l2vpn enable", + "intended": " l2vpn enable" + }, + "bgp": { + "compliant": false, + "missing": "bgp 65003\n ip vpn-instance vpn2\n peer 192.0.2.61 as-number 65007\n peer 192.0.2.61 ebgp-max-hop 4\n peer 192.0.2.62 as-number 65007\n peer 192.0.2.62 ebgp-max-hop 4", + "extra": "bgp 65003\n ip vpn-instance vpn2\n peer 192.0.2.61 as-number 65006\n peer 192.0.2.61 ebgp-max-hop 3\n peer 192.0.2.62 as-number 65006\n peer 192.0.2.62 ebgp-max-hop 3\n address-family ipv4 unicast\n network 192.0.2.8 255.255.255.248\n network 192.0.2.0 255.255.255.240\n network 192.0.2.16 255.255.255.240\n network 192.0.2.32 255.255.255.240\n network 192.0.2.48 255.255.255.240", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": "bgp 65003\n router-id 192.0.2.31\n timer keepalive 5 hold 15\n ip vpn-instance vpn2\n peer 192.0.2.61 as-number 65006\n peer 192.0.2.61 connect-interface LoopBack1\n peer 192.0.2.61 ebgp-max-hop 3\n peer 192.0.2.61 password cipher \n peer 192.0.2.62 as-number 65006\n peer 192.0.2.62 connect-interface LoopBack1\n peer 192.0.2.62 ebgp-max-hop 3\n address-family ipv4 unicast\n network 192.0.2.31 255.255.255.255\n network 192.0.2.8 255.255.255.248\n network 192.0.2.0 255.255.255.240\n network 192.0.2.16 255.255.255.240\n network 192.0.2.32 255.255.255.240\n network 192.0.2.48 255.255.255.240\n network 192.0.2.64 255.255.255.240\n peer 192.0.2.61 enable\n peer 192.0.2.61 next-hop-local\n peer 192.0.2.62 enable\n peer 192.0.2.62 next-hop-local", + "intended": "bgp 65003\n router-id 192.0.2.31\n timer keepalive 5 hold 15\n ip vpn-instance vpn2\n peer 192.0.2.61 as-number 65007\n peer 192.0.2.61 connect-interface LoopBack1\n peer 192.0.2.61 ebgp-max-hop 4\n peer 192.0.2.61 password cipher \n peer 192.0.2.62 as-number 65007\n peer 192.0.2.62 connect-interface LoopBack1\n peer 192.0.2.62 ebgp-max-hop 4\n address-family ipv4 unicast\n network 192.0.2.31 255.255.255.255\n network 192.0.2.64 255.255.255.240\n peer 192.0.2.61 enable\n peer 192.0.2.61 next-hop-local\n peer 192.0.2.62 enable\n peer 192.0.2.62 next-hop-local" + }, + "line": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "line class aux\n user-role network-admin\nline class vty\n user-role network-operator\nline aux 0 1\n authentication-mode scheme\n user-role level-0\n idle-timeout 15 0\n command authorization\nline vty 0 4\n authentication-mode scheme\n user-role level-15\n user-role network-operator\n protocol inbound ssh\n idle-timeout 60 0\n command authorization", + "intended": "line class aux\n user-role network-admin\nline class vty\n user-role network-operator\nline aux 0 1\n authentication-mode scheme\n user-role level-0\n idle-timeout 15 0\n command authorization\nline vty 0 4\n authentication-mode scheme\n user-role level-15\n user-role network-operator\n protocol inbound ssh\n idle-timeout 60 0\n command authorization" + }, + "ip route-static": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " ip route-static vpn-instance vpn1 0.0.0.0 0 192.0.2.1\n ip route-static vpn-instance vpn2 192.0.2.61 32 192.0.2.68 description Test-Peer-2\n ip route-static vpn-instance vpn2 192.0.2.62 32 192.0.2.68 description Test-Peer-2", + "intended": " ip route-static vpn-instance vpn1 0.0.0.0 0 192.0.2.1\n ip route-static vpn-instance vpn2 192.0.2.61 32 192.0.2.68 description Test-Peer-2\n ip route-static vpn-instance vpn2 192.0.2.62 32 192.0.2.68 description Test-Peer-2" + }, + "info-center": { + "compliant": false, + "missing": " info-center logfile enable", + "extra": " undo info-center logfile enable\n info-center loghost vpn-instance internal 192.0.2.132\n info-center loghost vpn-instance internal 192.0.2.227\n info-center loghost vpn-instance internal 192.0.2.18", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": " info-center timestamp loghost no-year-date\n undo info-center logfile enable\n info-center loghost source M-GigabitEthernet0/0/0\n info-center loghost vpn-instance internal 192.0.2.132\n info-center loghost vpn-instance internal 192.0.2.227\n info-center loghost vpn-instance internal 192.0.2.18\n info-center loghost vpn-instance internal 192.0.2.195", + "intended": " info-center timestamp loghost no-year-date\n info-center logfile enable\n info-center loghost source M-GigabitEthernet0/0/0\n info-center loghost vpn-instance internal 192.0.2.195" + }, + "snmp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " snmp-agent\n snmp-agent local-engineid 123456789012345678901234567890\n snmp-agent community read Test-Community acl 1234\n snmp-agent sys-info contact Test-Contact\n snmp-agent sys-info location Test-Location\n snmp-agent sys-info version v2c v3\n snmp-agent trap source M-GigabitEthernet0/0/0", + "intended": " snmp-agent\n snmp-agent local-engineid 123456789012345678901234567890\n snmp-agent community read Test-Community acl 1234\n snmp-agent sys-info contact Test-Contact\n snmp-agent sys-info location Test-Location\n snmp-agent sys-info version v2c v3\n snmp-agent trap source M-GigabitEthernet0/0/0" + }, + "ssh": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " ssh server enable\n ssh server acl 1234\n ssh client source interface M-GigabitEthernet0/0/0", + "intended": " ssh server enable\n ssh server acl 1234\n ssh client source interface M-GigabitEthernet0/0/0" + }, + "ftp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " ftp client source interface M-GigabitEthernet0/0/0", + "intended": " ftp client source interface M-GigabitEthernet0/0/0" + }, + "sftp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " sftp client source interface M-GigabitEthernet0/0/0", + "intended": " sftp client source interface M-GigabitEthernet0/0/0" + }, + "ntp": { + "compliant": false, + "missing": " ntp-service unicast-server ntp.example.com vpn-instance internal", + "extra": "", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": " ntp-service enable\n ntp-service source M-GigabitEthernet0/0/0\n ntp-service unicast-server 192.0.2.22 vpn-instance internal\n ntp-service unicast-peer 192.0.2.10 vpn-instance internal\n ntp-service unicast-server 192.0.2.27 vpn-instance internal\n ntp-service unicast-server 192.0.2.70 vpn-instance internal\n ntp-service unicast-server 192.0.2.251 vpn-instance internal\n ntp-service unicast-server 192.0.2.182 vpn-instance internal", + "intended": " ntp-service enable\n ntp-service source M-GigabitEthernet0/0/0\n ntp-service unicast-server 192.0.2.22 vpn-instance internal\n ntp-service unicast-peer 192.0.2.10 vpn-instance internal\n ntp-service unicast-server ntp.example.com vpn-instance internal\n ntp-service unicast-server 192.0.2.27 vpn-instance internal\n ntp-service unicast-server 192.0.2.70 vpn-instance internal\n ntp-service unicast-server 192.0.2.251 vpn-instance internal\n ntp-service unicast-server 192.0.2.182 vpn-instance internal" + }, + "acl": { + "compliant": false, + "missing": "acl number 1234 name NTC-ACL\n rule 0 permit icmp destination 0.0.0.0 255.255.255.0\n rule 1 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000\n rule 1 comment hello world", + "extra": "acl number 1234 name NTC-ACL\n rule 0 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000\n rule 0 comment hello world", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": "acl number 1234 name NTC-ACL\n rule 0 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000\n rule 0 comment hello world", + "intended": "acl number 1234 name NTC-ACL\n rule 0 permit icmp destination 0.0.0.0 255.255.255.0\n rule 1 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000\n rule 1 comment hello world" + }, + "tftp": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " tftp client source interface M-GigabitEthernet0/0/0", + "intended": " tftp client source interface M-GigabitEthernet0/0/0" + }, + "header": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": " header motd %\n*******************************************************************************\nUnauthorized Access to or Use of this System is STRICTLY PROHIBITED.\n ALL Access and Use May be Monitored and Recorded.\n*******************************************************************************\n%", + "intended": " header motd %\n*******************************************************************************\nUnauthorized Access to or Use of this System is STRICTLY PROHIBITED.\n ALL Access and Use May be Monitored and Recorded.\n*******************************************************************************\n%" + }, + "hwtacacs": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "hwtacacs scheme NTC-HWTACACS-Scheme\n primary authentication 192.0.2.112\n primary authorization 192.0.2.112\n primary accounting 192.0.2.112\n secondary authentication 192.0.2.11\n secondary authorization 192.0.2.11\n secondary accounting 192.0.2.11\n key authentication cipher \n key authorization cipher \n key accounting cipher \n user-name-format without-domain\n vpn-instance internal", + "intended": "hwtacacs scheme NTC-HWTACACS-Scheme\n primary authentication 192.0.2.112\n primary authorization 192.0.2.112\n primary accounting 192.0.2.112\n secondary authentication 192.0.2.11\n secondary authorization 192.0.2.11\n secondary accounting 192.0.2.11\n key authentication cipher \n key authorization cipher \n key accounting cipher \n user-name-format without-domain\n vpn-instance internal" + }, + "radius": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "radius scheme system\n user-name-format without-domain", + "intended": "radius scheme system\n user-name-format without-domain" + }, + "domain": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "domain example.com\n authentication default hwtacacs-scheme NTC-HWTACACS-Scheme local\n authorization default hwtacacs-scheme NTC-HWTACACS-Scheme local\n accounting default hwtacacs-scheme NTC-HWTACACS-Scheme\ndomain system\n domain default enable example.com", + "intended": "domain example.com\n authentication default hwtacacs-scheme NTC-HWTACACS-Scheme local\n authorization default hwtacacs-scheme NTC-HWTACACS-Scheme local\n accounting default hwtacacs-scheme NTC-HWTACACS-Scheme\ndomain system\n domain default enable example.com" + }, + "role": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "role name level-0\n description NTC-Level-0 role\nrole name level-1\n description NTC-Level-1 role", + "intended": "role name level-0\n description NTC-Level-0 role\nrole name level-1\n description NTC-Level-1 role" + }, + "user-group": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "user-group system", + "intended": "user-group system" + }, + "local-user": { + "compliant": true, + "missing": "", + "extra": "", + "cannot_parse": true, + "unordered_compliant": true, + "ordered_compliant": true, + "actual": "local-user NTC-Admin class manage\n password hash \n service-type ssh telnet terminal\n authorization-attribute user-role level-15\n authorization-attribute user-role network-admin\n authorization-attribute user-role network-operator\nlocal-user NTC-User class manage\n password hash \n service-type ssh telnet\n authorization-attribute user-role level-15\n authorization-attribute user-role network-admin\n authorization-attribute user-role network-operator", + "intended": "local-user NTC-Admin class manage\n password hash \n service-type ssh telnet terminal\n authorization-attribute user-role level-15\n authorization-attribute user-role network-admin\n authorization-attribute user-role network-operator\nlocal-user NTC-User class manage\n password hash \n service-type ssh telnet\n authorization-attribute user-role level-15\n authorization-attribute user-role network-admin\n authorization-attribute user-role network-operator" + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_received.py b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_received.py new file mode 100644 index 00000000..92ba6493 --- /dev/null +++ b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_received.py @@ -0,0 +1,316 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="version 7.1.045, Release 2418P06", parents=()), + ConfigLine(config_line=" sysname NTC123456", parents=()), + ConfigLine(config_line=" clock timezone EST minus 05:00:00", parents=()), + ConfigLine( + config_line=" clock summer-time EDT 02:00:00 03/11 02:00:00 11/04 01:00:00", + parents=(), + ), + ConfigLine(config_line=" clock protocol ntp", parents=()), + ConfigLine(config_line=" undo copyright-info enable", parents=()), + ConfigLine(config_line="ip vpn-instance vpn1", parents=()), + ConfigLine(config_line=" route-distinguisher 65001:1", parents=("ip vpn-instance vpn1",)), + ConfigLine(config_line=" description vpn1", parents=("ip vpn-instance vpn1",)), + ConfigLine(config_line=" vpn-target 65001:1 import-extcommunity", parents=("ip vpn-instance vpn1",)), + ConfigLine(config_line=" vpn-target 65001:1 export-extcommunity", parents=("ip vpn-instance vpn1",)), + ConfigLine(config_line="ip vpn-instance internal", parents=()), + ConfigLine(config_line=" route-distinguisher 1:1", parents=("ip vpn-instance internal",)), + ConfigLine(config_line=" description internal", parents=("ip vpn-instance internal",)), + ConfigLine(config_line=" telnet server enable", parents=()), + ConfigLine(config_line=" telnet server acl 1111", parents=()), + ConfigLine(config_line=" irf domain 123456", parents=()), + ConfigLine(config_line=" irf mac-address persistent timer", parents=()), + ConfigLine(config_line=" irf auto-update enable", parents=()), + ConfigLine(config_line=" undo irf link-delay", parents=()), + ConfigLine(config_line=" irf member 1 priority 32", parents=()), + ConfigLine(config_line=" irf member 2 priority 1", parents=()), + ConfigLine(config_line=" irf mode normal", parents=()), + ConfigLine(config_line="igmp-snooping", parents=()), + ConfigLine(config_line=" dns source-interface M-GigabitEthernet0/0/0 vpn-instance internal", parents=()), + ConfigLine(config_line=" dns domain example.com", parents=()), + ConfigLine(config_line=" dns domain example.com vpn-instance internal", parents=()), + ConfigLine(config_line=" dns server 192.0.2.47 vpn-instance internal", parents=()), + ConfigLine(config_line=" dns server 192.0.2.15 vpn-instance internal", parents=()), + ConfigLine(config_line=" dns server 192.0.2.11 vpn-instance internal", parents=()), + ConfigLine(config_line=" dns server 192.0.2.2 vpn-instance internal", parents=()), + ConfigLine(config_line=" dns server 192.0.2.6 vpn-instance internal", parents=()), + ConfigLine(config_line=" lldp global enable", parents=()), + ConfigLine(config_line=" system-working-mode standard", parents=()), + ConfigLine(config_line=" password-recovery enable", parents=()), + ConfigLine(config_line="vlan 1", parents=()), + ConfigLine(config_line="vlan 101", parents=()), + ConfigLine(config_line=" name Test-Vlan-101", parents=("vlan 101",)), + ConfigLine(config_line=" description Test Vlan 101", parents=("vlan 101",)), + ConfigLine(config_line="irf-port 1/1", parents=()), + ConfigLine(config_line=" port group interface FortyGigE1/0/49", parents=("irf-port 1/1",)), + ConfigLine(config_line=" port group interface FortyGigE1/0/50", parents=("irf-port 1/1",)), + ConfigLine(config_line="irf-port 2/2", parents=()), + ConfigLine(config_line=" port group interface FortyGigE2/0/49", parents=("irf-port 2/2",)), + ConfigLine(config_line=" port group interface FortyGigE2/0/50", parents=("irf-port 2/2",)), + ConfigLine(config_line="qos map-table dot1p-lp", parents=()), + ConfigLine(config_line=" import 0 export 0", parents=("qos map-table dot1p-lp",)), + ConfigLine(config_line=" import 1 export 1", parents=("qos map-table dot1p-lp",)), + ConfigLine(config_line=" import 2 export 2", parents=("qos map-table dot1p-lp",)), + ConfigLine(config_line="traffic classifier NTC-Classifier operator or", parents=()), + ConfigLine(config_line=" if-match dscp ntc", parents=("traffic classifier NTC-Classifier operator or",)), + ConfigLine(config_line=" if-match acl 4000", parents=("traffic classifier NTC-Classifier operator or",)), + ConfigLine(config_line="traffic behavior NTC-Behavior", parents=()), + ConfigLine(config_line=" remark dscp ntc", parents=("traffic behavior NTC-Behavior",)), + ConfigLine(config_line="traffic behavior foo", parents=()), + ConfigLine(config_line="qos policy NTC-Policy", parents=()), + ConfigLine(config_line=" classifier NTC-Classifier behavior NTC-Behavior", parents=("qos policy NTC-Policy",)), + ConfigLine(config_line="stp region-configuration", parents=()), + ConfigLine(config_line=" region-name NTC-Region", parents=("stp region-configuration",)), + ConfigLine(config_line=" revision-level 100", parents=("stp region-configuration",)), + ConfigLine(config_line=" instance 1 vlan 1 to 4094", parents=("stp region-configuration",)), + ConfigLine(config_line=" active region-configuration", parents=("stp region-configuration",)), + ConfigLine(config_line=" stp instance 0 to 1 priority 16384", parents=()), + ConfigLine(config_line=" stp vlan 1 to 4094 priority 16384", parents=()), + ConfigLine(config_line=" stp mode pvst", parents=()), + ConfigLine(config_line=" stp bpdu-protection", parents=()), + ConfigLine(config_line=" stp global enable", parents=()), + ConfigLine(config_line=" l2vpn enable", parents=()), + ConfigLine(config_line="interface NULL0", parents=()), + ConfigLine(config_line="interface LoopBack1", parents=()), + ConfigLine(config_line=" ip binding vpn-instance internal", parents=("interface LoopBack1",)), + ConfigLine(config_line=" ip address 192.0.2.1 255.255.255.255", parents=("interface LoopBack1",)), + ConfigLine(config_line="interface Vlan-interface102", parents=()), + ConfigLine(config_line=" shutdown", parents=("interface Vlan-interface102",)), + ConfigLine(config_line=" ip binding vpn-instance vpn2", parents=("interface Vlan-interface102",)), + ConfigLine(config_line=" ip address 192.0.2.2 255.255.255.255", parents=("interface Vlan-interface102",)), + ConfigLine(config_line="interface Ten-GigabitEthernet1/0/1", parents=()), + ConfigLine(config_line=" port link-mode bridge", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" description Test-Port-1", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" undo enable snmp trap updown", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" undo enable log updown", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" port link-type trunk", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" undo port trunk permit vlan 1", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine( + config_line=" port trunk permit vlan 101 to 102 104 to 105", parents=("interface Ten-GigabitEthernet1/0/1",) + ), + ConfigLine(config_line=" port trunk pvid vlan 103", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" stp edged-port", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine( + config_line=" lldp agent nearest-customer admin-status txrx", parents=("interface Ten-GigabitEthernet1/0/1",) + ), + ConfigLine(config_line=" sflow flow collector 1", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" sflow sampling-rate 1000", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" sflow counter collector 1", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" sflow counter interval 2", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos trust dscp", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq weight", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq af1 group 1 weight 2", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq af2 group 1 weight 2", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq af3 group 1 weight 4", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq ef group sp", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq cs6 group sp", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos wfq cs7 group sp", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos bandwidth queue be min 500000", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos bandwidth queue af1 min 500000", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos bandwidth queue af2 min 2000000", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos bandwidth queue af3 min 6500000", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line=" qos bandwidth queue af4 min 100000", parents=("interface Ten-GigabitEthernet1/0/1",)), + ConfigLine(config_line="bgp 65003", parents=()), + ConfigLine(config_line=" router-id 192.0.2.31", parents=("bgp 65003",)), + ConfigLine(config_line=" timer keepalive 5 hold 15", parents=("bgp 65003",)), + ConfigLine(config_line=" ip vpn-instance vpn2", parents=("bgp 65003",)), + ConfigLine(config_line=" peer 192.0.2.61 as-number 65006", parents=("bgp 65003", " ip vpn-instance vpn2")), + ConfigLine( + config_line=" peer 192.0.2.61 connect-interface LoopBack1", parents=("bgp 65003", " ip vpn-instance vpn2") + ), + ConfigLine(config_line=" peer 192.0.2.61 ebgp-max-hop 3", parents=("bgp 65003", " ip vpn-instance vpn2")), + ConfigLine( + config_line=" peer 192.0.2.61 password cipher $c$3$123456789012345678901234567890", + parents=("bgp 65003", " ip vpn-instance vpn2"), + ), + ConfigLine(config_line=" peer 192.0.2.62 as-number 65006", parents=("bgp 65003", " ip vpn-instance vpn2")), + ConfigLine( + config_line=" peer 192.0.2.62 connect-interface LoopBack1", parents=("bgp 65003", " ip vpn-instance vpn2") + ), + ConfigLine(config_line=" peer 192.0.2.62 ebgp-max-hop 3", parents=("bgp 65003", " ip vpn-instance vpn2")), + ConfigLine(config_line=" address-family ipv4 unicast", parents=("bgp 65003", " ip vpn-instance vpn2")), + ConfigLine( + config_line=" network 192.0.2.31 255.255.255.255", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" network 192.0.2.8 255.255.255.248", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" network 192.0.2.0 255.255.255.240", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" network 192.0.2.16 255.255.255.240", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" network 192.0.2.32 255.255.255.240", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" network 192.0.2.48 255.255.255.240", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" network 192.0.2.64 255.255.255.240", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" peer 192.0.2.61 enable", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" peer 192.0.2.61 next-hop-local", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" peer 192.0.2.62 enable", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine( + config_line=" peer 192.0.2.62 next-hop-local", + parents=("bgp 65003", " ip vpn-instance vpn2", " address-family ipv4 unicast"), + ), + ConfigLine(config_line=" scheduler logfile size 16", parents=()), + ConfigLine(config_line="line class aux", parents=()), + ConfigLine(config_line=" user-role network-admin", parents=("line class aux",)), + ConfigLine(config_line="line class vty", parents=()), + ConfigLine(config_line=" user-role network-operator", parents=("line class vty",)), + ConfigLine(config_line="line aux 0 1", parents=()), + ConfigLine(config_line=" authentication-mode scheme", parents=("line aux 0 1",)), + ConfigLine(config_line=" user-role level-0", parents=("line aux 0 1",)), + ConfigLine(config_line=" idle-timeout 15 0", parents=("line aux 0 1",)), + ConfigLine(config_line=" command authorization", parents=("line aux 0 1",)), + ConfigLine(config_line="line vty 0 4", parents=()), + ConfigLine(config_line=" authentication-mode scheme", parents=("line vty 0 4",)), + ConfigLine(config_line=" user-role level-15", parents=("line vty 0 4",)), + ConfigLine(config_line=" user-role network-operator", parents=("line vty 0 4",)), + ConfigLine(config_line=" protocol inbound ssh", parents=("line vty 0 4",)), + ConfigLine(config_line=" idle-timeout 60 0", parents=("line vty 0 4",)), + ConfigLine(config_line=" command authorization", parents=("line vty 0 4",)), + ConfigLine(config_line=" ip route-static vpn-instance vpn1 0.0.0.0 0 192.0.2.1", parents=()), + ConfigLine( + config_line=" ip route-static vpn-instance vpn2 192.0.2.61 32 192.0.2.68 description Test-Peer-2", + parents=(), + ), + ConfigLine( + config_line=" ip route-static vpn-instance vpn2 192.0.2.62 32 192.0.2.68 description Test-Peer-2", + parents=(), + ), + ConfigLine(config_line=" info-center timestamp loghost no-year-date", parents=()), + ConfigLine(config_line=" undo info-center logfile enable", parents=()), + ConfigLine(config_line=" info-center loghost source M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" info-center loghost vpn-instance internal 192.0.2.132", parents=()), + ConfigLine(config_line=" info-center loghost vpn-instance internal 192.0.2.227", parents=()), + ConfigLine(config_line=" info-center loghost vpn-instance internal 192.0.2.18", parents=()), + ConfigLine(config_line=" info-center loghost vpn-instance internal 192.0.2.195", parents=()), + ConfigLine(config_line=" snmp-agent", parents=()), + ConfigLine(config_line=" snmp-agent local-engineid 123456789012345678901234567890", parents=()), + ConfigLine(config_line=" snmp-agent community read Test-Community acl 1234", parents=()), + ConfigLine(config_line=" snmp-agent sys-info contact Test-Contact", parents=()), + ConfigLine(config_line=" snmp-agent sys-info location Test-Location", parents=()), + ConfigLine(config_line=" snmp-agent sys-info version v2c v3", parents=()), + ConfigLine(config_line=" snmp-agent trap source M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" ssh server enable", parents=()), + ConfigLine(config_line=" ssh server acl 1234", parents=()), + ConfigLine(config_line=" ftp client source interface M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" ssh client source interface M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" sftp client source interface M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" qos vlan-policy NTC-VLAN-Policy-101 vlan 101 inbound", parents=()), + ConfigLine(config_line=" qos vlan-policy NTC-VLAN-Policy-102 vlan 102 inbound", parents=()), + ConfigLine(config_line=" ntp-service enable", parents=()), + ConfigLine(config_line=" ntp-service source M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" ntp-service unicast-server 192.0.2.22 vpn-instance internal", parents=()), + ConfigLine(config_line=" ntp-service unicast-peer 192.0.2.10 vpn-instance internal", parents=()), + ConfigLine(config_line=" ntp-service unicast-server ntp.example.com vpn-instance internal", parents=()), + ConfigLine(config_line=" ntp-service unicast-server 192.0.2.27 vpn-instance internal", parents=()), + ConfigLine(config_line=" ntp-service unicast-server 192.0.2.70 vpn-instance internal", parents=()), + ConfigLine(config_line=" ntp-service unicast-server 192.0.2.251 vpn-instance internal", parents=()), + ConfigLine(config_line=" ntp-service unicast-server 192.0.2.182 vpn-instance internal", parents=()), + ConfigLine(config_line="acl number 1234 name NTC-ACL", parents=()), + ConfigLine( + config_line=" rule 0 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000", + parents=("acl number 1234 name NTC-ACL",), + ), + ConfigLine(config_line=" rule 0 comment hello world", parents=("acl number 1234 name NTC-ACL",)), + ConfigLine(config_line=" tftp client source interface M-GigabitEthernet0/0/0", parents=()), + ConfigLine(config_line=" header motd %", parents=()), + ConfigLine( + config_line="*******************************************************************************\nUnauthorized Access to or Use of this System is STRICTLY PROHIBITED.\n ALL Access and Use May be Monitored and Recorded.\n*******************************************************************************\n%", + parents=(" header motd %",), + ), + ConfigLine(config_line="hwtacacs scheme NTC-HWTACACS-Scheme", parents=()), + ConfigLine(config_line=" primary authentication 192.0.2.112", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line=" primary authorization 192.0.2.112", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line=" primary accounting 192.0.2.112", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line=" secondary authentication 192.0.2.11", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line=" secondary authorization 192.0.2.11", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line=" secondary accounting 192.0.2.11", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine( + config_line=" key authentication cipher $c$3$123456789012345678901234567890", + parents=("hwtacacs scheme NTC-HWTACACS-Scheme",), + ), + ConfigLine( + config_line=" key authorization cipher $c$3$123456789012345678901234567890", + parents=("hwtacacs scheme NTC-HWTACACS-Scheme",), + ), + ConfigLine( + config_line=" key accounting cipher $c$3$123456789012345678901234567890", + parents=("hwtacacs scheme NTC-HWTACACS-Scheme",), + ), + ConfigLine(config_line=" user-name-format without-domain", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line=" vpn-instance internal", parents=("hwtacacs scheme NTC-HWTACACS-Scheme",)), + ConfigLine(config_line="radius scheme system", parents=()), + ConfigLine(config_line=" user-name-format without-domain", parents=("radius scheme system",)), + ConfigLine(config_line="domain example.com", parents=()), + ConfigLine( + config_line=" authentication default hwtacacs-scheme NTC-HWTACACS-Scheme local", parents=("domain example.com",) + ), + ConfigLine( + config_line=" authorization default hwtacacs-scheme NTC-HWTACACS-Scheme local", parents=("domain example.com",) + ), + ConfigLine(config_line=" accounting default hwtacacs-scheme NTC-HWTACACS-Scheme", parents=("domain example.com",)), + ConfigLine(config_line="domain system", parents=()), + ConfigLine(config_line=" domain default enable example.com", parents=()), + ConfigLine(config_line="role name level-0", parents=()), + ConfigLine(config_line=" description NTC-Level-0 role", parents=("role name level-0",)), + ConfigLine(config_line="role name level-1", parents=()), + ConfigLine(config_line=" description NTC-Level-1 role", parents=("role name level-1",)), + ConfigLine(config_line="user-group system", parents=()), + ConfigLine(config_line="local-user NTC-Admin class manage", parents=()), + ConfigLine( + config_line=" password hash $h$6$123456789012345678901234567890$12345678901234567890123456789012345678901234567890123456789012345678901234567890", + parents=("local-user NTC-Admin class manage",), + ), + ConfigLine(config_line=" service-type ssh telnet terminal", parents=("local-user NTC-Admin class manage",)), + ConfigLine( + config_line=" authorization-attribute user-role level-15", parents=("local-user NTC-Admin class manage",) + ), + ConfigLine( + config_line=" authorization-attribute user-role network-admin", parents=("local-user NTC-Admin class manage",) + ), + ConfigLine( + config_line=" authorization-attribute user-role network-operator", + parents=("local-user NTC-Admin class manage",), + ), + ConfigLine(config_line="local-user NTC-User class manage", parents=()), + ConfigLine( + config_line=" password hash $h$6$123456789012345678901234567890$12345678901234567890123456789012345678901234567890123456789012345678901234567890", + parents=("local-user NTC-User class manage",), + ), + ConfigLine(config_line=" service-type ssh telnet", parents=("local-user NTC-User class manage",)), + ConfigLine( + config_line=" authorization-attribute user-role level-15", parents=("local-user NTC-User class manage",) + ), + ConfigLine( + config_line=" authorization-attribute user-role network-admin", parents=("local-user NTC-User class manage",) + ), + ConfigLine( + config_line=" authorization-attribute user-role network-operator", parents=("local-user NTC-User class manage",) + ), + ConfigLine(config_line="return", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_sent.txt b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_sent.txt new file mode 100644 index 00000000..316bdf43 --- /dev/null +++ b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_full_sent.txt @@ -0,0 +1,283 @@ +# +version 7.1.045, Release 2418P06 +# + sysname NTC123456 +# + clock timezone EST minus 05:00:00 + clock summer-time EDT 02:00:00 03/11 02:00:00 11/04 01:00:00 + clock protocol ntp +# + undo copyright-info enable +# +ip vpn-instance vpn1 + route-distinguisher 65001:1 + description vpn1 + vpn-target 65001:1 import-extcommunity + vpn-target 65001:1 export-extcommunity +# +ip vpn-instance internal + route-distinguisher 1:1 + description internal +# + telnet server enable + telnet server acl 1111 +# + irf domain 123456 + irf mac-address persistent timer + irf auto-update enable + undo irf link-delay + irf member 1 priority 32 + irf member 2 priority 1 + irf mode normal +# +igmp-snooping +# + dns source-interface M-GigabitEthernet0/0/0 vpn-instance internal + dns domain example.com + dns domain example.com vpn-instance internal + dns server 192.0.2.47 vpn-instance internal + dns server 192.0.2.15 vpn-instance internal + dns server 192.0.2.11 vpn-instance internal + dns server 192.0.2.2 vpn-instance internal + dns server 192.0.2.6 vpn-instance internal +# + lldp global enable +# + system-working-mode standard + password-recovery enable +# +vlan 1 +# +vlan 101 + name Test-Vlan-101 + description Test Vlan 101 +# +irf-port 1/1 + port group interface FortyGigE1/0/49 + port group interface FortyGigE1/0/50 +# +irf-port 2/2 + port group interface FortyGigE2/0/49 + port group interface FortyGigE2/0/50 +# +qos map-table dot1p-lp + import 0 export 0 + import 1 export 1 + import 2 export 2 +# +traffic classifier NTC-Classifier operator or + if-match dscp ntc + if-match acl 4000 +# +traffic behavior NTC-Behavior + remark dscp ntc +# +traffic behavior foo +# +qos policy NTC-Policy + classifier NTC-Classifier behavior NTC-Behavior +# +stp region-configuration + region-name NTC-Region + revision-level 100 + instance 1 vlan 1 to 4094 + active region-configuration +# + stp instance 0 to 1 priority 16384 + stp vlan 1 to 4094 priority 16384 + stp mode pvst + stp bpdu-protection + stp global enable +# + l2vpn enable +# +interface NULL0 +# +interface LoopBack1 + ip binding vpn-instance internal + ip address 192.0.2.1 255.255.255.255 +# +interface Vlan-interface102 + shutdown + ip binding vpn-instance vpn2 + ip address 192.0.2.2 255.255.255.255 +# +interface Ten-GigabitEthernet1/0/1 + port link-mode bridge + description Test-Port-1 + undo enable snmp trap updown + undo enable log updown + port link-type trunk + undo port trunk permit vlan 1 + port trunk permit vlan 101 to 102 104 to 105 + port trunk pvid vlan 103 + stp edged-port + lldp agent nearest-customer admin-status txrx + sflow flow collector 1 + sflow sampling-rate 1000 + sflow counter collector 1 + sflow counter interval 2 + qos trust dscp + qos wfq weight + qos wfq af1 group 1 weight 2 + qos wfq af2 group 1 weight 2 + qos wfq af3 group 1 weight 4 + qos wfq ef group sp + qos wfq cs6 group sp + qos wfq cs7 group sp + qos bandwidth queue be min 500000 + qos bandwidth queue af1 min 500000 + qos bandwidth queue af2 min 2000000 + qos bandwidth queue af3 min 6500000 + qos bandwidth queue af4 min 100000 +# +bgp 65003 + router-id 192.0.2.31 + timer keepalive 5 hold 15 + # + ip vpn-instance vpn2 + peer 192.0.2.61 as-number 65006 + peer 192.0.2.61 connect-interface LoopBack1 + peer 192.0.2.61 ebgp-max-hop 3 + peer 192.0.2.61 password cipher $c$3$123456789012345678901234567890 + peer 192.0.2.62 as-number 65006 + peer 192.0.2.62 connect-interface LoopBack1 + peer 192.0.2.62 ebgp-max-hop 3 + # + address-family ipv4 unicast + network 192.0.2.31 255.255.255.255 + network 192.0.2.8 255.255.255.248 + network 192.0.2.0 255.255.255.240 + network 192.0.2.16 255.255.255.240 + network 192.0.2.32 255.255.255.240 + network 192.0.2.48 255.255.255.240 + network 192.0.2.64 255.255.255.240 + peer 192.0.2.61 enable + peer 192.0.2.61 next-hop-local + peer 192.0.2.62 enable + peer 192.0.2.62 next-hop-local +# + scheduler logfile size 16 +# +line class aux + user-role network-admin +# +line class vty + user-role network-operator +# +line aux 0 1 + authentication-mode scheme + user-role level-0 + idle-timeout 15 0 + command authorization +# +line vty 0 4 + authentication-mode scheme + user-role level-15 + user-role network-operator + protocol inbound ssh + idle-timeout 60 0 + command authorization +# + ip route-static vpn-instance vpn1 0.0.0.0 0 192.0.2.1 + ip route-static vpn-instance vpn2 192.0.2.61 32 192.0.2.68 description Test-Peer-2 + ip route-static vpn-instance vpn2 192.0.2.62 32 192.0.2.68 description Test-Peer-2 +# + info-center timestamp loghost no-year-date + undo info-center logfile enable + info-center loghost source M-GigabitEthernet0/0/0 + info-center loghost vpn-instance internal 192.0.2.132 + info-center loghost vpn-instance internal 192.0.2.227 + info-center loghost vpn-instance internal 192.0.2.18 + info-center loghost vpn-instance internal 192.0.2.195 +# + snmp-agent + snmp-agent local-engineid 123456789012345678901234567890 + snmp-agent community read Test-Community acl 1234 + snmp-agent sys-info contact Test-Contact + snmp-agent sys-info location Test-Location + snmp-agent sys-info version v2c v3 + snmp-agent trap source M-GigabitEthernet0/0/0 +# + ssh server enable + ssh server acl 1234 +# + ftp client source interface M-GigabitEthernet0/0/0 +# + ssh client source interface M-GigabitEthernet0/0/0 + sftp client source interface M-GigabitEthernet0/0/0 +# + qos vlan-policy NTC-VLAN-Policy-101 vlan 101 inbound + qos vlan-policy NTC-VLAN-Policy-102 vlan 102 inbound +# + ntp-service enable + ntp-service source M-GigabitEthernet0/0/0 + ntp-service unicast-server 192.0.2.22 vpn-instance internal + ntp-service unicast-peer 192.0.2.10 vpn-instance internal + ntp-service unicast-server ntp.example.com vpn-instance internal + ntp-service unicast-server 192.0.2.27 vpn-instance internal + ntp-service unicast-server 192.0.2.70 vpn-instance internal + ntp-service unicast-server 192.0.2.251 vpn-instance internal + ntp-service unicast-server 192.0.2.182 vpn-instance internal +# +acl number 1234 name NTC-ACL + rule 0 permit tcp destination 0.0.0.0 255.255.255.0 destination-port range 1000 2000 + rule 0 comment hello world +# + tftp client source interface M-GigabitEthernet0/0/0 +# + header motd % +******************************************************************************* +Unauthorized Access to or Use of this System is STRICTLY PROHIBITED. + ALL Access and Use May be Monitored and Recorded. +******************************************************************************* +% +# +hwtacacs scheme NTC-HWTACACS-Scheme + primary authentication 192.0.2.112 + primary authorization 192.0.2.112 + primary accounting 192.0.2.112 + secondary authentication 192.0.2.11 + secondary authorization 192.0.2.11 + secondary accounting 192.0.2.11 + key authentication cipher $c$3$123456789012345678901234567890 + key authorization cipher $c$3$123456789012345678901234567890 + key accounting cipher $c$3$123456789012345678901234567890 + user-name-format without-domain + vpn-instance internal +# +radius scheme system + user-name-format without-domain +# +domain example.com + authentication default hwtacacs-scheme NTC-HWTACACS-Scheme local + authorization default hwtacacs-scheme NTC-HWTACACS-Scheme local + accounting default hwtacacs-scheme NTC-HWTACACS-Scheme +# +domain system +# + domain default enable example.com +# +role name level-0 + description NTC-Level-0 role +# +role name level-1 + description NTC-Level-1 role +# +user-group system +# +local-user NTC-Admin class manage + password hash $h$6$123456789012345678901234567890$12345678901234567890123456789012345678901234567890123456789012345678901234567890 + service-type ssh telnet terminal + authorization-attribute user-role level-15 + authorization-attribute user-role network-admin + authorization-attribute user-role network-operator +# +local-user NTC-User class manage + password hash $h$6$123456789012345678901234567890$12345678901234567890123456789012345678901234567890123456789012345678901234567890 + service-type ssh telnet + authorization-attribute user-role level-15 + authorization-attribute user-role network-admin + authorization-attribute user-role network-operator +# +return \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_received.py b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_received.py new file mode 100644 index 00000000..1c27bdbf --- /dev/null +++ b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_received.py @@ -0,0 +1,56 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="vlan 10", parents=()), + ConfigLine(config_line=" name management", parents=("vlan 10",)), + ConfigLine(config_line=" description management vlan", parents=("vlan 10",)), + ConfigLine(config_line=" rsa peer-public-key 192.0.2.5", parents=()), + ConfigLine(config_line=" public-key-code begin", parents=(" rsa peer-public-key 192.0.2.5",)), + ConfigLine(config_line=" ABCDEF01", parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin")), + ConfigLine( + config_line=" 12345678", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01"), + ), + ConfigLine( + config_line=" A1B2C3D4 E5F6A7B8 C9D0E1F2 1A2B3C4D 5E6F7A8B 9C0D1E2F 3A4B5C6D 7E8F9A0B", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" C1D2E3F4 A5B6C7D8 E9F0A1B2 3C4D5E6F 7A8B9C0D 1E2F3A4B 5C6D7E8F 9A0B1C2D", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 1A2B3C4D 5E6F7A8B 9C0D1E2F 3A4B5C6D 7E8F9A0B C1D2E3F4 A5B6C7D8 E9F0A1B2", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 3C4D5E6F 7A8B9C0D 1E2F3A4B 5C6D7E8F 9A0B1C2D 1A2B3C4D 5E6F7A8B 9C0D1E2F", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 8A9B0C1D 2E3F4A5B 6C7D8E9F 0A1B2C3D 4E5F6A7B 8C9D0E1F 2A3B4C5D 6E7F8A9B", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 0C1D2E3F 4A5B6C7D 8E9F0A1B 2C3D4E5F 6A7B8C9D 0E1F2A3B 4C5D6E7F 8A9B0C1D", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 2E3F4A5B 6C7D8E9F 0A1B2C3D 4E5F6A7B 8C9D0E1F 2A3B4C5D 6E7F8A9B 0C1D2E3F", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 1B2C3D4E 5F6A7B8C 9D0E1F2A 3B4C5D6E 7F8A9B0C 1D2E3F4A 5B6C7D8E 9F0A1B2C", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 12345678"), + ), + ConfigLine( + config_line=" 8810", parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01") + ), + ConfigLine( + config_line=" FACED", + parents=(" rsa peer-public-key 192.0.2.5", " public-key-code begin", " ABCDEF01", " 8810"), + ), + ConfigLine(config_line=" public-key-code end", parents=(" rsa peer-public-key 192.0.2.5",)), + ConfigLine(config_line=" peer-public-key end", parents=(" rsa peer-public-key 192.0.2.5",)), + ConfigLine(config_line="sysname NTC-Router", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_sent.txt b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_sent.txt new file mode 100644 index 00000000..fa169a6d --- /dev/null +++ b/tests/unit/mock/config/parser/base/hp_comware/hp_comware_special_sent.txt @@ -0,0 +1,28 @@ +# Extra leading spaces +vlan 10 + name management + description management vlan +# +# Comment lines should be ignored +# +# RSA Public Key + rsa peer-public-key 192.0.2.5 + public-key-code begin + ABCDEF01 + 12345678 + A1B2C3D4 E5F6A7B8 C9D0E1F2 1A2B3C4D 5E6F7A8B 9C0D1E2F 3A4B5C6D 7E8F9A0B + C1D2E3F4 A5B6C7D8 E9F0A1B2 3C4D5E6F 7A8B9C0D 1E2F3A4B 5C6D7E8F 9A0B1C2D + 1A2B3C4D 5E6F7A8B 9C0D1E2F 3A4B5C6D 7E8F9A0B C1D2E3F4 A5B6C7D8 E9F0A1B2 + 3C4D5E6F 7A8B9C0D 1E2F3A4B 5C6D7E8F 9A0B1C2D 1A2B3C4D 5E6F7A8B 9C0D1E2F + 8A9B0C1D 2E3F4A5B 6C7D8E9F 0A1B2C3D 4E5F6A7B 8C9D0E1F 2A3B4C5D 6E7F8A9B + 0C1D2E3F 4A5B6C7D 8E9F0A1B 2C3D4E5F 6A7B8C9D 0E1F2A3B 4C5D6E7F 8A9B0C1D + 2E3F4A5B 6C7D8E9F 0A1B2C3D 4E5F6A7B 8C9D0E1F 2A3B4C5D 6E7F8A9B 0C1D2E3F + 1B2C3D4E 5F6A7B8C 9D0E1F2A 3B4C5D6E 7F8A9B0C 1D2E3F4A 5B6C7D8E 9F0A1B2C + 8810 + FACED + public-key-code end + peer-public-key end +# +# Lines with trailing spaces should be trimmed +sysname NTC-Router +# \ No newline at end of file diff --git a/tests/unit/test_deprecation.py b/tests/unit/test_deprecation.py new file mode 100644 index 00000000..3daa25b3 --- /dev/null +++ b/tests/unit/test_deprecation.py @@ -0,0 +1,14 @@ +"""Test for deprecation warnings.""" + +import pytest + +from netutils.config.parser import HPEConfigParser + + +def test_hpe_config_parser_deprecated(): + """Test that HPEConfigParser is deprecated and issues a warning.""" + expected_message = "HPEConfigParser is deprecated and will be removed in a future version. Use subclasses like HPComwareConfigParser instead." + + with pytest.warns(DeprecationWarning, match=expected_message): + # Instantiating the class should trigger the deprecation warning + HPEConfigParser("test config") From 9eb2d6e7c66e7182f345e730f68ffa2cb4c28404 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Tue, 27 Jan 2026 12:38:39 -0600 Subject: [PATCH 03/13] Fixed parsing Palo banners that start on the same line --- changes/780.fixed | 1 + netutils/config/conversion.py | 2 +- .../paloalto_panos/paloalto_backup.txt | 14 +++ .../paloalto_panos/paloalto_feature.py | 1 + .../paloalto_panos/paloalto_intended.txt | 16 ++++ .../paloalto_panos/paloalto_received.json | 10 ++ .../paloalto_banner_same_line_converted.txt | 45 +++++++++ .../paloalto_banner_same_line_sent.txt | 93 +++++++++++++++++++ 8 files changed, 181 insertions(+), 1 deletion(-) create mode 100644 changes/780.fixed create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_sent.txt diff --git a/changes/780.fixed b/changes/780.fixed new file mode 100644 index 00000000..80b6c888 --- /dev/null +++ b/changes/780.fixed @@ -0,0 +1 @@ +Fixed parsing of login banner in Palo Alto Networks config. \ No newline at end of file diff --git a/netutils/config/conversion.py b/netutils/config/conversion.py index a1cc1177..909ccb9a 100644 --- a/netutils/config/conversion.py +++ b/netutils/config/conversion.py @@ -190,7 +190,7 @@ def paloalto_panos_brace_to_set(cfg: str, cfg_type: str = "file") -> str: line = line.split("config ", 1)[1] line = "set " + line cfg_value.append(line.strip()) - elif line.endswith('login-banner "') or line.endswith('content "'): + elif 'login-banner "' in line or line.endswith('content "'): _first_banner_line = "".join(str(s) for s in stack) + line cfg_value.append("set " + _first_banner_line.split("config ", 1)[1]) diff --git a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_backup.txt b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_backup.txt index 9f68533d..556cdf58 100644 --- a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_backup.txt +++ b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_backup.txt @@ -21,6 +21,20 @@ set deviceconfig system service disable-http yes set deviceconfig system service disable-snmp no set deviceconfig system snmp-setting snmp-system set deviceconfig system hostname firewall1 +set deviceconfig system login-banner " +************************************************************************ +* firewall1.example.com * [PROD VM500 firewalls] +************************************************************************ +* WARNING * +* Unauthorized access to this device or devices attached to * +* or accessible from this network is strictly prohibited. * +* Possession of passwords or devices enabling access to this * +* device or devices does not constitute authorization. Unauthorized * +* access will be prosecuted to the fullest extent of the law. * +* * +************************************************************************ + +" set deviceconfig system default-gateway 10.1.1.1 set deviceconfig system dns-setting servers primary 10.1.1.3 set deviceconfig system dns-setting servers secondary 10.1.1.4 diff --git a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_feature.py b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_feature.py index 077595c5..fed48207 100644 --- a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_feature.py +++ b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_feature.py @@ -1,3 +1,4 @@ features = [ {"name": "management", "ordered": False, "section": ["set mgt-config "]}, + {"name": "banner", "ordered": False, "section": ["set deviceconfig system login-banner "]}, ] diff --git a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_intended.txt b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_intended.txt index 9f68533d..1b71f71f 100644 --- a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_intended.txt +++ b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_intended.txt @@ -21,6 +21,22 @@ set deviceconfig system service disable-http yes set deviceconfig system service disable-snmp no set deviceconfig system snmp-setting snmp-system set deviceconfig system hostname firewall1 +set deviceconfig system login-banner "#################################################### +WARNING TO UNAUTHORIZED USERS: +This system is for use by authorized users only. +Any individual using this system, by such use, +acknowledges and consents to the right of the +company to monitor, access, use, and disclose any +information generated, received, or stored on the +systems, and waives any right of privacy or +expectation of privacy on the part of that +individual in connection with his or her use of +this system. Unauthorized and/or improper use of +this system, as delineated by corporate policies, +is not tolerated and the company may take formal +action against such individuals. +#################################################### +" set deviceconfig system default-gateway 10.1.1.1 set deviceconfig system dns-setting servers primary 10.1.1.3 set deviceconfig system dns-setting servers secondary 10.1.1.4 diff --git a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_received.json b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_received.json index b9561ada..d2d4fbc2 100644 --- a/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_received.json +++ b/tests/unit/mock/config/compliance/compliance/paloalto_panos/paloalto_received.json @@ -8,5 +8,15 @@ "missing": "", "ordered_compliant": true, "unordered_compliant": true + }, + "banner": { + "compliant": false, + "missing": "set deviceconfig system login-banner \"####################################################\nWARNING TO UNAUTHORIZED USERS:\nThis system is for use by authorized users only.\nAny individual using this system, by such use,\nacknowledges and consents to the right of the\ncompany to monitor, access, use, and disclose any\ninformation generated, received, or stored on the\nsystems, and waives any right of privacy or\nexpectation of privacy on the part of that\nindividual in connection with his or her use of\nthis system. Unauthorized and/or improper use of\nthis system, as delineated by corporate policies,\nis not tolerated and the company may take formal\naction against such individuals.\n####################################################\n\"", + "extra": "set deviceconfig system login-banner \"\n************************************************************************\n* firewall1.example.com * [PROD VM500 firewalls]\n************************************************************************\n* WARNING *\n* Unauthorized access to this device or devices attached to *\n* or accessible from this network is strictly prohibited. *\n* Possession of passwords or devices enabling access to this *\n* device or devices does not constitute authorization. Unauthorized *\n* access will be prosecuted to the fullest extent of the law. *\n* *\n************************************************************************\n\"", + "cannot_parse": true, + "unordered_compliant": false, + "ordered_compliant": false, + "actual": "set deviceconfig system login-banner \"\n************************************************************************\n* firewall1.example.com * [PROD VM500 firewalls]\n************************************************************************\n* WARNING *\n* Unauthorized access to this device or devices attached to *\n* or accessible from this network is strictly prohibited. *\n* Possession of passwords or devices enabling access to this *\n* device or devices does not constitute authorization. Unauthorized *\n* access will be prosecuted to the fullest extent of the law. *\n* *\n************************************************************************\n\"", + "intended": "set deviceconfig system login-banner \"####################################################\nWARNING TO UNAUTHORIZED USERS:\nThis system is for use by authorized users only.\nAny individual using this system, by such use,\nacknowledges and consents to the right of the\ncompany to monitor, access, use, and disclose any\ninformation generated, received, or stored on the\nsystems, and waives any right of privacy or\nexpectation of privacy on the part of that\nindividual in connection with his or her use of\nthis system. Unauthorized and/or improper use of\nthis system, as delineated by corporate policies,\nis not tolerated and the company may take formal\naction against such individuals.\n####################################################\n\"" } } \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_converted.txt new file mode 100644 index 00000000..f9a33bf5 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_converted.txt @@ -0,0 +1,45 @@ +set deviceconfig system ip-address 192.0.2.72 +set deviceconfig system netmask 255.255.255.0 +set deviceconfig system update-server updates.paloaltonetworks.com +set deviceconfig system update-schedule threats recurring weekly day-of-week wednesday +set deviceconfig system update-schedule threats recurring weekly at 01:02 +set deviceconfig system update-schedule threats recurring weekly action download-only +set deviceconfig system timezone UTC +set deviceconfig system service disable-telnet yes +set deviceconfig system service disable-http yes +set deviceconfig system service disable-snmp no +set deviceconfig system hostname pa-ntc +set deviceconfig system type static +set deviceconfig system default-gateway 192.0.2.1 +set deviceconfig system domain ntc +set deviceconfig system locale en +set deviceconfig system speed-duplex auto-negotiate +set deviceconfig system dns-setting servers primary 8.8.8.8 +set deviceconfig system dns-setting servers secondary 1.1.1.1 +set deviceconfig system device-telemetry device-health-performance yes +set deviceconfig system device-telemetry product-usage yes +set deviceconfig system device-telemetry threat-prevention yes +set deviceconfig system device-telemetry region Americas +set deviceconfig system panorama local-panorama panorama-server 192.0.2.58 +set deviceconfig system server-verification no +set deviceconfig system ntp-servers primary-ntp-server ntp-server-address time.google.com +set deviceconfig system ntp-servers primary-ntp-server authentication-type none +set deviceconfig system login-banner "#################################################### +WARNING TO UNAUTHORIZED USERS: +This system is for use by authorized users only. +Any individual using this system, by such use, +acknowledges and consents to the right of the +company to monitor, access, use, and disclose any +information generated, received, or stored on the +systems, and waives any right of privacy or +expectation of privacy on the part of that +individual in connection with his or her use of +this system. Unauthorized and/or improper use of +this system, as delineated by corporate policies, +is not tolerated and the company may take formal +action against such individuals. +#################################################### +" +set deviceconfig system snmp-setting access-setting version v2c snmp-community-string ntc1234 +set deviceconfig system snmp-setting snmp-system location ntc +set deviceconfig system snmp-setting snmp-system contact "john smith" \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_sent.txt new file mode 100644 index 00000000..5b6e4756 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_same_line_sent.txt @@ -0,0 +1,93 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + ip-address 192.0.2.72; + netmask 255.255.255.0; + update-server updates.paloaltonetworks.com; + update-schedule { + threats { + recurring { + weekly { + day-of-week wednesday; + at 01:02; + action download-only; + } + } + } + } + timezone UTC; + service { + disable-telnet yes; + disable-http yes; + disable-snmp no; + } + hostname pa-ntc; + type { + static; + } + default-gateway 192.0.2.1; + domain ntc; + locale en; + speed-duplex auto-negotiate; + dns-setting { + servers { + primary 8.8.8.8; + secondary 1.1.1.1; + } + } + device-telemetry { + device-health-performance yes; + product-usage yes; + threat-prevention yes; + region Americas; + } + panorama { + local-panorama { + panorama-server 192.0.2.58; + } + } + server-verification no; + ntp-servers { + primary-ntp-server { + ntp-server-address time.google.com; + authentication-type { + none; + } + } + } + login-banner "#################################################### +WARNING TO UNAUTHORIZED USERS: +This system is for use by authorized users only. +Any individual using this system, by such use, +acknowledges and consents to the right of the +company to monitor, access, use, and disclose any +information generated, received, or stored on the +systems, and waives any right of privacy or +expectation of privacy on the part of that +individual in connection with his or her use of +this system. Unauthorized and/or improper use of +this system, as delineated by corporate policies, +is not tolerated and the company may take formal +action against such individuals. +#################################################### +"; + snmp-setting { + access-setting { + version { + v2c { + snmp-community-string ntc1234; + } + } + } + snmp-system { + location ntc; + contact "john smith"; + } + } + } + } + } + } +} \ No newline at end of file From 5cec59812c9cd083f838b7b4688adf56a725944e Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Tue, 27 Jan 2026 13:22:16 -0600 Subject: [PATCH 04/13] Added panos banner parsing --- .../paloalto_banner_same_line_received.py | 53 +++++++++++ .../paloalto_banner_same_line_sent.txt | 93 +++++++++++++++++++ 2 files changed, 146 insertions(+) create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_sent.txt diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_received.py new file mode 100644 index 00000000..40279220 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_received.py @@ -0,0 +1,53 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="set deviceconfig system ip-address 192.0.2.72", parents=()), + ConfigLine(config_line="set deviceconfig system netmask 255.255.255.0", parents=()), + ConfigLine(config_line="set deviceconfig system update-server updates.paloaltonetworks.com", parents=()), + ConfigLine( + config_line="set deviceconfig system update-schedule threats recurring weekly day-of-week wednesday", parents=() + ), + ConfigLine(config_line="set deviceconfig system update-schedule threats recurring weekly at 01:02", parents=()), + ConfigLine( + config_line="set deviceconfig system update-schedule threats recurring weekly action download-only", parents=() + ), + ConfigLine(config_line="set deviceconfig system timezone UTC", parents=()), + ConfigLine(config_line="set deviceconfig system service disable-telnet yes", parents=()), + ConfigLine(config_line="set deviceconfig system service disable-http yes", parents=()), + ConfigLine(config_line="set deviceconfig system service disable-snmp no", parents=()), + ConfigLine(config_line="set deviceconfig system hostname pa-ntc", parents=()), + ConfigLine(config_line="set deviceconfig system type static", parents=()), + ConfigLine(config_line="set deviceconfig system default-gateway 192.0.2.1", parents=()), + ConfigLine(config_line="set deviceconfig system domain ntc", parents=()), + ConfigLine(config_line="set deviceconfig system locale en", parents=()), + ConfigLine(config_line="set deviceconfig system speed-duplex auto-negotiate", parents=()), + ConfigLine(config_line="set deviceconfig system dns-setting servers primary 8.8.8.8", parents=()), + ConfigLine(config_line="set deviceconfig system dns-setting servers secondary 1.1.1.1", parents=()), + ConfigLine(config_line="set deviceconfig system device-telemetry device-health-performance yes", parents=()), + ConfigLine(config_line="set deviceconfig system device-telemetry product-usage yes", parents=()), + ConfigLine(config_line="set deviceconfig system device-telemetry threat-prevention yes", parents=()), + ConfigLine(config_line="set deviceconfig system device-telemetry region Americas", parents=()), + ConfigLine(config_line="set deviceconfig system panorama local-panorama panorama-server 192.0.2.58", parents=()), + ConfigLine(config_line="set deviceconfig system server-verification no", parents=()), + ConfigLine( + config_line="set deviceconfig system ntp-servers primary-ntp-server ntp-server-address time.google.com", + parents=(), + ), + ConfigLine( + config_line="set deviceconfig system ntp-servers primary-ntp-server authentication-type none", parents=() + ), + ConfigLine( + config_line='set deviceconfig system login-banner "####################################################', + parents=(), + ), + ConfigLine( + config_line='WARNING TO UNAUTHORIZED USERS:\nThis system is for use by authorized users only.\nAny individual using this system, by such use,\nacknowledges and consents to the right of the\ncompany to monitor, access, use, and disclose any\ninformation generated, received, or stored on the\nsystems, and waives any right of privacy or\nexpectation of privacy on the part of that\nindividual in connection with his or her use of\nthis system. Unauthorized and/or improper use of\nthis system, as delineated by corporate policies,\nis not tolerated and the company may take formal\naction against such individuals.\n####################################################\n"', + parents=('set deviceconfig system login-banner "####################################################',), + ), + ConfigLine( + config_line="set deviceconfig system snmp-setting access-setting version v2c snmp-community-string ntc1234", + parents=(), + ), + ConfigLine(config_line="set deviceconfig system snmp-setting snmp-system location ntc", parents=()), + ConfigLine(config_line='set deviceconfig system snmp-setting snmp-system contact "john smith"', parents=()), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_sent.txt new file mode 100644 index 00000000..5b6e4756 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_same_line_sent.txt @@ -0,0 +1,93 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + ip-address 192.0.2.72; + netmask 255.255.255.0; + update-server updates.paloaltonetworks.com; + update-schedule { + threats { + recurring { + weekly { + day-of-week wednesday; + at 01:02; + action download-only; + } + } + } + } + timezone UTC; + service { + disable-telnet yes; + disable-http yes; + disable-snmp no; + } + hostname pa-ntc; + type { + static; + } + default-gateway 192.0.2.1; + domain ntc; + locale en; + speed-duplex auto-negotiate; + dns-setting { + servers { + primary 8.8.8.8; + secondary 1.1.1.1; + } + } + device-telemetry { + device-health-performance yes; + product-usage yes; + threat-prevention yes; + region Americas; + } + panorama { + local-panorama { + panorama-server 192.0.2.58; + } + } + server-verification no; + ntp-servers { + primary-ntp-server { + ntp-server-address time.google.com; + authentication-type { + none; + } + } + } + login-banner "#################################################### +WARNING TO UNAUTHORIZED USERS: +This system is for use by authorized users only. +Any individual using this system, by such use, +acknowledges and consents to the right of the +company to monitor, access, use, and disclose any +information generated, received, or stored on the +systems, and waives any right of privacy or +expectation of privacy on the part of that +individual in connection with his or her use of +this system. Unauthorized and/or improper use of +this system, as delineated by corporate policies, +is not tolerated and the company may take formal +action against such individuals. +#################################################### +"; + snmp-setting { + access-setting { + version { + v2c { + snmp-community-string ntc1234; + } + } + } + snmp-system { + location ntc; + contact "john smith"; + } + } + } + } + } + } +} \ No newline at end of file From fab65da2615136c8b2b32529a283fb3c1d79c6a2 Mon Sep 17 00:00:00 2001 From: Marcus Cain Date: Tue, 27 Jan 2026 16:33:18 -0600 Subject: [PATCH 05/13] Added hp_comware and its respective command to get its configuration (#792) * Added hp_comware and its respective command to get its configuration Signed-off-by: Cain,Marcus Co-authored-by: Jeff Kala <48843785+jeffkala@users.noreply.github.com> --- changes/793.added | 1 + docs/user/lib_mapper/running_config.md | 1 + netutils/lib_mapper.py | 1 + 3 files changed, 3 insertions(+) create mode 100644 changes/793.added diff --git a/changes/793.added b/changes/793.added new file mode 100644 index 00000000..e0e2804c --- /dev/null +++ b/changes/793.added @@ -0,0 +1 @@ +Added hp_comware running configuration command to the RUNNING_CONFIG_MAPPER. \ No newline at end of file diff --git a/docs/user/lib_mapper/running_config.md b/docs/user/lib_mapper/running_config.md index 295a8297..64d4bc3a 100644 --- a/docs/user/lib_mapper/running_config.md +++ b/docs/user/lib_mapper/running_config.md @@ -19,6 +19,7 @@ | extreme_slx | → | show running-config | | extreme_vsp | → | show running-config | | fortinet | → | show full-configuration | +| hp_comware | → | display current-configuration | | hp_procurve | → | show running-config | | juniper_junos | → | show configuration | display set | | mikrotik_routeros | → | /export | diff --git a/netutils/lib_mapper.py b/netutils/lib_mapper.py index 605f4ec9..2f473f2d 100644 --- a/netutils/lib_mapper.py +++ b/netutils/lib_mapper.py @@ -330,6 +330,7 @@ "extreme_slx": "show running-config", "extreme_vsp": "show running-config", "fortinet": "show full-configuration", + "hp_comware": "display current-configuration", "hp_procurve": "show running-config", "juniper_junos": "show configuration | display set", "mikrotik_routeros": "/export", From 0d603b31f98d8688ee62a25481079452c594a646 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Wed, 28 Jan 2026 13:03:38 -0600 Subject: [PATCH 06/13] Changed login banner detection to be quote agnostic --- netutils/config/conversion.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netutils/config/conversion.py b/netutils/config/conversion.py index 909ccb9a..b6399a1d 100644 --- a/netutils/config/conversion.py +++ b/netutils/config/conversion.py @@ -190,7 +190,7 @@ def paloalto_panos_brace_to_set(cfg: str, cfg_type: str = "file") -> str: line = line.split("config ", 1)[1] line = "set " + line cfg_value.append(line.strip()) - elif 'login-banner "' in line or line.endswith('content "'): + elif "login-banner" in line or line.endswith('content "'): _first_banner_line = "".join(str(s) for s in stack) + line cfg_value.append("set " + _first_banner_line.split("config ", 1)[1]) From e7aa69cafd86c4a4d4bce8cc59b1dd26d17a7a25 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 10:27:02 -0600 Subject: [PATCH 07/13] Updated palo config parsing --- netutils/config/conversion.py | 35 +- netutils/config/parser.py | 79 +- ...paloalto_banner_double_quote_converted.txt | 3 + .../paloalto_banner_double_quote_sent.txt | 13 + .../paloalto_banner_one_line_converted.txt | 3 + .../paloalto_banner_one_line_sent.txt | 13 + ...loalto_banner_one_line_space_converted.txt | 3 + .../paloalto_banner_one_line_space_sent.txt | 13 + ...paloalto_banner_single_quote_converted.txt | 3 + .../paloalto_banner_single_quote_sent.txt | 13 + .../paloalto_banner_two_line_converted.txt | 4 + .../paloalto_banner_two_line_sent.txt | 14 + .../paloalto_panos/paloalto_full_json.json | 69531 ++++++++++++++++ .../paloalto_only_banner_converted.txt | 2 + .../paloalto_only_banner_sent.txt | 12 + .../paloalto_banner_double_quote_received.py | 10 + .../paloalto_banner_double_quote_sent.txt | 3 + .../paloalto_banner_one_line_received.py | 10 + .../paloalto_banner_one_line_sent.txt | 3 + ...paloalto_banner_one_line_space_received.py | 10 + .../paloalto_banner_one_line_space_sent.txt | 3 + .../paloalto_banner_single_quote_received.py | 10 + .../paloalto_banner_single_quote_sent.txt | 3 + .../paloalto_banner_two_line_received.py | 16 + .../paloalto_banner_two_line_sent.txt | 4 + .../paloalto_only_banner_received.py | 14 + .../paloalto_only_banner_sent.txt | 2 + 27 files changed, 69773 insertions(+), 56 deletions(-) create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_sent.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_sent.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_sent.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_sent.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_sent.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_full_json.json create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_converted.txt create mode 100644 tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_sent.txt create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_sent.txt create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_sent.txt create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_sent.txt create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_sent.txt create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_sent.txt create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_received.py create mode 100644 tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_sent.txt diff --git a/netutils/config/conversion.py b/netutils/config/conversion.py index b6399a1d..01a66ab5 100644 --- a/netutils/config/conversion.py +++ b/netutils/config/conversion.py @@ -182,10 +182,16 @@ def paloalto_panos_brace_to_set(cfg: str, cfg_type: str = "file") -> str: cfg_raw = paloalto_panos_clean_newlines(cfg=cfg) cfg_list = cfg_raw.splitlines() - for i, line in enumerate(cfg_list): + def cfg_generator(cfg_list: t.List[str]) -> t.Generator[str, None, None]: + """We use a generator to avoid parsing the banner lines twice.""" + yield from cfg_list + + cfg_gen = cfg_generator(cfg_list) + + for line in cfg_gen: line = line.strip() if line.endswith(";") and not line.startswith('";'): - line = line.split(";", 1)[0] + line = line[:-1] line = "".join(str(s) for s in stack) + line line = line.split("config ", 1)[1] line = "set " + line @@ -193,10 +199,27 @@ def paloalto_panos_brace_to_set(cfg: str, cfg_type: str = "file") -> str: elif "login-banner" in line or line.endswith('content "'): _first_banner_line = "".join(str(s) for s in stack) + line cfg_value.append("set " + _first_banner_line.split("config ", 1)[1]) - - for banner_line in cfg_list[i + 1:]: # fmt: skip - if '"' in banner_line: - banner_line = banner_line.split(";", 1)[0] + # Palo Alto uses either double or single quotes for the banner delimiter, + # but only if there are certain characters or spaces in the banner. + if 'login-banner "' in line: + delimiter = '"' + elif "login-banner '" in line: + delimiter = "'" + else: + delimiter = "" + + # Deal with single line banners first + if line.endswith(f"{delimiter};"): + line = line[:-1] + cfg_value.append(line.strip()) + continue + + # Multi-line banners + for banner_line in cfg_gen: # fmt: skip + # This is a little brittle and will break if any line in the middle of the banner + # ends with the expected delimiter and semicolon. + if banner_line.endswith(f"{delimiter};"): + banner_line = banner_line[:-1] cfg_value.append(banner_line.strip()) break cfg_value.append(banner_line.strip()) diff --git a/netutils/config/parser.py b/netutils/config/parser.py index 0791c9d2..ffa5f58e 100644 --- a/netutils/config/parser.py +++ b/netutils/config/parser.py @@ -1492,17 +1492,11 @@ class PaloAltoNetworksConfigParser(BaseSpaceConfigParser): comment_chars: t.List[str] = [] banner_start: t.List[str] = [ - 'set system login-banner "', - 'login-banner "', - 'set deviceconfig system login-banner "', + "set system login-banner", + "set deviceconfig system login-banner", ] - banner_end = '"' - - def is_banner_end(self, line: str) -> bool: - """Determine if end of banner.""" - if line.endswith('"') or line.startswith('";') or line.startswith("set") or line.endswith(self.banner_end): - return True - return False + # Not used, but must be defined + banner_end = None def _build_banner(self, config_line: str) -> t.Optional[str]: """Handle banner config lines. @@ -1520,22 +1514,22 @@ def _build_banner(self, config_line: str) -> t.Optional[str]: self._current_parents += (config_line,) banner_config = [] for line in self.generator_config: - if not self.is_banner_end(line): - banner_config.append(line) - else: - banner_config.append(line.strip()) - line = "\n".join(banner_config) - if line.endswith('"'): - banner, end, _ = line.rpartition('"') - line = banner + end - self._update_config_lines(line.strip()) + # Note, this is a little fragile and will cause false positives if any line in + # the middle of a multi-line banner starts with "set ". + if line.startswith("set "): + # New command, save the banner and return the next line + if banner_config: + banner_string = "\n".join(banner_config) + self._update_config_lines(banner_string) self._current_parents = self._current_parents[:-1] - try: - return next(self.generator_config) - except StopIteration: - return None + return line + banner_config.append(line) - raise ValueError("Unable to parse banner end.") + # Edge case, the last line of the config is the banner + banner_string = "\n".join(banner_config) + self._update_config_lines(banner_string) + self._current_parents = self._current_parents[:-1] + return None def build_config_relationship(self) -> t.List[ConfigLine]: # pylint: disable=too-many-branches r"""Parse text of config lines and find their parents. @@ -1558,42 +1552,27 @@ def build_config_relationship(self) -> t.List[ConfigLine]: # pylint: disable=to ... ] True """ - # assume configuration does not need conversion - _needs_conversion = False + if self.config_lines_only is None: + raise ValueError("Config is empty.") - # if config is in palo brace format, convert to set - if self.config_lines_only is not None: - for line in self.config_lines_only.splitlines(): - if line.endswith("{"): - _needs_conversion = True - if _needs_conversion: + if "@dirtyId" in self.config_lines_only: + # We have to specifically check for JSON format because it can be confused with the brace format + raise ValueError("Found 'json' configuration format. Please provide in 'set' or 'default' (brace) format.") + config_lines = self.config_lines_only.splitlines() + if any(line.endswith("{") for line in config_lines): converted_config = paloalto_panos_brace_to_set(cfg=self.config, cfg_type="string") list_config = converted_config.splitlines() self.generator_config = (line for line in list_config) + elif not any(line.startswith("set ") for line in config_lines): + raise ValueError("Unexpected configuration format. Please provide in 'set' or 'default' (brace) format.") # build config relationships for line in self.generator_config: - if not line[0].isspace(): - self._current_parents = () - if self.is_banner_start(line): - line = self._build_banner(line) # type: ignore - else: - previous_config = self.config_lines[-1] - self._current_parents = (previous_config.config_line,) - self.indent_level = self.get_leading_space_count(line) - if not self.is_banner_start(line): - line = self._build_nested_config(line) # type: ignore - else: - line = self._build_banner(line) # type: ignore - if line is not None and line[0].isspace(): - line = self._build_nested_config(line) # type: ignore - else: - self._current_parents = () + if self.is_banner_start(line): + line = self._build_banner(line) # type: ignore if line is None: break - elif self.is_banner_start(line): - line = self._build_banner(line) # type: ignore self._update_config_lines(line) return self.config_lines diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_converted.txt new file mode 100644 index 00000000..6f1fe931 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_converted.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner '"BANNER"' +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_sent.txt new file mode 100644 index 00000000..c0f24ce9 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_double_quote_sent.txt @@ -0,0 +1,13 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + hostname pa-ntc; + login-banner '"BANNER"'; + domain ntc; + } + } + } + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_converted.txt new file mode 100644 index 00000000..60c9df49 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_converted.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_sent.txt new file mode 100644 index 00000000..fff88300 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_sent.txt @@ -0,0 +1,13 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + hostname pa-ntc; + login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~; + domain ntc; + } + } + } + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_converted.txt new file mode 100644 index 00000000..90ed4dc7 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_converted.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner "BANNER BANNER" +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_sent.txt new file mode 100644 index 00000000..35d62dbc --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_one_line_space_sent.txt @@ -0,0 +1,13 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + hostname pa-ntc; + login-banner "BANNER BANNER"; + domain ntc; + } + } + } + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_converted.txt new file mode 100644 index 00000000..a9878418 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_converted.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner "'BANNER'" +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_sent.txt new file mode 100644 index 00000000..c258fded --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_single_quote_sent.txt @@ -0,0 +1,13 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + hostname pa-ntc; + login-banner "'BANNER'"; + domain ntc; + } + } + } + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_converted.txt new file mode 100644 index 00000000..9536cb15 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_converted.txt @@ -0,0 +1,4 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_sent.txt new file mode 100644 index 00000000..41441888 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_banner_two_line_sent.txt @@ -0,0 +1,14 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + hostname pa-ntc; + login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~; + domain ntc; + } + } + } + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_full_json.json b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_full_json.json new file mode 100644 index 00000000..be620ce3 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_full_json.json @@ -0,0 +1,69531 @@ +{ +"@dirtyId":"23", +"system": +{ +"@dirtyId":"23", +"ip-address": +"10.1.100.72", +"netmask": +"255.255.255.0", +"update-server": +"updates.paloaltonetworks.com", +"update-schedule": +{ +"threats": +{ +"recurring": +{ +"weekly": +{ +"day-of-week": +"wednesday", +"at": +"01:02", +"action": +"download-only"} +} +} +} +, +"timezone": +"UTC", +"service": +{ +"disable-telnet": +"yes", +"disable-http": +"yes", +"disable-snmp": +"no"} +, +"hostname": +{ +"@dirtyId":"23", +"pa-220-1", +"type": +{ +"static": +[] +} +, +"default-gateway": +"10.1.100.1", +"domain": +"ntc", +"locale": +"en", +"speed-duplex": +"auto-negotiate", +"dns-setting": +{ +"servers": +{ +"primary": +"8.8.8.8", +"secondary": +"1.1.1.1"} +} +, +"device-telemetry": +{ +"device-health-performance": +"yes", +"product-usage": +"yes", +"threat-prevention": +"yes", +"region": +"Americas"} +, +"panorama": +{ +"local-panorama": +{ +"panorama-server": +"10.125.1.58"} +} +, +"server-verification": +"no", +"ntp-servers": +{ +"primary-ntp-server": +{ +"ntp-server-address": +"time.google.com", +"authentication-type": +{ +"none": +[] +} +} +} +, +"login-banner": +{ +"@dirtyId":"23", +"!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~ !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", +"snmp-setting": +{ +"access-setting": +{ +"version": +{ +"v2c": +{ +"snmp-community-string": +"ntc-public"} +} +} +, +"snmp-system": +{ +"location": +"ntc-colo", +"contact": +"ntc man"} +} +} +, +"setting": +{ +"config": +{ +"rematch": +"yes"} +, +"management": +{ +"hostname-type-in-syslog": +"FQDN", +"device-monitoring": +{ +"enabled": +"no"} +, +"idle-timeout": +"0"} +} +, +"high-availability": +{ +"interface": +{ +"ha1-backup": +[] +, +"ha1": +{ +"port": +"ethernet1/3", +"ip-address": +"192.168.1.2", +"netmask": +"255.255.255.254"} +, +"ha2": +{ +"port": +"ethernet1/4", +"ip-address": +"192.168.1.6", +"netmask": +"255.255.255.254"} +} +} +} +{ +"interface": +{ +"ethernet": +{ +"entry":[{ +"@name":"ethernet1/1", +"aggregate-group": +"ae1", +"link-state": +"auto"} +, +{ +"@name":"ethernet1/2", +"aggregate-group": +"ae1", +"link-state": +"auto"} +, +{ +"@name":"ethernet1/3", +"ha": +[] +} +, +{ +"@name":"ethernet1/4", +"ha": +[] +, +"link-state": +"up"} +, +{ +"@name":"ethernet1/5", +"layer3": +{ +"ipv6": +{ +"enabled": +"yes", +"address": +{ +"entry":[{ +"@name":"2001:dead:beef:cafe::1/64", +"advertise": +{ +"enable": +"no", +"valid-lifetime": +"2592000", +"preferred-lifetime": +"604800", +"onlink-flag": +"yes", +"auto-config-flag": +"yes"} +, +"enable-on-interface": +"yes"} +] +} +} +, +"interface-management-profile": +"AllowMgmtPing", +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"units": +{ +"entry":[{ +"@name":"ethernet1/5.450", +"ipv6": +{ +"neighbor-discovery": +{ +"router-advertisement": +{ +"enable": +"no"} +} +} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.168.0.6/30"] +} +, +"interface-management-profile": +"AllowMgmtPing", +"tag": +"450"} +, +{ +"@name":"ethernet1/5.400", +"ipv6": +{ +"neighbor-discovery": +{ +"router-advertisement": +{ +"enable": +"no"} +} +} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.168.0.2/30"] +} +, +"interface-management-profile": +"AllowMgmtPing", +"tag": +"400"} +, +{ +"@name":"ethernet1/5.500", +"ipv6": +{ +"neighbor-discovery": +{ +"router-advertisement": +{ +"enable": +"no"} +} +} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.0.2.9/30"] +} +, +"tag": +"500", +"interface-management-profile": +"AllowMgmtPing"} +] +} +} +, +"link-state": +"up", +"comment": +"test_description6:::"} +, +{ +"@name":"ethernet1/6", +"layer3": +{ +"ndp-proxy": +{ +"enabled": +"no"} +, +"sdwan-link-settings": +{ +"enable": +"no"} +, +"lldp": +{ +"enable": +"yes"} +, +"units": +{ +"entry":[{ +"@name":"ethernet1/6.12", +"ipv6": +{ +"neighbor-discovery": +{ +"router-advertisement": +{ +"enable": +"no"} +} +, +"address": +{ +"entry":[{ +"@name":"2001:DB8::1/64", +"advertise": +{ +"enable": +"no", +"valid-lifetime": +"2592000", +"preferred-lifetime": +"604800", +"onlink-flag": +"yes", +"auto-config-flag": +"yes"} +, +"enable-on-interface": +"yes"} +] +} +, +"enabled": +"yes"} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.0.2.1/30"] +} +, +"comment": +"test subinterface", +"tag": +"12"} +, +{ +"@name":"ethernet1/6.55", +"ipv6": +{ +"neighbor-discovery": +{ +"router-advertisement": +{ +"enable": +"no"} +} +, +"address": +{ +"entry":[{ +"@name":"2001:DB8::A:1/48", +"advertise": +{ +"enable": +"no", +"valid-lifetime": +"2592000", +"preferred-lifetime": +"604800", +"onlink-flag": +"yes", +"auto-config-flag": +"yes"} +, +"enable-on-interface": +"yes"} +] +} +, +"enabled": +"yes"} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"tag": +"567", +"ip": +{ +"entry":[{ +"@name":"192.0.2.5/30"] +} +} +] +} +, +"ip": +{ +"entry":[{ +"@name":"192.0.2.129/25"] +} +} +} +, +{ +"@name":"ethernet1/7", +"aggregate-group": +"ae3", +"comment": +"interfaces to tet lacp"} +, +{ +"@name":"ethernet1/8", +"layer3": +{ +"mtu": +"1500", +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"172.31.2.100/24"] +} +, +"ndp-proxy": +{ +"enabled": +"no"} +} +, +"link-speed": +"auto", +"link-duplex": +"auto", +"link-state": +"up", +"comment": +":::"} +] +} +, +"loopback": +{ +"units": +{ +"entry":[{ +"@name":"loopback.10", +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.168.69.1"] +} +, +"interface-management-profile": +"AllowMgmtPing", +"comment": +"Outside Test Interface"} +, +{ +"@name":"loopback.20", +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.168.70.1"] +} +, +"interface-management-profile": +"AllowMgmtPing", +"comment": +"Test outside interface"} +, +{ +"@name":"loopback.30", +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.168.99.1"] +} +, +"interface-management-profile": +"AllowMgmtPing", +"comment": +"Source NAT"} +, +{ +"@name":"loopback.40", +"adjust-tcp-mss": +{ +"enable": +"no"} +, +"ip": +{ +"entry":[{ +"@name":"192.168.99.40"] +} +} +, +{ +"@name":"loopback.5", +"ip": +{ +"entry":[{ +"@name":"1.2.3.9/32"] +} +, +"adjust-tcp-mss": +{ +"enable": +"no"} +} +] +} +} +, +"vlan": +{ +"units": +[] +} +, +"tunnel": +{ +"units": +[] +, +"ipv6": +{ +"enabled": +"yes"} +} +, +"aggregate-ethernet": +{ +"entry":[{ +"@name":"ae1", +"layer3": +{ +"untagged-sub-interface": +"no", +"lacp": +{ +"enable": +"yes", +"fast-failover": +"no", +"mode": +"active", +"transmission-rate": +"slow", +"system-priority": +"10000", +"high-availability": +{ +"use-same-system-mac": +{ +"enable": +"no"} +, +"passive-pre-negotiation": +"yes"} +} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"lldp": +{ +"enable": +"yes"} +, +"ip": +{ +"entry":[{ +"@name":"10.2.42.2/30"] +} +, +"ipv6": +{ +"address": +{ +"entry":[{ +"@name":"2001:dead:beef:cafe::feed/64", +"advertise": +{ +"enable": +"no", +"valid-lifetime": +"2592000", +"preferred-lifetime": +"604800", +"onlink-flag": +"yes", +"auto-config-flag": +"yes"} +, +"enable-on-interface": +"no"} +] +} +} +, +"interface-management-profile": +"AllowPing"} +} +, +{ +"@name":"ae2", +"ha": +{ +"lacp": +{ +"fast-failover": +"yes", +"mode": +"active", +"transmission-rate": +"fast", +"system-priority": +"32765", +"enable": +"yes"} +} +} +, +{ +"@name":"ae3", +"layer3": +{ +"untagged-sub-interface": +"no", +"lacp": +{ +"enable": +"yes", +"fast-failover": +"no", +"mode": +"active", +"transmission-rate": +"slow", +"system-priority": +"11111", +"high-availability": +{ +"use-same-system-mac": +{ +"enable": +"no"} +} +} +, +"ndp-proxy": +{ +"enabled": +"no"} +, +"lldp": +{ +"enable": +"no"} +, +"dhcp-client": +[] +} +, +"comment": +"test"} +, +{ +"@name":"ae4", +"layer3": +{ +"untagged-sub-interface": +"no", +"lacp": +{ +"enable": +"yes", +"fast-failover": +"no", +"mode": +"active", +"transmission-rate": +"slow"} +, +"ndp-proxy": +{ +"enabled": +"no"} +} +} +] +} +} +, +"vlan": +[] +, +"virtual-wire": +[] +, +"profiles": +{ +"monitor-profile": +{ +"entry":[{ +"@name":"default", +"interval": +"3", +"threshold": +"5", +"action": +"wait-recover"} +] +} +, +"interface-management-profile": +{ +"entry":[{ +"@name":"AllowPing", +"ping": +"yes"} +, +{ +"@name":"AllowMgmtPing", +"http": +"yes", +"https": +"yes", +"ssh": +"yes", +"ping": +"yes", +"telnet": +"yes"} +] +} +} +, +"ike": +{ +"crypto-profiles": +{ +"ike-crypto-profiles": +{ +"entry":[{ +"@name":"default", +"encryption": +{ +"member":["aes-128-cbc", +"3des"] +} +, +"hash": +{ +"member":["sha1"] +} +, +"dh-group": +{ +"member":["group2"] +} +, +"lifetime": +{ +"hours": +"8"} +} +, +{ +"@name":"Suite-B-GCM-128", +"encryption": +{ +"member":["aes-128-cbc"] +} +, +"hash": +{ +"member":["sha256"] +} +, +"dh-group": +{ +"member":["group19"] +} +, +"lifetime": +{ +"hours": +"8"} +} +, +{ +"@name":"Suite-B-GCM-256", +"encryption": +{ +"member":["aes-256-cbc"] +} +, +"hash": +{ +"member":["sha384"] +} +, +"dh-group": +{ +"member":["group20"] +} +, +"lifetime": +{ +"hours": +"8"} +} +] +} +, +"ipsec-crypto-profiles": +{ +"entry":[{ +"@name":"default", +"esp": +{ +"encryption": +{ +"member":["aes-128-cbc", +"3des"] +} +, +"authentication": +{ +"member":["sha1"] +} +} +, +"dh-group": +"group2", +"lifetime": +{ +"hours": +"1"} +} +, +{ +"@name":"Suite-B-GCM-128", +"esp": +{ +"encryption": +{ +"member":["aes-128-gcm"] +} +, +"authentication": +{ +"member":["none"] +} +} +, +"dh-group": +"group19", +"lifetime": +{ +"hours": +"1"} +} +, +{ +"@name":"Suite-B-GCM-256", +"esp": +{ +"encryption": +{ +"member":["aes-256-gcm"] +} +, +"authentication": +{ +"member":["none"] +} +} +, +"dh-group": +"group20", +"lifetime": +{ +"hours": +"1"} +} +] +} +, +"global-protect-app-crypto-profiles": +{ +"entry":[{ +"@name":"default", +"encryption": +{ +"member":["aes-128-cbc"] +} +, +"authentication": +{ +"member":["sha1"] +} +} +] +} +} +, +"gateway": +[] +} +, +"qos": +{ +"profile": +{ +"entry":[{ +"@name":"default", +"class-bandwidth-type": +{ +"mbps": +{ +"class": +{ +"entry":[{ +"@name":"class1", +"priority": +"real-time"} +, +{ +"@name":"class2", +"priority": +"high"} +, +{ +"@name":"class3", +"priority": +"high"} +, +{ +"@name":"class4", +"priority": +"medium"} +, +{ +"@name":"class5", +"priority": +"medium"} +, +{ +"@name":"class6", +"priority": +"low"} +, +{ +"@name":"class7", +"priority": +"low"} +, +{ +"@name":"class8", +"priority": +"low"} +] +} +} +} +} +] +} +} +, +"virtual-router": +{ +"entry":[{ +"@name":"default", +"interface": +{ +"member":["ae1", +"ae3", +"ethernet1/5.400", +"ethernet1/5.450", +"loopback.10", +"loopback.20", +"loopback.30", +"loopback.40"] +} +, +"ecmp": +{ +"enable": +"no", +"symmetric-return": +"no", +"strict-source-path": +"no", +"algorithm": +{ +"ip-modulo": +[] +} +} +, +"protocol": +{ +"bgp": +{ +"enable": +"yes", +"dampening-profile": +{ +"entry":[{ +"@name":"default", +"cutoff": +"1.25", +"reuse": +"0.5", +"max-hold-time": +"900", +"decay-half-life-reachable": +"300", +"decay-half-life-unreachable": +"900", +"enable": +"yes"} +] +} +, +"routing-options": +{ +"graceful-restart": +{ +"enable": +"yes"} +} +, +"router-id": +"1.1.1.1", +"local-as": +"65000", +"install-route": +"yes", +"peer-group": +{ +"entry":[{ +"@name":"daniel-pg", +"type": +{ +"ebgp": +{ +"remove-private-as": +"no", +"import-nexthop": +"original", +"export-nexthop": +"resolve"} +} +, +"peer": +{ +"entry":[{ +"@name":"10.1.100.200", +"peer-address": +{ +"ip": +"10.1.100.200"} +, +"connection-options": +{ +"incoming-bgp-connection": +{ +"remote-port": +"0", +"allow": +"yes"} +, +"outgoing-bgp-connection": +{ +"local-port": +"0", +"allow": +"no"} +, +"multihop": +"10", +"keep-alive-interval": +"30", +"open-delay-time": +"0", +"hold-time": +"90", +"idle-hold-time": +"15", +"min-route-adv-interval": +"30"} +, +"subsequent-address-family-identifier": +{ +"unicast": +"yes", +"multicast": +"no"} +, +"local-address": +{ +"interface": +"ethernet1/5.400"} +, +"max-prefixes": +"5000", +"enable": +"yes", +"peer-as": +"65042", +"enable-mp-bgp": +"yes", +"address-family-identifier": +"ipv4", +"enable-sender-side-loop-detection": +"yes", +"reflector-client": +"non-client", +"peering-type": +"unspecified"} +] +} +, +"aggregated-confed-as-path": +"yes", +"soft-reset-with-stored-info": +"no", +"enable": +"yes"} +] +} +, +"allow-redist-default-route": +"yes", +"reject-default-route": +"no", +"redist-rules": +{ +"entry":[{ +"@name":"daniel-redist", +"set-community": +{ +"member":["nopeer"] +} +, +"set-extended-community": +{ +"member":["0x0001FDE90000FDE9"] +} +, +"address-family-identifier": +"ipv4", +"set-med": +"4242", +"set-local-preference": +"100", +"enable": +"yes", +"set-origin": +"incomplete", +"metric": +"42"} +] +} +} +, +"rip": +{ +"enable": +"no"} +, +"ospf": +{ +"enable": +"no"} +, +"ospfv3": +{ +"enable": +"no"} +, +"redist-profile": +{ +"entry":[{ +"@name":"daniel-redist", +"filter": +{ +"type": +{ +"member":["connect"] +} +} +, +"priority": +"5", +"action": +{ +"redist": +[] +} +} +] +} +, +"redist-profile-ipv6": +{ +"entry":[{ +"@name":"six", +"filter": +{ +"type": +{ +"member":["connect", +"static"] +} +} +, +"priority": +"4", +"action": +{ +"redist": +[] +} +} +] +} +} +, +"routing-table": +{ +"ip": +{ +"static-route": +{ +"entry":[{ +"@name":"default-gw", +"path-monitor": +{ +"enable": +"no", +"failure-condition": +"any", +"hold-time": +"2"} +, +"interface": +"ethernet1/5.400", +"metric": +"10", +"destination": +"0.0.0.0/0", +"route-table": +{ +"unicast": +[] +} +} +, +{ +"@name":"foo", +"nexthop": +{ +"ip-address": +"10.0.42.1"} +, +"path-monitor": +{ +"enable": +"no", +"failure-condition": +"any", +"hold-time": +"2"} +, +"interface": +"ae1", +"metric": +"10", +"destination": +"172.16.42.0/24", +"route-table": +{ +"unicast": +[] +} +} +, +{ +"@name":"bar", +"nexthop": +{ +"ip-address": +"10.0.42.1"} +, +"path-monitor": +{ +"enable": +"no", +"failure-condition": +"any", +"hold-time": +"2"} +, +"interface": +"ae1", +"metric": +"10", +"destination": +"172.17.42.0/28", +"route-table": +{ +"unicast": +[] +} +} +] +} +} +} +} +, +{ +"@name":"test", +"interface": +{ +"member":["ae4", +"ethernet1/6", +"ethernet1/6.12", +"loopback"] +} +, +"admin-dists": +{ +"ospf-ext": +"110"} +, +"ecmp": +{ +"enable": +"no", +"symmetric-return": +"no", +"strict-source-path": +"no", +"algorithm": +{ +"ip-modulo": +[] +} +} +, +"protocol": +{ +"bgp": +{ +"routing-options": +{ +"graceful-restart": +{ +"enable": +"yes"} +} +, +"enable": +"no"} +, +"rip": +{ +"enable": +"no"} +, +"ospf": +{ +"enable": +"yes", +"router-id": +"12.13.14.12", +"reject-default-route": +"no", +"allow-redist-default-route": +"no", +"rfc1583": +"no", +"graceful-restart": +{ +"enable": +"no", +"helper-enable": +"no", +"strict-LSA-checking": +"no"} +, +"auth-profile": +{ +"entry":[{ +"@name":"some", +"password": +"-AQ==Y2fEjdGT1W6nsLqtJbGUVeUp9e4=0oOUfuH9c2XUGkokxpVWpA=="} +, +{ +"@name":"another", +"password": +"-AQ==QL0AFWMIX8NRZTKeof9cXsvbvu8=7RHM82IicpkppvdGEskPBw=="} +] +} +, +"area": +{ +"entry":[{ +"@name":"0.0.0.0", +"type": +{ +"normal": +[] +} +, +"interface": +{ +"entry":[{ +"@name":"ethernet1/6.12", +"enable": +"yes", +"passive": +"no", +"gr-delay": +"10", +"metric": +"10", +"priority": +"1", +"hello-interval": +"10", +"dead-counts": +"4", +"retransmit-interval": +"5", +"transit-delay": +"1", +"link-type": +{ +"broadcast": +[] +} +} +] +} +, +"virtual-link": +{ +"entry":[{ +"@name":"11.11.11.11", +"authentication": +"some", +"enable": +"yes", +"neighbor-id": +"11.11.11.11", +"transit-area-id": +"1.1.1.1", +"hello-interval": +"10", +"dead-counts": +"4", +"retransmit-interval": +"5", +"transit-delay": +"1"} +] +} +} +, +{ +"@name":"1.1.1.1", +"type": +{ +"normal": +[] +} +, +"interface": +{ +"entry":[{ +"@name":"ethernet1/6", +"enable": +"yes", +"passive": +"yes", +"gr-delay": +"10", +"metric": +"10", +"priority": +"1", +"hello-interval": +"10", +"dead-counts": +"4", +"retransmit-interval": +"5", +"transit-delay": +"1", +"link-type": +{ +"broadcast": +[] +} +} +] +} +} +] +} +, +"export-rules": +{ +"entry":[{ +"@name":"test2", +"new-path-type": +"ext-2", +"new-tag": +"9.9.9.9", +"metric": +"123"} +] +} +} +, +"ospfv3": +{ +"enable": +"no"} +, +"redist-profile": +{ +"entry":[{ +"@name":"test", +"filter": +{ +"type": +{ +"member":["connect"] +} +} +, +"priority": +"1", +"action": +{ +"redist": +[] +} +} +, +{ +"@name":"test2", +"filter": +{ +"type": +{ +"member":["bgp", +"connect", +"static"] +} +, +"destination": +{ +"member":["10.10.10.10", +"11.11.0.0/24"] +} +} +, +"priority": +"3", +"action": +{ +"no-redist": +[] +} +} +] +} +} +} +, +{ +"@name":"myvr", +"interface": +{ +"member":["loopback.5"] +} +} +] +} +, +"tunnel": +{ +"ipsec": +[] +, +"global-protect-gateway": +[] +, +"global-protect-site-to-site": +[] +, +"gre": +[] +} +, +"lldp": +{ +"enable": +"yes", +"transmit-interval": +"45"} +, +"dhcp": +{ +"interface": +{ +"entry":[{ +"@name":"ethernet1/6.12", +"relay": +{ +"ip": +{ +"server": +{ +"member":["1.1.1.1"] +} +, +"enabled": +"yes"} +, +"ipv6": +{ +"server": +{ +"entry":[{ +"@name":"2001::1", +"interface": +"ethernet1/6.12"} +] +} +, +"enabled": +"yes"} +} +} +] +} +} +} +{ +"@dirtyId":"23", +"application": +[] +, +"application-group": +[] +, +"service": +[] +, +"service-group": +[] +, +"botnet": +{ +"configuration": +{ +"http": +{ +"dynamic-dns": +{ +"enabled": +"yes", +"threshold": +"5"} +, +"malware-sites": +{ +"enabled": +"yes", +"threshold": +"5"} +, +"recent-domains": +{ +"enabled": +"yes", +"threshold": +"5"} +, +"ip-domains": +{ +"enabled": +"yes", +"threshold": +"10"} +, +"executables-from-unknown-sites": +{ +"enabled": +"yes", +"threshold": +"5"} +} +, +"other-applications": +{ +"irc": +"yes"} +, +"unknown-applications": +{ +"unknown-tcp": +{ +"destinations-per-hour": +"10", +"sessions-per-hour": +"10", +"session-length": +{ +"maximum-bytes": +"100", +"minimum-bytes": +"50"} +} +, +"unknown-udp": +{ +"destinations-per-hour": +"10", +"sessions-per-hour": +"10", +"session-length": +{ +"maximum-bytes": +"100", +"minimum-bytes": +"50"} +} +} +} +, +"report": +{ +"topn": +"100", +"scheduled": +"yes"} +} +, +"admin-role": +[] +, +"content-preview": +{ +"@dirtyId":"23", +"application": +{ +"@dirtyId":"23", +"entry":[{ +"@id":"11950", +"@minver":"8.1.0", +"@name":"abb-netconfig", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"ABB Netconfig is a protocol used by ABB automation software such as ControlBuilder plus (IP Configuration tool) and Drive composer pro tools to discover ABB-specific Ethernet devices in a local network segment by listening to and responding to UDP broadcasts. This App-ID covers ABB Netconfig messages sent from either a workstation running automation software or from an ABB PLC.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://global.abb/group/en"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11961", +"@minver":"8.1.0", +"@name":"anyword-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Anyword is an AI writing platform for enterprise marketing teams. This App-ID covers the deleting traffic of Anyword.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://anyword.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"anyword-base"] +} +, +"risk": +"3", +"parent-app": +"anyword-base", +"preview": +"yes"} +, +{ +"@id":"11799", +"@minver":"8.1.0", +"@name":"anyword-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"anyword", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Anyword is an AI writing platform for enterprise marketing teams. This App-ID covers the traffic of Anyword.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://anyword.com/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket", +{ +"@minver":"3.0.0", +"zendesk-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"anyword-delete", +{ +"@minver":"8.1.0", +"anyword-upload"] +} +, +"risk": +"3", +"application-container": +"anyword", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11960", +"@minver":"8.1.0", +"@name":"anyword-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Anyword is an AI writing platform for enterprise marketing teams. This App-ID covers the uploading traffic of Anyword.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://anyword.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"anyword-base"] +} +, +"risk": +"3", +"parent-app": +"anyword-base", +"preview": +"yes"} +, +{ +"@id":"11949", +"@minver":"8.1.0", +"@name":"aperio-eslide-manager", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Aperio eSlide Manager is a comprehensive digital pathology software solution. Aperio eSlide Manager delivers an effective digital pathology information management system that treats high resolution digital slides-that can be viewed, managed, and analyzed-as an integrated element in pathology workflow. This App-ID covers Aperio eSlide Manager traffic from a user workstation to an Aperio eSlide Manager server.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.leicabiosystems.com/us/digital-pathology/manage/aperio-eslide-manager/"} +] +} +, +"use-applications": +{ +"member":["soap"] +} +, +"risk": +"1", +"parent-app": +"soap", +"preview": +"yes"} +, +{ +"@id":"11990", +"@minver":"8.1.0", +"@name":"beautiful-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the traffic of duplicating a presentation in my presentations section of the beautiful web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"beautiful-base", +"preview": +"yes"} +, +{ +"@id":"11820", +"@minver":"8.1.0", +"@name":"beautiful-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"beautiful", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the traffic of beautiful.", +"icon": +{ +"@minver":"7.0.0", +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-cloud-storage-base", +{ +"@minver":"5.0.0", +"google-cloud-storage-download", +{ +"@minver":"3.0.0", +"google-cloud-storage-upload", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-copy", +{ +"@minver":"8.1.0", +"beautiful-delete", +{ +"@minver":"8.1.0", +"beautiful-download", +{ +"@minver":"8.1.0", +"beautiful-move", +{ +"@minver":"8.1.0", +"beautiful-share", +{ +"@minver":"8.1.0", +"beautiful-upload"] +} +, +"risk": +"3", +"application-container": +"beautiful", +"parent-app": +"google-cloud-storage-upload", +"preview": +"yes"} +, +{ +"@id":"11991", +"@minver":"8.1.0", +"@name":"beautiful-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the traffic of deleting a root folder from team folders tab in my presentations section of the beautiful web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Deleting]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"beautiful-base", +"preview": +"yes"} +, +{ +"@id":"11995", +"@minver":"8.1.0", +"@name":"beautiful-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the downloading traffic of the beautiful web application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Downloading]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"beautiful-base", +"preview": +"yes"} +, +{ +"@id":"11993", +"@minver":"8.1.0", +"@name":"beautiful-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the traffic of moving a presentation between workspaces of the beautiful web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"beautiful-base", +"preview": +"yes"} +, +{ +"@id":"11992", +"@minver":"8.1.0", +"@name":"beautiful-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the traffic of sharing a presentation to other collaborators in my presentations section of the beautiful web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"beautiful-base", +"preview": +"yes"} +, +{ +"@id":"11994", +"@minver":"8.1.0", +"@name":"beautiful-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Beautiful is AI-powered presentation software for teams. Stay on brand, level up and automate presentation design, and collaborate from anywhere. This App-ID covers the traffic of importing PPT in the beautiful web application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beautiful.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"beautiful-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"beautiful-base", +"preview": +"yes"} +, +{ +"@id":"11970", +"@minver":"8.1.0", +"@name":"bito-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"Bito is a LLM-powered general-purpose AI assistance, which helps developers to write code, understand syntax, write test cases, explain code, comment on code, check security, improve performance, and explain high-level concepts. This App-ID covers the invite traffic of Bito.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://bito.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"bito-base"] +} +, +"risk": +"3", +"parent-app": +"bito-base", +"preview": +"yes"} +, +{ +"@id":"11857", +"@minver":"8.1.0", +"@name":"bito-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"bito", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"Bito is a LLM-powered general-purpose AI assistance, which helps developers to write code, understand syntax, write test cases, explain code, comment on code, check security, improve performance, and explain high-level concepts. This App-ID covers Bito traffic.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://bito.ai"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"bito-invite", +{ +"@minver":"8.1.0", +"bito-share"] +} +, +"risk": +"3", +"application-container": +"bito", +"parent-app": +"github-downloading", +"preview": +"yes"} +, +{ +"@id":"11951", +"@minver":"8.1.0", +"@name":"bito-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"Bito is a LLM-powered general-purpose AI assistance, which helps developers to write code, understand syntax, write test cases, explain code, comment on code, check security, improve performance, and explain high-level concepts. This App-ID covers the share traffic of Bito.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Generative AI]", +"[Sharing]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://bito.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"bito-base"] +} +, +"risk": +"3", +"parent-app": +"bito-base", +"preview": +"yes"} +, +{ +"@id":"11936", +"@minver":"8.1.0", +"@name":"chatbot-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers traffic of duplicating an existing chatbot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Developer Platform]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11935", +"@minver":"8.1.0", +"@name":"chatbot-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers traffic of creating a new chatbot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Developer Platform]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11954", +"@minver":"8.1.0", +"@name":"chatbot-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers the deleting traffic of Chatbot application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Developer Platform]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11953", +"@minver":"8.1.0", +"@name":"chatbot-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers the traffic of downloading report in the Chatbot application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Developer Platform]", +"[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11937", +"@minver":"8.1.0", +"@name":"chatbot-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers traffic of editing an existing chatbot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Developer Platform]", +"[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11938", +"@minver":"8.1.0", +"@name":"chatbot-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers traffic of posting a message in the chat while testing a chatbot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Developer Platform]", +"[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11939", +"@minver":"8.1.0", +"@name":"chatbot-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Chatbot is an interface for creating and maintaining user-made chatbots. This App-ID covers the uploading traffic of Chatbot application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Developer Platform]", +"[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chatbot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"chatbot-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"chatbot-base", +"preview": +"yes"} +, +{ +"@id":"11947", +"@minver":"8.1.0", +"@name":"claid-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Claid helps users create and improve eCommerce images, such as increasing resolution, removing backgrounds, and making high quality AI pictures that convert. This App-ID covers the downloading traffic for Claid.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://claid.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"claid-base"] +} +, +"risk": +"3", +"parent-app": +"claid-base", +"preview": +"yes"} +, +{ +"@id":"11859", +"@minver":"8.1.0", +"@name":"claid-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"claid", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Claid helps users create and improve eCommerce images, such as increasing resolution, removing backgrounds, and making high quality AI pictures that convert. This App-ID covers the web traffic for Claid.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAAtFBMVEUAAAD////////////////////////////////////////////////////////////////////////////////////i4uPExManp6mYmJuKiox7e35tbXBPT1NeXmHw8PG2trgyMjYjIygVFRpBQUXT09QyMjdsbHDFxcbh4ePh4eLS0tT///+ZmZp8fH7x8fG1tbioqKlQUFPi4uKKio0kJCiZmZt7e3/T09NAQEVdXWH///9WuYv0AAAAPHRSTlMAEDBQYICfv8/f7/+vkEBvfyBfj3Cg/////////////////////////////0///////////////////7B74uKHAAABQElEQVR4nO2X2wrCMAyGezERKQxRPKDUibv2gOje/9Hc1rlTkyZbKoL4Xyb5v2VM20SpRpotBWjKtxda9P3D7E4Xw+25lkJ/q4mxfj2XArTUbwkzKUDiLwm+9DEtdPAC0FTaFVI1wQApILgFtj3XlgtA/GATEKAu39ShE0oAAFXpvRt9IAQXgDZr43sKYMvWrv+dIgD2ZTPIDxP6AO+vxmbPPoDfX+VJAO63+R0OoBrQ2hQiAD6/q7CAmxRQ+g1WygUM8/8Bvwp4CgDJ1/9MFpAIAIZswSkYc6R1zvzQhyrnWO/e0X1A5iNwLhb8amRebeTlSgPq8YATJQYM44ac4o+MOPW3oO0YAGziChZ6BlX66bliala+GANNh00DAYbtSOiXLxzylUethP7RLUTN4jgRPT/E6jscAe3v/BeJW6YXn8HXCGVUFdwAAAAASUVORK5CYII=", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Image Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://claid.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"claid-download", +{ +"@minver":"8.1.0", +"claid-upload"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"application-container": +"claid", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11946", +"@minver":"8.1.0", +"@name":"claid-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Claid helps users create and improve eCommerce images, such as increasing resolution, removing backgrounds, and making high quality AI pictures that convert. This App-ID covers the uploading traffic for Claid.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Image Editor & Generator]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://claid.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"claid-base"] +} +, +"risk": +"3", +"parent-app": +"claid-base", +"preview": +"yes"} +, +{ +"@id":"11921", +"@minver":"8.1.0", +"@name":"copysmith", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Copysmith is the AI content creation solution for teams needing to create, launch and distribute marketing content at scale. This App-ID covers the web traffic for Copysmith.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://copysmith.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11968", +"@minver":"8.1.0", +"@name":"elaiapp-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Elai.io is an All-in-One AI video generation platform for corporate learning. This App-ID covers the deleting traffic of Elai.io.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Conversational Agent]", +"[Deleting]", +"[Generative AI]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://elai.io/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"elaiapp-base"] +} +, +"risk": +"2", +"parent-app": +"elaiapp-base", +"preview": +"yes"} +, +{ +"@id":"11796", +"@minver":"8.1.0", +"@name":"elaiapp-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"elaiapp", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Elai.io is an All-in-One AI video generation platform for corporate learning. This App-ID covers the traffic of Elai.io.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAAAAACPAi4CAAACF0lEQVR4nGNgGAWjYBQMDsCIW4qZ9f9Psg0QtbbVluT89+H+mYPn/5LuLO2pz/7DwJ8TKdwkaufv/PQfBZz3JEm/zun/6OBPCwvx+i2fYuj/////AjZi9Ws/w6b///8ZeKILGfCfw67///8cHDrQDO4ugbF+nj33gl3VQgHG/2hxgxgPfIVZuNQI4qL42zCRFcT4YCZU8fcUuJDEVqjYT33C+sVeQdT+S0IS5DkENaGbsAEhUKVLUEQ1P0JEr7ITNGASROUXNVThiRDhHxrY9KAkMW0o3Yui5L8UhGZXwxYPyAawSkBobh/sDpTBJsiEbAAHdo0wwEvIgP//8Bvwh5ABPz/hN+A9NkHkMPj3EJL8fm3AXpSdxm8+AwNDFSS+/voRVIkDWPyFmHBDCFk0hHjz2C5Ak+J6LoSg0+d/MySINSELlvV2wVIdU/KH////340g0gDe6zAT3k2wEeHgVorZD+WvVCfOBN+/iDLo5c17XxC8LcwMDAwMTtMWpXHiNaEbR4n2xpCBgYGh6M////+38+AzgG05Vv1fvBkYGBjUv/3//////0K8TuCcj0X/a0j2SoTwtuMPBsaST+j6jxlApKIg3I34DWBgMFj7C1n7w2JYqpB+/f//////YwkZwMBgNvE61Ix3e9JFEeKBr////zcFpRDCVeFwqqhJ8/15ff/mUxRhJXeeE4cJO2AUjIJRMArIAQDpLuIH6D/L/wAAAABJRU5ErkJggg==", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Conversational Agent]", +"[Generative AI]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://elai.io/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"5.0.0", +"freshdesk", +{ +"@minver":"8.1.0", +"giphy-base", +"ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"elaiapp-delete", +{ +"@minver":"8.1.0", +"elaiapp-download", +{ +"@minver":"8.1.0", +"elaiapp-upload"] +} +, +"risk": +"2", +"application-container": +"elaiapp", +"parent-app": +"vimeo-base", +"preview": +"yes"} +, +{ +"@id":"11967", +"@minver":"8.1.0", +"@name":"elaiapp-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Elai.io is an All-in-One AI video generation platform for corporate learning. This App-ID covers the downloading traffic of Elai.io.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Conversational Agent]", +"[Downloading]", +"[Generative AI]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://elai.io/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"elaiapp-base"] +} +, +"risk": +"2", +"parent-app": +"elaiapp-base", +"preview": +"yes"} +, +{ +"@id":"11965", +"@minver":"8.1.0", +"@name":"elaiapp-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Elai.io is an All-in-One AI video generation platform for corporate learning. This App-ID covers the uploading traffic of Elai.io.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Conversational Agent]", +"[Generative AI]", +"[Uploading]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://elai.io/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"elaiapp-base"] +} +, +"risk": +"2", +"parent-app": +"elaiapp-base", +"preview": +"yes"} +, +{ +"@id":"11963", +"@minver":"8.1.0", +"@name":"garmin-nmea-sentence", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"NMEA (National Marine Electronics Association) 0183 is a combined electrical and data specification for communication between marine electronics such as echo sounder, sonars, anemometer, gyrocompass, autopilot, GPS receivers and many other types of instruments. This App-ID covers Garmin proprietary NMEA sentences sent over a network.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.nmea.org/nmea-0183.html"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11948", +"@minver":"8.1.0", +"@name":"google-cloud-search", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"browser-based", +"description": +"Google Cloud Search is a search engine for files in a Google business domain. This App-ID covers traffic for accessing and using Google Cloud Search.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://workspace.google.com/products/cloud-search/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"1", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"11966", +"@minver":"8.1.0", +"@name":"google-keep-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Google Keep is a service provided by Google which integrates note-taking and web surfing. Announced on March 20, 2013, Google Keep is available both on Google Play for the Android mobile operating system and on Google Drive as a web application. This App-ID covers traffic for creating new notes on the service.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://drive.google.com/keep/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Google_Keep"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"google-keep-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-keep-delete", +{ +"@minver":"8.1.0", +"google-keep-edit", +{ +"@minver":"8.1.0", +"google-keep-share", +{ +"@minver":"8.1.0", +"google-keep-upload"] +} +, +"risk": +"2", +"parent-app": +"google-keep-base", +"preview": +"yes"} +, +{ +"@id":"1717", +"@minver":"3.1.0", +"@name":"google-keep-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"google-keep", +"category": +"saas", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Google Keep is a service provided by Google which integrates note-taking and web surfing. Announced on March 20, 2013, Google Keep is available both on Google Play for the Android mobile operating system and on Google Drive as a web application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"trusted-credential": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Google Keep", +"link": +"https://drive.google.com/keep/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Google_Keep"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.1.0", +"google-drive-web-base", +{ +"@minver":"3.1.0", +"google-voice-actions", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-keep-create"] +} +, +"applicable-decoders": +{ +"member":["http", +"ssl"] +} +, +"risk": +"2", +"application-container": +"google-keep", +"preview": +"yes"} +, +{ +"@id":"11989", +"@minver":"8.1.0", +"@name":"google-keep-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Google Keep is a service provided by Google which integrates note-taking and web surfing. Announced on March 20, 2013, Google Keep is available both on Google Play for the Android mobile operating system and on Google Drive as a web application. This App-ID covers traffic for trashing and deleting notes.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://drive.google.com/keep/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Google_Keep"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-keep-create"] +} +, +"risk": +"2", +"parent-app": +"google-keep-create", +"preview": +"yes"} +, +{ +"@id":"11971", +"@minver":"8.1.0", +"@name":"google-keep-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Google Keep is a service provided by Google which integrates note-taking and web surfing. Announced on March 20, 2013, Google Keep is available both on Google Play for the Android mobile operating system and on Google Drive as a web application. This App-ID covers traffic for text changes on new or existing notes.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://drive.google.com/keep/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Google_Keep"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-keep-create"] +} +, +"risk": +"2", +"parent-app": +"google-keep-create", +"preview": +"yes"} +, +{ +"@id":"11988", +"@minver":"8.1.0", +"@name":"google-keep-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Google Keep is a service provided by Google which integrates note-taking and web surfing. Announced on March 20, 2013, Google Keep is available both on Google Play for the Android mobile operating system and on Google Drive as a web application. This App-ID covers traffic for adding and removing editing permissions for notes.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://drive.google.com/keep/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Google_Keep"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-keep-create"] +} +, +"risk": +"2", +"parent-app": +"google-keep-create", +"preview": +"yes"} +, +{ +"@id":"11972", +"@minver":"8.1.0", +"@name":"google-keep-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Google Keep is a service provided by Google which integrates note-taking and web surfing. Announced on March 20, 2013, Google Keep is available both on Google Play for the Android mobile operating system and on Google Drive as a web application. This App-ID covers traffic for uploading images into notes.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://drive.google.com/keep/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Google_Keep"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-keep-create"] +} +, +"risk": +"3", +"parent-app": +"google-keep-create", +"preview": +"yes"} +, +{ +"@id":"11959", +"@minver":"8.1.0", +"@name":"gquic", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"browser-based", +"description": +"gQUIC (Google Quick UDP Internet Connections) is a protocol made by Google and originally designed for transmission of HTTP/2 frames. It works with Chrome and gives the incentive to standardize QUIC. This App-ID covers the traffic of gQUIC.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.chromium.org/quic/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/QUIC#Google_QUIC_(gQUIC)"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"quic-base"] +} +, +"risk": +"1", +"parent-app": +"quic-base", +"preview": +"yes"} +, +{ +"@id":"2061", +"@minver":"3.0.0", +"@name":"quic-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"quic", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"browser-based", +"description": +"QUIC (Quick UDP Internet Connections, pronounced quick) is an experimental transport layer network protocol developed by Google. QUIC supports a set of multiplexed connections between two endpoints over User Datagram Protocol (UDP), and was designed to provide security protection equivalent to TLS/SSL, along with reduced connection and transport latency, and bandwidth estimation in each direction to avoid congestion. QUIC's main goal is to optimize connection-oriented web applications currently using TCP.", +"alg": +"no", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"yes", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"timeout": +"120", +"run-decoder": +"no", +"cachable": +"no", +"file-forward": +"no", +"can-disable": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/QUIC"} +, +{ +"@name":"HomePage", +"link": +"https://www.chromium.org/quic/"} +] +} +, +"tunnel-applications": +{ +"member":[{ +"@minver":"8.1.0", +"gquic", +"youtube-base"] +} +, +"risk": +"1", +"application-container": +"quic", +"preview": +"yes"} +, +{ +"@id":"11977", +"@minver":"8.1.0", +"@name":"humanloop-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Humanloop provides developer tooling for integrations with large language models, including prompt management and evaluation. This App-ID covers the deleting traffic for Humanloop platform.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Deleting]", +"[Developer Platform]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://humanloop.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"humanloop-base"] +} +, +"risk": +"2", +"parent-app": +"humanloop-base", +"preview": +"yes"} +, +{ +"@id":"11811", +"@minver":"8.1.0", +"@name":"humanloop-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"humanloop", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Humanloop provides developer tooling for integrations with large language models, including prompt management and evaluation. This App-ID covers the Humanloop platform.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Developer Platform]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://humanloop.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"humanloop-delete", +{ +"@minver":"8.1.0", +"humanloop-download", +{ +"@minver":"8.1.0", +"humanloop-upload"] +} +, +"risk": +"2", +"application-container": +"humanloop", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11976", +"@minver":"8.1.0", +"@name":"humanloop-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Humanloop provides developer tooling for integrations with large language models, including prompt management and evaluation. This App-ID covers the downloading traffic for Humanloop platform.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Developer Platform]", +"[Downloading]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://humanloop.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"humanloop-base"] +} +, +"risk": +"2", +"parent-app": +"humanloop-base", +"preview": +"yes"} +, +{ +"@id":"11975", +"@minver":"8.1.0", +"@name":"humanloop-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Humanloop provides developer tooling for integrations with large language models, including prompt management and evaluation. This App-ID covers the uploading traffic for Humanloop platform.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Code Assistant & Generator]", +"[Conversational Agent]", +"[Developer Platform]", +"[Generative AI]", +"[Uploading]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://humanloop.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"humanloop-base"] +} +, +"risk": +"2", +"parent-app": +"humanloop-base", +"preview": +"yes"} +, +{ +"@id":"11927", +"@minver":"8.1.0", +"@name":"microsoft-excel", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Excel is a spreadsheet software program with data visualization and analysis tool. This App-ID covers the traffic of Microsoft Excel.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://products.office.com/en-us/excel"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"8.1.0", +"ms-onedrive-business-share", +{ +"@minver":"5.0.0", +"ms-onedrive-uploading", +{ +"@minver":"5.0.0", +"office365-enterprise-access", +{ +"@minver":"5.0.0", +"sharepoint-online-editing"] +} +, +"risk": +"2", +"parent-app": +"office365-enterprise-access", +"preview": +"yes"} +, +{ +"@id":"11945", +"@minver":"8.1.0", +"@name":"nmea-sentence", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"NMEA (National Marine Electronics Association) 0183 is a combined electrical and data specification for communication between marine electronics such as echo sounder, sonars, anemometer, gyrocompass, autopilot, GPS receivers and many other types of instruments. This App-ID covers NMEA sentences sent over a network.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.nmea.org/nmea-0183.html"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11980", +"@minver":"8.1.0", +"@name":"openai-api-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAI is an American artificial intelligence research laboratory consisting of the non-profit OpenAI Incorporated and its for-profit subsidiary corporation OpenAI Limited Partnership. OpenAI API is a cloud-based service that provides developers with easy access to advanced AI models. This App-ID covers the deleting traffic of OpenAI API.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Code Assistant & Generator]", +"[Conversational Agent]", +"[Deleting]", +"[Developer Platform]", +"[Enterprise Search]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +, +{ +"@name":"OpenAI API", +"link": +"https://openai.com/blog/openai-api"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-api"] +} +, +"risk": +"2", +"parent-app": +"openai-api", +"preview": +"yes"} +, +{ +"@id":"11979", +"@minver":"8.1.0", +"@name":"openai-api-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAI is an American artificial intelligence research laboratory consisting of the non-profit OpenAI Incorporated and its for-profit subsidiary corporation OpenAI Limited Partnership. OpenAI API is a cloud-based service that provides developers with easy access to advanced AI models. This App-ID covers the downloading traffic of OpenAI API.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Code Assistant & Generator]", +"[Conversational Agent]", +"[Developer Platform]", +"[Downloading]", +"[Enterprise Search]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +, +{ +"@name":"OpenAI API", +"link": +"https://openai.com/blog/openai-api"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-api"] +} +, +"risk": +"2", +"parent-app": +"openai-api", +"preview": +"yes"} +, +{ +"@id":"11978", +"@minver":"8.1.0", +"@name":"openai-api-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAI is an American artificial intelligence research laboratory consisting of the non-profit OpenAI Incorporated and its for-profit subsidiary corporation OpenAI Limited Partnership. OpenAI API is a cloud-based service that provides developers with easy access to advanced AI models. This App-ID covers the uploading traffic of OpenAI API.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Code Assistant & Generator]", +"[Conversational Agent]", +"[Developer Platform]", +"[Enterprise Search]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Uploading]", +"[Video Editor & Generator]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +, +{ +"@name":"OpenAI API", +"link": +"https://openai.com/blog/openai-api"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-api"] +} +, +"risk": +"2", +"parent-app": +"openai-api", +"preview": +"yes"} +, +{ +"@id":"11944", +"@minver":"8.1.0", +"@name":"opto22-pac-control", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Opto 22 PAC Control, part of the PAC Project Software Suite, is an intuitive, flowchart-based tool for programming industrial automation, process control, building automation, remote monitoring, data acquisition, and Industrial Internet of Things (IIoT) applications. This App-ID covers communication of PAC Control traffic on an employee workstation to an Opto 22 programmable industrial controller.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.opto22.com/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11981", +"@minver":"8.1.0", +"@name":"runway-app-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the traffic of creating a new folder and new video editor project in the runway web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11797", +"@minver":"8.1.0", +"@name":"runway-app-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"runway-app", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers traffic of the Runway application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-create", +{ +"@minver":"8.1.0", +"runway-app-delete", +{ +"@minver":"8.1.0", +"runway-app-download", +{ +"@minver":"8.1.0", +"runway-app-edit", +{ +"@minver":"8.1.0", +"runway-app-move", +{ +"@minver":"8.1.0", +"runway-app-share", +{ +"@minver":"8.1.0", +"runway-app-upload"] +} +, +"risk": +"3", +"application-container": +"runway-app", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11985", +"@minver":"8.1.0", +"@name":"runway-app-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the deleting traffic of the runway web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Deleting]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11987", +"@minver":"8.1.0", +"@name":"runway-app-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the traffic of downloading an asset in the runway web application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Downloading]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11984", +"@minver":"8.1.0", +"@name":"runway-app-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the traffic of renaming a folder, asset and video editor project in the runway web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Editing]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11982", +"@minver":"8.1.0", +"@name":"runway-app-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the traffic of moving a folder, asset and project in the runway web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11983", +"@minver":"8.1.0", +"@name":"runway-app-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the traffic of sharing a project to other collaborators in the Video Editor Projects tab of the runway web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Sharing]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11986", +"@minver":"8.1.0", +"@name":"runway-app-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Runway is an image and video generating AI. This App-ID covers the uploading traffic of the runway web application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Generative AI]", +"[Image Editor & Generator]", +"[Uploading]", +"[Video Editor & Generator]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://runwayml.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"runway-app-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"runway-app-base", +"preview": +"yes"} +, +{ +"@id":"11958", +"@minver":"8.1.0", +"@name":"sapling.ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sapling is a language model based copilot designed to assist customer-facing teams. It operates as a browser extension in order to augment CRMs and messaging platforms with AI powered features. This App-ID covers downloading traffic for Sapling web and extension.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Downloading]", +"[Generative AI]", +"[Meeting Assistant]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sapling.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sapling.ai-base"] +} +, +"risk": +"2", +"parent-app": +"sapling.ai-base", +"preview": +"yes"} +, +{ +"@id":"11810", +"@minver":"8.1.0", +"@name":"sapling.ai-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"sapling.ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"Sapling is a language model based copilot designed to assist customer-facing teams. It operates as a browser extension in order to augment CRMs and messaging platforms with AI powered features. This App-ID covers Sapling web and extension traffic.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Generative AI]", +"[Meeting Assistant]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sapling.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sapling.ai-download", +{ +"@minver":"8.1.0", +"sapling.ai-upload"] +} +, +"risk": +"2", +"application-container": +"sapling.ai", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11957", +"@minver":"8.1.0", +"@name":"sapling.ai-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sapling is a language model based copilot designed to assist customer-facing teams. It operates as a browser extension in order to augment CRMs and messaging platforms with AI powered features. This App-ID covers uploading traffic for Sapling web and extension.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Generative AI]", +"[Meeting Assistant]", +"[Uploading]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sapling.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sapling.ai-base"] +} +, +"risk": +"2", +"parent-app": +"sapling.ai-base", +"preview": +"yes"} +, +{ +"@id":"11943", +"@minver":"8.1.0", +"@name":"sembly-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sembly records, transcribes and generates meeting summaries. This App-ID covers the deleting traffic of sembly.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Deleting]", +"[Generative AI]", +"[Meeting Assistant]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sembly.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sembly-base"] +} +, +"risk": +"4", +"parent-app": +"sembly-base", +"preview": +"yes"} +, +{ +"@id":"11819", +"@minver":"8.1.0", +"@name":"sembly-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"sembly", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sembly records, transcribes and generates meeting summaries. This App-ID covers traffic on the sembly interface.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Generative AI]", +"[Meeting Assistant]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sembly.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sembly-delete", +{ +"@minver":"8.1.0", +"sembly-download", +{ +"@minver":"8.1.0", +"sembly-share", +{ +"@minver":"8.1.0", +"sembly-upload"] +} +, +"risk": +"4", +"application-container": +"sembly", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"11941", +"@minver":"8.1.0", +"@name":"sembly-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sembly records, transcribes and generates meeting summaries. This App-ID covers the md filetype downloading traffic of sembly.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Downloading]", +"[Generative AI]", +"[Meeting Assistant]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sembly.ai/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-cloud-storage-base", +{ +"@minver":"8.1.0", +"sembly-base"] +} +, +"risk": +"4", +"parent-app": +"google-cloud-storage-download", +"preview": +"yes"} +, +{ +"@id":"11942", +"@minver":"8.1.0", +"@name":"sembly-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sembly records, transcribes and generates meeting summaries. This App-ID covers the sharing traffic of sembly.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Generative AI]", +"[Meeting Assistant]", +"[Sharing]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sembly.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sembly-base"] +} +, +"risk": +"4", +"parent-app": +"sembly-base", +"preview": +"yes"} +, +{ +"@id":"11940", +"@minver":"8.1.0", +"@name":"sembly-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sembly records, transcribes and generates meeting summaries. This App-ID covers the uploading traffic of sembly.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Conversational Agent]", +"[Generative AI]", +"[Meeting Assistant]", +"[Uploading]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sembly.ai/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-cloud-storage-base", +{ +"@minver":"8.1.0", +"sembly-base"] +} +, +"risk": +"4", +"parent-app": +"google-cloud-storage-upload", +"preview": +"yes"} +, +{ +"@id":"11933", +"@minver":"8.1.0", +"@name":"sick-sopas-cola-a", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The SOPAS (SICK Open Portal for Applications and Systems) protocol is used to communicate with sensor devices from SICK AG. SOPAS utilizes command strings (telegrams) and comes in two protocol formats: CoLa A (Command Language A) with ASCII telegram format, and CoLa B with binary telegram format. This App-ID covers SICK SOPAS CoLa A traffic.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sick.com/us/en/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11969", +"@minver":"8.1.0", +"@name":"siemens-plc-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Siemens PLCs have built-in web servers that enable monitoring and administering PLCs over a network. This App-ID covers Siemens PLC Web Server traffic.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.siemens.com/global/en/products/automation/systems/industrial/plc.html"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11934", +"@minver":"8.1.0", +"@name":"target-communication-framework", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"Target Communication Framework (TCF) is a vendor-neutral, lightweight, extensible network protocol for communicating with embedded systems (targets). It can be used to unify many currently independent communication links, thus saving resources and making setup and configuration easier than in current embedded development scenarios. This App-ID covers the TCF protocol.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://projects.eclipse.org/projects/tools.tcf"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11973", +"@minver":"8.1.0", +"@name":"tettra-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tettra is an AI-powered knowledge base and knowledge management software. Curate company information and get instant answers to your team's repetitive questions. This App-ID covers the downloading traffic for Tettra platform.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Enterprise Search]", +"[Generative AI]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tettra.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tettra-base"] +} +, +"risk": +"3", +"parent-app": +"tettra-base", +"preview": +"yes"} +, +{ +"@id":"11974", +"@minver":"8.1.0", +"@name":"tettra-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tettra is an AI-powered knowledge base and knowledge management software. Curate company information and get instant answers to your team's repetitive questions. This App-ID covers the traffic for tettra-upload application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise Search]", +"[Generative AI]", +"[Uploading]", +"[Web App]", +"[Writing Assistant]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tettra.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tettra-base"] +} +, +"risk": +"3", +"parent-app": +"tettra-base", +"preview": +"yes"} +, +{ +"@id":"11926", +"@minver":"8.1.0", +"@name":"topcon-receiver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Topcon Positioning Group is an industry leading designer, manufacturer and distributor of precision measurement and workflow solutions for the global construction, geospatial and agriculture markets. The Topcon GNSS (Global Navigation Satellite System) receiver device receives and processes signals sent by satellites from space. The receiver then uses these signals to calculate its own location in space, velocity, and time. This App-ID covers communication traffic to a Topcon GNSS receiver.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.topconpositioning.com/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11956", +"@minver":"8.1.0", +"@name":"voiceflow-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Voiceflow is a collaborative AI agent building platform for teams to design, develop, and launch chat and voice experiences at scale. This App-ID covers the downloading traffic for Voiceflow application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Developer Platform]", +"[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.voiceflow.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"voiceflow-base"] +} +, +"risk": +"3", +"parent-app": +"voiceflow-base", +"preview": +"yes"} +, +{ +"@id":"11802", +"@minver":"8.1.0", +"@name":"voiceflow-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"voiceflow", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Voiceflow is a collaborative AI agent building platform for teams to design, develop, and launch chat and voice experiences at scale. This App-ID covers the traffic for Voiceflow application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Developer Platform]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.voiceflow.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"voiceflow-download", +{ +"@minver":"8.1.0", +"voiceflow-upload"] +} +, +"risk": +"3", +"application-container": +"voiceflow", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"11955", +"@minver":"8.1.0", +"@name":"voiceflow-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Voiceflow is a collaborative AI agent building platform for teams to design, develop, and launch chat and voice experiences at scale. This App-ID covers the uploading traffic for Voiceflow application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Audio Generator]", +"[Developer Platform]", +"[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.voiceflow.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"voiceflow-base"] +} +, +"risk": +"3", +"parent-app": +"voiceflow-base", +"preview": +"yes"} +, +{ +"@id":"12069", +"@minver":"8.1.0", +"@name":"br-ina", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"B&R Industrial Automation GmbH is a manufacturer of automation technology and is a leading global solution provider for automating machines and factories. B&R INA (Industrial Network Architecture) is a communication protocol to exchange data with B&R PLCs. This App-ID covers B&R INA communication between engineering workstations running B&R Automation Studio and B&R PLCs or HMIs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.br-automation.com/en-us/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12037", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-changed-prop", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers changing module properties using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12031", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers downloading a project from a controller using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12039", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-misc", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers CIP actions under private class id 0x8e and service code 0x35.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12034", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-offline", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers going offline from a controller using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12033", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-online", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers going online to a controller using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12035", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-prg-mode", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers changing the controller to program mode using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12036", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-rename", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers renaming a module using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12038", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-run-mode", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers changing the controller to run mode using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"12032", +"@minver":"8.1.0", +"@name":"cip-ethernet-ip-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EtherNet/IP is a member of a family of networks that implements the Common Industrial Protocol (CIP) at its upper layers. CIP encompasses a comprehensive suite of messages and services for a variety of manufacturing automation applications, including control, safety, synchronization, motion, configuration and information. This App-ID covers uploading a controller to a project using CIP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Uploading]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/EtherNet/IP"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"cip-ethernet-ip-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"cip-ethernet-ip-base", +"preview": +"yes"} +, +{ +"@id":"11925", +"@minver":"8.1.0", +"@name":"coveo-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the deleting traffic of the Coveo platform.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"coveo-base", +"preview": +"yes"} +, +{ +"@id":"11922", +"@minver":"8.1.0", +"@name":"coveo-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"coveo", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the traffic of the Coveo platform.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-delete", +{ +"@minver":"8.1.0", +"coveo-download", +{ +"@minver":"8.1.0", +"coveo-logout", +{ +"@minver":"8.1.0", +"coveo-share", +{ +"@minver":"8.1.0", +"coveo-upload"] +} +, +"risk": +"3", +"application-container": +"coveo", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11922", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"coveo", +"ottawa-name": +"coveo", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the traffic of the Coveo platform.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-delete", +{ +"@minver":"8.1.0", +"coveo-download", +{ +"@minver":"8.1.0", +"coveo-logout", +{ +"@minver":"8.1.0", +"coveo-share", +{ +"@minver":"8.1.0", +"coveo-upload"] +} +, +"risk": +"3", +"application-container": +"coveo", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12026", +"@minver":"8.1.0", +"@name":"coveo-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the downloading traffic of the Coveo platform.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"coveo-base", +"preview": +"yes"} +, +{ +"@id":"11923", +"@minver":"8.1.0", +"@name":"coveo-logout", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the logout traffic of the Coveo platform.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"coveo-base", +"preview": +"yes"} +, +{ +"@id":"11924", +"@minver":"8.1.0", +"@name":"coveo-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the sharing traffic of the Coveo platform.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"coveo-base", +"preview": +"yes"} +, +{ +"@id":"12025", +"@minver":"8.1.0", +"@name":"coveo-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Coveo is a composable AI search and generative experience platform. This App-ID covers the uploading traffic of the Coveo platform.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.coveo.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"coveo-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"coveo-base", +"preview": +"yes"} +, +{ +"@id":"12030", +"@minver":"8.1.0", +"@name":"facebook-reactions", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Facebook (branded as \"facebook\") is a social networking website launched on February 4, 2004. This App-ID covers traffic of reacting to posts and comments of other users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.facebook.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Facebook"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"facebook-posting"] +} +, +"risk": +"2", +"parent-app": +"facebook-posting", +"preview": +"yes"} +, +{ +"@id":"12047", +"@minver":"8.1.0", +"@name":"fireflies.ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Fireflies is an AI voice assistant that helps transcribe, summarize, take notes, and complete actions during meetings. This App-ID covers the deleting traffic of Fireflies AI.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fireflies.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"fireflies.ai-base"] +} +, +"risk": +"2", +"parent-app": +"fireflies.ai-base", +"preview": +"yes"} +, +{ +"@id":"12014", +"@minver":"8.1.0", +"@name":"fireflies.ai-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"fireflies.ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Fireflies is an AI voice assistant that helps transcribe, summarize, take notes, and complete actions during meetings. This App-ID covers the traffic of Fireflies AI.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fireflies.ai"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"fireflies.ai-delete", +{ +"@minver":"8.1.0", +"fireflies.ai-download", +{ +"@minver":"8.1.0", +"fireflies.ai-upload"] +} +, +"risk": +"2", +"application-container": +"fireflies.ai", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12014", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"fireflies.ai", +"ottawa-name": +"fireflies.ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Fireflies is an AI voice assistant that helps transcribe, summarize, take notes, and complete actions during meetings. This App-ID covers the traffic of Fireflies AI.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fireflies.ai"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"fireflies.ai-delete", +{ +"@minver":"8.1.0", +"fireflies.ai-download", +{ +"@minver":"8.1.0", +"fireflies.ai-upload"] +} +, +"risk": +"2", +"application-container": +"fireflies.ai", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12046", +"@minver":"8.1.0", +"@name":"fireflies.ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Fireflies is an AI voice assistant that helps transcribe, summarize, take notes, and complete actions during meetings. This App-ID covers the downloading traffic of Fireflies AI.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fireflies.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"fireflies.ai-base"] +} +, +"risk": +"2", +"parent-app": +"fireflies.ai-base", +"preview": +"yes"} +, +{ +"@id":"12045", +"@minver":"8.1.0", +"@name":"fireflies.ai-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Fireflies is an AI voice assistant that helps transcribe, summarize, take notes, and complete actions during meetings. This App-ID covers the uploading traffic of Fireflies AI.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fireflies.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"fireflies.ai-base"] +} +, +"risk": +"2", +"parent-app": +"fireflies.ai-base", +"preview": +"yes"} +, +{ +"@id":"12027", +"@minver":"8.1.0", +"@name":"github-pages", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"client-server", +"description": +"GitHub Pages is a static web hosting service for blogs, project documentation, and books. All GitHub Pages content is stored in a Git repository as files served to visitors verbatim or in Markdown format. This App-ID covers the traffic of GitHub Pages.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://pages.github.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/GitHub#GitHub_Pages"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"github-base"] +} +, +"risk": +"2", +"parent-app": +"github-base", +"preview": +"yes"} +, +{ +"@id":"12088", +"@minver":"8.1.0", +"@name":"google-sites-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the create traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-edit"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-sites-base", +"preview": +"yes"} +, +{ +"@id":"11931", +"@minver":"8.1.0", +"@name":"google-sites-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"google-sites", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"member":["google-calendar-base", +{ +"@minver":"8.1.0", +"google-forms-base", +{ +"@minver":"3.1.0", +"google-maps", +{ +"@minver":"8.1.0", +"google-sheets-base", +{ +"@minver":"8.1.0", +"google-slides-base", +"youtube-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-create", +{ +"@minver":"8.1.0", +"google-sites-delete", +{ +"@minver":"8.1.0", +"google-sites-edit", +{ +"@minver":"8.1.0", +"google-sites-publish", +{ +"@minver":"8.1.0", +"google-sites-share"] +} +, +"risk": +"2", +"application-container": +"google-sites", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"11931", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"google-sites", +"ottawa-name": +"google-sites", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"member":["google-calendar-base", +{ +"@minver":"8.1.0", +"google-forms-base", +{ +"@minver":"3.1.0", +"google-maps", +{ +"@minver":"8.1.0", +"google-sheets-base", +{ +"@minver":"8.1.0", +"google-slides-base", +"youtube-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-create", +{ +"@minver":"8.1.0", +"google-sites-delete", +{ +"@minver":"8.1.0", +"google-sites-edit", +{ +"@minver":"8.1.0", +"google-sites-publish", +{ +"@minver":"8.1.0", +"google-sites-share"] +} +, +"risk": +"2", +"application-container": +"google-sites", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12089", +"@minver":"8.1.0", +"@name":"google-sites-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the delete traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-sites-base", +"preview": +"yes"} +, +{ +"@id":"12090", +"@minver":"8.1.0", +"@name":"google-sites-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the edit traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-sites-base", +"preview": +"yes"} +, +{ +"@id":"12091", +"@minver":"8.1.0", +"@name":"google-sites-publish", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the publish traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-sites-base", +"preview": +"yes"} +, +{ +"@id":"11932", +"@minver":"8.1.0", +"@name":"google-sites-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"content-management", +"technology": +"browser-based", +"description": +"Google Sites is a structured wiki and web page creation tool included as part of the free, web-based Google Docs Editors suite offered by Google. This App-ID covers the share traffic of Google Sites.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sites.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sites"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sites-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-sites-base", +"preview": +"yes"} +, +{ +"@id":"12083", +"@minver":"8.1.0", +"@name":"google-slides-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the copy traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"11928", +"@minver":"8.1.0", +"@name":"google-slides-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"google-slides", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-docs-sharing", +{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-copy", +{ +"@minver":"8.1.0", +"google-slides-create", +{ +"@minver":"8.1.0", +"google-slides-delete", +{ +"@minver":"8.1.0", +"google-slides-download", +{ +"@minver":"8.1.0", +"google-slides-edit", +{ +"@minver":"8.1.0", +"google-slides-post", +{ +"@minver":"8.1.0", +"google-slides-share", +{ +"@minver":"8.1.0", +"google-slides-upload"] +} +, +"risk": +"2", +"application-container": +"google-slides", +"parent-app": +"google-docs-editing", +"preview": +"yes"} +, +{ +"@id":"11928", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"google-slides", +"ottawa-name": +"google-slides", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-docs-sharing", +{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-copy", +{ +"@minver":"8.1.0", +"google-slides-create", +{ +"@minver":"8.1.0", +"google-slides-delete", +{ +"@minver":"8.1.0", +"google-slides-download", +{ +"@minver":"8.1.0", +"google-slides-edit", +{ +"@minver":"8.1.0", +"google-slides-post", +{ +"@minver":"8.1.0", +"google-slides-share", +{ +"@minver":"8.1.0", +"google-slides-upload"] +} +, +"risk": +"2", +"application-container": +"google-slides", +"parent-app": +"google-docs-editing", +"preview": +"yes"} +, +{ +"@id":"12082", +"@minver":"8.1.0", +"@name":"google-slides-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the create traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-edit"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"12084", +"@minver":"8.1.0", +"@name":"google-slides-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the delete traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"11929", +"@minver":"8.1.0", +"@name":"google-slides-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the download traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"12085", +"@minver":"8.1.0", +"@name":"google-slides-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the edit traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"12087", +"@minver":"8.1.0", +"@name":"google-slides-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the post traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"12086", +"@minver":"8.1.0", +"@name":"google-slides-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the share traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"11930", +"@minver":"8.1.0", +"@name":"google-slides-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google. This App-ID covers the upload traffic of Google Slides.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-edit"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"12063", +"@minver":"8.1.0", +"@name":"google-vault", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Vault is an information governance and eDiscovery tool for Google Workspace. With Vault, you can retain, hold, search, and export users' Google Workspace data. This App-ID covers the traffic of google-vault.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://vault.google.com"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"risk": +"1", +"parent-app": +"youtube-base", +"preview": +"yes"} +, +{ +"@id":"12055", +"@minver":"8.1.0", +"@name":"krisp-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Krisp is an AI powered online meeting assistant. Krisp provides online meeting services such as noise cancellation, transcription, meeting notes, and recording. This App-ID covers the deleting traffic of Krisp.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://krisp.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"krisp-base"] +} +, +"risk": +"3", +"parent-app": +"krisp-base", +"preview": +"yes"} +, +{ +"@id":"11997", +"@minver":"8.1.0", +"@name":"krisp-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"krisp", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Krisp is an AI powered online meeting assistant. Krisp provides online meeting services such as noise cancellation, transcription, meeting notes, and recording. This App-ID covers the traffic of Krisp.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAAlC+aJAAAJwklEQVR4nO1aa5AU1RX+zr09Mz2zu8hjQQEXEoNbIqjxQSIiaqFIUJAYBHlpdOUhggpYajRGQYMCsshiWfJQKbSISAR8VEDUKjVqNJZZHwQrBZYasOISQdhdZqaf9+RHdy/DzqNnH2TLKr7q2p3pvvfc851777nnnB5iZvyYITpagbbiOIGOxnECHY3jBDoaxwl0NLTCjxkuGACI5KGD9W+/9cHH/9h54PsfSspKBg6svPTSIRV9enrtfFAOESDFrIi0bVvf3rJ5q6AoyH9QcHBlW2rw4J9PnTGhQOMQAmAQJAjPr9+y9NEnd+/eq1wAkqGI3JNO6jp12qTb506Px2MoFJEwkfx27745t92/Z0+dJmMAAypEf6aUkezeo6ywghQWCymweGThE4sXPQ7WI9EIwGAJMEg5jmuaqbHjLnty1ZLS0pIsO3EwhEskf3/PouXL1iUSpQABCqTAhRjYJlf2P3nr9nXl5ScAlG8GQveA+PMLry5e9LjUYpGoBlIgF2SDHEBpMlKS6Lzpxe0LH6phRpYtvFGZSP7ri6/WP7dF16MgF+SAXEAFDXJczBCac9/9t5eXdwlE5dGvsPqHDjYsWfIEOC4ooshhKAAgT1HBwlbCietd1q598dNP/kmUUxoBWFGz5sD3SSEkGGCABVgDVL7LMNJjx40YddUwhgMW8Lu1nMC77364a9c3WkQDMYGICd4FAEwMgiskN9ant2zZlqM/M4CP/v7Z5k2vRfVoho3zKEMKBMdWFRU97rt/riAiCBBav4Rqa79wHCZiQGUJYIAIAFxNRj799AulsoxEcB23eumqZNISggNDsr+JcwkEC1c5d919S9++vYrRMOTxgf0HBWmAyDB89riCSGuob3Qc5+gHCqA33nj/jdffi8V0LuinAIAUWBimMXz44MnXXR3SuEgCZZ1KmVWTP8maR/8OM8fjcanJZk8Nw1xevcaxiQhEhb0mwFBKde6ceODBO6KxSL5F3zICZ5xRScINpjsfAXaU1f/0flI0k0YvbXrtww8+icU0z7qhypimMevW68886zTmECdbLIGLLxnc++Tujq0AjcllUoAI9BbeacQsYjFx1ZgRAABG4E8b6lM1NWsZlMeWBBBI+T6NYJnWeYMGzJpdBTCBAl/XNgI9e/aYOfMGy04ze0OyPyQxSAFMLFPpw6OvuuzCCwcBbqAYA3h23cYdn++ORiMAwPlowLeFUjGd5i+YV1aWAAhUwFm1hACAmbfcMOm6K1PpH9gRxNLXxptfplSyYdAv+z+y+B5Nk8HkKALVfbd/1ZPPRSIyv2BucjuASJvp63879pJhFzBne6e2EGBEY5EVjy+8+3c3x0uQSiVNw7YtZZluKmkyrPETRm7YsKpXrx5A06olgNasXP/NV3WaFhprEUC2bVZW9rnz7lkZB1bek6sZwmIhBsg/83fu3PXyS9tqa3fUHzocj+un9T911OjLLxo6CASwAlEQCtFXX+4Zfum1h36whRZuTmbhuKmnnnn0mnFXMrsAEYkMvxeCMAv5UpiZBwyoHDCgEoBtO1pEC2QrZhAEOPhMtKJmzX/3HYzHy8JsyAAZRmrsuMuv/s1IAICgI4YoCqHRaItRW7tj1MgbTUMJyc1dYZNjCe47rlPerWzb63/qd2rfIjKEHGjfjIyZ+bHqNY0NhhAy9yJmf9cCEqzZtjn3jun9Tu3b0r3bhGKWUPGgd97627a/vB2NxvObMzj7XMtIG7+6YkjV1AkAU9F+sxnak4BtOcuWrrYtjuoKUGDZPGJjAsh1XctOVvQ58caqGVVTJ+t6LMgNWoP2JPDqK2+++9ePo9EY4OZUiJkNM9njxK5TrpsybfrEiopeANg7d6GAAodGXoQQsG3r8OEkec4hx5rmpn+HG41l1SsVBITrhz3kZm5iZo7psWkzJkyfOfGnP+kTRNSC0HR6tAYhBB6rXrd65To9Fg/qCKL5SAyAXeX07t3rcKMlhJdqeYHG0Q2ZNUndunXpVNYpuEdHhOTO5sIR4kZn3fzA2mc26HrCz8SzugMKYNt2Lxhy1vgJY+bNWRDRSolckJsVfhKzMszUKT/rPW3GlMmTr+natRMAhkOgHKYpDiG8pQ8hpQg+UMYlpEZSk1JEbMccf+2oX5x/pm3ZIA6mKxNMJON62d5/77/nrsUjhk9c+/TGVNIgFEp520oApILwUwWrolkFwXPqmlKirCwxd94MKRE49WYWZb+WoUXjesnuXXtmz/zDLTff6zgAZKtPpNBuDBZ+XYCz6h/+OvE002zHGDHiomHDBlumiRxpAAWLSgGIaJF4omTzpu0bnn+pLQFBK3g3y82P3GElpJTz7rwpHtdZaSC3sCAiFlJ75OEV3+6ty+PljgmBQhoB6oILzx09ZoRhGEUoRBEt+s3X+xY9vAJ+wtRiHJPq9Jy5VZ27xpUbqpAA3Lie2PD8q9tfewfIru2Fo30JeBkzBp5ROWnyr03DLtjYz4mJYFu0YH71oYP14ZWLLLQvgSPSbp1d1evkzq7rBpm7yvaqgO8DojHt8892L1/+NABm5aUW7VNWaR2Y3Yq+PW+aOsmyLOamMLOQQtFobPXK9R999BmRV0ss9lw7JgSIGOCp0yb1q+zjODY4XBspZWODPf+BpYZhenlFkWO1+x7wDC0A1a288+xbb3CVCRQuq3hgXdffe6f2madeaNGx0O4zwIFYAWDCxDHnnDPQskwA4UuCXE0mli1dvXvX16J5kS8v2n0TB9ExCODS0sScuVWCiFkDOYU7gyE1VVd34KEHa1zXM0TTVs67p4/pW0pi5lGjLx968XmWlQYXkzyxrideefn1zZu2el8zyrK5ccxfs0ai2h13To/GWKmiEi4iAUQW/rFmX90BQAZF+da/I2sTvIPpoovPv2LUMNNMFdGBATeixb7ctWfJoie8W4V7HFMCfrRHRHPmzeh0gq5U4dqJVzxmQOl6/LlnX3zrzQ8oLFEuhoDnHLVAp0wNJeCCGSyAnHvUX8TnnD1g/LUjTdNsclC5M2wWYGIoIjINd8H86ob6ZJ7GxRGwbcsw06ZpGP6VPvoyDcswTMMwDNOysmpTQbrDAHDbbdPKu3dJphr9jqaZJS3lfTDNtGGmwdr773+yYvmawIi5OYR4hqFDh3z3n/3RSCwjJ85YlAyQC4JtqbPPPT1fLZrBYJzSr8+ixfdu3PiyFFrgawubT1mWEU9Egpa5N0P71kbdgrUdt7WZe6Gaaahv5oy/HrJfkwUNWB79kI8uV2WlyOFDCz9oPbJzmqONM5D924LsBpTra7HlfwAZP0rIgfYvr/+f8aP/wdNxAh2N4wQ6Gj96Av8DSap5ZkQ+iXUAAAAASUVORK5CYII=", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://krisp.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"krisp-delete", +{ +"@minver":"8.1.0", +"krisp-share"] +} +, +"risk": +"3", +"application-container": +"krisp", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"11997", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"krisp", +"ottawa-name": +"krisp", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Krisp is an AI powered online meeting assistant. Krisp provides online meeting services such as noise cancellation, transcription, meeting notes, and recording. This App-ID covers the traffic of Krisp.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://krisp.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"krisp-delete", +{ +"@minver":"8.1.0", +"krisp-share"] +} +, +"risk": +"3", +"application-container": +"krisp", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12056", +"@minver":"8.1.0", +"@name":"krisp-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Krisp is an AI powered online meeting assistant. Krisp provides online meeting services such as noise cancellation, transcription, meeting notes, and recording. This App-ID covers the sharing traffic of Krisp.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://krisp.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"krisp-base"] +} +, +"risk": +"3", +"parent-app": +"krisp-base", +"preview": +"yes"} +, +{ +"@id":"12011", +"@minver":"8.1.0", +"@name":"linkedin-reactions", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"LinkedIn reactions are a set of expressions that offer members a way to more easily participate in conversations and communicate with their network. These can be Like, Celebrate, Support, Love, Insightful, or Funny. LinkedIn is a business-oriented social networking site founded in December 2002 and launched in May 2003 mainly used for professional networking. This App-ID covers the reaction traffic for LinkedIn.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.linkedin.com"} +] +} +, +"use-applications": +{ +"member":["linkedin-base"] +} +, +"risk": +"2", +"parent-app": +"linkedin-base", +"preview": +"yes"} +, +{ +"@id":"12057", +"@minver":"8.1.0", +"@name":"meetgeek-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the creating traffic of the MeetGeek application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"meetgeek-base", +"preview": +"yes"} +, +{ +"@id":"12041", +"@minver":"8.1.0", +"@name":"meetgeek-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"meetgeek", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the traffic of the MeetGeek application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-create", +{ +"@minver":"8.1.0", +"meetgeek-delete", +{ +"@minver":"8.1.0", +"meetgeek-download", +{ +"@minver":"8.1.0", +"meetgeek-edit", +{ +"@minver":"8.1.0", +"meetgeek-share", +{ +"@minver":"8.1.0", +"meetgeek-upload"] +} +, +"risk": +"2", +"application-container": +"meetgeek", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12041", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"meetgeek", +"ottawa-name": +"meetgeek", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the traffic of the MeetGeek application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-create", +{ +"@minver":"8.1.0", +"meetgeek-delete", +{ +"@minver":"8.1.0", +"meetgeek-download", +{ +"@minver":"8.1.0", +"meetgeek-edit", +{ +"@minver":"8.1.0", +"meetgeek-share", +{ +"@minver":"8.1.0", +"meetgeek-upload"] +} +, +"risk": +"2", +"application-container": +"meetgeek", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12060", +"@minver":"8.1.0", +"@name":"meetgeek-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the deleting traffic of the MeetGeek application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"meetgeek-base", +"preview": +"yes"} +, +{ +"@id":"12062", +"@minver":"8.1.0", +"@name":"meetgeek-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the downloading traffic of the MeetGeek application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"meetgeek-base", +"preview": +"yes"} +, +{ +"@id":"12059", +"@minver":"8.1.0", +"@name":"meetgeek-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the editing traffic of the MeetGeek application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"meetgeek-base", +"preview": +"yes"} +, +{ +"@id":"12058", +"@minver":"8.1.0", +"@name":"meetgeek-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the sharing traffic of the MeetGeek application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"meetgeek-base", +"preview": +"yes"} +, +{ +"@id":"12061", +"@minver":"8.1.0", +"@name":"meetgeek-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"MeetGeek is an advanced meeting assistant powered by AI. This App-ID covers the uploading traffic of the MeetGeek application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meetgeek.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"meetgeek-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"meetgeek-base", +"preview": +"yes"} +, +{ +"@id":"10697", +"@minver":"8.1.0", +"@name":"ms-copilot-studio", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot Studio is an end-to-end conversational AI platform that empowers you to create and customize copilots using natural language or a graphical interface. This App-ID covers the traffic of Microsoft 365 Copilot Studio.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-copilot/microsoft-copilot-studio"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-copilot-studio-delete", +{ +"@minver":"8.1.0", +"ms-copilot-studio-download", +{ +"@minver":"8.1.0", +"ms-copilot-studio-post", +{ +"@minver":"8.1.0", +"ms-copilot-studio-upload"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12078", +"@minver":"8.1.0", +"@name":"ms-copilot-studio-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot Studio is an end-to-end conversational AI platform that empowers you to create and customize copilots using natural language or a graphical interface. This App-ID covers the deleting traffic of Microsoft 365 Copilot Studio.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-copilot/microsoft-copilot-studio"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-copilot-studio"] +} +, +"risk": +"2", +"parent-app": +"ms-copilot-studio", +"preview": +"yes"} +, +{ +"@id":"12080", +"@minver":"8.1.0", +"@name":"ms-copilot-studio-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot Studio is an end-to-end conversational AI platform that empowers you to create and customize copilots using natural language or a graphical interface. This App-ID covers the downloading traffic of Microsoft 365 Copilot Studio.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-copilot/microsoft-copilot-studio"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-copilot-studio"] +} +, +"risk": +"2", +"parent-app": +"ms-copilot-studio", +"preview": +"yes"} +, +{ +"@id":"12079", +"@minver":"8.1.0", +"@name":"ms-copilot-studio-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot Studio is an end-to-end conversational AI platform that empowers you to create and customize copilots using natural language or a graphical interface. This App-ID covers the posting traffic of Microsoft 365 Copilot Studio.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-copilot/microsoft-copilot-studio"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-copilot-studio"] +} +, +"risk": +"2", +"parent-app": +"ms-copilot-studio", +"preview": +"yes"} +, +{ +"@id":"12081", +"@minver":"8.1.0", +"@name":"ms-copilot-studio-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot Studio is an end-to-end conversational AI platform that empowers you to create and customize copilots using natural language or a graphical interface. This App-ID covers the uploading traffic of Microsoft 365 Copilot Studio.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-copilot/microsoft-copilot-studio"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-copilot-studio"] +} +, +"risk": +"2", +"parent-app": +"ms-copilot-studio", +"preview": +"yes"} +, +{ +"@id":"10860", +"@minver":"8.1.0", +"@name":"ms-dev-tunnels", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"encrypted-tunnel", +"technology": +"browser-based", +"description": +"Dev tunnels allows developers to expose local web services to the Internet, control who has access, and debug your web applications from anywhere. This App-ID covers the traffic of Microsoft Dev Tunnels.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"yes", +"prone-to-misuse": +"yes", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://learn.microsoft.com/en-us/azure/developer/dev-tunnels/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"github-base", +{ +"@minver":"3.1.0", +"ms-office365-base"] +} +, +"risk": +"3", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12000", +"@minver":"8.1.0", +"@name":"ms-visual-studio-dev-tunnel", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"encrypted-tunnel", +"technology": +"browser-based", +"description": +"The dev tunnels feature of Visual Studio enables ad-hoc connections between machines that can't directly connect to each other. A URL is created that enables any device with an internet connection to connect to an project while it runs on localhost. This App-ID covers the traffic of Visual Studio Dev Tunnels.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"yes", +"prone-to-misuse": +"yes", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://learn.microsoft.com/en-us/aspnet/core/test/dev-tunnels?view=aspnetcore-8.0"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-dev-tunnels"] +} +, +"risk": +"3", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12012", +"@minver":"8.1.0", +"@name":"msa-fieldserver-mgr", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"iot-management", +"technology": +"browser-based", +"description": +"MSA FieldServer Manager provides secure remote connectivity with all FieldServer IIoT gateways, giving users the ability to configure, update and support all connected industrial devices and integrate them with their business applications and other cloud-based services. This App-ID covers communication from an MSA IIoT gateway to an MSA fieldserver manager.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Homepage", +"link": +"https://us.msasafety.com/IIoT-Gateways/MSA-Grid/FieldServer-Manager/p/FieldServerManager"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12071", +"@minver":"8.1.0", +"@name":"notta-ai-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the creating traffic of the Notta-ai application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"notta-ai-base", +"preview": +"yes"} +, +{ +"@id":"12042", +"@minver":"8.1.0", +"@name":"notta-ai-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"notta-ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the traffic of the Notta-ai application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-create", +{ +"@minver":"8.1.0", +"notta-ai-delete", +{ +"@minver":"8.1.0", +"notta-ai-download", +{ +"@minver":"8.1.0", +"notta-ai-edit", +{ +"@minver":"8.1.0", +"notta-ai-move", +{ +"@minver":"8.1.0", +"notta-ai-share"] +} +, +"risk": +"2", +"application-container": +"notta-ai", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12042", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"notta-ai", +"ottawa-name": +"notta-ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the traffic of the Notta-ai application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-create", +{ +"@minver":"8.1.0", +"notta-ai-delete", +{ +"@minver":"8.1.0", +"notta-ai-download", +{ +"@minver":"8.1.0", +"notta-ai-edit", +{ +"@minver":"8.1.0", +"notta-ai-move", +{ +"@minver":"8.1.0", +"notta-ai-share"] +} +, +"risk": +"2", +"application-container": +"notta-ai", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12075", +"@minver":"8.1.0", +"@name":"notta-ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the deleting traffic of the Notta-ai application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"notta-ai-base", +"preview": +"yes"} +, +{ +"@id":"12076", +"@minver":"8.1.0", +"@name":"notta-ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the downloading traffic of the Notta-ai application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"notta-ai-base", +"preview": +"yes"} +, +{ +"@id":"12072", +"@minver":"8.1.0", +"@name":"notta-ai-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the editing traffic of the Notta-ai application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"notta-ai-base", +"preview": +"yes"} +, +{ +"@id":"12074", +"@minver":"8.1.0", +"@name":"notta-ai-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the moving traffic of the Notta-ai application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"notta-ai-base", +"preview": +"yes"} +, +{ +"@id":"12073", +"@minver":"8.1.0", +"@name":"notta-ai-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notta-ai is an application that utilizes AI technology to transcribe audio into text. This App-ID covers the sharing traffic of the Notta-ai application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notta.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notta-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"notta-ai-base", +"preview": +"yes"} +, +{ +"@id":"12013", +"@minver":"8.1.0", +"@name":"omron-hmi-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"The Omron Sysmac HMI enables faster, more efficient control and monitoring - and a more natural, proactive relationship between operator and machine. This App-ID covers communication from a workstation running a configuration/monitoring software such as Sysmac Studio to an OMRON HMI's web-server.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ia.omron.com/products/family/3405/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12077", +"@minver":"8.1.0", +"@name":"omron-vision", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Omron's machine vision products are used for machine vision application, including non-contact inspection, measurement, color detection, optical character recognition and code reading. Sysmac Studio provides an integrated environment for setting, programming, debugging and maintenance of machine automation controllers. This App-ID covers communication between a workstation running Sysmac Studio and an Omron vision controller.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://automation.omron.com/en/us/solutions/machine-vision/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12070", +"@minver":"8.1.0", +"@name":"omron-vision-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Omron's machine vision products are used for machine vision application, including non-contact inspection, measurement, color detection, optical character recognition and code reading. Sysmac Studio provides an integrated environment for setting, programming, debugging and maintenance of machine automation controllers. This App-ID covers the discovery of Omron vision controllers using Sysmac Studio.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://automation.omron.com/en/us/solutions/machine-vision/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12044", +"@minver":"8.1.0", +"@name":"perplexity-ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text. This App-ID covers the downloading traffic of Perplexity AI.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"12017", +"@minver":"8.1.0", +"@name":"perplexity-ai-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"perplexity-ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text. This App-ID covers the traffic of Perplexity AI.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-download", +{ +"@minver":"8.1.0", +"perplexity-ai-post", +{ +"@minver":"8.1.0", +"perplexity-ai-upload"] +} +, +"risk": +"4", +"application-container": +"perplexity-ai", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12017", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"perplexity-ai", +"ottawa-name": +"perplexity-ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text. This App-ID covers the traffic of Perplexity AI.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-download", +{ +"@minver":"8.1.0", +"perplexity-ai-post", +{ +"@minver":"8.1.0", +"perplexity-ai-upload"] +} +, +"risk": +"4", +"application-container": +"perplexity-ai", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"11964", +"@minver":"8.1.0", +"@name":"perplexity-ai-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text. This App-ID covers the posting traffic of Perplexity AI.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"12043", +"@minver":"8.1.0", +"@name":"perplexity-ai-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text. This App-ID covers the uploading traffic of Perplexity AI.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"12019", +"@minver":"8.1.0", +"@name":"pinecone-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Pinecone is a cloud-based vector database platform that is used to manage high-dimensional vector data. This App-ID covers the creating traffic of Pinecone.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.pinecone.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"pinecone-base"] +} +, +"risk": +"3", +"parent-app": +"pinecone-base", +"preview": +"yes"} +, +{ +"@id":"11996", +"@minver":"8.1.0", +"@name":"pinecone-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"pinecone", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Pinecone is a cloud-based vector database platform that is used to manage high-dimensional vector data. This App-ID covers the traffic of Pinecone.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.pinecone.io"} +] +} +, +"use-applications": +{ +"member":["google-app-engine", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"pinecone-create", +{ +"@minver":"8.1.0", +"pinecone-delete", +{ +"@minver":"8.1.0", +"pinecone-upload"] +} +, +"risk": +"3", +"application-container": +"pinecone", +"parent-app": +"google-app-engine", +"preview": +"yes"} +, +{ +"@id":"11996", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"pinecone", +"ottawa-name": +"pinecone", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Pinecone is a cloud-based vector database platform that is used to manage high-dimensional vector data. This App-ID covers the traffic of Pinecone.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.pinecone.io"} +] +} +, +"use-applications": +{ +"member":["google-app-engine", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"pinecone-create", +{ +"@minver":"8.1.0", +"pinecone-delete", +{ +"@minver":"8.1.0", +"pinecone-upload"] +} +, +"risk": +"3", +"application-container": +"pinecone", +"parent-app": +"google-app-engine", +"preview": +"yes"} +, +{ +"@id":"12021", +"@minver":"8.1.0", +"@name":"pinecone-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Pinecone is a cloud-based vector database platform that is used to manage high-dimensional vector data. This App-ID covers the deleting traffic of Pinecone.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.pinecone.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"pinecone-base"] +} +, +"risk": +"3", +"parent-app": +"pinecone-base", +"preview": +"yes"} +, +{ +"@id":"12020", +"@minver":"8.1.0", +"@name":"pinecone-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Pinecone is a cloud-based vector database platform that is used to manage high-dimensional vector data. This App-ID covers the uploading traffic of Pinecone.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.pinecone.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"pinecone-base"] +} +, +"risk": +"3", +"parent-app": +"pinecone-base", +"preview": +"yes"} +, +{ +"@id":"12068", +"@minver":"8.1.0", +"@name":"pro-face-hmi-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Schneider Electric's Pro-face HMIs are used for operation display of a range of control devices such as PLC, Compact, and Modular Type. This App-ID covers the search and discovery of Pro-face HMIs using HMI and operation management software GP-Pro EX.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.proface.com/en-us"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"11962", +"@minver":"8.1.0", +"@name":"reclaim.ai-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Reclaim.ai is an AI-driven application designed to enhance team productivity by automatically scheduling tasks, habits, and meetings. This App-ID covers the creating traffic of Reclaim.ai web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://reclaim.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"reclaim.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"reclaim.ai-base", +"preview": +"yes"} +, +{ +"@id":"12028", +"@minver":"8.1.0", +"@name":"reclaim.ai-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"reclaim.ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Reclaim.ai is an AI-driven application designed to enhance team productivity by automatically scheduling tasks, habits, and meetings. This App-ID covers the traffic of Reclaim.ai web application.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://reclaim.ai"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"reclaim.ai-create", +{ +"@minver":"8.1.0", +"reclaim.ai-delete"] +} +, +"risk": +"2", +"application-container": +"reclaim.ai", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12028", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"reclaim.ai", +"ottawa-name": +"reclaim.ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Reclaim.ai is an AI-driven application designed to enhance team productivity by automatically scheduling tasks, habits, and meetings. This App-ID covers the traffic of Reclaim.ai web application.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAAlC+aJAAAHk0lEQVR4nO2Ze1BU1x3Hf+c+9j5gWeSlGNRSbQYBQUyNMbYmiiZNE40hfYztZDrt+EfH6SRTO7VqEgfa1LRJJ0l9tBLHsYlaNToO2MZOOmRsLYGgQSMEkApaXgsLAgL7uI/z6B80zCLIclZhm5n9zv1r7++e3+9zf/ec3++cRYwx+CJLiHQAd6soQKQVBYi0ogCRVhQg0pJ4H7Aa27CnD8RQ5IwKuqYuXgDCKEtPd8/58oqmpuuWbcXGxCzOzVmxfJmqKrxhjIgbwG7zGA0tSBJD2FEqJrqUnPno8/gxxm8ffGf/gUOtbe2UUgTAAByyI2dR5o6tW9bkP8odOwCE8wkJApLESV1BWQoYxvNbtm17qcjt7lQVRdc0TdN0TRNF4fKnNT/YtPnQO0enCyAsvfrbNw4fPaGpqiSNyjlCSFEUy7K27thZ+pezYYw8HQDVly4f/NNhTVMRQuMaiKKIMX3j9/v8/gDv4NMBcOTYSa/XJwgT+XI45PqGxgufVPMOPrUACCFCSF3dVVEMMekRQpZlX7h4idfFFGcAIX8g0D8wMPHr/9wWbvynhdfDlH9CkiQpDnky+z4GEBfn5B1/igEY01R17pw0QmhIW4RQXu4iXg9TCzD84h9/LJ+yEACEkOTExBUPP8TrYjpWoYKn1y1b+oBhmBPYGKb5bMH6OWn38Q4+HQBOZ+xbv3t1dupMwzDG3mWM+fz+/FUrd2zdEsbg/ACMAZ3cFTRxszIzDhbvyc3JNk3LNE2MCSEEYxwIGJTSbxc8fbB4TxgzGAAQ77mQv7zWau6YTDMnxMfGPvFQsKXP7y89c7bkzPvXmpptG+u6tvSrS77z7IaVX3/4TkU6pLgBGCZAGQS5G3E9aiQGgBCSx+f0en2YEMUha5rGF+8YcQOMlU3AtkEUQZHvcqRwxL0fCFZdIzn/MW5sJqbFJBGlzRZWLpMezJNC9Q33UmFmwOtj7540PyzHpgWiAAgBA6AEBAEWZ4k/2qjMS5twebAHoa8KZq4NM+oghbOM+gPs9T8Y75dhxkBxgCSBKIIkgsMBkgTVNWTX7kCnZ8LK1XMOmvaA999hRh2kcABOlFqfXCGqCuOuHIoCHV2s+LBp23d43uqFjjNALWg9DoyEEUCwuAE8PbSsHDscE9koDqiuJZXVePzbrcfB7ARRg74L0FfFG8Bt4gaovUoGBlno7phBZfV4KfA2Qc85EBwAAAjAXQLU4o0hWNwA11voZEqOIEJXN7NvzwGD9lNAAjBcR5AMA/XQ9QFvDKMc8T4QMCa7alEKlI427r8MvZX/e/3DQgJ0nAarlzeMEXEDxMehyRAwBg4HSGJQtogfWg/fPmuRCKYHOkp4wxgRN0DGAnES20MgFL48TxhV0TxlMNQIwphyjWTwfAiBDt5IhsUNkJ0h3jdLwHdYYIbFGOgqPLo8KFZ7ADrPAhqv8CMB8AC0/hkg9K5trLgBYnT0rafk0c3y7TIteGKVvPArQe/fXQqBVkB36DEEGW6WQx/3mQqEV8jyvyZv3CBTCmPzQCkYBqxYKn6vIGim+lug6yygCXo9BIxA+0lgE2Z23CfD7kb/+TF+74zV5qY0KPNJCejJfHndWllVR5psAg2vwM1/jVp8xhXFcP8WmPUNrjDuqp32+dmVetJwjfj8oDggfa6Qly0lJ46uE/YQdJwGZgOEqh8Mg5oKqU8B4vgu7sF+ILL6wv9DEwWItKIAY3Stqbm93R38i9fr+6iyCk9cvQEGBgYvfVrD6+7eA7y5+4/vnSoJ/sXd2bV7b7Fphuj7vT5fw9VGXnd8pxKU0pbWNsMwVUVxueIqqy5mZWZ8ad5cxljVxWrDMFcsf1AQBEFElNKKygtxcU6nMzYpMaHw5V8MDg21d7h7enpyFmU3NV9XFCUrMwMTUlFZpTgcc+akxej642tW8wLw1QHTNNc9s9Hn969etbKuviExIaGlpa1o5/Z/nC//2wdlsixlZy3EGM9PT+/0eD6qqJoxI/76jZbCl7YePXYyLy/31OnS2amzDMNwuVxud+fet16vrLro6e7WNe3vZede+MmPaz+rf6XoRS4AvgwwABvbr+0qLK+ocnd0Ln1gSW9v38tFv2aMlZ46EhMTe6Xms3ePHLtcU3vjRstfS46rirK+YKNpWbZtBwKBNasf2f7zn6795jMnjhzau//Avv0HMhdmvLarCAD6b90yTJNQ7j0+58EWY7Ikp6SkSJK0YMH8DeufXJhxP8Z4977i3r5bGJPWtjYbY1mSCMZ9vf2qpnp9fgRAKaWUKoqiKIqqqrquxeg6QsiyLEwIAhga9AKwMNoCPgCEUHJyEqX0ue9/t66uofBXvxEl8Zc7t2/64XObn/8ZMLZ61SOJCTPS0+ctycvdtPmFpIQEXdecTmdKSvKM+HiEACE0c2YKQkjX9bzFuamzUra9WBgbEzMwOOhyueJdLl4AvjnAGBsa8uq6JkkSpdTd2ZWUmKCqKgD09fdjTFKSk/x+vyCIqqrc7O11yA5REiVRNE1LkkQA0DRtcHAoLs4ZMAxgoOuax9MtiqIzzgmMEUJ0XZ9CgP9DRStxpBUFiLSiAJFWFCDS+i+fDEl7tl+sCAAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://reclaim.ai"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"reclaim.ai-create", +{ +"@minver":"8.1.0", +"reclaim.ai-delete"] +} +, +"risk": +"2", +"application-container": +"reclaim.ai", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12029", +"@minver":"8.1.0", +"@name":"reclaim.ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Reclaim.ai is an AI-driven application designed to enhance team productivity by automatically scheduling tasks, habits, and meetings. This App-ID covers the deleting traffic of Reclaim.ai web application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://reclaim.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"reclaim.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"reclaim.ai-base", +"preview": +"yes"} +, +{ +"@id":"12005", +"@minver":"8.1.0", +"@name":"regie.ai-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the copying traffic of Regie.ai.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"11814", +"@minver":"8.1.0", +"@name":"regie.ai-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"regie.ai", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the traffic of regie.ai.", +"icon": +{ +"@minver":"7.0.0", +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-copy", +{ +"@minver":"8.1.0", +"regie.ai-create", +{ +"@minver":"8.1.0", +"regie.ai-delete", +{ +"@minver":"8.1.0", +"regie.ai-download", +{ +"@minver":"8.1.0", +"regie.ai-move", +{ +"@minver":"8.1.0", +"regie.ai-share", +{ +"@minver":"8.1.0", +"regie.ai-upload"] +} +, +"risk": +"3", +"application-container": +"regie.ai", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12002", +"@minver":"8.1.0", +"@name":"regie.ai-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the creating traffic of Regie.ai.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"12006", +"@minver":"8.1.0", +"@name":"regie.ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the deleting traffic of Regie.ai.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"12008", +"@minver":"8.1.0", +"@name":"regie.ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the downloading traffic of Regie.ai.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"12003", +"@minver":"8.1.0", +"@name":"regie.ai-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the moving traffic of Regie.ai", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"12004", +"@minver":"8.1.0", +"@name":"regie.ai-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the sharing traffic of Regie.ai.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"12007", +"@minver":"8.1.0", +"@name":"regie.ai-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Regie.ai uses generative AI and automation to help sales prospecting businesses. This App-ID covers the uploading traffic of Regie.ai.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.regie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"regie.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"regie.ai-base", +"preview": +"yes"} +, +{ +"@id":"12018", +"@minver":"8.1.0", +"@name":"rfideas-ethernet-241", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"iot-management", +"technology": +"client-server", +"description": +"The Ethernet 241 was designed to allow an rf IDEAS card reader and an application device to simultaneously communicate via an Ethernet connection, using a single network drop. The Ethernet 241 acts as a two-port switch that provides a pass-thru Ethernet port for a printer and a second Ethernet port that is built into the device. This App-ID covers communication from an rf IDEAS Ethernet 241 and a device such as a badge reader.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.rfideas.com/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12001", +"@minver":"8.1.0", +"@name":"scitools-icarus", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"SciTools Icarus is a closed lab license server for delivering and managing SciTools Understand licenses. This App-ID covers traffic sent by Understand to an instance of Icarus.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://scitools.freshdesk.com/support/solutions/articles/70000582778"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12054", +"@minver":"8.1.0", +"@name":"simplified-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Simplified is a digital platform designed to help users streamline content creation and marketing processes. This App-ID covers the deleting traffic of Simplified.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://simplified.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"simplified-base"] +} +, +"risk": +"3", +"parent-app": +"simplified-base", +"preview": +"yes"} +, +{ +"@id":"12016", +"@minver":"8.1.0", +"@name":"simplified-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"simplified", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Simplified is a digital platform designed to help users streamline content creation and marketing processes. This App-ID covers the traffic of Simplified.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAEsUlEQVR4nO2ZW2gcVRzGfzN79dKkkDUXY8MslARtg+mDb4LgCkIQU9BIN1CQRJ9y8UURNvHBpg1qRVDU3RTEN8G35KGaolgfBAVv1DaJSVoNxiY1koU0MWk2O7M+7M5md81mZ5szc4TuB8vCXuZ83/f/zn/OOaMAvwAB7lC4gVqgTjYRWVABQzYJmVBlE5CNigGyCchGxQDZBGSjYoBsArJRMUA2Adm44w1wyxhUq/Xz1CM11B30srya4Pz3K/z21y0ZVFCARaDBqQFPPlbHOy8cJlDjy34Wj2/x8kfX+PjiDadoZOGoAT2hemJ9LbhVBfTUzhcuhUTSIDR0iW+mV52gkoVjPaAnVE+0twW3UiAeQE/h9bvpa290ik4WjhhgiveoChip3X+kGzz0wN14XIoTlLKwvQl2F4t9IRSFzYRR1B+7YGsCekL1xIrFvhBulS8uxdEddsA2A7rN2Lv2iL0Jr8rlmVXeO3/dLjpFYcsU6A7VM9prIfYAXpWp39d55s1Jlle37aCzJ4QnIBv7vRqeCa/K9Pw6HSNXmFvaFE3FEoQmoCfUQLS3OR17i5XvOHOFqzfkiAeBBnSH6on1NpcV++MjcsWDIAMebz1YXuwz4ueWNmkK+Hj+iQZcClDir6qqkNQNohOLwvqFEAO0Wj8erwqJEo8YMuKfzsS+KeBjPNJK25FqSJZSn357JTbHyloSSK/j93vTFNIEdSNVmok550cKxLdUwT9J2NKLv7YN9C2D3nd/5e3xBXQjRV97IzVVnn1zd2YvkDPnzdiPD7bS1nIgLXBPhgo60B+d5cOJRQDeOBnk9RMahoBFk/0GZGLfcSZHfKSVtuYDsFViyqgKegr6Y7NEL6TFn+7SeDUcZDtpkBKwaLTXgN1iP5iJvUXxA6OzRDOVHw5rDIaDkBS3Z7DPgN1in628tdgPjO7E/lRYY6hLg6Sx/86XO5S4S+XAqzKVs8JrCvgYi5hz3kLlgYFYvvjXuoLpO4XgvZL4vUDBCi+v21us/Es5lR8Oawx1BYVX3oRYAwpWeIcCPsYiR8sSn1v5YZtinzessCsVdPtDAR/jkaMca6m+LfGnTpiVFx/7XAhJgN+jcnV+Z4V3O+KdjH3e8CIuMrmwwfHTl/cl/oPPnYt9LoQkwDzKbr7/LsYirTzYXAUJHbx7+KuAvp36T7e3WnmPS0HE8anQJnhflYf3P7tOYuwPKEFPUWHh7y0mfo4DZcbeo/LDtTU2Sm2+LMDxJ0O7YbhLYyisWWt4PpWLP8bpPDvFytr+t8TSH44Oh8sT/5VA8SDZgJ3YW6/8cwLFg6Snw1DmnM+If/atKeLrYk+OpSSgv72xbPGdZ8WLBwkG1FZ7GepsSp8dOtzwdoPjBjys3UNtja/0ybFP5euf7BUPEgxwuxRQSixhsnN+0lbxIMGA6T83WFvbBrWICXmxT9rOx3ED5pdvce7CIvjU/CQogN+V7fZ2V96ElNvg4Cfz+H0uXnyyAa8/TcFI6Hz65RJ95+aIr9tfeRNSl8LHgvfy6JFq3KrCdzM3+XbmpuMc/hd7AZmQvheQjYoBsgnIRsUA2QRko2KAbAKyUTFANgHZqBggm4Bs/As30EvUEFn5cwAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://simplified.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"simplified-delete", +{ +"@minver":"8.1.0", +"simplified-download", +{ +"@minver":"8.1.0", +"simplified-post", +{ +"@minver":"8.1.0", +"simplified-upload"] +} +, +"risk": +"3", +"application-container": +"simplified", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12016", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"simplified", +"ottawa-name": +"simplified", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Simplified is a digital platform designed to help users streamline content creation and marketing processes. This App-ID covers the traffic of Simplified.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAEsUlEQVR4nO2ZW2gcVRzGfzN79dKkkDUXY8MslARtg+mDb4LgCkIQU9BIN1CQRJ9y8UURNvHBpg1qRVDU3RTEN8G35KGaolgfBAVv1DaJSVoNxiY1koU0MWk2O7M+7M5md81mZ5szc4TuB8vCXuZ83/f/zn/OOaMAvwAB7lC4gVqgTjYRWVABQzYJmVBlE5CNigGyCchGxQDZBGSjYoBsArJRMUA2Adm44w1wyxhUq/Xz1CM11B30srya4Pz3K/z21y0ZVFCARaDBqQFPPlbHOy8cJlDjy34Wj2/x8kfX+PjiDadoZOGoAT2hemJ9LbhVBfTUzhcuhUTSIDR0iW+mV52gkoVjPaAnVE+0twW3UiAeQE/h9bvpa290ik4WjhhgiveoChip3X+kGzz0wN14XIoTlLKwvQl2F4t9IRSFzYRR1B+7YGsCekL1xIrFvhBulS8uxdEddsA2A7rN2Lv2iL0Jr8rlmVXeO3/dLjpFYcsU6A7VM9prIfYAXpWp39d55s1Jlle37aCzJ4QnIBv7vRqeCa/K9Pw6HSNXmFvaFE3FEoQmoCfUQLS3OR17i5XvOHOFqzfkiAeBBnSH6on1NpcV++MjcsWDIAMebz1YXuwz4ueWNmkK+Hj+iQZcClDir6qqkNQNohOLwvqFEAO0Wj8erwqJEo8YMuKfzsS+KeBjPNJK25FqSJZSn357JTbHyloSSK/j93vTFNIEdSNVmok550cKxLdUwT9J2NKLv7YN9C2D3nd/5e3xBXQjRV97IzVVnn1zd2YvkDPnzdiPD7bS1nIgLXBPhgo60B+d5cOJRQDeOBnk9RMahoBFk/0GZGLfcSZHfKSVtuYDsFViyqgKegr6Y7NEL6TFn+7SeDUcZDtpkBKwaLTXgN1iP5iJvUXxA6OzRDOVHw5rDIaDkBS3Z7DPgN1in628tdgPjO7E/lRYY6hLg6Sx/86XO5S4S+XAqzKVs8JrCvgYi5hz3kLlgYFYvvjXuoLpO4XgvZL4vUDBCi+v21us/Es5lR8Oawx1BYVX3oRYAwpWeIcCPsYiR8sSn1v5YZtinzessCsVdPtDAR/jkaMca6m+LfGnTpiVFx/7XAhJgN+jcnV+Z4V3O+KdjH3e8CIuMrmwwfHTl/cl/oPPnYt9LoQkwDzKbr7/LsYirTzYXAUJHbx7+KuAvp36T7e3WnmPS0HE8anQJnhflYf3P7tOYuwPKEFPUWHh7y0mfo4DZcbeo/LDtTU2Sm2+LMDxJ0O7YbhLYyisWWt4PpWLP8bpPDvFytr+t8TSH44Oh8sT/5VA8SDZgJ3YW6/8cwLFg6Snw1DmnM+If/atKeLrYk+OpSSgv72xbPGdZ8WLBwkG1FZ7GepsSp8dOtzwdoPjBjys3UNtja/0ybFP5euf7BUPEgxwuxRQSixhsnN+0lbxIMGA6T83WFvbBrWICXmxT9rOx3ED5pdvce7CIvjU/CQogN+V7fZ2V96ElNvg4Cfz+H0uXnyyAa8/TcFI6Hz65RJ95+aIr9tfeRNSl8LHgvfy6JFq3KrCdzM3+XbmpuMc/hd7AZmQvheQjYoBsgnIRsUA2QRko2KAbAKyUTFANgHZqBggm4Bs/As30EvUEFn5cwAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://simplified.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"simplified-delete", +{ +"@minver":"8.1.0", +"simplified-download", +{ +"@minver":"8.1.0", +"simplified-post", +{ +"@minver":"8.1.0", +"simplified-upload"] +} +, +"risk": +"3", +"application-container": +"simplified", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12053", +"@minver":"8.1.0", +"@name":"simplified-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Simplified is a digital platform designed to help users streamline content creation and marketing processes. This App-ID covers the downloading traffic of Simplified.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"simplified", +"link": +"https://simplified.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"simplified-base"] +} +, +"risk": +"3", +"parent-app": +"simplified-base", +"preview": +"yes"} +, +{ +"@id":"12051", +"@minver":"8.1.0", +"@name":"simplified-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Simplified is a digital platform designed to help users streamline content creation and marketing processes. This App-ID covers the posting traffic of Simplified.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://simplified.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"simplified-base"] +} +, +"risk": +"3", +"parent-app": +"simplified-base", +"preview": +"yes"} +, +{ +"@id":"12052", +"@minver":"8.1.0", +"@name":"simplified-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Simplified is a digital platform designed to help users streamline content creation and marketing processes. This App-ID covers the uploading traffic of Simplified.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://simplified.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"simplified-base"] +} +, +"risk": +"3", +"parent-app": +"simplified-base", +"preview": +"yes"} +, +{ +"@id":"11998", +"@minver":"8.1.0", +"@name":"swimm", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Swimm is an AI coding assistant that helps developers understand their codebases. It focuses on answering questions within their IDE and generating documentation for their code. This App-ID covers the traffic for Swimm.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"swimm", +"link": +"https://swimm.io/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12050", +"@minver":"8.1.0", +"@name":"thoughtspot-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ThoughtSpot is a technology company that produces business intelligence analytics search software. This App-ID covers the deleting traffic of ThoughtSpot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.thoughtspot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"thoughtspot-base"] +} +, +"risk": +"2", +"parent-app": +"thoughtspot-base", +"preview": +"yes"} +, +{ +"@id":"12015", +"@minver":"8.1.0", +"@name":"thoughtspot-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"thoughtspot", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ThoughtSpot is a technology company that produces business intelligence analytics search software. This App-ID covers the traffic of ThoughtSpot.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAAlC+aJAAADvElEQVR4nO2ZS0wbRxiAZ8bLrneRsZ1CIqc98BCPGA7GEVKC03PagjikUirCJYEWempOzYFDUi5IyY1jEpTSSyNFVSOhNFVz4BgkLljBWGpOKQc/OGxsQ9azMzs7PbiyUqTMomIxuNrvYMnef2b288y/s/sv5JyDZgbJPoGj4gvIxheQjS8gG19ANk0voIgPW5b127NnlmVBCI/nhOpwwBFElz+7fPr0GUGYh0ClXF744U4unw8EAg09PW8454qi9PX3HUkAQhjUdcMwZAkg5LHIofhulBCSzW4TQo5/CQEOAIQDAwOhUEgQ5SFw8vFYQoSQTCYjZwYABwDG4/EjzUCxWBz74vNCQU4SBxTlyZNfRkZGBGEeM8Bdt1rFllWVlcSuy8RhHgJt4fDCwkK1akF43FtebR/o6uoWh/3fk5gxZpomY0xWEkejUVVVBUEeAqZpTl2bLO4WA0hODjxcXk4khgVhXjPgODs7O7lc7jBJrCiKoiicc0qp67oIodqfRymtzaGqqhBCxhil9JACGGOPQcWHdcOYnJwsl8ueWzoKBLZevUpvbmqaNjY23tHRnsvn19bWmOOkUqmBc+eqVvXFiz9KpVJ3T8+nly5xAIAw/TgACKEzwhshAADgjWNpaelUNNLT3ZXNZjnnGxsbn3x89qNT0Z9WVjjne3t7oxcvRMJts7PfNHDQRl4cGfvnmu04Tv2z/jullHMOAHBdt4GDNv0DjS8gG19ANr6AbHwB2fgCsvEFZOMLyKbpBTweKY+T16//3NrKYIw7OzuTyaSu64dpdSIETNO8d+/u06e/lt6WOOeapiUSw/Pz8xdHRz3byl9C+/v7N29+9+D+/Uq50tLSoqqq67rr6y9nZqbX1196Npcv8Pjxz78/f24Yer1yAyEMBoO7u7uLi4uW9U7cXLIAIWR1dRUhBMDByp+maenNzXQ6Le5BskClUsl/oGoGIbRt+82bv8Q9SBZQFEVVVf6BCldtLYl7kCwQDrcNDg7WK0jvwxiLRCJDQ0PiHiQLQIiu35gOhUIHHDjntm1fufJlb2+vuIdGCjiOgzHGGNdqb67r1r46jNXPCWNMyb8qu6lU6vbtO7quY4wdx2HMIYTYtj0+Pv79rVueZf1GbmTDw4m5uW8NQ29vbwcAxGKxmZmvCSXxeBwAEAwGr179qlAoJM8nDzS8MT3d19+/8uOjzPY2JSQWOzsxMXFtaqq1tdVz0JP1hqZUKlFKw+Gw+KXG+5wsgf+A/J34iPgCsvEFZOMLyKbpBf4GUccwhVqrV3wAAAAASUVORK5CYII=", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.thoughtspot.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"thoughtspot-delete", +{ +"@minver":"8.1.0", +"thoughtspot-download", +{ +"@minver":"8.1.0", +"thoughtspot-upload"] +} +, +"risk": +"2", +"application-container": +"thoughtspot", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12015", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"thoughtspot", +"ottawa-name": +"thoughtspot", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ThoughtSpot is a technology company that produces business intelligence analytics search software. This App-ID covers the traffic of ThoughtSpot.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAIAAAAlC+aJAAADvElEQVR4nO2ZS0wbRxiAZ8bLrneRsZ1CIqc98BCPGA7GEVKC03PagjikUirCJYEWempOzYFDUi5IyY1jEpTSSyNFVSOhNFVz4BgkLljBWGpOKQc/OGxsQ9azMzs7PbiyUqTMomIxuNrvYMnef2b288y/s/sv5JyDZgbJPoGj4gvIxheQjS8gG19ANk0voIgPW5b127NnlmVBCI/nhOpwwBFElz+7fPr0GUGYh0ClXF744U4unw8EAg09PW8454qi9PX3HUkAQhjUdcMwZAkg5LHIofhulBCSzW4TQo5/CQEOAIQDAwOhUEgQ5SFw8vFYQoSQTCYjZwYABwDG4/EjzUCxWBz74vNCQU4SBxTlyZNfRkZGBGEeM8Bdt1rFllWVlcSuy8RhHgJt4fDCwkK1akF43FtebR/o6uoWh/3fk5gxZpomY0xWEkejUVVVBUEeAqZpTl2bLO4WA0hODjxcXk4khgVhXjPgODs7O7lc7jBJrCiKoiicc0qp67oIodqfRymtzaGqqhBCxhil9JACGGOPQcWHdcOYnJwsl8ueWzoKBLZevUpvbmqaNjY23tHRnsvn19bWmOOkUqmBc+eqVvXFiz9KpVJ3T8+nly5xAIAw/TgACKEzwhshAADgjWNpaelUNNLT3ZXNZjnnGxsbn3x89qNT0Z9WVjjne3t7oxcvRMJts7PfNHDQRl4cGfvnmu04Tv2z/jullHMOAHBdt4GDNv0DjS8gG19ANr6AbHwB2fgCsvEFZOMLyKbpBTweKY+T16//3NrKYIw7OzuTyaSu64dpdSIETNO8d+/u06e/lt6WOOeapiUSw/Pz8xdHRz3byl9C+/v7N29+9+D+/Uq50tLSoqqq67rr6y9nZqbX1196Npcv8Pjxz78/f24Yer1yAyEMBoO7u7uLi4uW9U7cXLIAIWR1dRUhBMDByp+maenNzXQ6Le5BskClUsl/oGoGIbRt+82bv8Q9SBZQFEVVVf6BCldtLYl7kCwQDrcNDg7WK0jvwxiLRCJDQ0PiHiQLQIiu35gOhUIHHDjntm1fufJlb2+vuIdGCjiOgzHGGNdqb67r1r46jNXPCWNMyb8qu6lU6vbtO7quY4wdx2HMIYTYtj0+Pv79rVueZf1GbmTDw4m5uW8NQ29vbwcAxGKxmZmvCSXxeBwAEAwGr179qlAoJM8nDzS8MT3d19+/8uOjzPY2JSQWOzsxMXFtaqq1tdVz0JP1hqZUKlFKw+Gw+KXG+5wsgf+A/J34iPgCsvEFZOMLyKbpBf4GUccwhVqrV3wAAAAASUVORK5CYII=", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.thoughtspot.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"thoughtspot-delete", +{ +"@minver":"8.1.0", +"thoughtspot-download", +{ +"@minver":"8.1.0", +"thoughtspot-upload"] +} +, +"risk": +"2", +"application-container": +"thoughtspot", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12049", +"@minver":"8.1.0", +"@name":"thoughtspot-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ThoughtSpot is a technology company that produces business intelligence analytics search software. This App-ID covers the downloading traffic of ThoughtSpot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.thoughtspot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"thoughtspot-base"] +} +, +"risk": +"2", +"parent-app": +"thoughtspot-base", +"preview": +"yes"} +, +{ +"@id":"12048", +"@minver":"8.1.0", +"@name":"thoughtspot-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ThoughtSpot is a technology company that produces business intelligence analytics search software. This App-ID covers the uploading traffic of ThoughtSpot.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.thoughtspot.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"thoughtspot-base"] +} +, +"risk": +"2", +"parent-app": +"thoughtspot-base", +"preview": +"yes"} +, +{ +"@id":"12022", +"@minver":"8.1.0", +"@name":"twitter-reactions", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Twitter allows users to say more with new emoji reactions for Direct Messages in the app. This App-ID covers the traffic of Twitter reactions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"www.wikipedia.org", +"link": +"http://en.wikipedia.org/wiki/Twitter"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"twitter-messaging"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"twitter-base", +"preview": +"yes"} +, +{ +"@id":"12066", +"@minver":"8.1.0", +"@name":"wonderchat-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Wonderchat allows you to train a custom chatbot using your own provided data. This App-ID covers the creating traffic of Wonderchat.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://wonderchat.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"wonderchat-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"wonderchat-base", +"preview": +"yes"} +, +{ +"@id":"12009", +"@minver":"8.1.0", +"@name":"wonderchat-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"wonderchat", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Wonderchat allows you to train a custom chatbot using your own provided data. This App-ID covers the traffic of Wonderchat.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAARVBMVEVMaXFiePpib/hiZ/d3dvd/cPRqfPp5c/V3dPZ2hPplTvGEY/FiVfNjXvVvVPG1s/t5XPFwcveAbvRuYvR5ZvOZlvmsq/phpTzIAAAACnRSTlMA////ms7jIlX+BoAxOAAAAl5JREFUeJztlumWoyAQhUVcMA2aAvX9H3VqYbOjnXTm18zJVWkK6n4U9onaNB999B9rPNWLZtP1XxfqO/PEfGmt1V3ar5f+Vsh5HZX7fsdL2tjc79LNjJPla3u2JCWSZPjHfYw8sa6Vba78c41igv86/FOM954AKf9cmbMyoroTI9r9uv5krjBEWL9wyVzD2Hspv7hvN/kjzU06FYIJfSLg+iv5ozVr5jP3uU0IqSFvwBd/TXhUKi0gYY2bMMVvfzQnWUuEQAC+kT351xAY8ApituSXEnq+A2wPs7VEv0XICYrnLK0y2xCkhgzAAiyLc2yESb6EEsTLzhlgxO/sEzHHbyGGsxOCaTpP/uCcfcqwdll2ITgXAV3Tw1r5/bZ5nI4w4Ijy5doWFPcwgwgAfeMB0C8Exxk7dw8R+yVeZAHHNazgI0AkGctW+SkShSUp+p1mAPm1lpGccRK5afk2wFsgAGgdCXHNHeF4lCjXt9MpA5ihGTAwwTEjLjKxv0Q0SfNk35cNOMYNhBZgaDqANiY4PWHONunoqCLHJ+Dye5rFAjRA15gMYMmGziOtsYCpmsUK8NeEgLbVvxe6cPcNAZjQirQ0eOgqooHDqOa4ZUDPgOKWzEwsnSpKY0A/ZwOqfUtYOvCTeVQqIRSfqds+dg8ZCuJTVRGBDyU5qc9XbNsyFkdR6bE+KFBCUXFG5fjYOWjILwZzOn+lRIPyYpl+BUjrl1fbML1DKC/XcXoDUL/euzf89QcGbmCaeENmeM09HL8ukp2LecV+8nlzkOkuCxmefubl+/o3H5offfRP6g9wSk95gNVITAAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://wonderchat.io"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"8.1.0", +"notion-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"wonderchat-create", +{ +"@minver":"8.1.0", +"wonderchat-delete", +{ +"@minver":"8.1.0", +"wonderchat-download", +{ +"@minver":"8.1.0", +"wonderchat-upload"] +} +, +"risk": +"3", +"application-container": +"wonderchat", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12009", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"wonderchat", +"ottawa-name": +"wonderchat", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Wonderchat allows you to train a custom chatbot using your own provided data. This App-ID covers the traffic of Wonderchat.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAARVBMVEVMaXFiePpib/hiZ/d3dvd/cPRqfPp5c/V3dPZ2hPplTvGEY/FiVfNjXvVvVPG1s/t5XPFwcveAbvRuYvR5ZvOZlvmsq/phpTzIAAAACnRSTlMA////ms7jIlX+BoAxOAAAAl5JREFUeJztlumWoyAQhUVcMA2aAvX9H3VqYbOjnXTm18zJVWkK6n4U9onaNB999B9rPNWLZtP1XxfqO/PEfGmt1V3ar5f+Vsh5HZX7fsdL2tjc79LNjJPla3u2JCWSZPjHfYw8sa6Vba78c41igv86/FOM954AKf9cmbMyoroTI9r9uv5krjBEWL9wyVzD2Hspv7hvN/kjzU06FYIJfSLg+iv5ozVr5jP3uU0IqSFvwBd/TXhUKi0gYY2bMMVvfzQnWUuEQAC+kT351xAY8ApituSXEnq+A2wPs7VEv0XICYrnLK0y2xCkhgzAAiyLc2yESb6EEsTLzhlgxO/sEzHHbyGGsxOCaTpP/uCcfcqwdll2ITgXAV3Tw1r5/bZ5nI4w4Ijy5doWFPcwgwgAfeMB0C8Exxk7dw8R+yVeZAHHNazgI0AkGctW+SkShSUp+p1mAPm1lpGccRK5afk2wFsgAGgdCXHNHeF4lCjXt9MpA5ihGTAwwTEjLjKxv0Q0SfNk35cNOMYNhBZgaDqANiY4PWHONunoqCLHJ+Dye5rFAjRA15gMYMmGziOtsYCpmsUK8NeEgLbVvxe6cPcNAZjQirQ0eOgqooHDqOa4ZUDPgOKWzEwsnSpKY0A/ZwOqfUtYOvCTeVQqIRSfqds+dg8ZCuJTVRGBDyU5qc9XbNsyFkdR6bE+KFBCUXFG5fjYOWjILwZzOn+lRIPyYpl+BUjrl1fbML1DKC/XcXoDUL/euzf89QcGbmCaeENmeM09HL8ukp2LecV+8nlzkOkuCxmefubl+/o3H5offfRP6g9wSk95gNVITAAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://wonderchat.io"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"8.1.0", +"notion-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"wonderchat-create", +{ +"@minver":"8.1.0", +"wonderchat-delete", +{ +"@minver":"8.1.0", +"wonderchat-download", +{ +"@minver":"8.1.0", +"wonderchat-upload"] +} +, +"risk": +"3", +"application-container": +"wonderchat", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12067", +"@minver":"8.1.0", +"@name":"wonderchat-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Wonderchat allows you to train a custom chatbot using your own provided data. This App-ID covers the deleting traffic of Wonderchat.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://wonderchat.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"wonderchat-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"wonderchat-base", +"preview": +"yes"} +, +{ +"@id":"12065", +"@minver":"8.1.0", +"@name":"wonderchat-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Wonderchat allows you to train a custom chatbot using your own provided data. This App-ID covers the downloading traffic of Wonderchat.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://wonderchat.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"wonderchat-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"wonderchat-base", +"preview": +"yes"} +, +{ +"@id":"12064", +"@minver":"8.1.0", +"@name":"wonderchat-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Wonderchat allows you to train a custom chatbot using your own provided data. This App-ID covers the uploading traffic of Wonderchat.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://wonderchat.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"wonderchat-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"wonderchat-base", +"preview": +"yes"} +, +{ +"@id":"12153", +"@minver":"8.1.0", +"@name":"ai-wordsmith-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AI-Wordsmith is an AI art generator that helps users to generate creative content for website, blog, and social media accounts. This App-ID covers the deleting traffic of the AI-Wordsmith application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ai-wordsmith.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ai-wordsmith-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"ai-wordsmith-base", +"preview": +"yes"} +, +{ +"@id":"12125", +"@minver":"8.1.0", +"@name":"ai-wordsmith-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"ai-wordsmith", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AI-Wordsmith is an AI art generator that helps users to generate creative content for website, blog, and social media accounts. This App-ID covers the traffic of the AI-Wordsmith application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ai-wordsmith.com/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ai-wordsmith-delete", +{ +"@minver":"8.1.0", +"ai-wordsmith-move", +{ +"@minver":"8.1.0", +"ai-wordsmith-save", +{ +"@minver":"8.1.0", +"ai-wordsmith-upload"] +} +, +"risk": +"3", +"application-container": +"ai-wordsmith", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12125", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"ai-wordsmith", +"ottawa-name": +"ai-wordsmith", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AI-Wordsmith is an AI art generator that helps users to generate creative content for website, blog, and social media accounts. This App-ID covers the traffic of the AI-Wordsmith application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ai-wordsmith.com/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ai-wordsmith-delete", +{ +"@minver":"8.1.0", +"ai-wordsmith-move", +{ +"@minver":"8.1.0", +"ai-wordsmith-save", +{ +"@minver":"8.1.0", +"ai-wordsmith-upload"] +} +, +"risk": +"3", +"application-container": +"ai-wordsmith", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12152", +"@minver":"8.1.0", +"@name":"ai-wordsmith-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AI-Wordsmith is an AI art generator that helps users to generate creative content for website, blog, and social media accounts. This App-ID covers the moving traffic of the AI-Wordsmith application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ai-wordsmith.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ai-wordsmith-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"ai-wordsmith-base", +"preview": +"yes"} +, +{ +"@id":"12155", +"@minver":"8.1.0", +"@name":"ai-wordsmith-save", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AI-Wordsmith is an AI art generator that helps users to generate creative content for website, blog, and social media accounts. This App-ID covers the saving traffic of the AI-Wordsmith application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ai-wordsmith.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ai-wordsmith-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"ai-wordsmith-base", +"preview": +"yes"} +, +{ +"@id":"12154", +"@minver":"8.1.0", +"@name":"ai-wordsmith-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AI-Wordsmith is an AI art generator that helps users to generate creative content for website, blog, and social media accounts. This App-ID covers the uploading traffic of the AI-Wordsmith application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ai-wordsmith.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ai-wordsmith-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"ai-wordsmith-base", +"preview": +"yes"} +, +{ +"@id":"12119", +"@minver":"8.1.0", +"@name":"azure-iot", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Azure IoT Hub is a managed service hosted in the cloud that acts as a central message hub for communication between an IoT application and its attached devices. Users can connect millions of devices and their backend solutions reliably and securely. Almost any device can be connected to an IoT hub. This App-ID covers communication between an IoT device and a Azure IoT Hub.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://learn.microsoft.com/en-us/azure/iot-hub/iot-hub-devguide"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12105", +"@minver":"8.1.0", +"@name":"boxnet-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Box.net is an online storage, file hosting, and file sharing service that allows individuals to access and share files online. This App-ID covers the copying traffic of Boxnet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.box.net/"} +] +} +, +"use-applications": +{ +"member":["boxnet-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"boxnet-base", +"preview": +"yes"} +, +{ +"@id":"12102", +"@minver":"8.1.0", +"@name":"boxnet-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Box.net is an online storage, file hosting, and file sharing service that allows individuals to access and share files online. This App-ID covers the creating traffic of Boxnet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.box.net/"} +] +} +, +"use-applications": +{ +"member":["boxnet-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"boxnet-base", +"preview": +"yes"} +, +{ +"@id":"12103", +"@minver":"8.1.0", +"@name":"boxnet-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Box.net is an online storage, file hosting, and file sharing service that allows individuals to access and share files online. This App-ID covers the deleting traffic of Boxnet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.box.net/"} +] +} +, +"use-applications": +{ +"member":["boxnet-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"boxnet-base", +"preview": +"yes"} +, +{ +"@id":"12104", +"@minver":"8.1.0", +"@name":"boxnet-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Box.net is an online storage, file hosting, and file sharing service that allows individuals to access and share files online. This App-ID covers the moving traffic of Boxnet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.box.net/"} +] +} +, +"use-applications": +{ +"member":["boxnet-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"boxnet-base", +"preview": +"yes"} +, +{ +"@id":"12106", +"@minver":"8.1.0", +"@name":"boxnet-unshare", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Box.net is an online storage, file hosting, and file sharing service that allows individuals to access and share files online. This App-ID covers the unsharing traffic of Boxnet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.box.net/"} +] +} +, +"use-applications": +{ +"member":["boxnet-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"boxnet-base", +"preview": +"yes"} +, +{ +"@id":"12115", +"@minver":"8.1.0", +"@name":"deepl-translator-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"DeepL Translator is a machine translation service that produces translations of unprecedented quality. This App-ID covers the deleting traffic of DeepL Translator.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepl.com/en/translator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"deepl-translator"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"deepl-translator", +"preview": +"yes"} +, +{ +"@id":"12117", +"@minver":"8.1.0", +"@name":"deepl-translator-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"DeepL Translator is a machine translation service that produces translations of unprecedented quality. This App-ID covers the downloading traffic of DeepL Translator.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepl.com/en/translator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"deepl-translator"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"deepl-translator", +"preview": +"yes"} +, +{ +"@id":"12114", +"@minver":"8.1.0", +"@name":"deepl-translator-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"DeepL Translator is a machine translation service that produces translations of unprecedented quality. This App-ID covers the editing traffic of DeepL Translator.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepl.com/en/translator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"deepl-translator"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"deepl-translator", +"preview": +"yes"} +, +{ +"@id":"12116", +"@minver":"8.1.0", +"@name":"deepl-translator-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"DeepL Translator is a machine translation service that produces translations of unprecedented quality. This App-ID covers the uploading traffic of DeepL Translator.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepl.com/en/translator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"deepl-translator"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"deepl-translator", +"preview": +"yes"} +, +{ +"@id":"12123", +"@minver":"8.1.0", +"@name":"filmora-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the copying traffic of the Filmora application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12124", +"@minver":"8.1.0", +"@name":"filmora-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"filmora", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the traffic of the Filmora application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-copy", +{ +"@minver":"8.1.0", +"filmora-create", +{ +"@minver":"8.1.0", +"filmora-delete", +{ +"@minver":"8.1.0", +"filmora-download", +{ +"@minver":"8.1.0", +"filmora-edit", +{ +"@minver":"8.1.0", +"filmora-move", +{ +"@minver":"8.1.0", +"filmora-upload"] +} +, +"risk": +"3", +"application-container": +"filmora", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12124", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"filmora", +"ottawa-name": +"filmora", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the traffic of the Filmora application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-copy", +{ +"@minver":"8.1.0", +"filmora-create", +{ +"@minver":"8.1.0", +"filmora-delete", +{ +"@minver":"8.1.0", +"filmora-download", +{ +"@minver":"8.1.0", +"filmora-edit", +{ +"@minver":"8.1.0", +"filmora-move", +{ +"@minver":"8.1.0", +"filmora-upload"] +} +, +"risk": +"3", +"application-container": +"filmora", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12121", +"@minver":"8.1.0", +"@name":"filmora-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the creating traffic of the Filmora application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12176", +"@minver":"8.1.0", +"@name":"filmora-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the deleting traffic of the Filmora application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12178", +"@minver":"8.1.0", +"@name":"filmora-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the downloading traffic of the Filmora application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12122", +"@minver":"8.1.0", +"@name":"filmora-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the editing traffic of the Filmora application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12175", +"@minver":"8.1.0", +"@name":"filmora-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the moving traffic of the Filmora application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12177", +"@minver":"8.1.0", +"@name":"filmora-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Filmora is a video editing application that allows users to create and edit videos for personal or professional use. This App-ID covers the uploading traffic of the Filmora application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://filmora.wondershare.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"filmora-create"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"filmora-base", +"preview": +"yes"} +, +{ +"@id":"12140", +"@minver":"8.1.0", +"@name":"google-meet-join", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"internet-conferencing", +"technology": +"browser-based", +"description": +"Google Meet is a video communication service developed by Google. This App-ID covers the joining traffic of Google Meet.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meet.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Meet"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-meet-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"google-meet-base", +"preview": +"yes"} +, +{ +"@id":"12141", +"@minver":"8.1.0", +"@name":"google-meet-record", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"internet-conferencing", +"technology": +"browser-based", +"description": +"Google Meet is a video communication service developed by Google. This App-ID covers the recording traffic of Google Meet.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://meet.google.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Meet"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-meet-join"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"google-meet-base", +"preview": +"yes"} +, +{ +"@id":"12111", +"@minver":"8.1.0", +"@name":"guldmann-clm-hoist", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Guldmann Care Lift Management (CLM) ceiling hoist is often the ideal and most effective way to lift and move people. The Guldmann lifting module is intended for lifting and transferring a user with disabilities and for gait training. This App-ID covers communication from a Guldmann CLM ceiling hoist to a CLM data server.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.guldmann.com/us/products/ceiling-lift-systems"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12128", +"@minver":"8.1.0", +"@name":"jasper-ai-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Jasper is an AI writer and AI art generator for teams. It helps user to create blog posts, marketing copy, and AI-generated images. This App-ID covers the creating traffic of Jasper AI.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.jasper.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"jasper-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"jasper-ai-base", +"preview": +"yes"} +, +{ +"@id":"12127", +"@minver":"8.1.0", +"@name":"jasper-ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Jasper is an AI writer and AI art generator for teams. It helps user to create blog posts, marketing copy, and AI-generated images. This App-ID covers the deleting traffic of Jasper AI.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.jasper.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"jasper-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"jasper-ai-base", +"preview": +"yes"} +, +{ +"@id":"12126", +"@minver":"8.1.0", +"@name":"jasper-ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Jasper is an AI writer and AI art generator for teams. It helps user to create blog posts, marketing copy, and AI-generated images. This App-ID covers the downloading traffic of Jasper AI.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.jasper.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"jasper-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"jasper-ai-base", +"preview": +"yes"} +, +{ +"@id":"12184", +"@minver":"8.1.0", +"@name":"moxa-configuration", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Moxa's Modbus TCP gateway solutions convert data in networks between Modbus RTU/ASCII, Modbus TCP, DNP3, CANopen, J1939, PROFIBUS, BACnet/IP, IEC 101/104, and IEC 61850, making configuration, troubleshooting, and conversion quick and easy. This App-ID covers the traffic of configuring Moxa gateways.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.moxa.com/en/products/industrial-edge-connectivity/protocol-gateways/modbus-tcp-gateways"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12120", +"@minver":"8.1.0", +"@name":"moxa-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Moxa's Modbus TCP gateway solutions convert data in networks between Modbus RTU/ASCII, Modbus TCP, DNP3, CANopen, J1939, PROFIBUS, BACnet/IP, IEC 101/104, and IEC 61850, making configuration, troubleshooting, and conversion quick and easy. This App-ID covers the discovery of Moxa gateways through MGate Manager and Moxa's Device Search Utility (DSU).", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.moxa.com/en/products/industrial-edge-connectivity/protocol-gateways/modbus-tcp-gateways"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12096", +"@minver":"8.1.0", +"@name":"ms-office365-copilot-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot for Microsoft 365 is an AI-powered productivity tool that coordinates large language models (LLMs), content in Microsoft 365 apps that are used every day, such as Word, Excel, PowerPoint, Outlook, and Teams. This App-ID covers the deleting traffic of Microsoft 365 Copilot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-365/business/copilot-for-microsoft-365"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-office365-copilot"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-office365-copilot", +"preview": +"yes"} +, +{ +"@id":"12095", +"@minver":"8.1.0", +"@name":"ms-office365-copilot-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot for Microsoft 365 is an AI-powered productivity tool that coordinates large language models (LLMs), content in Microsoft 365 apps that are used every day, such as Word, Excel, PowerPoint, Outlook, and Teams. This App-ID covers the editing traffic of Microsoft 365 Copilot.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-365/business/copilot-for-microsoft-365"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-office365-copilot"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-office365-copilot", +"preview": +"yes"} +, +{ +"@id":"12097", +"@minver":"8.1.0", +"@name":"ms-office365-copilot-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot for Microsoft 365 is an AI-powered productivity tool that coordinates large language models (LLMs), content in Microsoft 365 apps that are used every day, such as Word, Excel, PowerPoint, Outlook, and Teams. This App-ID covers the uploading traffic of Microsoft 365 Copilot.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Office 365]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-365/business/copilot-for-microsoft-365"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"bing-ai-uploading", +{ +"@minver":"8.1.0", +"ms-office365-copilot"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-office365-copilot", +"preview": +"yes"} +, +{ +"@id":"11620", +"@minver":"8.1.0", +"@name":"otter.ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Otter can make teams more collaborative automatically joining meetings and producing live transcriptions that can be annotated, highlighted, and shared. This App-ID covers the deleting traffic of otter.ai application.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAEw0lEQVR4nO2bb2hVZRzHP+fe3bNRm94gcyp37YUQyxGiVNOcUShJOCmCYCwD9Y32BymiFUQvglpFOZxSvhmSwzKtFyHFJsYg1xrltrRplEJu0rAone2au+fsnKcXv3O9u3c7tHOv6wl3PnDhnuc8z3O+z/f5Pec5z/lj4KGUagC2A3cBxdyYpIABYKdhGG0AhlLKAF4HGoGIRnH/JS7wJvCKoZR6AmjTLEgXDYZSqh9YqluJJvoNpVQKMHUr0YRtKKWUbhU6mS0nPV9CA3QL0E1ogG4BugkN0C1AN6EBugXoJjRAtwDdhAboFqCb0ADdAnQTGqBbgG6umwGWAxevys92pldm5KqUm276TFBUaAXdQ7CvD74ZggtXJG1hKdQkYOMyWFkxuUxqHF4+Ah9/D+Vl0LIB7rvdP30myfue4GgKGtuh9TuwUkAUMLydCnDBNGHz3fD2Oiib8KjlwxPQ0AbEABuWVkLv03DwB6jfl53esxWKC+4mf/IaAqMpePwjeL8LLBe5p5w2wPD+x2Tfni7J+1cqU/6nP7x8Eck3NCK9f2aK9FHr3/UUMmTyMuDFdmg/hTTcQJ6zjINZJD/GvTRD8rQPQGPHhIMa2fWltw2fdD/GxmH757CkGVa8B8fOBW9LYAN6zkvYE/MSHEjEYdejcPwpCeWWR6AiLvsAMKH1WylbCLk9/ckAtHTC8Cj0DcKzh8WUIAQeXXt7wbYQA1xYFIf2TXDnbZk81fNhzWJY2wq/XgYiYKekbE0i2PEMQ2aVlzrgQD8smCsnx5UVcOZPsobM+cuQtKAkQKsCRYDleL2YLuXA87XZjU9TNQ9eqCUTBVGZKdKNmi4lUfjsR9jRCcNJ6D0HzxwGV0E04JCZikAGJC24MIq4riBiwupK//yrKyFqSl4M+C0pJ7sgB40YcPr3CWpjMHjJqyePBk+qv6DSChzXf7ej4P/+4C2QAaUmzC/lWo+6Nnzxs3/+I2clTzpiystkTncDmOKqCUPMBWyovEXGeZB6/AhkgBmFFRVkxnUR7OqGrsHJeb8ehOZjyDUBgAs13lVhEN1jDmyogucegIVlsLwSdtfJecTJqSgfQwLPApuWw97jYHvz/KW/oe4D2FYDaxeLsC/Pwu4eGLmCGKAgZsLmZcEFKiXG73gYXn0QborJNsAdt3qZvOuQRXMlSoMQ2ICaBGy5B/Z8hbxJFIGRMWg6Ck2dXibHqznd+zZsWQX3BpwCc4mXZG8/tgR67odPT8KCOdC8PtgUCHkuht56CH65CB2nkOsBg8yFEWQGlgIsWFct64E0uaGa3vZL96O4CFrWw2trsiMjCHnNAnOK4VA9bF0FZgSwkV53vZ8DWLJvWy0crM9eDFXN8/54oZuIS2NyQzoRh7JphHS8JL/GQwGrwTTdQ9DWJxdIw0lJK79ZTpZP+iyHLUfWE4dOSOjurPOWw46sMHPTZ5Lr9oqM7WRWbqXm9HpkZGzq0PVLnwnCd4R0C9BNaIBuAboJDdAtQDehAboF6CY0QLcA3YQG6Bagm9AA3QJ0ExqgW4BuQgN0C9BN+pbmbMWKIN/SzlZOR4B3dKvQyLsR4ADwBnI3frbgAk3A/mtP2JVSG5HP56u5sT+fP4l8Pr8f4B/H5YDXL6w5kwAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://otter.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"otter.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"otter.ai-base", +"preview": +"yes"} +, +{ +"@id":"11619", +"@minver":"8.1.0", +"@name":"otter.ai-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Otter can make teams more collaborative automatically joining meetings and producing live transcriptions that can be annotated, highlighted, and shared. This App-ID covers the downloading traffic of otter.ai application.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAEw0lEQVR4nO2bb2hVZRzHP+fe3bNRm94gcyp37YUQyxGiVNOcUShJOCmCYCwD9Y32BymiFUQvglpFOZxSvhmSwzKtFyHFJsYg1xrltrRplEJu0rAone2au+fsnKcXv3O9u3c7tHOv6wl3PnDhnuc8z3O+z/f5Pec5z/lj4KGUagC2A3cBxdyYpIABYKdhGG0AhlLKAF4HGoGIRnH/JS7wJvCKoZR6AmjTLEgXDYZSqh9YqluJJvoNpVQKMHUr0YRtKKWUbhU6mS0nPV9CA3QL0E1ogG4BugkN0C1AN6EBugXoJjRAtwDdhAboFqCb0ADdAnQTGqBbgG6umwGWAxevys92pldm5KqUm276TFBUaAXdQ7CvD74ZggtXJG1hKdQkYOMyWFkxuUxqHF4+Ah9/D+Vl0LIB7rvdP30myfue4GgKGtuh9TuwUkAUMLydCnDBNGHz3fD2Oiib8KjlwxPQ0AbEABuWVkLv03DwB6jfl53esxWKC+4mf/IaAqMpePwjeL8LLBe5p5w2wPD+x2Tfni7J+1cqU/6nP7x8Eck3NCK9f2aK9FHr3/UUMmTyMuDFdmg/hTTcQJ6zjINZJD/GvTRD8rQPQGPHhIMa2fWltw2fdD/GxmH757CkGVa8B8fOBW9LYAN6zkvYE/MSHEjEYdejcPwpCeWWR6AiLvsAMKH1WylbCLk9/ckAtHTC8Cj0DcKzh8WUIAQeXXt7wbYQA1xYFIf2TXDnbZk81fNhzWJY2wq/XgYiYKekbE0i2PEMQ2aVlzrgQD8smCsnx5UVcOZPsobM+cuQtKAkQKsCRYDleL2YLuXA87XZjU9TNQ9eqCUTBVGZKdKNmi4lUfjsR9jRCcNJ6D0HzxwGV0E04JCZikAGJC24MIq4riBiwupK//yrKyFqSl4M+C0pJ7sgB40YcPr3CWpjMHjJqyePBk+qv6DSChzXf7ej4P/+4C2QAaUmzC/lWo+6Nnzxs3/+I2clTzpiystkTncDmOKqCUPMBWyovEXGeZB6/AhkgBmFFRVkxnUR7OqGrsHJeb8ehOZjyDUBgAs13lVhEN1jDmyogucegIVlsLwSdtfJecTJqSgfQwLPApuWw97jYHvz/KW/oe4D2FYDaxeLsC/Pwu4eGLmCGKAgZsLmZcEFKiXG73gYXn0QborJNsAdt3qZvOuQRXMlSoMQ2ICaBGy5B/Z8hbxJFIGRMWg6Ck2dXibHqznd+zZsWQX3BpwCc4mXZG8/tgR67odPT8KCOdC8PtgUCHkuht56CH65CB2nkOsBg8yFEWQGlgIsWFct64E0uaGa3vZL96O4CFrWw2trsiMjCHnNAnOK4VA9bF0FZgSwkV53vZ8DWLJvWy0crM9eDFXN8/54oZuIS2NyQzoRh7JphHS8JL/GQwGrwTTdQ9DWJxdIw0lJK79ZTpZP+iyHLUfWE4dOSOjurPOWw46sMHPTZ5Lr9oqM7WRWbqXm9HpkZGzq0PVLnwnCd4R0C9BNaIBuAboJDdAtQDehAboF6CY0QLcA3YQG6Bagm9AA3QJ0ExqgW4BuQgN0C9BN+pbmbMWKIN/SzlZOR4B3dKvQyLsR4ADwBnI3frbgAk3A/mtP2JVSG5HP56u5sT+fP4l8Pr8f4B/H5YDXL6w5kwAAAABJRU5ErkJggg==", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://otter.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"otter.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"otter.ai-base", +"preview": +"yes"} +, +{ +"@id":"11618", +"@minver":"8.1.0", +"@name":"otter.ai-logout", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Otter can make teams more collaborative automatically joining meetings and producing live transcriptions that can be annotated, highlighted, and shared. This App-ID covers the logout traffic of otter.ai application.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAEw0lEQVR4nO2bb2hVZRzHP+fe3bNRm94gcyp37YUQyxGiVNOcUShJOCmCYCwD9Y32BymiFUQvglpFOZxSvhmSwzKtFyHFJsYg1xrltrRplEJu0rAone2au+fsnKcXv3O9u3c7tHOv6wl3PnDhnuc8z3O+z/f5Pec5z/lj4KGUagC2A3cBxdyYpIABYKdhGG0AhlLKAF4HGoGIRnH/JS7wJvCKoZR6AmjTLEgXDYZSqh9YqluJJvoNpVQKMHUr0YRtKKWUbhU6mS0nPV9CA3QL0E1ogG4BugkN0C1AN6EBugXoJjRAtwDdhAboFqCb0ADdAnQTGqBbgG6umwGWAxevys92pldm5KqUm276TFBUaAXdQ7CvD74ZggtXJG1hKdQkYOMyWFkxuUxqHF4+Ah9/D+Vl0LIB7rvdP30myfue4GgKGtuh9TuwUkAUMLydCnDBNGHz3fD2Oiib8KjlwxPQ0AbEABuWVkLv03DwB6jfl53esxWKC+4mf/IaAqMpePwjeL8LLBe5p5w2wPD+x2Tfni7J+1cqU/6nP7x8Eck3NCK9f2aK9FHr3/UUMmTyMuDFdmg/hTTcQJ6zjINZJD/GvTRD8rQPQGPHhIMa2fWltw2fdD/GxmH757CkGVa8B8fOBW9LYAN6zkvYE/MSHEjEYdejcPwpCeWWR6AiLvsAMKH1WylbCLk9/ckAtHTC8Cj0DcKzh8WUIAQeXXt7wbYQA1xYFIf2TXDnbZk81fNhzWJY2wq/XgYiYKekbE0i2PEMQ2aVlzrgQD8smCsnx5UVcOZPsobM+cuQtKAkQKsCRYDleL2YLuXA87XZjU9TNQ9eqCUTBVGZKdKNmi4lUfjsR9jRCcNJ6D0HzxwGV0E04JCZikAGJC24MIq4riBiwupK//yrKyFqSl4M+C0pJ7sgB40YcPr3CWpjMHjJqyePBk+qv6DSChzXf7ej4P/+4C2QAaUmzC/lWo+6Nnzxs3/+I2clTzpiystkTncDmOKqCUPMBWyovEXGeZB6/AhkgBmFFRVkxnUR7OqGrsHJeb8ehOZjyDUBgAs13lVhEN1jDmyogucegIVlsLwSdtfJecTJqSgfQwLPApuWw97jYHvz/KW/oe4D2FYDaxeLsC/Pwu4eGLmCGKAgZsLmZcEFKiXG73gYXn0QborJNsAdt3qZvOuQRXMlSoMQ2ICaBGy5B/Z8hbxJFIGRMWg6Ck2dXibHqznd+zZsWQX3BpwCc4mXZG8/tgR67odPT8KCOdC8PtgUCHkuht56CH65CB2nkOsBg8yFEWQGlgIsWFct64E0uaGa3vZL96O4CFrWw2trsiMjCHnNAnOK4VA9bF0FZgSwkV53vZ8DWLJvWy0crM9eDFXN8/54oZuIS2NyQzoRh7JphHS8JL/GQwGrwTTdQ9DWJxdIw0lJK79ZTpZP+iyHLUfWE4dOSOjurPOWw46sMHPTZ5Lr9oqM7WRWbqXm9HpkZGzq0PVLnwnCd4R0C9BNaIBuAboJDdAtQDehAboF6CY0QLcA3YQG6Bagm9AA3QJ0ExqgW4BuQgN0C9BN+pbmbMWKIN/SzlZOR4B3dKvQyLsR4ADwBnI3frbgAk3A/mtP2JVSG5HP56u5sT+fP4l8Pr8f4B/H5YDXL6w5kwAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://otter.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"otter.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"otter.ai-base", +"preview": +"yes"} +, +{ +"@id":"12148", +"@minver":"8.1.0", +"@name":"otter.ai-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Otter can make teams more collaborative automatically joining meetings and producing live transcriptions that can be annotated, highlighted, and shared. This App-ID covers the sharing traffic of otter.ai application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://otter.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"otter.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"otter.ai-base", +"preview": +"yes"} +, +{ +"@id":"12149", +"@minver":"8.1.0", +"@name":"otter.ai-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Otter can make teams more collaborative automatically joining meetings and producing live transcriptions that can be annotated, highlighted, and shared. This App-ID covers the uploading traffic of otter.ai application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://otter.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"otter.ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"otter.ai-base", +"preview": +"yes"} +, +{ +"@id":"12130", +"@minver":"8.1.0", +"@name":"slidesai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SlidesAI is a Google Chrome extension for Google Slides. It is an AI-Powered Text To Presentation Tool that summarizes and creates presentation slides from text input. This App-ID covers the traffic of SlidesAI.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.slidesai.io/"} +] +} +, +"use-applications": +{ +"member":["google-docs-base", +"google-docs-enterprise", +{ +"@minver":"8.1.0", +"google-slides-base", +"ssl", +"web-browsing"] +} +, +"risk": +"2", +"parent-app": +"google-docs-enterprise", +"preview": +"yes"} +, +{ +"@id":"12131", +"@minver":"8.1.0", +"@name":"yandex-speechkit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Yandex SpeechKit is a speech recognition and synthesis technology that allows app developers to use speech-related tasks in their applications. This App-ID covers the traffic of Yandex Speechkit.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yandex.cloud/en/services/speechkit"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12129", +"@minver":"8.1.0", +"@name":"yarn-chat-text-stories", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"client-server", +"description": +"Yarn - Chat & Text Stories is a chat fiction app to make reading fun, fast, and fabulous. This App-ID covers the traffic of the Yarn - Chat & Text Stories application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://mammoth.la/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12113", +"@minver":"8.1.0", +"@name":"zoll-server", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Zoll Server asset management software helps you stay on top of defibrillator maintenance across multiple devices and campuses. It centralizes information from all connected devices in one secure location, saving time and helping your team ensure defibrillators are ready the moment they are needed. Its cloud-based format allows you to access it from anywhere, anytime, securely. This App-ID covers communication from a Zoll defibrillator to a Zoll dashboard on a Zoll server.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.zoll.com/products/data/hospital"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"3", +"preview": +"yes"} +, +{ +"@id":"12230", +"@minver":"8.1.0", +"@name":"abb-cls", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"ABB Central Licensing System (CLS) is a licensing mechanism where a designated node distributes the available licenses as they are needed to all other nodes within the system. This App-ID covers a license request from a node within the system to the CLS server.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://global.abb/group/en"} +] +} +, +"use-applications": +{ +"member":["soap"] +} +, +"risk": +"1", +"parent-app": +"soap", +"preview": +"yes"} +, +{ +"@id":"12243", +"@minver":"8.1.0", +"@name":"abb-rnrp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"routing", +"technology": +"network-protocol", +"description": +"ABB's Redundant Network Routing Protocol (RNRP) enables a network architecture with two physically separate networks. Network redundancy adds an extra instance within the network infrastructure to ensure network availability. This serves as a backup for shifting network communications onto the other network in case of a disturbance in the first one, and therefore avoiding single point of failure.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://new.abb.com/control-systems/system-800xa/800xa-dcs/800xa-networks/network-redundancy---redundant-network-routing-protocol-(rnrp)"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12215", +"@minver":"8.1.0", +"@name":"alteryx-aidin-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"The Alteryx Analytics Automation Platform delivers end-to-end automation of analytics, machine learning, and data science processes that accelerate digital transformation. This App-ID covers Alteryx AiDIN, which augments the Alteryx platform with generative AI capabilities. Currently, only the \"Magic Documents\" feature is covered. This App-ID covers the create traffic of Alteryx AiDIN.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.alteryx.com/aidin"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alteryx-aidin"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alteryx-aidin", +"preview": +"yes"} +, +{ +"@id":"12216", +"@minver":"8.1.0", +"@name":"alteryx-aidin-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"The Alteryx Analytics Automation Platform delivers end-to-end automation of analytics, machine learning, and data science processes that accelerate digital transformation. This App-ID covers Alteryx AiDIN, which augments the Alteryx platform with generative AI capabilities. Currently, only the \"Magic Documents\" feature is covered. This App-ID covers the delete traffic of Alteryx AiDIN.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.alteryx.com/aidin"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alteryx-aidin"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alteryx-aidin", +"preview": +"yes"} +, +{ +"@id":"12150", +"@minver":"8.1.0", +"@name":"anthropic-api-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"The Anthropic API is an API developed by Anthropic, a company focused on AI research and safety. This App-ID covers the posting traffic of Anthropic API.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.anthropic.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"anthropic-api-base"] +} +, +"risk": +"4", +"parent-app": +"anthropic-api-base", +"preview": +"yes"} +, +{ +"@id":"12109", +"@minver":"8.1.0", +"@name":"anthropic-api-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"anthropic-api", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"The Anthropic API is an API developed by Anthropic, a company focused on AI research and safety. This App-ID covers the traffic of Anthropic API.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.anthropic.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"anthropic-api-post"] +} +, +"risk": +"4", +"application-container": +"anthropic-api", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12109", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"anthropic-api", +"ottawa-name": +"anthropic-api", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"The Anthropic API is an API developed by Anthropic, a company focused on AI research and safety. This App-ID covers the traffic of Anthropic API.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.anthropic.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"anthropic-api-post"] +} +, +"risk": +"4", +"application-container": +"anthropic-api", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12209", +"@minver":"8.1.0", +"@name":"ariba-by-sap", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"SAP Ariba is an intelligent cloud-based management software for sourcing and procurement. It allows companies to increase efficiency and control costs by optimizing the procure-to-pay (P2P) process. This App-ID covers the traffic of the SAP Ariba application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes", +"is-soc1": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://service.ariba.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12220", +"@minver":"8.1.0", +"@name":"atera-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"Atera Remote Monitoring and Management software (RMM) is a cloud-based application that offers full visibility and control to upgrade your IT management from reactive to proactive with a single solution. This App-ID covers the deleting traffic of Atera RMM.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.atera.com/features/remote-monitoring-and-management/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"atera-base"] +} +, +"risk": +"3", +"parent-app": +"atera-base", +"preview": +"yes"} +, +{ +"@id":"12217", +"@minver":"8.1.0", +"@name":"atera-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"atera", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"Atera Remote Monitoring and Management software (RMM) is a cloud-based application that offers full visibility and control to upgrade your IT management from reactive to proactive with a single solution. This App-ID covers the traffic of Atera RMM.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.atera.com/features/remote-monitoring-and-management/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"5.0.0", +"anydesk", +{ +"@minver":"3.0.0", +"splashtop-remote", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"atera-delete", +{ +"@minver":"8.1.0", +"atera-download", +{ +"@minver":"8.1.0", +"atera-logout"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"application-container": +"atera", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12217", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"atera", +"ottawa-name": +"atera", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"Atera Remote Monitoring and Management software (RMM) is a cloud-based application that offers full visibility and control to upgrade your IT management from reactive to proactive with a single solution. This App-ID covers the traffic of Atera RMM.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.atera.com/features/remote-monitoring-and-management/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"5.0.0", +"anydesk", +{ +"@minver":"3.0.0", +"splashtop-remote", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"atera-delete", +{ +"@minver":"8.1.0", +"atera-download", +{ +"@minver":"8.1.0", +"atera-logout"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"application-container": +"atera", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12219", +"@minver":"8.1.0", +"@name":"atera-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"Atera Remote Monitoring and Management software (RMM) is a cloud-based application that offers full visibility and control to upgrade your IT management from reactive to proactive with a single solution. This App-ID covers the downloading traffic of Atera RMM.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.atera.com/features/remote-monitoring-and-management/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"atera-base"] +} +, +"risk": +"3", +"parent-app": +"atera-base", +"preview": +"yes"} +, +{ +"@id":"12218", +"@minver":"8.1.0", +"@name":"atera-logout", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"Atera Remote Monitoring and Management software (RMM) is a cloud-based application that offers full visibility and control to upgrade your IT management from reactive to proactive with a single solution. This App-ID covers the logout traffic of Atera RMM.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.atera.com/features/remote-monitoring-and-management/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"atera-base"] +} +, +"risk": +"3", +"parent-app": +"atera-base", +"preview": +"yes"} +, +{ +"@id":"12239", +"@minver":"8.1.0", +"@name":"atlas-copco-toolstalk2", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Atlas Copco ToolsTalk 2 is a client-server based line management software solution. It provides quick and easy configuration, as well as complete visibility and traceability to an organization's line structure.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.atlascopco.com/en-us/itba/local/products/software/toolstalk-2"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12222", +"@minver":"8.1.0", +"@name":"audiosonic-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Audiosonic is an AI voice generator that helps to turn text into engaging and human-like audio in seconds. This App-ID covers the generating an audio traffic of the Audiosonic application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/ai-voice-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"audiosonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"audiosonic-base", +"preview": +"yes"} +, +{ +"@id":"12199", +"@minver":"8.1.0", +"@name":"audiosonic-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"audiosonic", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Audiosonic is an AI voice generator that helps to turn text into engaging and human-like audio in seconds. This App-ID covers the traffic of the Audiosonic application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/ai-voice-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"audiosonic-create", +{ +"@minver":"8.1.0", +"audiosonic-delete", +{ +"@minver":"8.1.0", +"audiosonic-download"] +} +, +"risk": +"3", +"application-container": +"audiosonic", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12199", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"audiosonic", +"ottawa-name": +"audiosonic", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Audiosonic is an AI voice generator that helps to turn text into engaging and human-like audio in seconds. This App-ID covers the traffic of the Audiosonic application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/ai-voice-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"audiosonic-create", +{ +"@minver":"8.1.0", +"audiosonic-delete", +{ +"@minver":"8.1.0", +"audiosonic-download"] +} +, +"risk": +"3", +"application-container": +"audiosonic", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12223", +"@minver":"8.1.0", +"@name":"audiosonic-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Audiosonic is an AI voice generator that helps to turn text into engaging and human-like audio in seconds. This App-ID covers the deleting traffic of the Audiosonic application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/ai-voice-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"audiosonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"audiosonic-base", +"preview": +"yes"} +, +{ +"@id":"12224", +"@minver":"8.1.0", +"@name":"audiosonic-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Audiosonic is an AI voice generator that helps to turn text into engaging and human-like audio in seconds. This App-ID covers the downloading traffic of the Audiosonic application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/ai-voice-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"audiosonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"audiosonic-base", +"preview": +"yes"} +, +{ +"@id":"12231", +"@minver":"8.1.0", +"@name":"blancai-recruiter-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"BlancAI Recruiter instants AI phone interviews, and allows recruiting teams to connect with top candidates faster than the competition. This App-ID covers the deleting traffic of the BlancAI Recruiter application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://blancai.io/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"blancai-recruiter-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"blancai-recruiter-base", +"preview": +"yes"} +, +{ +"@id":"12200", +"@minver":"8.1.0", +"@name":"blancai-recruiter-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"blancai-recruiter", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"BlancAI Recruiter instants AI phone interviews, and allows recruiting teams to connect with top candidates faster than the competition. This App-ID covers the traffic of the BlancAI Recruiter application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://blancai.io/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"blancai-recruiter-delete", +{ +"@minver":"8.1.0", +"blancai-recruiter-download", +{ +"@minver":"8.1.0", +"blancai-recruiter-upload"] +} +, +"risk": +"3", +"application-container": +"blancai-recruiter", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12200", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"blancai-recruiter", +"ottawa-name": +"blancai-recruiter", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"BlancAI Recruiter instants AI phone interviews, and allows recruiting teams to connect with top candidates faster than the competition. This App-ID covers the traffic of the BlancAI Recruiter application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://blancai.io/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"blancai-recruiter-delete", +{ +"@minver":"8.1.0", +"blancai-recruiter-download", +{ +"@minver":"8.1.0", +"blancai-recruiter-upload"] +} +, +"risk": +"3", +"application-container": +"blancai-recruiter", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12233", +"@minver":"8.1.0", +"@name":"blancai-recruiter-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"BlancAI Recruiter instants AI phone interviews, and allows recruiting teams to connect with top candidates faster than the competition. This App-ID covers the downloading traffic of the BlancAI Recruiter application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://blancai.io/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"blancai-recruiter-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"blancai-recruiter-base", +"preview": +"yes"} +, +{ +"@id":"12232", +"@minver":"8.1.0", +"@name":"blancai-recruiter-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"BlancAI Recruiter instants AI phone interviews, and allows recruiting teams to connect with top candidates faster than the competition. This App-ID covers the uploading traffic of the BlancAI Recruiter application.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://blancai.io/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"blancai-recruiter-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"blancai-recruiter-base", +"preview": +"yes"} +, +{ +"@id":"12237", +"@minver":"8.1.0", +"@name":"cpolar", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"cpolar is software that enables users to expose their local services publicly through secure tunnels.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.cpolar.com/"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12202", +"@minver":"8.1.0", +"@name":"deeplink-cloud", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"DeepLink is a free remote control software that provides a simple, fast, and secure solution allowing you to smoothly operate your computer remotely from any device. This App-ID covers the traffic of DeepLink.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deeplink.cloud/"} +] +} +, +"use-applications": +{ +"member":["rtcp", +"rtp-base", +"ssl", +"stun", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12172", +"@minver":"8.1.0", +"@name":"dropbox-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"client-server", +"description": +"Dropbox is a file hosting service that offers cloud storage, file synchronization, personal cloud, and client software. This App-ID covers traffic of dropbox-delete.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.dropbox.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Dropbox_(service)"} +] +} +, +"use-applications": +{ +"member":["dropbox-base"] +} +, +"risk": +"1", +"parent-app": +"dropbox-base", +"preview": +"yes"} +, +{ +"@id":"12173", +"@minver":"8.1.0", +"@name":"dropbox-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"client-server", +"description": +"This application controls file uploading traffic through of Dropbox App-ID.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.dropbox.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Dropbox_(service)"} +] +} +, +"use-applications": +{ +"member":["dropbox-base"] +} +, +"risk": +"1", +"parent-app": +"dropbox-base", +"preview": +"yes"} +, +{ +"@id":"12174", +"@minver":"8.1.0", +"@name":"dropbox-unshare", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"client-server", +"description": +"This application controls file uploading traffic through of Dropbox App-ID.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.dropbox.com/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Dropbox_(service)"} +] +} +, +"use-applications": +{ +"member":["dropbox-base", +{ +"@minver":"3.0.0", +"dropbox-sharing"] +} +, +"risk": +"1", +"parent-app": +"dropbox-base", +"preview": +"yes"} +, +{ +"@id":"12241", +"@minver":"8.1.0", +"@name":"ewon-talk2m-access-client", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The Ewon Cosy 131 is an industrial VPN gateway designed to offer remote access to machines and installations on customer sites or in the field. eCatcher is the Talk2M remote access software used to connect to the devices located on the Ewon's LAN. Engineering workstations running eCatcher connect to Talk2M access client servers.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hms-networks.com/software-and-tools/talk2m"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12240", +"@minver":"8.1.0", +"@name":"ewon-talk2m-access-device", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The Ewon Cosy 131 is an industrial VPN gateway designed to offer remote access to machines and installations on customer sites or in the field. eCatcher is the Talk2M remote access software used to connect to the devices located on the Ewon's LAN. Ewon gateways connect to Talk2M access device servers.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hms-networks.com/ewon"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12198", +"@minver":"8.1.0", +"@name":"gameviewer", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"GameViewer is a low-latency remote control tool. This App-ID covers the traffic of GameViewer.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://gv.163.com/"} +] +} +, +"use-applications": +{ +"member":["rtcp", +"rtp-base", +"ssl", +"stun"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12203", +"@minver":"8.1.0", +"@name":"gotohttp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"GotoHTTP is a cross-platform remote control software that supports unattended access, file transfer, clipboard transfer and Wake-on-LAN. This App-ID covers the traffic of GotoHTTP.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://gotohttp.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"stun", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12204", +"@minver":"8.1.0", +"@name":"huggingchat", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"HuggingChat is a free open-source AI chatbot provided by Hugging Face which answers general questions based on user input. This App-ID covers the traffic for HuggingChat.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://huggingface.co/chat/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"huggingface-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"huggingchat-create", +{ +"@minver":"8.1.0", +"huggingchat-delete"] +} +, +"risk": +"3", +"parent-app": +"huggingface-base", +"preview": +"yes"} +, +{ +"@id":"12225", +"@minver":"8.1.0", +"@name":"huggingchat-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"HuggingChat is a free open-source AI chatbot provided by Hugging Face which answers general questions based on user input. This App-ID covers the create traffic for HuggingChat.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://huggingface.co/chat/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"huggingchat"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"huggingchat", +"preview": +"yes"} +, +{ +"@id":"12226", +"@minver":"8.1.0", +"@name":"huggingchat-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"HuggingChat is a free open-source AI chatbot provided by Hugging Face which answers general questions based on user input. This App-ID covers the delete traffic for HuggingChat.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://huggingface.co/chat/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"huggingchat"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"huggingchat", +"preview": +"yes"} +, +{ +"@id":"12229", +"@minver":"8.1.0", +"@name":"keyence-kv-studio", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"KV STUDIO by Keyence is a software application used for configuring PLC devices as well as for creating ladder programs that combines ease of use and powerful programming processing capabilities. This App-ID covers Keyence KV STUDIO traffic between a PLC and a device running the KV STUDIO application.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.keyence.com/products/controls/plc-building-block-type/kv-x/models/kv-h1g-dl/?search_sl=1"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12221", +"@minver":"8.1.0", +"@name":"keyence-kv-studio-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"KV STUDIO by Keyence is software application used for configuring PLC devices as well as for creating ladder programs that combines ease of use and powerful programming processing capabilities. This App-ID covers Keyence KV STUDIO device discovery traffic between a PLC and a device running the KV STUDIO application.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.keyence.com/products/controls/plc-building-block-type/kv-x/models/kv-h1g-dl/?search_sl=1"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12257", +"@minver":"8.1.0", +"@name":"modbus-diagnostics", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"Modbus is a serial communications protocol published by Modicon in 1979 for use with its programmable logic controllers (PLCs). It has become a de facto standard communications protocol in industry, and is now the most commonly available means of connecting industrial electronic devices. The Modbus protocol is typically used in Supervisory Control and Data Acquisition (SCADA) and Industrial Control System (ICS) applications.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"yes", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Modbus"} +] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"modbus-dummy"] +} +, +"risk": +"2", +"parent-app": +"modbus-base", +"preview": +"yes"} +, +{ +"@id":"12206", +"@minver":"8.1.0", +"@name":"ms-powerapps-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the copying traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12205", +"@minver":"8.1.0", +"@name":"ms-powerapps-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the creating traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps-post"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12207", +"@minver":"8.1.0", +"@name":"ms-powerapps-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the deleting traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12210", +"@minver":"8.1.0", +"@name":"ms-powerapps-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the downloading traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12208", +"@minver":"8.1.0", +"@name":"ms-powerapps-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the editing traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12211", +"@minver":"8.1.0", +"@name":"ms-powerapps-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the posting traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Office 365]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12212", +"@minver":"8.1.0", +"@name":"ms-powerapps-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Microsoft Power Apps is a suite of apps, services, connectors and data platforms that provides a development environment to build custom apps for business needs. This App-ID covers the sharing traffic of Microsoft Power Apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Office 365]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/power-platform/products/power-apps"} +, +{ +"@name":"Microsoft", +"link": +"https://learn.microsoft.com/en-us/power-apps/powerapps-overview"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-powerapps"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ms-powerapps", +"preview": +"yes"} +, +{ +"@id":"12201", +"@minver":"8.1.0", +"@name":"photosonic-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Photosonic is an advanced AI art generator developed by Writesonic, designed to transform text prompts into stunning visual art. This App-ID covers the generating an image traffic of the Photosonic application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/photosonic-ai-art-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"photosonic-base"] +} +, +"risk": +"3", +"parent-app": +"photosonic-base", +"preview": +"yes"} +, +{ +"@id":"12161", +"@minver":"8.1.0", +"@name":"photosonic-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"photosonic", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Photosonic is an advanced AI art generator developed by Writesonic, designed to transform text prompts into stunning visual art. This App-ID covers the traffic of the Photosonic application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/photosonic-ai-art-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"photosonic-create"] +} +, +"risk": +"3", +"application-container": +"photosonic", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12161", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"photosonic", +"ottawa-name": +"photosonic", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Photosonic is an advanced AI art generator developed by Writesonic, designed to transform text prompts into stunning visual art. This App-ID covers the traffic of the Photosonic application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/photosonic-ai-art-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"photosonic-create"] +} +, +"risk": +"3", +"application-container": +"photosonic", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12214", +"@minver":"8.1.0", +"@name":"raylink", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"browser-based", +"description": +"RayLink is a safe, easy-to-use, high-performance remote control software, widely used in desktop remote control, remote terminal access, network management and IT support and other fields. This App-ID covers the traffic of RayLink.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.raylink.live/"} +] +} +, +"use-applications": +{ +"member":["rtcp", +"rtp-base", +"ssl", +"stun", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12238", +"@minver":"8.1.0", +"@name":"sew-eurodrive-smlp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"SMLP (Simple MOVILINK Protocol), developed by SEW-EURODRIVE, is a protocol used by MOVITOOLS® MotionStudio to communicate with PLC devices via Ethernet. This App-ID covers communication from automation software such as MOVITOOLS® MotionStudio to a PLC device.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.seweurodrive.com/home.html"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12164", +"@minver":"8.1.0", +"@name":"snmpv1-get-next-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetNextRequest traffic of SNMP Version 1.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv1"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv1", +"preview": +"yes"} +, +{ +"@id":"12132", +"@minver":"8.1.0", +"@name":"snmpv1-get-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetRequest traffic of SNMP Version 1.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv1"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv1", +"preview": +"yes"} +, +{ +"@id":"12167", +"@minver":"8.1.0", +"@name":"snmpv1-set-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the SetRequest traffic of SNMP Version 1.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv1"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv1", +"preview": +"yes"} +, +{ +"@id":"12170", +"@minver":"8.1.0", +"@name":"snmpv2-get-bulk-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetBulkRequest traffic of SNMP Version 2.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv2"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv2", +"preview": +"yes"} +, +{ +"@id":"12165", +"@minver":"8.1.0", +"@name":"snmpv2-get-next-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetNextRequest traffic of SNMP Version 2.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv2"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv2", +"preview": +"yes"} +, +{ +"@id":"12162", +"@minver":"8.1.0", +"@name":"snmpv2-get-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetRequest traffic of SNMP Version 2.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv2"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv2", +"preview": +"yes"} +, +{ +"@id":"12168", +"@minver":"8.1.0", +"@name":"snmpv2-set-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the SetRequest traffic of SNMP Version 2.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv2"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv2", +"preview": +"yes"} +, +{ +"@id":"12171", +"@minver":"8.1.0", +"@name":"snmpv3-get-bulk-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetBulkRequest traffic of SNMP Version 3.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"snmpv3-get-request"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv3", +"preview": +"yes"} +, +{ +"@id":"12166", +"@minver":"8.1.0", +"@name":"snmpv3-get-next-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetNextRequest traffic of SNMP Version 3.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"snmpv3-get-request"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv3", +"preview": +"yes"} +, +{ +"@id":"12163", +"@minver":"8.1.0", +"@name":"snmpv3-get-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the GetRequest traffic of SNMP Version 3.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"snmpv3"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv3", +"preview": +"yes"} +, +{ +"@id":"12169", +"@minver":"8.1.0", +"@name":"snmpv3-set-request", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Simple Network Management Protocol (SNMP) is an Internet-standard protocol for managing devices on IP networks. Devices that typically support SNMP include routers, switches, servers, workstations, printers, modem racks, and more. It is used mostly in network management systems to monitor network-attached devices for conditions that warrant administrative attention. This App-ID covers the SetRequest traffic of SNMP Version 3.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Simple_Network_Management_Protocol"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"snmpv3-get-request"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"snmpv3", +"preview": +"yes"} +, +{ +"@id":"12143", +"@minver":"8.1.0", +"@name":"sourcegraph-cody-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SourceGraph Cody is an AI coding assistant that uses code graph to understand your entire codebase and help developers focus on writing and shipping code. This App-ID covers the creating traffic for SourceGraph Cody application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Homepage", +"link": +"https://sourcegraph.com/cody"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sourcegraph-cody"] +} +, +"risk": +"3", +"parent-app": +"sourcegraph-cody", +"preview": +"yes"} +, +{ +"@id":"12144", +"@minver":"8.1.0", +"@name":"sourcegraph-cody-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SourceGraph Cody is an AI coding assistant that uses code graph to understand your entire codebase and help developers focus on writing and shipping code. This App-ID covers the deleting traffic for SourceGraph Cody application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Homepage", +"link": +"https://sourcegraph.com/cody"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sourcegraph-cody"] +} +, +"risk": +"3", +"parent-app": +"sourcegraph-cody", +"preview": +"yes"} +, +{ +"@id":"12145", +"@minver":"8.1.0", +"@name":"sourcegraph-cody-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SourceGraph Cody is an AI coding assistant that uses code graph to understand your entire codebase and help developers focus on writing and shipping code. This App-ID covers the editing traffic for SourceGraph Cody application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Homepage", +"link": +"https://sourcegraph.com/cody"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sourcegraph-cody"] +} +, +"risk": +"3", +"parent-app": +"sourcegraph-cody", +"preview": +"yes"} +, +{ +"@id":"12142", +"@minver":"8.1.0", +"@name":"sourcegraph-cody-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SourceGraph Cody is an AI coding assistant that uses code graph to understand your entire codebase and help developers focus on writing and shipping code. This App-ID covers the posting traffic for SourceGraph Cody application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Homepage", +"link": +"https://sourcegraph.com/cody"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sourcegraph-cody"] +} +, +"risk": +"3", +"parent-app": +"sourcegraph-cody", +"preview": +"yes"} +, +{ +"@id":"12234", +"@minver":"8.1.0", +"@name":"writesonic-ai-article-writer", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Writesonic's AI Article Writer is a suite of AI powered article writing tools designed to generate documents based on user provided topics and inputs. This App-ID covers the traffic of Writesonic AI Article Writer.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/ai-article-writer-generator"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"risk": +"3", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12246", +"@minver":"8.1.0", +"@name":"writesonic-seo-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Writesonic's SEO is a smart, AI-driven tool designed to help optimize content for better search engine rankings. This App-ID covers the creating traffic of Writesonic SEO.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/seo-checker-and-optimizer"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-seo-base"] +} +, +"risk": +"4", +"parent-app": +"writesonic-seo-base", +"preview": +"yes"} +, +{ +"@id":"12228", +"@minver":"8.1.0", +"@name":"writesonic-seo-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"writesonic-seo", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Writesonic's SEO is a smart, AI-driven tool designed to help optimize content for better search engine rankings. This App-ID covers the traffic of the Writesonic SEO application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/seo-checker-and-optimizer"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-seo-create", +{ +"@minver":"8.1.0", +"writesonic-seo-upload"] +} +, +"risk": +"4", +"application-container": +"writesonic-seo", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12228", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"writesonic-seo", +"ottawa-name": +"writesonic-seo", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Writesonic's SEO is a smart, AI-driven tool designed to help optimize content for better search engine rankings. This App-ID covers the traffic of the Writesonic SEO application.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/seo-checker-and-optimizer"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-seo-create", +{ +"@minver":"8.1.0", +"writesonic-seo-upload"] +} +, +"risk": +"4", +"application-container": +"writesonic-seo", +"parent-app": +"writesonic-base", +"preview": +"yes"} +, +{ +"@id":"12244", +"@minver":"8.1.0", +"@name":"writesonic-seo-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Writesonic's SEO is a smart, AI-driven tool designed to help optimize content for better search engine rankings. This App-ID covers the uploading traffic of Writesonic SEO.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://writesonic.com/seo-checker-and-optimizer"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"writesonic-seo-base"] +} +, +"risk": +"4", +"parent-app": +"writesonic-seo-base", +"preview": +"yes"} +, +{ +"@id":"12110", +"@minver":"8.1.0", +"@name":"xai-grok", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"xAI Grok is a new AI system developed by xAI, an artificial intelligence company, which was launched in 2023. Grok is designed to integrate with X (formerly Twitter) to help users interact with the platform using AI-driven assistance. This App-ID covers the traffic of xAI Grok.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAFR0lEQVR4nO2bzUsbXRTGzySaUNTYLuInCBbBuBHajVGhLlrIolEoFEq7qRo33YiKC9Oi+LlxodFqV4UWweg/oAVtwU3BllQJLkRhFFJBjKJopgtnNE83b0M1cyd5x8gdaR7Iwjln7jnnN97PSQQAoH9YJt4J8FYaAO8EeCsNgHcCvJUGwDsB3koD4J0Ab6UB8E6AtzJ4J5CMlpaW6OvXr2Q2m+NssiyT2+2m+/fv62scBpcoiigoKAARqX5KSkoQCoV0t29oALIso76+nlm8xWLB58+frxTD0ABGR0eZxRMRvF4vAGBtbU13DMMCCAQCsNlszOKdTicURcG7d+/w+vVr3XEMCUCSJDidTmbxubm5CAaD2Nrags1mi/0n6JEhZ4HBwUFaXl5m2vv6+qiyspJcLhednJxQZmam/mApfHAp0eLiIqxWK/Ppu91uAMDw8HDsWk9Pj+54hgIQDodRXl7OLL6wsBChUAiBQADZ2dkpAWCoLtDV1UUbGxuqNkEQyOfzUX5+Pj158oQkSUpN0BQ+wCtpenoagiAwn35zczMAoL29Pc5247uAKIooLCxkFl9eXo6joyN8+vQJmZmZKQXAfTN0dnZGra2ttLu7q2q3Wq00OTlJOTk51NHRQYqipDQ+dwATExM0NzfHtLe1tdHDhw8pEolQOBxOeXzdg+D3799paGiITCZ1hnV1ddTW1qbZxsrKCvX29jLt1dXV1N3dHftbbTd4ZentO5Ik4dGjR8x+m5GRgYWFBeb9kUgk4Wrvx48fMf+joyPk5eWp+nIbBLe3t1FcXKw5eO3t7ane6/V6NTc6Pp/vgr8hAQDAzMyM5vTV1NQUd8/CwoLmau/x48eQZfnCPYYFAAAej4dZjMlkgt/vj/nu7e3B4XBorvZEUYyLYWgA4XAYFRUVmkVtbW0BAFpaWjRhTU9Pq8a4LgApmQbtdju9ffuWrFarqn13d5daW1spGo3S3bt3me28fPmSXrx4kYqUkpdudCp68+aN5sA2NjYGAHC5XHE2h8OBcDjMbNvQXeCPJElCTU0NE4DNZkMwGIQoirDb7bHrVqtVc8oEbggAAFhdXcXt27eZEKqrq3F6eoqpqanYtWROdG4MAAAYGxvT7Ap/Cn769Cnu3buHSCSSsM0bBeDs7AwNDQ1MABaLBV++fMHBwQHW19eTatPQs8Blmc1m8vl8VFRUpGqXZZlevXpFgiCQw+G4jhSS1rXtBktLS2lkZIQEQVC1b25uUmdn53WFT1rXAmBnZ4fGx8fp2bNn5PF4mH4fP34kv99/HSkkL92dR0ONjY0QBAHz8/M4Pj7WtfS9rBszCPr9/tjmqLS0FPv7+1haWkp41H1583NZNwKAKIooKiq6kNzz588BJF4ljo6OarZteACKosDtdqsm+OHDB8iynHCV+PcByGUZHoDWm9w7d+7g58+fCAaDyM3NZfpVVVVBkiTV9g29Dkh0tldWVkZZWVlUWVlJ/f39TL9v377R4OBgKlJKXrrR/adEb3JtNhsCgUDMX1GUhKtEtY2RYbtAV1fX/x7ctre34wbLvz9qZ4mGBLC4uAiLxcIspL6+njm9zc7OwmQyMe9tampCNBqN+RsOQCgUQklJCbOAgoKChAscrbNEIsL79+9jvoeHh8xvjFzlGyK6X4zs7++Tx+Mhi8USZzs/P6fa2lrN4y8iouHhYXI4HKQoStyeIRqNktlspmg0SiaTiW7dukUDAwP069evC77n5+f04MEDvWWQAKR/M/RPKw2AdwK8lQbAOwHeSgPgnQBvpQHwToC30gB4J8BbvwErE+jcmNBEAQAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://grok.x.ai"} +] +} +, +"use-applications": +{ +"member":["twitter-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"xai-grok-download", +{ +"@minver":"8.1.0", +"xai-grok-post"] +} +, +"risk": +"4", +"parent-app": +"twitter-base", +"preview": +"yes"} +, +{ +"@id":"12147", +"@minver":"8.1.0", +"@name":"xai-grok-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"xAI Grok is a new AI system developed by xAI, an artificial intelligence company, which was launched in 2023. Grok is designed to integrate with X (formerly Twitter) to help users interact with the platform using AI-driven assistance. This App-ID covers the downloading traffic of xAI Grok.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://grok.x.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"xai-grok"] +} +, +"risk": +"4", +"parent-app": +"xai-grok", +"preview": +"yes"} +, +{ +"@id":"12146", +"@minver":"8.1.0", +"@name":"xai-grok-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"xAI Grok is a new AI system developed by xAI, an artificial intelligence company, which was launched in 2023. Grok is designed to integrate with X (formerly Twitter) to help users interact with the platform using AI-driven assistance. This App-ID covers the posting traffic of xAI Grok.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://grok.x.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"xai-grok"] +} +, +"risk": +"4", +"parent-app": +"xai-grok", +"preview": +"yes"} +, +{ +"@id":"12317", +"@minver":"8.1.0", +"@name":"abb-iac", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"ABB's Inter Application Communication (IAC) is an application layer protocol, used for reading and writing variables between controllers in the 800xA network.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"AC 800M Communication Protocols", +"link": +"https://library.e.abb.com/public/6a203d3016146ec6c12578570041d62a/3BSE035982-510_-_en_AC_800M_5.1_Communication_Protocols.pdf"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12338", +"@minver":"8.1.0", +"@name":"abiomed-remote-link", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Abiomed manufactures medical technology that provides circulatory and oxygenation support, like the Impella heart pump. The Automated Impella Controller (AIC) is the primary user control interface for all Impella heart pumps. A Medical Device Data System (MDDS) called the Remote Link can be used to stream video from the AIC to a monitor, displaying Impella device operating parameters and alarm messages.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.abiomed.com/"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12235", +"@minver":"8.1.0", +"@name":"aomei-anyviewer", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"AnyViewer is a remote access and file transfer software developed by AOMEI Technology. Users can use the app to request remote control access or file sharing access to another client with AnyViewer installed.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.anyviewer.com"} +] +} +, +"use-applications": +{ +"member":["telnet"] +} +, +"risk": +"2", +"parent-app": +"telnet", +"preview": +"yes"} +, +{ +"@id":"12342", +"@minver":"8.1.0", +"@name":"beckman-coulter-proservice", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Beckman Coulter manufactures laboratory instruments, reagents, and software for clinical diagnostics and research, specializing in hematology, clinical chemistry, and immunoassays. ProService is a remote service platform provided by Beckman Coulter, enabling real-time monitoring, diagnostics, and support for its laboratory instruments.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beckmancoulter.com/en/products/advanced-informatics/proservice-remote-management"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12108", +"@minver":"8.1.0", +"@name":"canva-magic-studio", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Canva Magic Studio is a suite of AI-powered tools that leverages artificial intelligence to assist users in creating designs more efficiently and creatively. This App-ID covers the traffic of Canva Magic Studio.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.canva.com/magic/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"canva-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"canva-magic-studio-download", +{ +"@minver":"8.1.0", +"canva-magic-studio-post"] +} +, +"risk": +"3", +"parent-app": +"canva-base", +"preview": +"yes"} +, +{ +"@id":"12181", +"@minver":"8.1.0", +"@name":"canva-magic-studio-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Canva Magic Studio is a suite of AI-powered tools that leverages artificial intelligence to assist users in creating designs more efficiently and creatively. This App-ID covers the downloading traffic of Canva Magic Studio.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.canva.com/magic/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"canva-magic-studio"] +} +, +"risk": +"3", +"parent-app": +"canva-magic-studio", +"preview": +"yes"} +, +{ +"@id":"12180", +"@minver":"8.1.0", +"@name":"canva-magic-studio-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Canva Magic Studio is a suite of AI-powered tools that leverages artificial intelligence to assist users in creating designs more efficiently and creatively. This App-ID covers the posting traffic of Canva Magic Studio.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.canva.com/magic/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"canva-magic-studio"] +} +, +"risk": +"3", +"parent-app": +"canva-magic-studio", +"preview": +"yes"} +, +{ +"@id":"12341", +"@minver":"8.1.0", +"@name":"cardinalhealth-wavemark", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"supply-chain-logistics", +"technology": +"client-server", +"description": +"Using barcode and RFID technology, Cardinal Health™ WaveMark™ Solutions leverage predictive modeling and automated inventory management to empower hospitals to optimize clinical workflows and support product availability.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.cardinalhealth.com/en/solutions/wavemark-supply-management.html"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12318", +"@minver":"8.1.0", +"@name":"exor-hmi-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EXOR's Industrial HMIs blend web technologies like HTML5 with IPC-level speed. They guarantee unmatched temperature adaptability, robust security, and durable performance. Using EXOR's JMobile software, the HMIs can be auto discovered.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.exorint.com/products/category/industrial-hmi"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12156", +"@minver":"8.1.0", +"@name":"facebook-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Facebook (branded as \"facebook\") is a social networking website launched on February 4, 2004. This App-ID covers traffic of deleting posts and leaving groups.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Facebook"} +] +} +, +"use-applications": +{ +"member":["facebook-base"] +} +, +"risk": +"2", +"parent-app": +"facebook-base", +"preview": +"yes"} +, +{ +"@id":"12151", +"@minver":"8.1.0", +"@name":"facebook-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Facebook (branded as \"facebook\") is a social networking website launched on February 4, 2004. This App-ID covers traffic of inviting facebook users and other members to groups.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Facebook"} +] +} +, +"use-applications": +{ +"member":["facebook-base"] +} +, +"risk": +"2", +"parent-app": +"facebook-base", +"preview": +"yes"} +, +{ +"@id":"12250", +"@minver":"8.1.0", +"@name":"google-admin-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Admin is an admin panel for adding users, managing devices, and configuring security and settings.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://admin.google.com/ac/home"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-admin-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-admin-base", +"preview": +"yes"} +, +{ +"@id":"12242", +"@minver":"8.1.0", +"@name":"google-admin-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"google-admin", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Admin is an admin panel for adding users, managing devices, and configuring security and settings.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://admin.google.com/ac/home"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-admin-create", +{ +"@minver":"8.1.0", +"google-admin-delete", +{ +"@minver":"8.1.0", +"google-admin-download", +{ +"@minver":"8.1.0", +"google-admin-upload"] +} +, +"risk": +"1", +"application-container": +"google-admin", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12242", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"google-admin", +"ottawa-name": +"google-admin", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Admin is an admin panel for adding users, managing devices, and configuring security and settings.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://admin.google.com/ac/home"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-admin-create", +{ +"@minver":"8.1.0", +"google-admin-delete", +{ +"@minver":"8.1.0", +"google-admin-download", +{ +"@minver":"8.1.0", +"google-admin-upload"] +} +, +"risk": +"1", +"application-container": +"google-admin", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12249", +"@minver":"8.1.0", +"@name":"google-admin-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Admin is an admin panel for adding users, managing devices, and configuring security and settings.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://admin.google.com/ac/home"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-admin-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-admin-base", +"preview": +"yes"} +, +{ +"@id":"12247", +"@minver":"8.1.0", +"@name":"google-admin-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Admin is an admin panel for adding users, managing devices, and configuring security and settings.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://admin.google.com/ac/home"} +] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-admin-base", +"preview": +"yes"} +, +{ +"@id":"12248", +"@minver":"8.1.0", +"@name":"google-admin-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Google Admin is an admin panel for adding users, managing devices, and configuring security and settings.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://admin.google.com/ac/home"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-admin-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-admin-base", +"preview": +"yes"} +, +{ +"@id":"12252", +"@minver":"8.1.0", +"@name":"google-contacts-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"google-contacts-base", +"preview": +"yes"} +, +{ +"@id":"12251", +"@minver":"8.1.0", +"@name":"google-contacts-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"google-contacts", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-create", +{ +"@minver":"8.1.0", +"google-contacts-delete", +{ +"@minver":"8.1.0", +"google-contacts-download", +{ +"@minver":"8.1.0", +"google-contacts-edit", +{ +"@minver":"8.1.0", +"google-contacts-upload"] +} +, +"risk": +"4", +"application-container": +"google-contacts", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12251", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"google-contacts", +"ottawa-name": +"google-contacts", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-create", +{ +"@minver":"8.1.0", +"google-contacts-delete", +{ +"@minver":"8.1.0", +"google-contacts-download", +{ +"@minver":"8.1.0", +"google-contacts-edit", +{ +"@minver":"8.1.0", +"google-contacts-upload"] +} +, +"risk": +"4", +"application-container": +"google-contacts", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12255", +"@minver":"8.1.0", +"@name":"google-contacts-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"google-contacts-base", +"preview": +"yes"} +, +{ +"@id":"12254", +"@minver":"8.1.0", +"@name":"google-contacts-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"google-contacts-base", +"preview": +"yes"} +, +{ +"@id":"12256", +"@minver":"8.1.0", +"@name":"google-contacts-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"google-contacts-base", +"preview": +"yes"} +, +{ +"@id":"12253", +"@minver":"8.1.0", +"@name":"google-contacts-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Contacts is Google's contact management service.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://contacts.google.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-contacts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"google-contacts-base", +"preview": +"yes"} +, +{ +"@id":"12310", +"@minver":"8.1.0", +"@name":"google-docs-rename", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google-docs is a free, Web-based word processor, spreadsheet, and presentation application offered by Google.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://docs.google.com"} +] +} +, +"use-applications": +{ +"member":["google-docs-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-docs-base", +"preview": +"yes"} +, +{ +"@id":"12304", +"@minver":"8.1.0", +"@name":"google-drive-web-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Google Drive is a cloud based file sharing and storage service from Google. Google Drive on the Web is an online interface to view your Google Drive contents.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://drive.google.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-drive-web-base", +"preview": +"yes"} +, +{ +"@id":"12306", +"@minver":"8.1.0", +"@name":"google-drive-web-rename", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Google Drive is a cloud based file sharing and storage service from Google. Google Drive on the Web is an online interface to view your Google Drive contents.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://drive.google.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-drive-web-base", +"preview": +"yes"} +, +{ +"@id":"12305", +"@minver":"8.1.0", +"@name":"google-drive-web-restore", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Google Drive is a cloud based file sharing and storage service from Google. Google Drive on the Web is an online interface to view your Google Drive contents.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://drive.google.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-drive-web-base", +"preview": +"yes"} +, +{ +"@id":"12303", +"@minver":"8.1.0", +"@name":"google-drive-web-unshare", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Google Drive is a cloud based file sharing and storage service from Google. Google Drive on the Web is an online interface to view your Google Drive contents.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://drive.google.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-drive-web-base", +"preview": +"yes"} +, +{ +"@id":"12302", +"@minver":"8.1.0", +"@name":"google-drive-web-update", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Google Drive is a cloud based file sharing and storage service from Google. Google Drive on the Web is an online interface to view your Google Drive contents.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://drive.google.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"google-drive-web-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-drive-web-base", +"preview": +"yes"} +, +{ +"@id":"12213", +"@minver":"8.1.0", +"@name":"google-groups", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"Google Groups is a service from Google that provides discussion groups for people sharing common interests. The Groups service also provides a gateway to Usenet newsgroups, both reading and posting to them, via a shared user interface.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://groups.google.com"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Groups"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"risk": +"1", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12309", +"@minver":"8.1.0", +"@name":"google-sheets-rename", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Sheets is a spreadsheet application included as part of the free, web-based Google Docs Editors suite offered by Google.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/spreadsheets/"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Sheets"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-sheets-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-sheets-base", +"preview": +"yes"} +, +{ +"@id":"12308", +"@minver":"8.1.0", +"@name":"google-slides-rename", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"Google Slides is a presentation program included as part of the free, web-based Google Docs suite offered by Google.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[G Suite]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://docs.google.com/presentation"} +, +{ +"@name":"Wikipedia", +"link": +"https://en.wikipedia.org/wiki/Google_Slides"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-slides-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"google-slides-base", +"preview": +"yes"} +, +{ +"@id":"12332", +"@minver":"8.1.0", +"@name":"honeywell-experion-pks-srp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Honeywell's Experion Process Knowledge System (PKS) integrates distributed control system (DCS) technologies with advanced applications to improve process performance, business agility, asset management, and people effectiveness. System functions are managed with Experion PKS' system management SRP.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://process.honeywell.com/us/en/solutions/experion-pks"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12319", +"@minver":"8.1.0", +"@name":"i4-remote", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"I4 Remote is a remote access software that allows users to control, manage, and monitor machines remotely.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.i4.cn/pro_remote.html"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12340", +"@minver":"8.1.0", +"@name":"intuitive-davinci-onsite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Intuitive Da Vinci OnSite provides connectivity that enables Intuitive Surgical service personnel to remotely service the da Vinci Surgical System pre-operatively and intra-operatively. It enables features such as automated log retrieval, remote system status monitoring, remote diagnostics and servicing, remote configuration changes and the ability to enable/disable features.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.intuitive.com/en-us/products-and-services/da-vinci"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12227", +"@minver":"8.1.0", +"@name":"ms-nrtp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"peer-to-peer", +"description": +"Microsoft .NET Remoting Protocol is a protocol within the .NET framework that allows applications running on different machines to invoke methods on each other across a network, essentially enabling remote procedure calls (RPC) between .NET applications.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://learn.microsoft.com/en-us/openspecs/windows_protocols/ms-nrtp/3acb31b0-b873-4aaf-8503-9727ec40fbec"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12299", +"@minver":"8.1.0", +"@name":"ms-outlook-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"MS Outlook is a free personal email service from Microsoft. This App-ID covers the deleting traffic of outlook.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Office 365", +"link": +"http://office.microsoft.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Microsoft_Office_365"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ms-office365-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"office365-enterprise-access", +"preview": +"yes"} +, +{ +"@id":"12300", +"@minver":"8.1.0", +"@name":"ms-outlook-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"MS Outlook is a free personal email service from Microsoft. This App-ID covers the editing traffic of outlook.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Office 365", +"link": +"http://office.microsoft.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Microsoft_Office_365"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ms-office365-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"office365-enterprise-access", +"preview": +"yes"} +, +{ +"@id":"12301", +"@minver":"8.1.0", +"@name":"ms-outlook-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"MS Outlook is a free personal email service from Microsoft. This App-ID covers the email moving traffic of outlook.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Office 365", +"link": +"http://office.microsoft.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Microsoft_Office_365"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ms-office365-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"office365-enterprise-access", +"preview": +"yes"} +, +{ +"@id":"12262", +"@minver":"8.1.0", +"@name":"ms-outlook-send", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"Outlook.com is a free personal email service from Microsoft. This App-ID covers the sending traffic of outlook.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Office 365", +"link": +"http://office.microsoft.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Microsoft_Office_365"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ms-office365-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"office365-enterprise-access", +"preview": +"yes"} +, +{ +"@id":"12339", +"@minver":"8.1.0", +"@name":"raymond-iwarehouse", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Raymond iWAREHOUSE is a single, scalable fleet telematics platform solution used to better manage equipment, powered industrial vehicles, and operators. iWAREHOUSE puts critical, real-time data about your entire fleet at your fingertips all through a single portal accessible from any web-enabled device, anywhere, anytime.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.raymondcorp.com/optimization/iwarehouse-evolution"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"3", +"preview": +"yes"} +, +{ +"@id":"12314", +"@minver":"8.1.0", +"@name":"ringsense-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12323", +"@minver":"8.1.0", +"@name":"ringsense-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Enterprise VoIP]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12336", +"@minver":"8.1.0", +"@name":"ringsense-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Enterprise VoIP]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12321", +"@minver":"8.1.0", +"@name":"ringsense-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Enterprise VoIP]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12322", +"@minver":"8.1.0", +"@name":"ringsense-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12335", +"@minver":"8.1.0", +"@name":"ringsense-send", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12337", +"@minver":"8.1.0", +"@name":"ringsense-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"RingSense is an AI platform from RingCentral that uses generative AI and conversational intelligence to analyze conversations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ringcentral.com/ringsense.html"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ringsense"] +} +, +"risk": +"2", +"parent-app": +"ringsense", +"preview": +"yes"} +, +{ +"@id":"12273", +"@minver":"8.1.0", +"@name":"unitronics-pcom-check-password", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12118", +"@minver":"8.1.0", +"@name":"unitronics-pcom-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"unitronics-pcom", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs. This App-ID covers the Unitronics PCOM protocol.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-check-password", +{ +"@minver":"8.1.0", +"unitronics-pcom-error", +{ +"@minver":"8.1.0", +"unitronics-pcom-find-resources", +{ +"@minver":"8.1.0", +"unitronics-pcom-flush-memory", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-id", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-name", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-unit-id", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-version", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-bits", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-data", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-int", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-memory", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-operand", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-rtc", +{ +"@minver":"8.1.0", +"unitronics-pcom-reset-password", +{ +"@minver":"8.1.0", +"unitronics-pcom-set-bits", +{ +"@minver":"8.1.0", +"unitronics-pcom-set-rtc", +{ +"@minver":"8.1.0", +"unitronics-pcom-write-data", +{ +"@minver":"8.1.0", +"unitronics-pcom-write-int", +{ +"@minver":"8.1.0", +"unitronics-pcom-write-memory"] +} +, +"risk": +"1", +"application-container": +"unitronics-pcom", +"preview": +"yes"} +, +{ +"@id":"12118", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"unitronics-pcom", +"ottawa-name": +"unitronics-pcom", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs. This App-ID covers the Unitronics PCOM protocol.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-check-password", +{ +"@minver":"8.1.0", +"unitronics-pcom-error", +{ +"@minver":"8.1.0", +"unitronics-pcom-find-resources", +{ +"@minver":"8.1.0", +"unitronics-pcom-flush-memory", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-id", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-name", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-unit-id", +{ +"@minver":"8.1.0", +"unitronics-pcom-get-plc-version", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-bits", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-data", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-int", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-memory", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-operand", +{ +"@minver":"8.1.0", +"unitronics-pcom-read-rtc", +{ +"@minver":"8.1.0", +"unitronics-pcom-reset-password", +{ +"@minver":"8.1.0", +"unitronics-pcom-set-bits", +{ +"@minver":"8.1.0", +"unitronics-pcom-set-rtc", +{ +"@minver":"8.1.0", +"unitronics-pcom-write-data", +{ +"@minver":"8.1.0", +"unitronics-pcom-write-int", +{ +"@minver":"8.1.0", +"unitronics-pcom-write-memory"] +} +, +"risk": +"1", +"application-container": +"unitronics-pcom", +"preview": +"yes"} +, +{ +"@id":"12281", +"@minver":"8.1.0", +"@name":"unitronics-pcom-error", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12275", +"@minver":"8.1.0", +"@name":"unitronics-pcom-find-resources", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12276", +"@minver":"8.1.0", +"@name":"unitronics-pcom-flush-memory", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12269", +"@minver":"8.1.0", +"@name":"unitronics-pcom-get-plc-id", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12274", +"@minver":"8.1.0", +"@name":"unitronics-pcom-get-plc-name", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12270", +"@minver":"8.1.0", +"@name":"unitronics-pcom-get-plc-unit-id", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12271", +"@minver":"8.1.0", +"@name":"unitronics-pcom-get-plc-version", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12263", +"@minver":"8.1.0", +"@name":"unitronics-pcom-read-bits", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12280", +"@minver":"8.1.0", +"@name":"unitronics-pcom-read-data", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12265", +"@minver":"8.1.0", +"@name":"unitronics-pcom-read-int", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12272", +"@minver":"8.1.0", +"@name":"unitronics-pcom-read-memory", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12279", +"@minver":"8.1.0", +"@name":"unitronics-pcom-read-operand", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12267", +"@minver":"8.1.0", +"@name":"unitronics-pcom-read-rtc", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12278", +"@minver":"8.1.0", +"@name":"unitronics-pcom-reset-password", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12264", +"@minver":"8.1.0", +"@name":"unitronics-pcom-set-bits", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12268", +"@minver":"8.1.0", +"@name":"unitronics-pcom-set-rtc", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12282", +"@minver":"8.1.0", +"@name":"unitronics-pcom-write-data", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12266", +"@minver":"8.1.0", +"@name":"unitronics-pcom-write-int", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12277", +"@minver":"8.1.0", +"@name":"unitronics-pcom-write-memory", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Unitronics designs, produces, and markets hardware, software, and IIoT solutions that automate installations. PCOM is the communication protocol used by Unitronics PLCs.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.unitronicsplc.com/programmable-controllers-introduction/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"unitronics-pcom-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"unitronics-pcom-base", +"preview": +"yes"} +, +{ +"@id":"12312", +"@minver":"8.1.0", +"@name":"vimeo-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Vimeo is a video-sharing website on which users can upload, share, and view videos. The site supports embedding, sharing, video storage, and user-commenting on each video page.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"video-type": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[DLP App Exclusion]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://vimeo.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"vimeo-base"] +} +, +"risk": +"2", +"parent-app": +"vimeo-base", +"preview": +"yes"} +, +{ +"@id":"12313", +"@minver":"8.1.0", +"@name":"vimeo-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Vimeo is a video-sharing website on which users can upload, share, and view videos. The site supports embedding, sharing, video storage, and user-commenting on each video page.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"video-type": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[DLP App Exclusion]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://vimeo.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"vimeo-base"] +} +, +"risk": +"2", +"parent-app": +"vimeo-base", +"preview": +"yes"} +, +{ +"@id":"12311", +"@minver":"8.1.0", +"@name":"vimeo-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Vimeo is a video-sharing website on which users can upload, share, and view videos. The site supports embedding, sharing, video storage, and user-commenting on each video page.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"video-type": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[DLP App Exclusion]", +"[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://vimeo.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"vimeo-base"] +} +, +"risk": +"2", +"parent-app": +"vimeo-base", +"preview": +"yes"} +, +{ +"@id":"12094", +"@minver":"8.1.0", +"@name":"zoom-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"internet-conferencing", +"technology": +"client-server", +"description": +"Zoom is a meeting platform that unifies HD video conferencing, mobility and web meetings into a cloud service. This App-ID covers traffic of deleting recordings.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[DLP App Exclusion]", +"[Enterprise VoIP]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://zoom.us/about"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"zoom-base"] +} +, +"risk": +"1", +"parent-app": +"zoom-base", +"preview": +"yes"} +, +{ +"@id":"12093", +"@minver":"8.1.0", +"@name":"zoom-record", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"internet-conferencing", +"technology": +"client-server", +"description": +"Zoom is a meeting platform that unifies HD video conferencing, mobility and web meetings into a cloud service. This App-ID covers traffic of when a meeting is being recorded.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[DLP App Exclusion]", +"[Enterprise VoIP]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://zoom.us/about"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"zoom-base", +{ +"@minver":"5.0.0", +"zoom-meeting"] +} +, +"risk": +"1", +"parent-app": +"zoom-meeting", +"preview": +"yes"} +, +{ +"@id":"12348", +"@minver":"8.1.0", +"@name":"amazon-cognito-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"security", +"technology": +"browser-based", +"description": +"Amazon Cognito is a developer-centric and cost-effective customer identity and access management (CIAM) service that scales to millions of users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/cognito/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-cognito-base"] +} +, +"risk": +"1", +"parent-app": +"amazon-cognito-base", +"preview": +"yes"} +, +{ +"@id":"12107", +"@minver":"8.1.0", +"@name":"amazon-cognito-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"amazon-cognito", +"category": +"business-systems", +"subcategory": +"security", +"technology": +"browser-based", +"description": +"Amazon Cognito is a developer-centric and cost-effective customer identity and access management (CIAM) service that scales to millions of users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/cognito/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"amazon-aws-console"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-cognito-delete", +{ +"@minver":"8.1.0", +"amazon-cognito-download"] +} +, +"risk": +"1", +"application-container": +"amazon-cognito", +"parent-app": +"amazon-aws-console", +"preview": +"yes"} +, +{ +"@id":"12107", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"amazon-cognito", +"ottawa-name": +"amazon-cognito", +"category": +"business-systems", +"subcategory": +"security", +"technology": +"browser-based", +"description": +"Amazon Cognito is a developer-centric and cost-effective customer identity and access management (CIAM) service that scales to millions of users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/cognito/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"amazon-aws-console"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-cognito-delete", +{ +"@minver":"8.1.0", +"amazon-cognito-download"] +} +, +"risk": +"1", +"application-container": +"amazon-cognito", +"parent-app": +"amazon-aws-console", +"preview": +"yes"} +, +{ +"@id":"12286", +"@minver":"8.1.0", +"@name":"amazon-cognito-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"security", +"technology": +"browser-based", +"description": +"Amazon Cognito is a developer-centric and cost-effective customer identity and access management (CIAM) service that scales to millions of users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/cognito/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-cognito-base"] +} +, +"risk": +"1", +"parent-app": +"amazon-cognito-base", +"preview": +"yes"} +, +{ +"@id":"12334", +"@minver":"8.1.0", +"@name":"apache-activemq-openwire", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"Apache ActiveMQ is an open source, multi-protocol, Java-based message broker developed by Apache which functions as a message-oriented middleware (MOM).", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://activemq.apache.org/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12415", +"@minver":"8.1.0", +"@name":"deepseek-api", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"DeepSeek is a Chinese artificial intelligence company known for developing advanced open-source large language models (LLMs). Their API allows developers to integrate these models into various applications, such as chatbots, content generation tools, and more.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepseek.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12414", +"@minver":"8.1.0", +"@name":"deepseek-chat", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"DeepSeek Chat is an AI-powered conversational assistant developed by the Chinese company DeepSeek. It leverages the DeepSeek-R1 model to provide users with advanced language understanding and generation capabilities.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepseek.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12416", +"@minver":"8.1.0", +"@name":"deepseek-platform", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"DeepSeek is a Chinese artificial intelligence company that develops open-source large language models (LLMs). Their platform offers a suite of AI products and services designed to integrate advanced language understanding and generation capabilities into various applications. The platform also provides detailed documentation, pricing information, and service status updates to assist users and developers in utilizing their AI offerings.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.deepseek.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12372", +"@minver":"8.1.0", +"@name":"docusign-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"DocuSign is a provider of cloud-based electronic signature technology that facilitates exchanges of contracts, tax documents and legal materials.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.docusign.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"docusign-base"] +} +, +"risk": +"2", +"parent-app": +"docusign-base", +"preview": +"yes"} +, +{ +"@id":"12373", +"@minver":"8.1.0", +"@name":"docusign-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"browser-based", +"description": +"DocuSign is a provider of cloud-based electronic signature technology that facilitates exchanges of contracts, tax documents and legal materials.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.docusign.com"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"docusign-base"] +} +, +"risk": +"2", +"parent-app": +"docusign-base", +"preview": +"yes"} +, +{ +"@id":"12294", +"@minver":"8.1.0", +"@name":"egnyte-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Egnyte is a computer technology company providing cloud computing infrastructure and hybrid cloud infrastructure for online file storage, file sharing and computer backup for small, medium, and large business enterprises.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.egnyte.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"egnyte-editing"] +} +, +"risk": +"1", +"parent-app": +"egnyte-editing", +"preview": +"yes"} +, +{ +"@id":"12295", +"@minver":"8.1.0", +"@name":"egnyte-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Egnyte is a computer technology company providing cloud computing infrastructure and hybrid cloud infrastructure for online file storage, file sharing and computer backup for small, medium, and large business enterprises.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.egnyte.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"egnyte-editing"] +} +, +"risk": +"1", +"parent-app": +"egnyte-editing", +"preview": +"yes"} +, +{ +"@id":"12296", +"@minver":"8.1.0", +"@name":"egnyte-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Egnyte is a computer technology company providing cloud computing infrastructure and hybrid cloud infrastructure for online file storage, file sharing and computer backup for small, medium, and large business enterprises.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.egnyte.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"egnyte-editing"] +} +, +"risk": +"1", +"parent-app": +"egnyte-editing", +"preview": +"yes"} +, +{ +"@id":"12297", +"@minver":"8.1.0", +"@name":"egnyte-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Egnyte is a computer technology company providing cloud computing infrastructure and hybrid cloud infrastructure for online file storage, file sharing and computer backup for small, medium, and large business enterprises.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.egnyte.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"egnyte-base"] +} +, +"risk": +"1", +"parent-app": +"egnyte-base", +"preview": +"yes"} +, +{ +"@id":"12298", +"@minver":"8.1.0", +"@name":"egnyte-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Egnyte is a computer technology company providing cloud computing infrastructure and hybrid cloud infrastructure for online file storage, file sharing and computer backup for small, medium, and large business enterprises.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.egnyte.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"egnyte-editing"] +} +, +"risk": +"1", +"parent-app": +"egnyte-editing", +"preview": +"yes"} +, +{ +"@id":"12289", +"@minver":"8.1.0", +"@name":"file.io", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"File.io is a web-based file sharing platform where users can upload files of various types and then share them with others through a unique link.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://file.io/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"5", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12360", +"@minver":"8.1.0", +"@name":"google-doodle-games", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"gaming", +"technology": +"browser-based", +"description": +"Google Doodle Games are interactive, browser-based games featured as Google Doodles on the Google homepage. These games are designed to celebrate significant events, holidays, anniversaries, or notable figures.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://doodles.google/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"risk": +"4", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12368", +"@minver":"8.1.0", +"@name":"gvcp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"client-server", +"description": +"GigE Vision Control Protocol (GVCP) is a video interface standard that defines how to control and configure devices as well as specifying stream channels and the mechanisms of sending image and configuration data between cameras and computers.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.automate.org/vision/vision-standards/vision-standards-gige-vision"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12374", +"@minver":"8.1.0", +"@name":"keyence-autoid-network-nav", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The AutoID Network Navigator is a software tool developed by KEYENCE for managing and configuring their barcode readers and other AutoID devices.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.keyence.com/products/barcode/barcode-readers/sr-x/models/sr-h8w/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12384", +"@minver":"8.1.0", +"@name":"keyence-vision-system", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"KEYENCE Vision System combines industrial cameras, lenses, and lighting to automate visual inspections of manufactured products.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.keyence.com/products/vision/vision-sys/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12320", +"@minver":"8.1.0", +"@name":"oray-phtunnel", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"Oray PHTunnel is a software for domain name management, NAT traversal, and remote access.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://hsk.oray.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12291", +"@minver":"8.1.0", +"@name":"rammerhead-proxy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"browser-based", +"description": +"Rammerhead is a proxy that allows users to create a session and sync their cookies and localStorage with it.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"yes", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"yes", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Proxy Avoidance]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://rammerhead.org/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12325", +"@minver":"8.1.0", +"@name":"salesforce-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"erp-crm", +"technology": +"browser-based", +"description": +"Salesforce.com is an on-demand Customer Relationship Management (CRM) solution vendor.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Salesforce]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.salesforce.com"} +] +} +, +"use-applications": +{ +"member":["salesforce-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"salesforce-base", +"preview": +"yes"} +, +{ +"@id":"12326", +"@minver":"8.1.0", +"@name":"salesforce-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"erp-crm", +"technology": +"browser-based", +"description": +"Salesforce.com is an on-demand Customer Relationship Management (CRM) solution vendor.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Salesforce]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.salesforce.com"} +] +} +, +"use-applications": +{ +"member":["salesforce-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"salesforce-base", +"preview": +"yes"} +, +{ +"@id":"12388", +"@minver":"8.1.0", +"@name":"yaskawa-drivewizard-net-scan", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The Yaskawa DriveWizard Industrial support tool is a Windows-based PC program designed to make commissioning and troubleshooting of Yaskawa drives as simple as possible. DriveWizard Industrial provides user-friendly tools for viewing, manipulating, and exchanging data with the drive. Data can be retrieved, changed, stored, and graphed.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.yaskawa.com/products/drives/industrial-ac-drives/industrial-software-tools/drivewizard-industrial/-/content/_d50532ac-272b-4fba-9370-229ddedf6e44_AvailableServices"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12329", +"@minver":"8.1.0", +"@name":"zendesk-ai-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Zendesk is a web-based help desk software with a support ticket system. Zendesk AI refers to the suite of artificial intelligence tools and capabilities integrated into Zendesk's customer service platform.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.zendesk.com/service/ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zendesk-ai"] +} +, +"risk": +"4", +"parent-app": +"zendesk-ai", +"preview": +"yes"} +, +{ +"@id":"12330", +"@minver":"8.1.0", +"@name":"zendesk-ai-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Zendesk is a web-based help desk software with a support ticket system. Zendesk AI refers to the suite of artificial intelligence tools and capabilities integrated into Zendesk's customer service platform.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-soc2": +"yes", +"is-truste": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.zendesk.com/service/ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zendesk-ai"] +} +, +"risk": +"4", +"parent-app": +"zendesk-ai", +"preview": +"yes"} +, +{ +"@id":"12287", +"@minver":"8.1.0", +"@name":"dropbox-admin-console", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"client-server", +"description": +"Dropbox is a file hosting service that offers cloud storage, file synchronization, personal cloud, and client software. The admin console saves time by displaying key insights into your team's activities, and providing shortcuts to essential admin actions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.dropbox.com/business"} +] +} +, +"use-applications": +{ +"member":["dropbox-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"dropbox-admin-console-delete"] +} +, +"risk": +"2", +"parent-app": +"dropbox-base", +"preview": +"yes"} +, +{ +"@id":"12389", +"@minver":"8.1.0", +"@name":"dropbox-admin-console-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"client-server", +"description": +"Dropbox is a file hosting service that offers cloud storage, file synchronization, personal cloud, and client software. The admin console saves time by displaying key insights into your team's activities, and providing shortcuts to essential admin actions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.dropbox.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"dropbox-admin-console"] +} +, +"risk": +"1", +"parent-app": +"dropbox-admin-console", +"preview": +"yes"} +, +{ +"@id":"12411", +"@minver":"8.1.0", +"@name":"folderfort", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Folder Fort is an easy to use file storage solution that provides scalable secure cloud storage.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.folderfort.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12403", +"@minver":"8.1.0", +"@name":"gofile.io", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"it-infrastructure", +"technology": +"browser-based", +"description": +"Gofile is a modern cloud storage platform designed to make content storage and distribution simple and efficient.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://gofile.io/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12258", +"@minver":"8.1.0", +"@name":"google-c-engine-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"it-infrastructure", +"technology": +"browser-based", +"description": +"Google compute engine is a hosting service and it delivers configurable virtual machines running in Google's infrastructure.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Google Cloud Platform]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://cloud.google.com/compute/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-c-engine-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"google-c-engine-base", +"preview": +"yes"} +, +{ +"@id":"12315", +"@minver":"8.1.0", +"@name":"google-c-engine-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"google-c-engine", +"category": +"networking", +"subcategory": +"it-infrastructure", +"technology": +"browser-based", +"description": +"Google compute engine is a hosting service and it delivers configurable virtual machines running in Google's infrastructure.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Google Cloud Platform]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://cloud.google.com/compute/"} +] +} +, +"use-applications": +{ +"@minver":"6.1.0", +"member":[{ +"@minver":"6.1.0", +"google-cloud-console"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-c-engine-create", +{ +"@minver":"8.1.0", +"google-c-engine-delete", +{ +"@minver":"8.1.0", +"google-c-engine-edit"] +} +, +"risk": +"2", +"application-container": +"google-c-engine", +"parent-app": +"google-cloud-console", +"preview": +"yes"} +, +{ +"@id":"12315", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"google-c-engine", +"ottawa-name": +"google-c-engine", +"category": +"networking", +"subcategory": +"it-infrastructure", +"technology": +"browser-based", +"description": +"Google compute engine is a hosting service and it delivers configurable virtual machines running in Google's infrastructure.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Google Cloud Platform]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://cloud.google.com/compute/"} +] +} +, +"use-applications": +{ +"@minver":"6.1.0", +"member":[{ +"@minver":"6.1.0", +"google-cloud-console"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-c-engine-create", +{ +"@minver":"8.1.0", +"google-c-engine-delete", +{ +"@minver":"8.1.0", +"google-c-engine-edit"] +} +, +"risk": +"2", +"application-container": +"google-c-engine", +"parent-app": +"google-cloud-console", +"preview": +"yes"} +, +{ +"@id":"12259", +"@minver":"8.1.0", +"@name":"google-c-engine-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"it-infrastructure", +"technology": +"browser-based", +"description": +"Google compute engine is a hosting service and it delivers configurable virtual machines running in Google's infrastructure.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Google Cloud Platform]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://cloud.google.com/compute/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-c-engine-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"google-c-engine-base", +"preview": +"yes"} +, +{ +"@id":"12260", +"@minver":"8.1.0", +"@name":"google-c-engine-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"it-infrastructure", +"technology": +"browser-based", +"description": +"Google compute engine is a hosting service and it delivers configurable virtual machines running in Google's infrastructure.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Google Cloud Platform]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://cloud.google.com/compute/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"google-c-engine-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"google-c-engine-base", +"preview": +"yes"} +, +{ +"@id":"12418", +"@minver":"8.1.0", +"@name":"helpwire", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"vertical-industry", +"technology": +"browser-based", +"description": +"HelpWire is a remote desktop service designed to provide on-demand support for PCs, laptops, and workstations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"helpwire", +"link": +"https://www.helpwire.app/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12349", +"@minver":"8.1.0", +"@name":"hightail-copy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12350", +"@minver":"8.1.0", +"@name":"hightail-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12351", +"@minver":"8.1.0", +"@name":"hightail-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12352", +"@minver":"8.1.0", +"@name":"hightail-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"virus-ident": +"yes", +"spyware-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12353", +"@minver":"8.1.0", +"@name":"hightail-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12354", +"@minver":"8.1.0", +"@name":"hightail-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12355", +"@minver":"8.1.0", +"@name":"hightail-send", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"Hightail - formerly YouSendIt - is a cloud service developed and hosted by YouSendIt Inc. that lets users send, receive, digitally sign and synchronize files. It had an early focus on helping users send files that were too large for email, but started adding features and plug-ins for businesses in 2007. The service can be used via the web, a desktop client, mobile devices, or from within business applications with a Hightail plugin.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.hightail.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Hightail"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"hightail-base", +{ +"@minver":"8.1.0", +"hightail-create", +{ +"@minver":"3.1.0", +"hightail-uploading"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"hightail-base", +"preview": +"yes"} +, +{ +"@id":"12343", +"@minver":"8.1.0", +"@name":"linkedin-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"LinkedIn is a business-oriented social networking site founded in December 2002 and launched in May 2003 mainly used for professional networking.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.linkedin.com"} +] +} +, +"use-applications": +{ +"member":["linkedin-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"linkedin-base", +"preview": +"yes"} +, +{ +"@id":"12359", +"@minver":"8.1.0", +"@name":"slack-ai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Slack AI is a simple, secure and intuitive AI that works directly in Slack with generative capabilities like AI-powered search, conversation summaries and recaps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"slack-base"] +} +, +"risk": +"3", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12185", +"@minver":"8.1.0", +"@name":"slack-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the creating traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"slack-login"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12186", +"@minver":"8.1.0", +"@name":"slack-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the deleting traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"slack-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12187", +"@minver":"8.1.0", +"@name":"slack-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the inviting traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base", +{ +"@minver":"5.0.0", +"slack-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12188", +"@minver":"8.1.0", +"@name":"slack-join", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the joining traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"slack-login"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12189", +"@minver":"8.1.0", +"@name":"slack-login", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the login traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +{ +"@minver":"5.0.0", +"slack-base", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12190", +"@minver":"8.1.0", +"@name":"slack-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the posting traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"slack-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12191", +"@minver":"8.1.0", +"@name":"slack-unshare", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"instant-messaging", +"technology": +"browser-based", +"description": +"Slack is a team communication and collaboration tool that offers persistent chat rooms organized by topic, as well as private groups and direct messaging. This App-ID covers the unsharing traffic of Slack.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://slack.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Slack_%28software%29"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"slack-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"slack-base", +"preview": +"yes"} +, +{ +"@id":"12422", +"@minver":"8.1.0", +"@name":"tableau-ai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Tableau Software produces a family of interactive data visualization products focused on business intelligence. Users can connect to any type of structured data, analyze virtually and produce highly interactive graphs, dashboards, and reports.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.tableau.com/products/artificial-intelligence"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"tableau-editing"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"tableau-base", +"preview": +"yes"} +, +{ +"@id":"12333", +"@minver":"8.1.0", +"@name":"verisk", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"vertical-industry", +"technology": +"client-server", +"description": +"Verisk Xactimate is a software for property damage estimation, widely used in insurance and restoration. It offer tools for accurate cost estimate, 3D modeling and real-time collaboration, streaming claims and repair workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.verisk.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"preview": +"yes"} +, +{ +"@id":"12331", +"@minver":"8.1.0", +"@name":"webex-join", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"internet-conferencing", +"technology": +"client-server", +"description": +"WebEx provides online meeting, web conferencing and video conferencing services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.webex.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/WebEx"} +] +} +, +"use-applications": +{ +"member":["webex-base"] +} +, +"risk": +"2", +"parent-app": +"cisco-spark-base", +"preview": +"yes"} +, +{ +"@id":"12288", +"@minver":"8.1.0", +"@name":"yammer-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"client-server", +"description": +"Yammer/Viva Engage is a Microsoft365 platform that fosters workplace collaboration and communication through communities, discussions, and knowledge sharing. It is integrated into Microsoft Teams and Microsoft Outlook.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.yammer.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yammer"} +] +} +, +"use-applications": +{ +"member":["yammer-base"] +} +, +"risk": +"1", +"parent-app": +"yammer-base", +"preview": +"yes"} +, +{ +"@id":"12283", +"@minver":"8.1.0", +"@name":"yammer-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"client-server", +"description": +"Yammer/Viva Engage is a Microsoft365 platform that fosters workplace collaboration and communication through communities, discussions, and knowledge sharing. It is integrated into Microsoft Teams and Microsoft Outlook.", +"appident": +"yes", +"spyware-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.yammer.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yammer"} +] +} +, +"use-applications": +{ +"member":["yammer-base"] +} +, +"applicable-decoders": +{ +"member":["http"] +} +, +"risk": +"1", +"parent-app": +"yammer-base", +"preview": +"yes"} +, +{ +"@id":"12290", +"@minver":"8.1.0", +"@name":"yammer-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"client-server", +"description": +"Yammer/Viva Engage is a Microsoft365 platform that fosters workplace collaboration and communication through communities, discussions, and knowledge sharing. It is integrated into Microsoft Teams and Microsoft Outlook.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.yammer.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yammer"} +] +} +, +"use-applications": +{ +"member":["yammer-base"] +} +, +"applicable-decoders": +{ +"member":["http"] +} +, +"risk": +"1", +"parent-app": +"yammer-base", +"preview": +"yes"} +, +{ +"@id":"12285", +"@minver":"8.1.0", +"@name":"yammer-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"client-server", +"description": +"Yammer/Viva Engage is a Microsoft365 platform that fosters workplace collaboration and communication through communities, discussions, and knowledge sharing. It is integrated into Microsoft Teams and Microsoft Outlook.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.yammer.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yammer"} +] +} +, +"use-applications": +{ +"member":["yammer-base"] +} +, +"risk": +"1", +"parent-app": +"yammer-base", +"preview": +"yes"} +, +{ +"@id":"12284", +"@minver":"8.1.0", +"@name":"yammer-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"client-server", +"description": +"Yammer/Viva Engage is a Microsoft365 platform that fosters workplace collaboration and communication through communities, discussions, and knowledge sharing. It is integrated into Microsoft Teams and Microsoft Outlook.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.yammer.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yammer"} +] +} +, +"use-applications": +{ +"member":["yammer-base"] +} +, +"applicable-decoders": +{ +"member":["http"] +} +, +"risk": +"1", +"parent-app": +"yammer-base", +"preview": +"yes"} +, +{ +"@id":"12425", +"@minver":"8.1.0", +"@name":"jira-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"JIRA is a Java EE web-based bug tracking and issue tracking application developed by Atlassian Software Systems. Although JIRA is a commercial product, it is freely available to open source projects and non-profit institutions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/JIRA_28software29"} +] +} +, +"use-applications": +{ +"member":["jira-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"jira-base", +"preview": +"yes"} +, +{ +"@id":"12429", +"@minver":"8.1.0", +"@name":"jira-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"JIRA is a Java EE web-based bug tracking and issue tracking application developed by Atlassian Software Systems. Although JIRA is a commercial product, it is freely available to open source projects and non-profit institutions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/JIRA_28software29"} +] +} +, +"use-applications": +{ +"member":["jira-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"jira-base", +"preview": +"yes"} +, +{ +"@id":"12430", +"@minver":"8.1.0", +"@name":"jira-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"browser-based", +"description": +"JIRA is a Java EE web-based bug tracking and issue tracking application developed by Atlassian Software Systems. Although JIRA is a commercial product, it is freely available to open source projects and non-profit institutions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/JIRA_28software29"} +] +} +, +"use-applications": +{ +"member":["jira-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"jira-base", +"preview": +"yes"} +, +{ +"@id":"12192", +"@minver":"8.1.0", +"@name":"ms-teams-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"client-server", +"description": +"Microsoft Teams is a platform that combines workplace chat, meetings, notes, and attachments. This App-ID identifies traffic of creating groups, teams, and meetings.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-teams/group-chat-software"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-teams"] +} +, +"risk": +"1", +"parent-app": +"ms-teams", +"preview": +"yes"} +, +{ +"@id":"12193", +"@minver":"8.1.0", +"@name":"ms-teams-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"client-server", +"description": +"Microsoft Teams is a platform that combines workplace chat, meetings, notes, and attachments. This App-ID covers traffic of deleting teams, groups, and meetings.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Enterprise VoIP]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-teams/group-chat-software"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-teams"] +} +, +"risk": +"1", +"parent-app": +"ms-teams", +"preview": +"yes"} +, +{ +"@id":"12195", +"@minver":"8.1.0", +"@name":"ms-teams-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"client-server", +"description": +"Microsoft Teams is a platform that combines workplace chat, meetings, notes, and attachments. This App-ID covers traffic of inviting users to teams.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-teams/group-chat-software"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-teams"] +} +, +"risk": +"1", +"parent-app": +"ms-teams", +"preview": +"yes"} +, +{ +"@id":"12194", +"@minver":"8.1.0", +"@name":"ms-teams-join", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"office-programs", +"technology": +"client-server", +"description": +"Microsoft Teams is a platform that combines workplace chat, meetings, notes, and attachments. This App-ID covers traffic of joining teams, groups, and meetings.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes", +"is-ssae16": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Enterprise VoIP]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-teams/group-chat-software"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"ms-teams-audio-video"] +} +, +"risk": +"1", +"parent-app": +"ms-teams-audio-video", +"preview": +"yes"} +, +{ +"@id":"12454", +"@minver":"8.1.0", +"@name":"ntcip-ftp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"National Transportation Communications for Intelligent Transportation System (ITS) Protocol (NTCIP) is a family of standards that provides both the rules for communicating (called protocols) and the vocabulary (called objects) necessary to allow electronic traffic control equipment from different manufacturers to operate with each other as a system. One such communication protocol leveraged by NTCIP is FTP (File Transfer Protocol).", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ntcip.org/"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"hdlc-over-tcp"] +} +, +"risk": +"1", +"parent-app": +"hdlc-over-tcp", +"preview": +"yes"} +, +{ +"@id":"12449", +"@minver":"8.1.0", +"@name":"ntcip-sfmp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"National Transportation Communications for Intelligent Transportation System (ITS) Protocol (NTCIP) is a family of standards that provides both the rules for communicating (called protocols) and the vocabulary (called objects) necessary to allow electronic traffic control equipment from different manufacturers to operate with each other as a system. One such communication protocol leveraged by NTCIP is SFMP (Simple Fixed Message Protocol).", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ntcip.org/"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"hdlc-over-tcp"] +} +, +"risk": +"1", +"parent-app": +"hdlc-over-tcp", +"preview": +"yes"} +, +{ +"@id":"12444", +"@minver":"8.1.0", +"@name":"ntcip-snmp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"National Transportation Communications for Intelligent Transportation System (ITS) Protocol (NTCIP) is a family of standards that provides both the rules for communicating (called protocols) and the vocabulary (called objects) necessary to allow electronic traffic control equipment from different manufacturers to operate with each other as a system. One such communication protocol leveraged by NTCIP is SNMP (Simple Network Management Protocol).", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ntcip.org/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"7.1.0", +"hdlc-over-tcp", +"snmp-base"] +} +, +"risk": +"2", +"parent-app": +"hdlc-over-tcp", +"preview": +"yes"} +, +{ +"@id":"12450", +"@minver":"8.1.0", +"@name":"ntcip-snmp-trap", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"National Transportation Communications for Intelligent Transportation System (ITS) Protocol (NTCIP) is a family of standards that provides both the rules for communicating (called protocols) and the vocabulary (called objects) necessary to allow electronic traffic control equipment from different manufacturers to operate with each other as a system. One such communication protocol leveraged by NTCIP is SNMP-TRAP (Simple Network Management Protocol TRAP notification).", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"yes", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ntcip.org/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"7.1.0", +"hdlc-over-tcp", +"snmp-trap"] +} +, +"risk": +"3", +"parent-app": +"hdlc-over-tcp", +"preview": +"yes"} +, +{ +"@id":"12447", +"@minver":"8.1.0", +"@name":"ntcip-stmp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"National Transportation Communications for Intelligent Transportation System (ITS) Protocol (NTCIP) is a family of standards that provides both the rules for communicating (called protocols) and the vocabulary (called objects) necessary to allow electronic traffic control equipment from different manufacturers to operate with each other as a system. One such communication protocol leveraged by NTCIP is STMP (Simple Transportation Management Protocol).", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ntcip.org/"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"hdlc-over-tcp"] +} +, +"risk": +"1", +"parent-app": +"hdlc-over-tcp", +"preview": +"yes"} +, +{ +"@id":"12452", +"@minver":"8.1.0", +"@name":"ntcip-tftp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"National Transportation Communications for Intelligent Transportation System (ITS) Protocol (NTCIP) is a family of standards that provides both the rules for communicating (called protocols) and the vocabulary (called objects) necessary to allow electronic traffic control equipment from different manufacturers to operate with each other as a system. One such communication protocol leveraged by NTCIP is TFTP (Trivial File Transfer Protocol).", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ntcip.org/"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"hdlc-over-tcp"] +} +, +"risk": +"1", +"parent-app": +"hdlc-over-tcp", +"preview": +"yes"} +, +{ +"@id":"12357", +"@minver":"8.1.0", +"@name":"openai-sora", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sora is OpenAI's video generation model, designed to take text, image, and video inputs and generate a new video as an output.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-sora-download", +{ +"@minver":"8.1.0", +"openai-sora-post", +{ +"@minver":"8.1.0", +"openai-sora-upload"] +} +, +"risk": +"4", +"parent-app": +"openai-base", +"preview": +"yes"} +, +{ +"@id":"12361", +"@minver":"8.1.0", +"@name":"openai-sora-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sora is OpenAI's video generation model, designed to take text, image, and video inputs and generate a new video as an output.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-sora"] +} +, +"risk": +"4", +"parent-app": +"openai-sora", +"preview": +"yes"} +, +{ +"@id":"12362", +"@minver":"8.1.0", +"@name":"openai-sora-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sora is OpenAI's video generation model, designed to take text, image, and video inputs and generate a new video as an output.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-sora"] +} +, +"risk": +"4", +"parent-app": +"openai-sora", +"preview": +"yes"} +, +{ +"@id":"12358", +"@minver":"8.1.0", +"@name":"openai-sora-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Sora is OpenAI's video generation model, designed to take text, image, and video inputs and generate a new video as an output.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://openai.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-sora"] +} +, +"risk": +"4", +"parent-app": +"openai-sora", +"preview": +"yes"} +, +{ +"@id":"12157", +"@minver":"8.1.0", +"@name":"synthesia-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the creating traffic of Synthesia.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-edit"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"11999", +"@minver":"8.1.0", +"@name":"synthesia-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"synthesia", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers Synthesia traffic.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-create", +{ +"@minver":"8.1.0", +"synthesia-delete", +{ +"@minver":"8.1.0", +"synthesia-download", +{ +"@minver":"8.1.0", +"synthesia-edit", +{ +"@minver":"8.1.0", +"synthesia-invite", +{ +"@minver":"8.1.0", +"synthesia-move", +{ +"@minver":"8.1.0", +"synthesia-upload"] +} +, +"risk": +"2", +"application-container": +"synthesia", +"parent-app": +"linkedin-base", +"preview": +"yes"} +, +{ +"@id":"11999", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"synthesia", +"ottawa-name": +"synthesia", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers Synthesia traffic.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing", +{ +"@minver":"3.1.0", +"websocket"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-create", +{ +"@minver":"8.1.0", +"synthesia-delete", +{ +"@minver":"8.1.0", +"synthesia-download", +{ +"@minver":"8.1.0", +"synthesia-edit", +{ +"@minver":"8.1.0", +"synthesia-invite", +{ +"@minver":"8.1.0", +"synthesia-move", +{ +"@minver":"8.1.0", +"synthesia-upload"] +} +, +"risk": +"2", +"application-container": +"synthesia", +"parent-app": +"linkedin-base", +"preview": +"yes"} +, +{ +"@id":"12158", +"@minver":"8.1.0", +"@name":"synthesia-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the deleting traffic of Synthesia.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-base"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"12183", +"@minver":"8.1.0", +"@name":"synthesia-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the downloading traffic of Synthesia.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-base"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"12159", +"@minver":"8.1.0", +"@name":"synthesia-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the editing traffic of Synthesia.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-base"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"12179", +"@minver":"8.1.0", +"@name":"synthesia-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the inviting traffic of Synthesia.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-base"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"12160", +"@minver":"8.1.0", +"@name":"synthesia-move", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the moving traffic of Synthesia.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-base"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"12182", +"@minver":"8.1.0", +"@name":"synthesia-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Synthesia creates professional videos without mics, cameras, or actors with AI Video Generator, AI avatars and voiceovers in over 120 languages. This App-ID covers the uploading traffic of Synthesia.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.synthesia.io"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"synthesia-base"] +} +, +"risk": +"2", +"parent-app": +"synthesia-base", +"preview": +"yes"} +, +{ +"@id":"12407", +"@minver":"8.1.0", +"@name":"transferxl-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"TransferXL provides an easy and convenient way to transfer and share huge files over the internet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.transferxl.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"transferxl-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"transferxl-base", +"preview": +"yes"} +, +{ +"@id":"12405", +"@minver":"8.1.0", +"@name":"transferxl-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"transferxl", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"TransferXL provides an easy and convenient way to transfer and share huge files over the internet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.transferxl.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"transferxl-delete", +{ +"@minver":"8.1.0", +"transferxl-download", +{ +"@minver":"8.1.0", +"transferxl-upload"] +} +, +"risk": +"3", +"application-container": +"transferxl", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12405", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"transferxl", +"ottawa-name": +"transferxl", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"TransferXL provides an easy and convenient way to transfer and share huge files over the internet.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.transferxl.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"transferxl-delete", +{ +"@minver":"8.1.0", +"transferxl-download", +{ +"@minver":"8.1.0", +"transferxl-upload"] +} +, +"risk": +"3", +"application-container": +"transferxl", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12406", +"@minver":"8.1.0", +"@name":"transferxl-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"TransferXL provides an easy and convenient way to transfer and share huge files over the internet.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.transferxl.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"transferxl-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"transferxl-base", +"preview": +"yes"} +, +{ +"@id":"12404", +"@minver":"8.1.0", +"@name":"transferxl-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"TransferXL provides an easy and convenient way to transfer and share huge files over the internet.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.transferxl.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"transferxl-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"transferxl-base", +"preview": +"yes"} +, +{ +"@id":"12438", +"@minver":"8.1.0", +"@name":"ufile", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"browser-based", +"description": +"UFile is a free platform for sharing data like files, images, music, video and more.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-finra": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ufile.io"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12400", +"@minver":"8.1.0", +"@name":"xai-grok-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"xAI Grok is a new AI system developed by xAI, an artificial intelligence company, which was launched in 2023. Grok is designed to integrate with X (formerly Twitter) to help users interact with the platform using AI-driven assistance.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://grok.x.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"xai-grok"] +} +, +"risk": +"4", +"parent-app": +"xai-grok", +"preview": +"yes"} +, +{ +"@id":"12365", +"@minver":"8.1.0", +"@name":"zoho-accounts-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"auth-service", +"technology": +"browser-based", +"description": +"Zoho Accounts provides customers a centralized resource to manage account access across the suite of Zoho products and services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://accounts.zoho.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zoho-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"zoho-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12364", +"@minver":"8.1.0", +"@name":"zoho-accounts-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"zoho-accounts", +"category": +"business-systems", +"subcategory": +"auth-service", +"technology": +"browser-based", +"description": +"Zoho Accounts provides customers a centralized resource to manage account access across the suite of Zoho products and services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://accounts.zoho.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zoho-accounts-create", +{ +"@minver":"8.1.0", +"zoho-accounts-delete", +{ +"@minver":"8.1.0", +"zoho-accounts-edit"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"application-container": +"zoho-accounts", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12364", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"zoho-accounts", +"ottawa-name": +"zoho-accounts", +"category": +"business-systems", +"subcategory": +"auth-service", +"technology": +"browser-based", +"description": +"Zoho Accounts provides customers a centralized resource to manage account access across the suite of Zoho products and services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://accounts.zoho.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zoho-accounts-create", +{ +"@minver":"8.1.0", +"zoho-accounts-delete", +{ +"@minver":"8.1.0", +"zoho-accounts-edit"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"application-container": +"zoho-accounts", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12366", +"@minver":"8.1.0", +"@name":"zoho-accounts-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"auth-service", +"technology": +"browser-based", +"description": +"Zoho Accounts provides customers a centralized resource to manage account access across the suite of Zoho products and services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://accounts.zoho.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zoho-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"zoho-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12367", +"@minver":"8.1.0", +"@name":"zoho-accounts-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"auth-service", +"technology": +"browser-based", +"description": +"Zoho Accounts provides customers a centralized resource to manage account access across the suite of Zoho products and services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://accounts.zoho.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"zoho-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"zoho-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12417", +"@minver":"8.1.0", +"@name":"ms-mice", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"encrypted-tunnel", +"technology": +"network-protocol", +"description": +"Miracast over Infrastructure Connection Establishment Protocol is an extension of the Miracast wireless display technology that enables screen mirroring over existing network infrastructure, such as Wi-Fi or Ethernet, rather than relying solely on Wi-Fi Direct. It specifies a connection negotiation sequence that is used to connect and disconnect from a Miracast over Infrastructure device.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://learn.microsoft.com/en-us/surface-hub/miracast-over-infrastructure"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.1.0", +"dtls", +"rtcp", +"rtp-base", +"rtsp"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12443", +"@minver":"8.1.0", +"@name":"notion-ai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Notion is a unified workspace for teams, such as note-taking, task management, and project management. Notion AI is integrated into your Notion workspace so that you can unlock knowledge, answers, and ideas with just a click.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.notion.com/product/ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"notion-base"] +} +, +"risk": +"3", +"parent-app": +"notion-base", +"preview": +"yes"} +, +{ +"@id":"12487", +"@minver":"8.1.0", +"@name":"reddit-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Reddit is an entertainment, social networking service and news website where registered community members can submit content, such as text posts or direct links.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.reddit.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Reddit"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"reddit-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"reddit-base", +"preview": +"yes"} +, +{ +"@id":"12495", +"@minver":"8.1.0", +"@name":"reddit-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Reddit is an entertainment, social networking service and news website where registered community members can submit content, such as text posts or direct links.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.reddit.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Reddit"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"reddit-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"reddit-base", +"preview": +"yes"} +, +{ +"@id":"12496", +"@minver":"8.1.0", +"@name":"reddit-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Reddit is an entertainment, social networking service and news website where registered community members can submit content, such as text posts or direct links.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.reddit.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Reddit"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"reddit-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"reddit-base", +"preview": +"yes"} +, +{ +"@id":"12497", +"@minver":"8.1.0", +"@name":"reddit-send", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Reddit is an entertainment, social networking service and news website where registered community members can submit content, such as text posts or direct links.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Reddit"} +, +{ +"@name":"HomePage", +"link": +"https://www.reddit.com/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"reddit-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"reddit-base", +"preview": +"yes"} +, +{ +"@id":"12498", +"@minver":"8.1.0", +"@name":"reddit-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Reddit is an entertainment, social networking service and news website where registered community members can submit content, such as text posts or direct links.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.reddit.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Reddit"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"reddit-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"reddit-base", +"preview": +"yes"} +, +{ +"@id":"12426", +"@minver":"8.1.0", +"@name":"sharepoint-online-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-business", +"technology": +"browser-based", +"description": +"SharePoint Online delivers the powerful features of SharePoint without the associated overhead of managing the infrastructure on your own. Flexible management options ensure that you still retain the control you need to meet the compliance requirements of your organization. You can purchase SharePoint in the cloud as a standalone offering or as part of an Office 365 suite where you could also get access to Exchange, Lync, the Office clients and web apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-365/sharepoint/collaboration/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"sharepoint-online"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"sharepoint-online", +"preview": +"yes"} +, +{ +"@id":"12427", +"@minver":"8.1.0", +"@name":"sharepoint-online-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-business", +"technology": +"browser-based", +"description": +"SharePoint Online delivers the powerful features of SharePoint without the associated overhead of managing the infrastructure on your own. Flexible management options ensure that you still retain the control you need to meet the compliance requirements of your organization. You can purchase SharePoint in the cloud as a standalone offering or as part of an Office 365 suite where you could also get access to Exchange, Lync, the Office clients and web apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Office 365]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-365/sharepoint/collaboration/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"sharepoint-online"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"sharepoint-online", +"preview": +"yes"} +, +{ +"@id":"12428", +"@minver":"8.1.0", +"@name":"sharepoint-online-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-business", +"technology": +"browser-based", +"description": +"SharePoint Online delivers the powerful features of SharePoint without the associated overhead of managing the infrastructure on your own. Flexible management options ensure that you still retain the control you need to meet the compliance requirements of your organization. You can purchase SharePoint in the cloud as a standalone offering or as part of an Office 365 suite where you could also get access to Exchange, Lync, the Office clients and web apps.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Office 365]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-365/sharepoint/collaboration/"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"sharepoint-online"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"sharepoint-online", +"preview": +"yes"} +, +{ +"@id":"12491", +"@minver":"8.1.0", +"@name":"twitter-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"social-networking", +"technology": +"browser-based", +"description": +"Twitter (now rebranded as X) is a social media platform where users post and interact with short messages called tweets (now referred to as posts).", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"yes", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://x.com/"} +] +} +, +"use-applications": +{ +"member":["twitter-base"] +} +, +"risk": +"1", +"parent-app": +"twitter-base", +"preview": +"yes"} +, +{ +"@id":"12512", +"@minver":"8.1.0", +"@name":"aiosfoundation-openagi-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAGI is a package of LLM agents for developing and deploying. It offers a framework to create intelligent agents for performing complex tasks and interacting with users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.aios.foundation/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"aiosfoundation-openagi-base"] +} +, +"risk": +"3", +"parent-app": +"aiosfoundation-openagi-base", +"preview": +"yes"} +, +{ +"@id":"12537", +"@minver":"8.1.0", +"@name":"aiosfoundation-openagi-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"aiosfoundation-openagi", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAGI is a package of LLM agents for developing and deploying. It offers a framework to create intelligent agents for performing complex tasks and interacting with users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.aios.foundation/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"aiosfoundation-openagi-download", +{ +"@minver":"8.1.0", +"aiosfoundation-openagi-upload"] +} +, +"risk": +"3", +"application-container": +"aiosfoundation-openagi", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12537", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"aiosfoundation-openagi", +"ottawa-name": +"aiosfoundation-openagi", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAGI is a package of LLM agents for developing and deploying. It offers a framework to create intelligent agents for performing complex tasks and interacting with users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.aios.foundation/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"aiosfoundation-openagi-download", +{ +"@minver":"8.1.0", +"aiosfoundation-openagi-upload"] +} +, +"risk": +"3", +"application-container": +"aiosfoundation-openagi", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12552", +"@minver":"8.1.0", +"@name":"aiosfoundation-openagi-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"OpenAGI is a package of LLM agents for developing and deploying. It offers a framework to create intelligent agents for performing complex tasks and interacting with users.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.aios.foundation/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"aiosfoundation-openagi-base"] +} +, +"risk": +"3", +"parent-app": +"aiosfoundation-openagi-base", +"preview": +"yes"} +, +{ +"@id":"12524", +"@minver":"8.1.0", +"@name":"crewai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"CrewAI is a platform that allows users to build and deploy automated workflows using multiple AI agents that collaborate to perform complex tasks.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.crewai.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12390", +"@minver":"8.1.0", +"@name":"foundation-fieldbus", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"Foundation Fieldbus (FF) is an all-digital, serial, two-way communications system that serves as the base-level network in a plant or factory automation environment.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.fieldcommgroup.org/technologies/foundation-fieldbus"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12509", +"@minver":"8.1.0", +"@name":"instagram-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Instagram is an online photo-sharing, video-sharing and social networking service that enables its users to take pictures and videos, and share them on a variety of social networking platforms.", +"icon": +"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAMAAACdt4HsAAAC+lBMVEVHcEwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgIAAAAAAAAAAAAAAAAEBAQGBgYAAAAAAABPT08AAAABAQEAAAAICAgAAADm5ubw8PBKSkru7u7+/v79/f2RkZH7+/ulpaVRUVGPj4/o6Oj4+Pjr6+v8/Pz4+Pizs7Ojo6P39/d6enra2tqurq7AwMDX19fw8PCqqqrOzs6FhYX29vbR0dHR0dG9vb0uLi7AwMDb29vp6em4uLjz8/OamprIyMi3t7ednZ3s7Ozf39/Gxsa8vLw7OzvGxsbFxcVYWFirq6vr6+uxsbHf39/Y2NiLi4vf39/Hx8fCwsLU1NTY2Ni+vr7S0tL////IOGrHNWrysF7pfFLzs2HyqVvypVjyrV3OQmrxmlH++vnxoVXpgFHOPmPxnVPLOmSeK6qhK6a5M4HHOW/FMWfbVV2cKq/35fCmLJ7rhFLmdlb//v3INmbENG+0MYi3Ln2yLYfYUmXKPm2tLpHlcVfhZWDsilTFNGzeWlvUTGfRQmHja1WvLIvRR2v98ermdFHgYFmjKqH89fiqLpjwl1DwlUzvkFLoeVHCLmrztmPANHXcWmP9+/zmeFqkLaK9NHq+LXDLPGnpgFe1LYHeYGG0LoTzuWXTR2LXTF7hZVXkcF2qKpT++PXZUF7aWGboe1XiZlrUR17ial/jbFu6LHfRRmftikzdXmbqhE2wMI709PSoK5rWUWn67/XzrWvvkEvkcFL55ejr6+v76+3tuMjQU37WTGP2xorOV4jWZIf12uP5+fnDU5bph3TS0tLtlW+xOpn76N797+bogWn+9u/gd4nplJng4ODCaLThhp30x8T1u3T627bmo7vniIizTK3WoNbszubooK/NS3j109e1XcH40J3jkanvsrT30sbupJ7tkGHGP3jgam/xoHC3RZ7wxtPslnz2xrDMg8Tv2+/YWXH748n54NjyuKrYcJOmOrDXlMTztJvgtt3voofZeZ3xq4zbsuS+ds69cswKeZVQAAAAWXRSTlMADAYeBAUJAQIHDhsQGBMWMyouJxIkNiA8Ff7+UoTz7B3QKkh/YMV24rS7md5t/qvWOJWh91yqpYPLP1PJ6sOhjfCSRcGV46wa6NYkatKc5/M6uNXd5baRzeYjTVMAAATWSURBVHictZdfTBRHHMfdvdvd2Tv2/npwaExMjBo1kaS8mvjkq4mPe3AHnEXuFKQpcPw55EAQWiiI6EH9AwhC8BBtq1Daarm28RqlIdZIJW3TNoGmtk0TbfrSpC+d2b3lZvb2/jXp72Vnvvf7fm7+7czsli3/Z3Dx+G9eAPQ0z8LgaT0AuVGgm2b3iVjsY+nsGRxgdooasZMB2SA4wO/VsqPYS2dEwLbvTmVHsZsG6f36rensKLbq0zQC0Icz+UXxcOpGADazHQWbgpCtPxUhe782IRe/FoFjG3IBNLCqueDo13Lxi+IOmiBw+rzc/KKYpycGgCJ/XfN6W1trahovXa6ubmq6d6b/zXdPnfyOzKEA3oEd+E9LnT09ENBa06gQ+vv7IeGNf1J1AhjwX54EP+zs7PH+EI1+AeNLFL8t9y8gwk94nmGzCRx/BNNXb94MvtTqtboNR3hOswFjH4SXtPyi+C0kYNUGpQkccwyT10OhF1ru5UVR7CNH8hgdBxBTMDUX0vKPt9xbFIchARcpuQ+AWANTU3OJyu9Rlyv6EBa+Hx1vWRbFhb5TeG4ekOfQiIsjU7eV4rP3vN6rLldJ45ooNjePQ2V6oQ/PNdLyW7AHFyMjK/FSsLNTJnR0/ALbgKQz0wt47h7pjSDnQLwWiQPCweBnE3A+luIEFN3T00SyNA/ARGh11x5Lz6/D4eC6LP3oKumQZ7almwSYEEBvJrT2OhkQGguvK9pD2Aap0NTSTSSb9WgVEGMoDrZLgI250FhCbC2RAdXjLUSykUHrWEcCBn9Fj5Xbc6sJ8VNX4C8JMDpKJOvgalYDBmRAfWI2UVwNRNHjcnNzMoAtIDTfgASIjLThqt8vAS7duUMkF7AagOMfocfjSP1GQnzH63+Gno1XNACqLlT6JMBX7kh9QnzZVSU9O4auJHdBBSivlABinTvyp6INT0x0SYWSoSESAHcl9TSWlcuAPyDhviy9PjM5IRcDKgCaRvVCUgBwRbkjI2/B/r+orZ2JbxGB06eJZLSQ4FI+hGsVZRXxUvsJ94W2ttnZ3rNhZYsJBAjAIel9BpQVF0srypTihkQ4N9t7X1H8gQCea5W2dtU8ekorsNrfKys/Y9UqPwEokF5njhFimHjRgwPIWKyq8mPVmMDEt7RdmPr8oqc0FWCiq2sNq+6StzR1H657Sr/R9gcnb3Ul9wD1wXwUk19d93gqNM76xdqZyVv4iXHUzGwerXY883NEKCsvr/T5fAOD7XV17rc/OXfjRu/Z2pkneJ5983jlaKEY/+UVHAaZcPz8+Y/fv3viQpywimcVC4nTFVAOss3PJUJlpW9AItyVCOtEyrADO9/hKFi0xy11WMwMdkcBrK4oN3+RjrxnAYN9Wy7+bXYDeU/jGJN1Pnv/vNXEqK9pvGCLZXbKEbMJfNKVG7CC7UF2/gc2QfuqKtgOZuM/qO1HBLO1OLO/2GpOeV3nTQ7n9vT27fkOE5/yg4FjDDrbgXT+AzadQT3+BAGwhQ5LUYrpiBVZHIVshu8ujqEEh8X5KNn+yGlxCFS6v1caQVOFBVaLc//TzZU1/3S/02ItKKSy/XLUswazzm6z5DulyLfY7DqzgdVnZVcYPGUwmY1Gnc5oFEwGis/BHWegr2+G5nmaSfvt/S8qFy6gMc+9pgAAAABJRU5ErkJggg==", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.instagram.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Instagram"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"instagram-upload"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"instagram-base", +"preview": +"yes"} +, +{ +"@id":"12510", +"@minver":"8.1.0", +"@name":"instagram-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Instagram is an online photo-sharing, video-sharing and social networking service that enables its users to take pictures and videos, and share them on a variety of social networking platforms.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.instagram.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Instagram"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"instagram-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"instagram-base", +"preview": +"yes"} +, +{ +"@id":"12511", +"@minver":"8.1.0", +"@name":"instagram-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Instagram is an online photo-sharing, video-sharing and social networking service that enables its users to take pictures and videos, and share them on a variety of social networking platforms.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.instagram.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Instagram"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"instagram-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"instagram-base", +"preview": +"yes"} +, +{ +"@id":"12513", +"@minver":"8.1.0", +"@name":"instagram-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"Instagram is an online photo-sharing, video-sharing and social networking service that enables its users to take pictures and videos, and share them on a variety of social networking platforms.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.instagram.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Instagram"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"instagram-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"instagram-base", +"preview": +"yes"} +, +{ +"@id":"12525", +"@minver":"8.1.0", +"@name":"nurgo-brainsoup", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"client-server", +"description": +"BrainSoup is a personal AI platform, developed by Nurgo Software, that allows users to create custom AI agents to assist with various tasks.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.nurgo-software.com/products/brainsoup"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12523", +"@minver":"8.1.0", +"@name":"pythagora-gpt-pilot", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"GPT Pilot works with the developer to create a fully working production-ready app.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://pythagora.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12530", +"@minver":"8.1.0", +"@name":"salesforce-agentforce", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"erp-crm", +"technology": +"browser-based", +"description": +"Agentforce is Salesforce's AI-driven platform designed to create, deploy, and manage autonomous agents that can perform tasks across various business functions including sales, service, marketing, and operations.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Salesforce]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.salesforce.com/agentforce/"} +] +} +, +"use-applications": +{ +"member":["salesforce-base"] +} +, +"risk": +"3", +"parent-app": +"salesforce-base", +"preview": +"yes"} +, +{ +"@id":"12553", +"@minver":"8.1.0", +"@name":"service-now-ai-agents", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"Servicenow AI Agents are managed by the AI Agent Studio. Users can create AI agents to perform IT, customer service, and HR tasks.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"http://www.servicenow.com/"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/ServiceNow"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"service-now-base"] +} +, +"risk": +"3", +"parent-app": +"service-now-base", +"preview": +"yes"} +, +{ +"@id":"12499", +"@minver":"8.1.0", +"@name":"advantech-adam-ascii", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Advantech's ADAM series Ethernet I/O modules include analog I/O, digital I/O, and relay modules. With their optimized design and enhanced capabilities, the ADAM series modules provide an I/O solution that can be conveniently integrated with various Ethernet control systems. ASCII commands can be used for communication with the ADAM series modules.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.advantech.com/en-us/products/ethernet-i-o-modules-adam-6000/sub_a67f7853-013a-4b50-9b20-01798c56b090"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12566", +"@minver":"8.1.0", +"@name":"amazon-nova-reel", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Amazon Nova Reel is a proprietary multimodal foundation model (FM) designed for enterprise use cases. It generates a novel video from a descriptive natural language text string and an optional reference image.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/ai/generative-ai/nova/creative/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-bedrock-base"] +} +, +"risk": +"3", +"parent-app": +"amazon-bedrock-base", +"preview": +"yes"} +, +{ +"@id":"12575", +"@minver":"8.1.0", +"@name":"browserbase", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Browserbase is a platform for hosting, managing, and monitoring headless browsers for AI agents and applications in the cloud.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.browserbase.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12445", +"@minver":"8.1.0", +"@name":"capsule-mdip-axon", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Philips Capsule Medical Device Information Platform (MDIP) is the single unified foundation to Philips Capsule integrated solutions. The Capsule Axon series is a serial-to-network bridge designed to connect serial medical devices to the hospital network.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.usa.philips.com/healthcare/product/779008/capsule-axon-multi-point-connectivity-hub"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12421", +"@minver":"8.1.0", +"@name":"capsule-mdip-vpn", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"encrypted-tunnel", +"technology": +"client-server", +"description": +"Philips Capsule Medical Device Information Platform (MDIP) is the single unified foundation to Philips Capsule integrated solutions. Capsule MDIP uses and supports VPN tunnels for point-to-point communications.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.documents.philips.com/assets/20210727/ccb597e739154342a39cad72012027ba.pdf"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12569", +"@minver":"8.1.0", +"@name":"continue", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Continue enables developers to create, share, and use custom AI code assistants with their open-source VS Code and JetBrains extensions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.continue.dev/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.1.0", +"github-base", +{ +"@minver":"3.0.0", +"google-base"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12424", +"@minver":"8.1.0", +"@name":"emerson-movicon", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Movicon provides comprehensive, flexible, and intuitive software solutions for industrial automated applications.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.emerson.com/en-us/automation/control-and-safety-systems/movicon/movicon-11-6"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12408", +"@minver":"8.1.0", +"@name":"exor-hmi-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"EXOR HMI webservers allow modern web technologies such as HTML5, SVG and Javascript and while offering the same computing speed as IPCs, offer added advantages such as temperature range, security, longevity and robustness. They are the ideal choice for all demanding IoT edge applications in factory, marine and building automation where powerful and performing HTML5 web browser is needed.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.exorint.com/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12562", +"@minver":"8.1.0", +"@name":"finchat", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Fiscal.ai (previously known as FinChat) is an AI-powered stock research platform that combines financial data, analytics, and conversational AI to provide an all-in-one investment research solution. The platform is designed to assist investors in researching a company's historical financials and extracting relevant data. It aims to make investment research more efficient by leveraging artificial intelligence technology.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fiscal.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12570", +"@minver":"8.1.0", +"@name":"flowiseai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"FlowiseAI, developed by FlowiseAI Inc., is an open-source generative AI development platform designed for building AI Agents and LLM workflows. The platform offers a comprehensive solution for AI development, including a drag-and-drop feature for LLMs. It simplifies the process of building AI workflows by providing a low-code/no-code environment. The setup involves installing all dependencies of all modules and building the code.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://flowiseai.com"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.1.0", +"github-base", +{ +"@minver":"3.0.0", +"google-base"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12527", +"@minver":"8.1.0", +"@name":"google-cloud-speech-to-text", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"browser-based", +"description": +"Google Cloud Speech-to-Text is a cloud-based API service offered by Google Cloud Platform (GCP) that allows developers to convert spoken language into written text using powerful machine learning models.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Google Cloud Platform]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://cloud.google.com/speech-to-text"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"6.1.0", +"google-cloud-console", +{ +"@minver":"3.0.0", +"google-cloud-storage-base"] +} +, +"risk": +"2", +"parent-app": +"google-cloud-console", +"preview": +"yes"} +, +{ +"@id":"12526", +"@minver":"8.1.0", +"@name":"huggingface-transformers-agents", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"HuggingFace develops and hosts tools to help with building applications using machine learning. HuggingFace's Transformers Agents are a way to build systems where a Large Language Model (LLM) can use other tools to accomplish complex tasks by reasoning and taking action in a series of steps.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://huggingface.co/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"huggingface-base"] +} +, +"risk": +"3", +"parent-app": +"huggingface-download", +"preview": +"yes"} +, +{ +"@id":"12413", +"@minver":"8.1.0", +"@name":"idal-ftp-server", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"iot-management", +"technology": +"client-server", +"description": +"Exorint is a company specializing in industrial automation solutions, primarily focusing on designing, developing, and manufacturing Human Machine Interface (HMI) systems, industrial gateways, and control systems for various industries. Their JMobile software suite covers the connectivity, device management, and process management for IoT devices. The HMIs connect to an IDAL FTP server for file transfer.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.exorint.com/products/software/jmobile"} +] +} +, +"use-applications": +{ +"member":["ftp"] +} +, +"risk": +"2", +"parent-app": +"ftp", +"preview": +"yes"} +, +{ +"@id":"12410", +"@minver":"8.1.0", +"@name":"idal-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"iot-management", +"technology": +"client-server", +"description": +"Exorint is a company specializing in industrial automation solutions, primarily focusing on designing, developing, and manufacturing Human Machine Interface (HMI) systems, industrial gateways, and control systems for various industries. Their JMobile software suite covers the connectivity, device management, and process management for IoT devices.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.exorint.com/products/software/jmobile"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12363", +"@minver":"8.1.0", +"@name":"nidec-ct-discovery-protocol", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Nidec Drives CT (Control Techniques) Discovery Protocol is used by the Nidec Connect PC tool to automatically discover Nidec drives and devices.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://acim.nidec.com/en-US/drives/control-techniques"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12554", +"@minver":"8.1.0", +"@name":"openai-academy", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"OpenAI Academy, launched by OpenAI, is an educational platform designed to equip individuals and organizations with the knowledge and skills to effectively utilize artificial intelligence. The academy offers workshops, discussions, and digital content that range from foundational AI literacy to advanced topics. It aims to help developers and organizations leverage AI to solve complex problems and catalyze innovation.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://academy.openai.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"openai-base"] +} +, +"risk": +"2", +"parent-app": +"openai-base", +"preview": +"yes"} +, +{ +"@id":"12423", +"@minver":"8.1.0", +"@name":"phoenix-contact-hmi-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Visu+ is a SCADA software designed for use with Phoenix Contact HMIs. It provides a comprehensive suite of tools for creating and managing complex user interfaces, making it ideal for industrial automation applications. Visu+ uses Phoenix Contact HMI Discovery to find HMIs in the network.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.phoenixcontact.com/en-us/products/software/visualization"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12500", +"@minver":"8.1.0", +"@name":"phoenix-contact-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"iot-management", +"technology": +"browser-based", +"description": +"Phoenix Contact devices can use web-based management (WBM) to manage your device from anywhere in the network using a standard browser. The configuration and diagnostic functions are clearly displayed on a graphical user interface. Depending on the permission, each user has read and/or write access to the device and a wide range of information about the device itself, the set parameters, and the operating state can be viewed.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.phoenixcontact.com/en-us/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12533", +"@minver":"8.1.0", +"@name":"yahoo-mail-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"Yahoo! Mail is a Web-based e-mail service from Yahoo! It is one of the largest e-mail providers on the Internet.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"yes", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"yes", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://mail.yahoo.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yahoo%21_Mail"} +] +} +, +"use-applications": +{ +"member":["yahoo-mail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"yahoo-mail-base", +"preview": +"yes"} +, +{ +"@id":"12534", +"@minver":"8.1.0", +"@name":"yahoo-mail-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"Yahoo! Mail is a Web-based e-mail service from Yahoo! It is one of the largest e-mail providers on the Internet.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"yes", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"yes", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://mail.yahoo.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yahoo%21_Mail"} +] +} +, +"use-applications": +{ +"member":["yahoo-mail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"yahoo-mail-base", +"preview": +"yes"} +, +{ +"@id":"12536", +"@minver":"8.1.0", +"@name":"yahoo-mail-rename", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"Yahoo! Mail is a Web-based e-mail service from Yahoo! It is one of the largest e-mail providers on the Internet.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"yes", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"yes", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://mail.yahoo.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yahoo%21_Mail"} +] +} +, +"use-applications": +{ +"member":["yahoo-mail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"yahoo-mail-base", +"preview": +"yes"} +, +{ +"@id":"12535", +"@minver":"8.1.0", +"@name":"yahoo-mail-send", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"email", +"technology": +"browser-based", +"description": +"Yahoo! Mail is a Web-based e-mail service from Yahoo! It is one of the largest e-mail providers on the Internet.", +"appident": +"yes", +"spyware-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"yes", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"yes", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://mail.yahoo.com"} +, +{ +"@name":"Wikipedia", +"link": +"http://en.wikipedia.org/wiki/Yahoo%21_Mail"} +] +} +, +"use-applications": +{ +"member":["yahoo-mail-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"yahoo-mail-base", +"preview": +"yes"} +, +{ +"@id":"12505", +"@minver":"8.1.0", +"@name":"axis-camera-station-web-client", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"media", +"subcategory": +"photo-video", +"technology": +"browser-based", +"description": +"AXIS Camera Station Pro is video management software that allows users to view live video, search and export recordings, and manage access control. The AXIS Camera Station Pro web client gives users access to AXIS Camera Station Pro recordings and live video in their web browser.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.axis.com/products/axis-camera-station-pro"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12409", +"@minver":"8.1.0", +"@name":"balluff-optical-sensorapp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Balluff's SensorApp software offers auto setup features and convenient optical sensor configuration and monitoring options via any web browser.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.balluff.com/en-us/products/areas/A0005"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12483", +"@minver":"8.1.0", +"@name":"beijer-ix-hmi", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"iX HMI Software from Beijer Electronics combines high quality graphics with pre-styled objects and intuitive operation to allow for communication with an extensive list of PLC brands.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beijerelectronics.com/en/Products/software/ix-hmi-software"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12580", +"@minver":"8.1.0", +"@name":"codegen", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Codegen is an expert software engineering agent that helps developer teams build incredible software.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.codegen.com/"} +] +} +, +"use-applications": +{ +"member":["google-app-engine", +"ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12385", +"@minver":"8.1.0", +"@name":"emerson-ecmp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Developed by Emerson Industrial Automation (Control Techniques Division) eCMP (Extensible Control & Management Protocol) is a protocol used for setting up and controlling devices in a factory automation system.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.emerson.com/en-us"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12571", +"@minver":"8.1.0", +"@name":"gitlab-duo", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"client-server", +"description": +"Gitlab Duo is an assistant AI for repos hosted under the gitlab domain. It features code suggestion in browser and IDE as well as chat functionality.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://about.gitlab.com/gitlab-duo/"} +, +{ +"@name":"wikipedia", +"link": +"https://en.wikipedia.org/wiki/GitLab"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"gitlab-base"] +} +, +"risk": +"2", +"parent-app": +"gitlab-base", +"preview": +"yes"} +, +{ +"@id":"12485", +"@minver":"8.1.0", +"@name":"ifm-vision-assistant", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"The ifm Vision Assistant is a software tool from ifm that simplifies the configuration, monitoring, and parameter setting of ifm vision sensors, including 2D and 3D cameras, barcode readers, and other devices.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ifm.com/us/en/shared/tech-en/technologies/vision-sensors/vision-assistant"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12486", +"@minver":"8.1.0", +"@name":"ifm-vision-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"ifm is a provider of industrial vision systems and sensors. ifm's discovery protocol is used to locate and identify their devices on the network.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ifm.com/us/en"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12601", +"@minver":"8.1.0", +"@name":"lovable", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Lovable.dev is a software development platform that functions as a superhuman full-stack product engineer. The platform is designed to be instant and intuitive, offering features such as live rendering, image input handling, instant undo, and collaboration through branching. The mission of Lovable.dev is to unlock human potential by building software that builds software, enabling the creation of lovable products in minutes.", +"icon": +"data:image/png;base64,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", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://lovable.dev"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12420", +"@minver":"8.1.0", +"@name":"mersive-solstice-pod", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"collaboration", +"subcategory": +"internet-conferencing", +"technology": +"client-server", +"description": +"Mersive is a technology company that provides wireless collaboration solutions, with its Solstice Pod enabling seamless content sharing and multi-user interaction in meeting and collaboration spaces. The Mersive Solstice Pod is a collaboration software installed on dedicated hardware, providing wireless content sharing and video conferencing tools for meeting and collaboration spaces.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.mersive.com/product/solstice/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12586", +"@minver":"8.1.0", +"@name":"ms-copilot-studio-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Microsoft Copilot Studio is an end-to-end conversational AI platform that empowers you to create and customize copilots using natural language or a graphical interface.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.microsoft.com/en-us/microsoft-copilot/microsoft-copilot-studio"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"ms-copilot-studio"] +} +, +"risk": +"2", +"parent-app": +"ms-copilot-studio", +"preview": +"yes"} +, +{ +"@id":"12474", +"@minver":"8.1.0", +"@name":"murrelektronik-io-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Murrelektronik's I/O systems connect actuators and sensors of a system to the control. The I/O systems have an integrated web server for configuration and access to live data and diagnostics.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.murrelektronik.com/products-industries/products/io-systems/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12590", +"@minver":"8.1.0", +"@name":"response-cx-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Response CX is a customer experience platform designed to help direct to consumer (DTC) brands automate and scale support.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://response.cx/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"response-cx-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"response-cx-base", +"preview": +"yes"} +, +{ +"@id":"12589", +"@minver":"8.1.0", +"@name":"response-cx-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"response-cx", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Response CX is a customer experience platform designed to help direct to consumer (DTC) brands automate and scale support.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://response.cx/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"response-cx-create", +{ +"@minver":"8.1.0", +"response-cx-post", +{ +"@minver":"8.1.0", +"response-cx-upload"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"application-container": +"response-cx", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12589", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"response-cx", +"ottawa-name": +"response-cx", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Response CX is a customer experience platform designed to help direct to consumer (DTC) brands automate and scale support.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://response.cx/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"response-cx-create", +{ +"@minver":"8.1.0", +"response-cx-post", +{ +"@minver":"8.1.0", +"response-cx-upload"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"application-container": +"response-cx", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12591", +"@minver":"8.1.0", +"@name":"response-cx-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Response CX is a customer experience platform designed to help direct to consumer (DTC) brands automate and scale support.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://response.cx/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"response-cx-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"response-cx-base", +"preview": +"yes"} +, +{ +"@id":"12595", +"@minver":"8.1.0", +"@name":"response-cx-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Response CX is a customer experience platform designed to help direct to consumer (DTC) brands automate and scale support.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://response.cx/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"response-cx-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"response-cx-base", +"preview": +"yes"} +, +{ +"@id":"12473", +"@minver":"8.1.0", +"@name":"sick-cola2", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"CoLa2 (Command Language 2) is a protocol from SICK, with which a client can access suitable SICK sensors via a network.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://sickconnect.com/communication-language-cola-lidar-solutions/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12472", +"@minver":"8.1.0", +"@name":"sick-safety-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"SICK Safety Designer is a configuration software used for design and configuration of safety functions across various SICK safety controllers and devices. The software searches for devices using the Sick Safety Designer Discovery Protocol.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sick.com/gb/en/catalog/products/digital-services-and-software/software/safety-designer/p/p444968"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12600", +"@minver":"8.1.0", +"@name":"tavily", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tavily is a search engine specifically designed for AI agents. It provides real-time, accurate results, intelligent query suggestions, and in-depth research capabilities. Tavily uses API keys for authentication, ensuring secure access to its endpoints. The platform also offers comprehensive documentation and tutorials for users, encouraging discussion and suggestions for improvements.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tavily.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12616", +"@minver":"8.1.0", +"@name":"agentops", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"AgentOps helps developers build, evaluate, and monitor AI agents, from prototype to production.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://agentops.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12646", +"@minver":"8.1.0", +"@name":"amazon-s3-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Amazon S3 (Simple Storage Service) is an online file storage web service offered by Amazon Web Services.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/s3/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"amazon-s3-base"] +} +, +"risk": +"1", +"parent-app": +"amazon-s3-base", +"preview": +"yes"} +, +{ +"@id":"2148", +"@minver":"5.0.0", +"@name":"amazon-s3-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"amazon-s3", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Amazon S3 (Simple Storage Service) is an online file storage web service offered by Amazon Web Services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/s3/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.1.0", +"amazon-aws-console", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-s3-download", +{ +"@minver":"8.1.0", +"amazon-s3-upload"] +} +, +"applicable-decoders": +{ +"member":["http", +"ssl"] +} +, +"risk": +"1", +"application-container": +"amazon-s3", +"preview": +"yes"} +, +{ +"@id":"2148", +"@minver":"5.0.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"amazon-s3", +"ottawa-name": +"amazon-s3", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Amazon S3 (Simple Storage Service) is an online file storage web service offered by Amazon Web Services.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/s3/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.1.0", +"amazon-aws-console", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amazon-s3-download", +{ +"@minver":"8.1.0", +"amazon-s3-upload"] +} +, +"applicable-decoders": +{ +"member":["http", +"ssl"] +} +, +"risk": +"1", +"application-container": +"amazon-s3", +"preview": +"yes"} +, +{ +"@id":"12647", +"@minver":"8.1.0", +"@name":"amazon-s3-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"Amazon S3 (Simple Storage Service) is an online file storage web service offered by Amazon Web Services.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc1": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Amazon Web Services]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://aws.amazon.com/s3/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"amazon-s3-base"] +} +, +"risk": +"1", +"parent-app": +"amazon-s3-base", +"preview": +"yes"} +, +{ +"@id":"12629", +"@minver":"8.1.0", +"@name":"azure-storage-accounts-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Microsoft Azure]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-storage-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"azure-storage-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12619", +"@minver":"8.1.0", +"@name":"azure-storage-accounts-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"azure-storage-accounts", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Microsoft Azure]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"windows-azure-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-custom-speech-base", +{ +"@minver":"8.1.0", +"azure-storage-accounts-create", +{ +"@minver":"8.1.0", +"azure-storage-accounts-delete", +{ +"@minver":"8.1.0", +"azure-storage-accounts-download", +{ +"@minver":"8.1.0", +"azure-storage-accounts-post", +{ +"@minver":"8.1.0", +"azure-storage-accounts-upload"] +} +, +"risk": +"4", +"application-container": +"azure-storage-accounts", +"parent-app": +"windows-azure-base", +"preview": +"yes"} +, +{ +"@id":"12619", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"azure-storage-accounts", +"ottawa-name": +"azure-storage-accounts", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Microsoft Azure]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"windows-azure-base"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-custom-speech-base", +{ +"@minver":"8.1.0", +"azure-storage-accounts-create", +{ +"@minver":"8.1.0", +"azure-storage-accounts-delete", +{ +"@minver":"8.1.0", +"azure-storage-accounts-download", +{ +"@minver":"8.1.0", +"azure-storage-accounts-post", +{ +"@minver":"8.1.0", +"azure-storage-accounts-upload"] +} +, +"risk": +"4", +"application-container": +"azure-storage-accounts", +"parent-app": +"windows-azure-base", +"preview": +"yes"} +, +{ +"@id":"12630", +"@minver":"8.1.0", +"@name":"azure-storage-accounts-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Microsoft Azure]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-storage-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"azure-storage-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12631", +"@minver":"8.1.0", +"@name":"azure-storage-accounts-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Microsoft Azure]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-storage-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"8.1.0", +"atera-download", +{ +"@minver":"8.1.0", +"audiosonic-download", +{ +"@minver":"8.1.0", +"azure-custom-speech-download", +{ +"@minver":"3.1.0", +"icloud-base", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-download", +{ +"@minver":"8.1.0", +"ms-powerapps-download", +{ +"@minver":"8.1.0", +"openai-base", +{ +"@minver":"5.0.0", +"pitchengine", +{ +"@minver":"5.0.0", +"sway", +{ +"@minver":"3.0.0", +"transferbigfiles", +{ +"@minver":"8.1.0", +"tresorit-downloading"] +} +, +"risk": +"4", +"parent-app": +"azure-storage-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12633", +"@minver":"8.1.0", +"@name":"azure-storage-accounts-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Microsoft Azure]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-storage-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"azure-storage-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12632", +"@minver":"8.1.0", +"@name":"azure-storage-accounts-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"storage-backup", +"technology": +"browser-based", +"description": +"An Azure Storage Account is a cloud-based storage solution that enables users to store data objects such as blobs, queues, tables, and files.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Microsoft Azure]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://portal.azure.com/#browse/Microsoft.Storage%2FStorageAccounts"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-storage-accounts-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"7.1.0", +"mural-base", +{ +"@minver":"8.1.0", +"tresorit-uploading", +{ +"@minver":"3.0.0", +"windows-azure-uploading", +{ +"@minver":"8.1.0", +"writesonic-seo-upload"] +} +, +"risk": +"4", +"parent-app": +"azure-storage-accounts-base", +"preview": +"yes"} +, +{ +"@id":"12484", +"@minver":"8.1.0", +"@name":"balluff-io-link-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Balluff specializes in sensor and automation solutions. Balluff IO-Link masters have built-in web server functionality that supports IP address configuration and network monitoring, as well as the ability to configure, parameterize, and monitor IO-Link devices and provide diagnostic information. The Balluff IO-Link discovery protocol identifies the IO-Link devices at the sensor/actuator level.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.balluff.com/en-us/basics-of-automation/io-link"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12598", +"@minver":"8.1.0", +"@name":"fast-speed-test", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"browser-based", +"description": +"FAST Internet Speed Test is an internet connectivity speed test powered by Netflix.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://fast.com"} +] +} +, +"use-applications": +{ +"member":["netflix-base", +"ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"netflix-base", +"preview": +"yes"} +, +{ +"@id":"12608", +"@minver":"8.1.0", +"@name":"fetchai-agentverse", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Agentverse is a cloud-based platform designed for creating, testing, and deploying customizable autonomous agents. It offers tools and libraries for building, training, and integrating agents into various systems.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://agentverse.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12607", +"@minver":"8.1.0", +"@name":"fetchai-asione", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ASI:One is a Web3-native Large Language Model (LLM) designed specifically for agentic AI. It is optimized for the complex interactions and autonomous decision-making required by AI agents operating within a decentralized environment.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://asi1.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12572", +"@minver":"8.1.0", +"@name":"google-search-ai-mode", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Google Search AI Mode is a feature in Google Search that uses advanced artificial intelligence to enhance the search experience.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://blog.google/products/search/ai-mode-search/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"google-base"] +} +, +"risk": +"3", +"parent-app": +"google-base", +"preview": +"yes"} +, +{ +"@id":"12402", +"@minver":"8.1.0", +"@name":"ifm-efector-plc-web-server", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Ifm develops, produces, and sells sensors, controllers, software, and systems for industrial automation. Their PLCs have integrated web servers that allow remote access to configure, parameterize, and monitor the device.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ifm.com"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12652", +"@minver":"8.1.0", +"@name":"mcp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"network-protocol", +"description": +"MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs (Large Language Models).", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://modelcontextprotocol.io/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"3", +"parent-app": +"web-browsing", +"preview": +"yes"} +, +{ +"@id":"12610", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"microsoft-github-ghe-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"microsoft-github-ghe-base", +"preview": +"yes"} +, +{ +"@id":"12606", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"microsoft-github-ghe", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"microsoft-github-ghe-create", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-delete", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-download", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-edit", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-post", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-upload"] +} +, +"risk": +"1", +"application-container": +"microsoft-github-ghe", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12606", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"microsoft-github-ghe", +"ottawa-name": +"microsoft-github-ghe", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"microsoft-github-ghe-create", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-delete", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-download", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-edit", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-post", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-upload"] +} +, +"risk": +"1", +"application-container": +"microsoft-github-ghe", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12611", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"microsoft-github-ghe-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"microsoft-github-ghe-base", +"preview": +"yes"} +, +{ +"@id":"12613", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"azure-storage-accounts-download", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"azure-storage-accounts-download", +"preview": +"yes"} +, +{ +"@id":"12612", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"microsoft-github-ghe-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"microsoft-github-ghe-base", +"preview": +"yes"} +, +{ +"@id":"12614", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"microsoft-github-ghe-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"microsoft-github-ghe-base", +"preview": +"yes"} +, +{ +"@id":"12615", +"@minver":"8.1.0", +"@name":"microsoft-github-ghe-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"management", +"technology": +"browser-based", +"description": +"GitHub GHE is a GitHub Enterprise Server. It's a self-hosted version of GitHub tailored for organizations that need more control and security over their development workflows.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-fedramp": +"yes", +"is-finra": +"yes", +"is-hipaa": +"yes", +"is-pci": +"yes", +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"yes", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ghe.com/"} +] +} +, +"use-applications": +{ +"@minver":"3.0.0", +"member":[{ +"@minver":"3.0.0", +"git-uploading", +{ +"@minver":"8.1.0", +"microsoft-github-ghe-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"git-uploading", +"preview": +"yes"} +, +{ +"@id":"12446", +"@minver":"8.1.0", +"@name":"s2-netbox", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"security", +"technology": +"client-server", +"description": +"S2 NetBox is an access control and security management system developed by S2 Security. It is designed to provide security solutions for organizations and industries. Devices communicate between an S2 Network Controller and S2 Network Nodes.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://netcam.cz"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12448", +"@minver":"8.1.0", +"@name":"sick-sopas-auto-ip-scan", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"SICK is one of the world's leading solutions providers for sensor-based applications in the industrial sector. SOPAS (SICK Open Portal for Applications and Systems) is the protocol for the sensors. SOPAS Auto IP Scan is used for discovering SICK sensors.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sick.com"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12453", +"@minver":"8.1.0", +"@name":"sick-sopas-camera", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"SICK is one of the world's leading solutions providers for sensor-based applications in the industrial sector. The SICK SOPAS (SICK Open Portal for Applications and Systems) Engineering Tool allows users to use the cameras on SICK barcode readers.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sick.com"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12451", +"@minver":"8.1.0", +"@name":"sick-sopas-cola-b", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The SOPAS (SICK Open Portal for Applications and Systems) protocol is used to communicate with sensor devices from SICK. SOPAS utilizes command strings (telegrams) and comes in two protocol formats: Cola A (Command Language A) with ASCII telegram format, and Cola B with binary telegram format. This App-ID covers SICK SOPAS Cola B traffic.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.sick.com"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12628", +"@minver":"8.1.0", +"@name":"abilityai", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Ability AI provides AI systems for marketing and business operations including AI Agent Hub, a library of AI agents for business process automation.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-soc2": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ability.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12558", +"@minver":"8.1.0", +"@name":"advantech-adam-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Advantech Remote I/O devices are powerful tools for industrial automation and data acquisition. These modules allow for flexible and scalable remote monitoring and control in various industrial settings. The Advantech ADAM Web Server allows for configuration and access to live data and diagnostics of its I/O devices.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.advantech.com/en-us/industrial-automation/codesys-solution/io_remote"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12636", +"@minver":"8.1.0", +"@name":"agencii", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Agencii AI is a platform built on the Agency Swarm framework, designed for AI developers and AI agencies to create and deploy custom AI agents tailored to client needs.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://agencii.ai/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12597", +"@minver":"8.1.0", +"@name":"amdt-octoplant-agent", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"AMDT Octoplant is a comprehensive data management platform for industrial automation environments, offering solutions for device management, backups, version control, and security. Octoplant helps businesses maintain data consistency, enhance security, and improve operational efficiency. Octoplant agents communicate with the Octoplant server and provides decentralized job execution to increase performance and load distribution during job execution.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://amdt.com/en/octoplant"} +] +} +, +"risk": +"1", +"parent-app": +"amdt-octoplant-base", +"preview": +"yes"} +, +{ +"@id":"12593", +"@minver":"8.1.0", +"@name":"amdt-octoplant-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"amdt-octoplant", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"AMDT Octoplant is a comprehensive data management platform for industrial automation environments, offering solutions for device management, backups, version control, and security. Octoplant helps businesses maintain data consistency, enhance security, and improve operational efficiency.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://amdt.com/en/octoplant"} +] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amdt-octoplant-agent", +{ +"@minver":"8.1.0", +"amdt-octoplant-server"] +} +, +"risk": +"1", +"application-container": +"amdt-octoplant", +"preview": +"yes"} +, +{ +"@id":"12593", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"amdt-octoplant", +"ottawa-name": +"amdt-octoplant", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"AMDT Octoplant is a comprehensive data management platform for industrial automation environments, offering solutions for device management, backups, version control, and security. Octoplant helps businesses maintain data consistency, enhance security, and improve operational efficiency.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://amdt.com/en/octoplant"} +] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"amdt-octoplant-agent", +{ +"@minver":"8.1.0", +"amdt-octoplant-server"] +} +, +"risk": +"1", +"application-container": +"amdt-octoplant", +"preview": +"yes"} +, +{ +"@id":"12594", +"@minver":"8.1.0", +"@name":"amdt-octoplant-server", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"AMDT Octoplant is a comprehensive data management platform for industrial automation environments, offering solutions for device management, backups, version control, and security. Octoplant helps businesses maintain data consistency, enhance security, and improve operational efficiency. The Octoplant server is used to communicate with octoplant clients, agents and other octoplant servers.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://amdt.com/en/octoplant"} +] +} +, +"risk": +"1", +"parent-app": +"amdt-octoplant-base", +"preview": +"yes"} +, +{ +"@id":"12609", +"@minver":"8.1.0", +"@name":"beijer-nexto-xpress-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Beijer Nexto Xpress is a powerful compact Programmable Logic Controller (PLC) in the Nexto Series family of controllers and I/O modules. Nexto Xpress delivers high-speed processing power in a compact design with embedded I/O. Nexto Xpress controllers provide access to its operation states through a web server.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.beijerelectronics.com/en/Products/Control%20systems/Compact%20controller"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12639", +"@minver":"8.1.0", +"@name":"chathelp", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"ChatHelp is an AI chatbot that can be trained as an assistant for business, work, or study.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://chathelp.ai/"} +] +} +, +"use-applications": +{ +"member":["facebook-base", +{ +"@minver":"3.0.0", +"google-base", +"linkedin-base", +"ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12624", +"@minver":"8.1.0", +"@name":"codesys-runtime-v2", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"CODESYS Runtime V2 converts any embedded or PC-based device into an IEC 61131-3-compliant industrial controller. This runtime system includes add-on functionality so that your controller can communicate with other components in the automation environment.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://us.codesys.com/device-manufacturers/codesys-for-you/your-device-with-codesys/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12568", +"@minver":"8.1.0", +"@name":"desoutter-cvi-pc2000", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"CVI PC2000 is Desoutter's comprehensive software solution to configure and manage CVIC, CVIR and CVIL controllers and tools. The software allows users to configure tightening strategies, accessories, and Ethernet or fieldbus communication networks. It can also be used to view tightening data or maintenance requirements.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://webshop.desouttertools.com/en-us/products/Asset-Programming-Software/CVIPC2000-sku15172-cat31012.32052"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12677", +"@minver":"8.1.0", +"@name":"duckie-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Duckie is a no-code platform for customer support teams to build and deploy AI agents to resolve tickets.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.duckie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"duckie-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"duckie-base", +"preview": +"yes"} +, +{ +"@id":"12676", +"@minver":"8.1.0", +"@name":"duckie-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"duckie", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Duckie is a no-code platform for customer support teams to build and deploy AI agents to resolve tickets.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.duckie.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"duckie-create", +{ +"@minver":"8.1.0", +"duckie-delete", +{ +"@minver":"8.1.0", +"duckie-edit", +{ +"@minver":"8.1.0", +"duckie-invite"] +} +, +"risk": +"3", +"application-container": +"duckie", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12676", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"duckie", +"ottawa-name": +"duckie", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Duckie is a no-code platform for customer support teams to build and deploy AI agents to resolve tickets.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.duckie.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.0.0", +"google-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"duckie-create", +{ +"@minver":"8.1.0", +"duckie-delete", +{ +"@minver":"8.1.0", +"duckie-edit", +{ +"@minver":"8.1.0", +"duckie-invite"] +} +, +"risk": +"3", +"application-container": +"duckie", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12678", +"@minver":"8.1.0", +"@name":"duckie-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Duckie is a no-code platform for customer support teams to build and deploy AI agents to resolve tickets.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.duckie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"duckie-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"duckie-base", +"preview": +"yes"} +, +{ +"@id":"12679", +"@minver":"8.1.0", +"@name":"duckie-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Duckie is a no-code platform for customer support teams to build and deploy AI agents to resolve tickets.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.duckie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"duckie-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"duckie-base", +"preview": +"yes"} +, +{ +"@id":"12680", +"@minver":"8.1.0", +"@name":"duckie-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Duckie is a no-code platform for customer support teams to build and deploy AI agents to resolve tickets.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.duckie.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"duckie-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"duckie-base", +"preview": +"yes"} +, +{ +"@id":"12555", +"@minver":"8.1.0", +"@name":"fresenius-kabi-agilia-connect", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"Fresenius Kabi Agilia Connect family of volumetric and syringe pumps are medical devices capable of delivering continuous and very specific amounts of fluids at very slow to very fast rates.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.agiliaconnect.com/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12559", +"@minver":"8.1.0", +"@name":"ge-mars-cicbedsync", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"medical", +"technology": +"client-server", +"description": +"The CIC interface allows the MARS system to acquire full disclosure (FD) data from bedside monitors connected to the GE Healthcare CARESCAPE Monitoring Network.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://documents.cdn.ifixit.com/iVht4xwXZLQxsfck.pdf"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12531", +"@minver":"8.1.0", +"@name":"hakko-vsft-screen-data-transfer", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Hakko V-SFT configuration software is used for programming and configuring Monitouch HMI (Human-Machine Interface) devices. This software provides enhanced operability and convenient screen configuration tools, allowing for easy viewing of HMI displays, graphic indication of system configuration, and improved search functionality. Additionally, the Hakko V-SFT software tool can be used to transfer screen data to the Monitouch HMI.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://monitouch.fujielectric.com/site/vsft-e/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12532", +"@minver":"8.1.0", +"@name":"hakko-vsft-simulator", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Hakko V-SFT configuration software is used for programming and configuring Monitouch HMI (Human-Machine Interface) devices. This software provides enhanced operability and convenient screen configuration tools, allowing for easy viewing of HMI displays, graphic indication of system configuration, and improved search functionality. The simulator function of the V-SFT software allows users to perform operation checks on a newly created screen without the HMI or PLC.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://monitouch.fujielectric.com/site/vsft-e/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12556", +"@minver":"8.1.0", +"@name":"honeywell-configuration-studio", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Honeywell Configuration Studio is a software application that provides a central location from which to access engineering tools and applications used to configure Honeywell Experion PKS based systems.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://process.honeywell.com/us/en/solutions/experion-pks"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12557", +"@minver":"8.1.0", +"@name":"honeywell-experion-builder", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Honeywell Experion Builder is a software application launched from the Honeywell Configuration Studio which can be used to complete configuration tasks for various Honeywell Experion devices.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://process.honeywell.com/us/en/solutions/experion-pks"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12621", +"@minver":"8.1.0", +"@name":"paloalto-host-compliance-svc", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"HIP, or Host Information Profile, allows administrators to collect information about the security posture of devices accessing their network. Host Compliance Service ensures that HIP can be shared among Palo Alto Network solutions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Palo Alto Networks]", +"[Web App]"] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12620", +"@minver":"8.1.0", +"@name":"paloalto-host-discover-svc", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"Host Compliance Discover Service identifies the Host Compliance cloud resources for a firewall.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Palo Alto Networks]", +"[Web App]"] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"2806", +"@minver":"8.1.0", +"@name":"perplexity-ai-create", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"12648", +"@minver":"8.1.0", +"@name":"perplexity-ai-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"2807", +"@minver":"8.1.0", +"@name":"perplexity-ai-edit", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"12649", +"@minver":"8.1.0", +"@name":"perplexity-ai-share", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Perplexity AI is an AI-powered research and conversational search engine that answers queries using natural language predictive text.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Sharing]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.perplexity.ai"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"perplexity-ai-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"4", +"parent-app": +"perplexity-ai-base", +"preview": +"yes"} +, +{ +"@id":"12673", +"@minver":"8.1.0", +"@name":"talkscriber-invite", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Talkscriber is an advanced AI-driven speech-to-text platform designed to provide high-accuracy transcription services with additional features such as emotion detection and purchase intent identification.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.talkscriber.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"talkscriber-base"] +} +, +"risk": +"3", +"parent-app": +"talkscriber-base", +"preview": +"yes"} +, +{ +"@id":"12672", +"@minver":"8.1.0", +"@name":"talkscriber-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"talkscriber", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Talkscriber is an advanced AI-driven speech-to-text platform designed to provide high-accuracy transcription services with additional features such as emotion detection and purchase intent identification.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.talkscriber.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"talkscriber-invite"] +} +, +"risk": +"3", +"application-container": +"talkscriber", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12672", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"talkscriber", +"ottawa-name": +"talkscriber", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Talkscriber is an advanced AI-driven speech-to-text platform designed to provide high-accuracy transcription services with additional features such as emotion detection and purchase intent identification.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-hipaa": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.talkscriber.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"talkscriber-invite"] +} +, +"risk": +"3", +"application-container": +"talkscriber", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12674", +"@minver":"8.1.0", +"@name":"web3gpt-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Web3GPT is an AI-powered platform transforming smart contract development and deployment.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://w3gpt.ai/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"web3gpt-base"] +} +, +"risk": +"3", +"parent-app": +"web3gpt-base", +"preview": +"yes"} +, +{ +"@id":"12682", +"@minver":"8.1.0", +"@name":"web3gpt-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"web3gpt", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Web3GPT is an AI-powered platform transforming smart contract development and deployment.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://w3gpt.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.1.0", +"github-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"web3gpt-post"] +} +, +"risk": +"3", +"application-container": +"web3gpt", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12682", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"web3gpt", +"ottawa-name": +"web3gpt", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Web3GPT is an AI-powered platform transforming smart contract development and deployment.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://w3gpt.ai/"} +] +} +, +"use-applications": +{ +"member":[{ +"@minver":"3.1.0", +"github-base", +"ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"web3gpt-post"] +} +, +"risk": +"3", +"application-container": +"web3gpt", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12578", +"@minver":"8.1.0", +"@name":"abb-tunnel", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The ABB 800xA architecture consists of varied nodes, such as Domain Server, Connectivity Server, Application servers, Operator Stations and the Aspect Server, each fulfilling different roles. Communication between ABB controllers, workstations, and nodes can be encapsulated in an ABB tunnel.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www2.ccs.neu.edu/research/demeter/abb/collab/docs/3bse022283aoarchoverv.pdf"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12708", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-lingma", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Lingma, an AI coding assistant, offers features like code completion, generation, and cross-context awareness.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"yes"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tongyi.aliyun.com/lingma"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12493", +"@minver":"8.1.0", +"@name":"ifm-pcic", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"ifm develops, produces and sells sensors, controllers, software and systems for industrial automation and for SAP-based solutions for supply chain management and shop floor integration. The ifm process interface (pcic) is used for sending commands to a vision sensor using an ifm specific communication protocol.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ifm.com"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12665", +"@minver":"8.1.0", +"@name":"omron-fins-bcast-test-data-send", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS broadcast test data send command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12664", +"@minver":"8.1.0", +"@name":"omron-fins-bcast-tst-res-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS broadcast test results read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12662", +"@minver":"8.1.0", +"@name":"omron-fins-data-link-stat-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS data link status read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12655", +"@minver":"8.1.0", +"@name":"omron-fins-device-name-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS device name read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12656", +"@minver":"8.1.0", +"@name":"omron-fins-error-log-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS error log read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12657", +"@minver":"8.1.0", +"@name":"omron-fins-file-mem-index-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS file memory index read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12658", +"@minver":"8.1.0", +"@name":"omron-fins-file-memory-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS file memory read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12659", +"@minver":"8.1.0", +"@name":"omron-fins-file-memory-write", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS file memory write command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12663", +"@minver":"8.1.0", +"@name":"omron-fins-internode-echo-test", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS internode echo test command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12660", +"@minver":"8.1.0", +"@name":"omron-fins-multi-frc-stat-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS multipoint forced status read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12661", +"@minver":"8.1.0", +"@name":"omron-fins-network-status-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS network status read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12627", +"@minver":"8.1.0", +"@name":"omron-fins-reset", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS reset command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12653", +"@minver":"8.1.0", +"@name":"omron-fins-sysmac-name-delete", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS sysmac name delete command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12654", +"@minver":"8.1.0", +"@name":"omron-fins-sysmac-name-read", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS sysmac name read command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12640", +"@minver":"8.1.0", +"@name":"omron-fins-sysmac-name-set", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"FINS, Factory Interface Network Service, is a network protocol used by Omron PLCs, over different physical networks like Ethernet, Controller Link, DeviceNet and RS-232C. This App-ID covers the FINS sysmac name set command.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"FINS manual", +"link": +"https://www.myomron.com/downloads/1.Manuals/Networks/W227E12_FINS_Commands_Reference_Manual.pdf"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"omron-fins-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"omron-fins-base", +"preview": +"yes"} +, +{ +"@id":"12564", +"@minver":"8.1.0", +"@name":"schweitzer-eng-lab-telnet", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Schweitzer Engineering Laboratories (SEL) devices use telnet for remote access and communication over the network. Telnet allows users to access SEL device settings, metering, event reports, and other functions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"yes", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://selinc.com/"} +] +} +, +"use-applications": +{ +"member":["telnet"] +} +, +"risk": +"2", +"parent-app": +"telnet", +"preview": +"yes"} +, +{ +"@id":"12565", +"@minver":"8.1.0", +"@name":"schweitzer-eng-lab-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Schweitzer Engineering Laboratories (SEL) devices have integrated web servers that allow for remote access and management of the devices via a web browser.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://selinc.com/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12733", +"@minver":"8.1.0", +"@name":"sensetime-sensemirage-download", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SenseMirage is an AI \"painting\" app by SenseTime that transforms text prompts into stylized imagery using a large transformer-diffusion model.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://miaohua.sensetime.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sensetime-sensemirage-base"] +} +, +"risk": +"3", +"parent-app": +"sensetime-sensemirage-base", +"preview": +"yes"} +, +{ +"@id":"12715", +"@minver":"8.1.0", +"@name":"sensetime-sensemirage-base", +"@ori_country":"USA", +"@ori_language":"English", +"ottawa-name": +"sensetime-sensemirage", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SenseMirage is an AI \"painting\" app by SenseTime that transforms text prompts into stylized imagery using a large transformer-diffusion model.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://miaohua.sensetime.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sensetime-sensemirage-download", +{ +"@minver":"8.1.0", +"sensetime-sensemirage-post", +{ +"@minver":"8.1.0", +"sensetime-sensemirage-upload"] +} +, +"risk": +"3", +"application-container": +"sensetime-sensemirage", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12715", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@name":"sensetime-sensemirage", +"ottawa-name": +"sensetime-sensemirage", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SenseMirage is an AI \"painting\" app by SenseTime that transforms text prompts into stylized imagery using a large transformer-diffusion model.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://miaohua.sensetime.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sensetime-sensemirage-download", +{ +"@minver":"8.1.0", +"sensetime-sensemirage-post", +{ +"@minver":"8.1.0", +"sensetime-sensemirage-upload"] +} +, +"risk": +"3", +"application-container": +"sensetime-sensemirage", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12734", +"@minver":"8.1.0", +"@name":"sensetime-sensemirage-post", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SenseMirage is an AI \"painting\" app by SenseTime that transforms text prompts into stylized imagery using a large transformer-diffusion model.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Posting]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://miaohua.sensetime.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sensetime-sensemirage-base"] +} +, +"risk": +"3", +"parent-app": +"sensetime-sensemirage-base", +"preview": +"yes"} +, +{ +"@id":"12732", +"@minver":"8.1.0", +"@name":"sensetime-sensemirage-upload", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"SenseMirage is an AI \"painting\" app by SenseTime that transforms text prompts into stylized imagery using a large transformer-diffusion model.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"data-ident": +"yes", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://miaohua.sensetime.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"sensetime-sensemirage-base"] +} +, +"risk": +"3", +"parent-app": +"sensetime-sensemirage-base", +"preview": +"yes"} +, +{ +"@id":"12602", +"@minver":"8.1.0", +"@name":"siemens-s7-block-status-v2", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"This App-ID covers the block status v2 function for the Siemens-S7 protocol.", +"alg": +"yes", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"website", +"link": +"http://gmiru.com/article/s7comm/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"siemens-s7-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-base", +"preview": +"yes"} +, +{ +"@id":"12604", +"@minver":"8.1.0", +"@name":"siemens-s7-breakpoint", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"This App-ID covers the breakpoint function for the Siemens-S7 protocol.", +"alg": +"yes", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"website", +"link": +"http://gmiru.com/article/s7comm/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"siemens-s7-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-base", +"preview": +"yes"} +, +{ +"@id":"12599", +"@minver":"8.1.0", +"@name":"siemens-s7-memory-reset", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"This App-ID covers the memory reset function for the Siemens-S7 protocol.", +"alg": +"yes", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"website", +"link": +"http://gmiru.com/article/s7comm/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"siemens-s7-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-base", +"preview": +"yes"} +, +{ +"@id":"12603", +"@minver":"8.1.0", +"@name":"siemens-s7-mode-transition", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"This App-ID covers the mode transition function for the Siemens-S7 protocol.", +"alg": +"yes", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"website", +"link": +"http://gmiru.com/article/s7comm/"} +] +} +, +"use-applications": +{ +"@minver":"5.0.0", +"member":[{ +"@minver":"5.0.0", +"siemens-s7-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-base", +"preview": +"yes"} +, +{ +"@id":"12561", +"@minver":"8.1.0", +"@name":"turck-device-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"As a specialist in sensor, fieldbus, and connectivity - as well as interface technology, human-machine interfaces (HMI), and RFID systems - Turck offers efficient solutions for factory and process automation applications. The Turck Device Discovery protocol is used to scan the network for Turck devices using software like PACTware or Turck Automation Suite.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.turck.us"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12560", +"@minver":"8.1.0", +"@name":"turck-io-service", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Turck offers a complete line of industrial Ethernet products, including on-machine, in-cabinet, block, and modular I/O. The multiprotocol technology by Turck is an innovative new approach to Ethernet distributed I/O; multiprotocol I/O devices automatically self-configure to the active fieldbus protocol on each power-up.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.turck.us"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12401", +"@minver":"8.1.0", +"@name":"versa-networks-secure-sd-wan", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"networking", +"subcategory": +"infrastructure", +"technology": +"client-server", +"description": +"Versa Secure SD-WAN provides end-to-end connectivity, visibility, control, and security for enterprise-level digital transformation. It integrates software-defined networking and advanced security services into a single platform. This App-ID covers VXLAN communication between VOS hub, VOS branch, and Controller device.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://versa-networks.com/products/sd-wan/"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12529", +"@minver":"8.1.0", +"@name":"weintek-easyweb", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Weintek Easyweb 2.0 is a web interface that allows users to configure parameters of the cMT X Series HMI. Additionally, with its Webview feature, users can monitor HMIs through a web browser.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.weintek.com/globalw/Default.aspx"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12528", +"@minver":"8.1.0", +"@name":"weintek-hmi-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"EasyBuilder Pro is a versatile HMI software platform developed by Weintek exclusively for their HMI devices. It allows users to easily manage and configure Weintek HMI products. EasyBuilder Pro uses Weintek HMI Discovery to find HMIs in the network.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.weintek.com/globalw/Default.aspx"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12716", +"@minver":"8.1.0", +"@name":"a2a-agent-discovery", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"network-protocol", +"description": +"Agent2Agent (A2A) Protocol is an open standard designed to facilitate communication and interoperability between independent, potentially opaque AI agent systems. This App-ID covers the agent discovery phase of A2A traffic where A2A servers present their agent cards to the clients.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://a2a-protocol.org/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"3", +"parent-app": +"web-browsing", +"preview": +"yes"} +, +{ +"@id":"12739", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-create", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alibaba-tongyi-tingwu-base", +"preview": +"yes"} +, +{ +"@id":"12736", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-base", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"ottawa-name": +"alibaba-tongyi-tingwu", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-create", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-delete", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-download", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-edit", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-move", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-upload"] +} +, +"risk": +"3", +"application-container": +"alibaba-tongyi-tingwu", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12736", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"@name":"alibaba-tongyi-tingwu", +"ottawa-name": +"alibaba-tongyi-tingwu", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-create", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-delete", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-download", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-edit", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-move", +{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-upload"] +} +, +"risk": +"3", +"application-container": +"alibaba-tongyi-tingwu", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12740", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-delete", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alibaba-tongyi-tingwu-base", +"preview": +"yes"} +, +{ +"@id":"12738", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-download", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Downloading]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alibaba-tongyi-tingwu-base", +"preview": +"yes"} +, +{ +"@id":"12741", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-edit", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alibaba-tongyi-tingwu-base", +"preview": +"yes"} +, +{ +"@id":"12742", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-move", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alibaba-tongyi-tingwu-base", +"preview": +"yes"} +, +{ +"@id":"12737", +"@minver":"8.1.0", +"@name":"alibaba-tongyi-tingwu-upload", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Alibaba Tongyi Tingwu is an AI work and study assistant developed by Alibaba Cloud. Powered by large language models, it can convert speech to text and analyze content in audios and videos.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://tingwu.aliyun.com/"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"alibaba-tongyi-tingwu-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"alibaba-tongyi-tingwu-base", +"preview": +"yes"} +, +{ +"@id":"12391", +"@minver":"8.1.0", +"@name":"ibm-i-as-central", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its central server provides services such as license management and other client management functions. This App-ID covers the non-secure version of IBM i Access Client Solutions' central server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12399", +"@minver":"8.1.0", +"@name":"ibm-i-as-base", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"ottawa-name": +"ibm-i-as", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"application-container": +"ibm-i-as", +"preview": +"yes"} +, +{ +"@id":"12399", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"@name":"ibm-i-as", +"ottawa-name": +"ibm-i-as", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"application-container": +"ibm-i-as", +"preview": +"yes"} +, +{ +"@id":"12392", +"@minver":"8.1.0", +"@name":"ibm-i-as-database", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its database server allows clients access to Db2 for i functions. This App-ID covers the non-secure version of IBM i Access Client Solutions' database server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"2", +"preview": +"yes"} +, +{ +"@id":"12393", +"@minver":"8.1.0", +"@name":"ibm-i-as-dtaq", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its data queue server provides access to IBM i data queues. This App-ID covers the non-secure version of IBM i Access Client Solutions' data queue server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12394", +"@minver":"8.1.0", +"@name":"ibm-i-as-file", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its file server allows clients to store and access objects located on the IBM i file system. This App-ID covers the non-secure version of IBM i Access Client Solutions' file server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"2", +"preview": +"yes"} +, +{ +"@id":"12395", +"@minver":"8.1.0", +"@name":"ibm-i-as-netprt", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its network print server provides remote print support and allows enhanced client control over print resources. This App-ID covers the non-secure version of IBM i Access Client Solutions' network print server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12396", +"@minver":"8.1.0", +"@name":"ibm-i-as-rmtcmd", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its remote command and distributed program call server allows PC applications to issue commands and call programs on IBM i and return the results to the client. This App-ID covers the non-secure version of IBM i Access Client Solutions' remote command and distributed program call server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12397", +"@minver":"8.1.0", +"@name":"ibm-i-as-signon", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its signon server provides password management functions for IBM i host servers with sockets support. This App-ID covers the non-secure version of IBM i Access Client Solutions' signon server.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12398", +"@minver":"8.1.0", +"@name":"ibm-i-as-svrmap", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"general-business", +"technology": +"client-server", +"description": +"IBM i Access Client Solutions provides a platform-independent interface that consolidates the most commonly used tasks for managing IBM i into one simplified location. Its server port mapper provides the current server port number to a client requesting a connection.", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ibm.com/support/pages/ibm-i-access-client-solutions"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12592", +"@minver":"8.1.0", +"@name":"ifm-efector-iot-core-visualizer", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"Ifm Efector IoT-Core Visualizer acts as an interface that allows sensor data from IO-link masters and other devices to be transmitted to cloud platforms or other IT systems for monitoring, analysis, and control. The ifm IoT Core Visualizer is a web-based tool that allows users to configure the IoT Core functionality of ifm devices, such as what data to send, how to send it, and how to trigger the data transfer.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ifm.com"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12563", +"@minver":"8.1.0", +"@name":"nidec-drive-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Nidec Drive is a provider of motors, drives, and control systems for a wide range of applications. They specialize in providing dependable and energy-efficient products and services, particularly for industries like electric vehicles, material handling, and floor care. The Nidec Drive Web Server allows the user to manage and monitor Nidec's devices.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://acim.nidec.com/en-US/drives/control-techniques/About-Us"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12706", +"@minver":"8.1.0", +"@name":"remsupp", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"networking", +"subcategory": +"remote-access", +"technology": +"client-server", +"description": +"RemSupp is a remote desktop solution that provides secure and fast remote access, control, and support for Windows and macOS devices.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"certifications": +{ +"is-pci": +"yes"} +, +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://remsupp.com/en/"} +] +} +, +"use-applications": +{ +"member":["ssl", +{ +"@minver":"3.0.0", +"twilio", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"4", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12626", +"@minver":"8.1.0", +"@name":"rs-automation-xgpc", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"XGPC is the ladder editing software developed by RS Automation for their X8 Series PLC. It supports the IEC61131-3 standard and provides functions for editing, monitoring, and debugging ladder logic programs.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.rsautomationusa.com/customer/data.php?ptype=view&idx=13321&page=&code=data&total_searchkey=xgpc"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12688", +"@minver":"8.1.0", +"@name":"schneider-ftp", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"general-internet", +"subcategory": +"file-sharing", +"technology": +"client-server", +"description": +"Schneider Electric is a global technology company that provides energy management and automation solutions for homes, buildings, data centers, infrastructure, and industries. Schneider Electric products, including those in the EcoStruxure and APC lines, use FTP for tasks like upgrading and downgrading PLC firmware.", +"appident": +"yes", +"virus-ident": +"yes", +"spyware-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.se.com"} +] +} +, +"use-applications": +{ +"member":["ftp"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"2", +"parent-app": +"ftp", +"preview": +"yes"} +, +{ +"@id":"12587", +"@minver":"8.1.0", +"@name":"secomea-appliance-launcher", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"The Secomea Appliance Launcher is an application provided by Secomea that simplifies the initial configuration and connection to SiteManager appliances. It is designed for easy setup of Secomea's remote access solution for industrial equipment.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://kb.secomea.com/docs/appliance-launcher"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12701", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-abort", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12697", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-add-link", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"10480", +"@minver":"7.1.0", +"@name":"siemens-s7-comm-plus-begin-seq", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12702", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-error", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12703", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-error-2", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12696", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-get-var", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12700", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-get-var-ad", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12704", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-init-ssl", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12698", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-rem-link", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12699", +"@minver":"8.1.0", +"@name":"siemens-s7-comm-plus-set-var-st", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"network-protocol", +"description": +"The S7 Comm Plus protocol is a new version of the original S7 Comm protocol. It is a proprietary communications protocol developed by Siemens that runs between programmable logic controllers (PLCs) of the Siemens S7 family.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"S7-1500 plus TIA Portal", +"link": +"http://www.aainy.com/pdf/rkc_instrument_simatic_s7_1500_plus_tia_portal.pdf"} +] +} +, +"use-applications": +{ +"@minver":"7.1.0", +"member":[{ +"@minver":"7.1.0", +"siemens-s7-comm-plus-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"1", +"parent-app": +"siemens-s7-comm-plus-base", +"preview": +"yes"} +, +{ +"@id":"12588", +"@minver":"8.1.0", +"@name":"turck-hmi-plc-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"Turck HMI/PLCs are often used in applications like logistics, manufacturing, packaging, and other industries where automated processes require visualization and control. The Turck HMI/PLC webserver is used for remote monitoring, control, and maintenance.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.turck.de/attachment/100002669.pdf"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12622", +"@minver":"8.1.0", +"@name":"uneeq-digital-humans", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"UneeQ Digital Humans is an AI interface company that specializes in creating lifelike digital human avatars for enterprises.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.digitalhumans.com/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"stun", +"web-browsing"] +} +, +"risk": +"3", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12717", +"@minver":"8.1.0", +"@name":"ap2", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"network-protocol", +"description": +"Agent Payments Protocol (AP2) is an open, shared protocol that provides a common language for secure, compliant transactions between agents and merchants.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://ap2-protocol.org/"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl"] +} +, +"risk": +"3", +"parent-app": +"web-browsing", +"preview": +"yes"} +, +{ +"@id":"12681", +"@minver":"8.1.0", +"@name":"danfoss-vacon-nxp-protocol", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"VACON NCDrive is designed for commissioning, parameterization, monitoring, and diagnostics of VACON NXP family drives. VACON NCIPConfig is used for managing Ethernet-based network options for VACON NXP communication option cards. The VACON NXP protocol is used for communication between NXP devices and these software.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.danfoss.com"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12764", +"@minver":"8.1.0", +"@name":"gost", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"networking", +"subcategory": +"encrypted-tunnel", +"technology": +"client-server", +"description": +"GOST (GO Simple Tunnel) is an open-source network tunneling and proxy tool written in Go that supports multiple protocols like HTTP, SOCKS, and Shadowsocks. It's used to securely forward or relay network traffic through customizable proxy chains.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"yes", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Proxy Avoidance]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://gost.run/"} +] +} +, +"use-applications": +{ +"member":["http-proxy", +"socks", +"ssl", +"web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"risk": +"2", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12705", +"@minver":"8.1.0", +"@name":"guardtime-federal-ksi", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"auth-service", +"technology": +"client-server", +"description": +"Guardtime Federal's Keyless Signature Infrastructure (KSI) is a technology designed to provide immutable, real-time proof of the integrity of digital assets. Unlike traditional security methods that rely on public key infrastructure (PKI) and centralized trusted authorities, KSI uses a distributed blockchain and cryptographic hash functions.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.guardtime-federal.com/technology"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"implicit-use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12667", +"@minver":"8.1.0", +"@name":"hp-device-manager-polling", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"iot-management", +"technology": +"client-server", +"description": +"HP Device Manager (HPDM) is a centralized software application for managing and administering large fleets of HP Thin Clients across a network, allowing IT administrators to inventory, update, configure, and secure these devices remotely from a single console.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://support.hp.com/us-en/product/details/hp-device-manager/3646216"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12642", +"@minver":"8.1.0", +"@name":"ifm-efector-moneo-configure", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"ifm's moneo is a comprehensive IIoT platform for visualizing, analyzing, and optimizing production processes. moneo configure helps users setup IO-Link sensors and masters, as well as visualize process values and parameters.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.ifm.com/us/en/shared/industry-4-0-moneo/products/configure?srsltid=AfmBOopm1AJeSe61PHRMvqMoPwjhd9OFd4zpzhD3c0HIJD7fIAL8Tdiy"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12605", +"@minver":"8.1.0", +"@name":"riot-games", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"general-internet", +"subcategory": +"internet-utility", +"technology": +"client-server", +"description": +"Riot Games is a video game developer, publisher, and esports tournament organizer best known for creating the global hit League of Legends (LoL).", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"yes", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"yes", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"breaks-decryption": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.riotgames.com/en"} +] +} +, +"use-applications": +{ +"member":["ssl"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"league-of-legends"] +} +, +"risk": +"2", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12625", +"@minver":"8.1.0", +"@name":"rs-automation-webserver", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"RS Automation is an automation company specializing in various aspects of industrial automation. They develop and manufacture automation components like AC servo drives, PLCs, and motion controllers. Their RS Automation Webserver allows users to manage their various devices.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.rsautomationusa.com/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +, +{ +"@id":"12761", +"@minver":"8.1.0", +"@name":"tencent-yuanbao-create", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"tencent-yuanbao-base", +"preview": +"yes"} +, +{ +"@id":"12753", +"@minver":"8.1.0", +"@name":"tencent-yuanbao-base", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"ottawa-name": +"tencent-yuanbao", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-create", +{ +"@minver":"8.1.0", +"tencent-yuanbao-delete", +{ +"@minver":"8.1.0", +"tencent-yuanbao-edit", +{ +"@minver":"8.1.0", +"tencent-yuanbao-move", +{ +"@minver":"8.1.0", +"tencent-yuanbao-upload"] +} +, +"risk": +"3", +"application-container": +"tencent-yuanbao", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12753", +"@minver":"8.1.0", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"@name":"tencent-yuanbao", +"ottawa-name": +"tencent-yuanbao", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"member":["ssl", +"web-browsing"] +} +, +"tunnel-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-create", +{ +"@minver":"8.1.0", +"tencent-yuanbao-delete", +{ +"@minver":"8.1.0", +"tencent-yuanbao-edit", +{ +"@minver":"8.1.0", +"tencent-yuanbao-move", +{ +"@minver":"8.1.0", +"tencent-yuanbao-upload"] +} +, +"risk": +"3", +"application-container": +"tencent-yuanbao", +"parent-app": +"websocket", +"preview": +"yes"} +, +{ +"@id":"12765", +"@minver":"8.1.0", +"@name":"tencent-yuanbao-delete", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Deleting]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"tencent-yuanbao-base", +"preview": +"yes"} +, +{ +"@id":"12762", +"@minver":"8.1.0", +"@name":"tencent-yuanbao-edit", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Editing]", +"[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"tencent-yuanbao-base", +"preview": +"yes"} +, +{ +"@id":"12763", +"@minver":"8.1.0", +"@name":"tencent-yuanbao-move", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"tencent-yuanbao-base", +"preview": +"yes"} +, +{ +"@id":"12757", +"@minver":"8.1.0", +"@name":"tencent-yuanbao-upload", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"artificial-intelligence", +"technology": +"browser-based", +"description": +"Tencent Yuanbao is an AI productivity app that assists with writing, translation, programming, information search, and document summarization.", +"appident": +"yes", +"virus-ident": +"yes", +"file-type-ident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"yes", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"file-forward": +"yes", +"can-disable": +"yes", +"new-appid": +"yes", +"is-saas": +"yes", +"saas": +{ +"@minver":"8.1.0", +"is-data-breaches": +"no", +"is-ip-based-restrictions": +"no", +"is-poor-financial-viability": +"no", +"is-poor-terms-of-service": +"no", +"is-uses-genai-to-generate-code": +"no"} +, +"tag": +{ +"@minver":"9.1.0", +"member":["[Generative AI]", +"[Uploading]", +"[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://yuanbao.tencent.com"} +] +} +, +"use-applications": +{ +"@minver":"8.1.0", +"member":[{ +"@minver":"8.1.0", +"tencent-yuanbao-base"] +} +, +"tunnel-applications": +{ +"@minver":"3.1.0", +"member":[{ +"@minver":"3.1.0", +"ctd-dummy"] +} +, +"risk": +"3", +"parent-app": +"tencent-yuanbao-base", +"preview": +"yes"} +, +{ +"@id":"12666", +"@minver":"8.1.0", +"@name":"wago-service", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"client-server", +"description": +"WAGO offers various services and updates to keep its industrial automation products, particularly its Programmable Logic Controllers (PLCs), up-to-date and functioning optimally. This includes firmware updates, software updates, and remote access and management capabilities.", +"alg": +"yes", +"appident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"no", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"new-appid": +"yes", +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.wago.com"} +] +} +, +"risk": +"1", +"preview": +"yes"} +, +{ +"@id":"12641", +"@minver":"8.1.0", +"@name":"wago-web-server", +"@ori_country":"USA", +"@ori_language":"English", +"@dirtyId":"23", +"category": +"business-systems", +"subcategory": +"ics-protocols", +"technology": +"browser-based", +"description": +"WAGO is a global leader in electrical interconnection, interface electronics, and automation technology. WAGO programmable logic controllers (PLCs) and other automation devices have internal web servers that allow users to access and manage the device through a web browser.", +"appident": +"yes", +"vulnerability-ident": +"yes", +"evasive-behavior": +"no", +"consume-big-bandwidth": +"no", +"used-by-malware": +"no", +"able-to-transfer-file": +"no", +"has-known-vulnerability": +"yes", +"tunnel-other-application": +"no", +"prone-to-misuse": +"no", +"pervasive-use": +"no", +"per-direction-regex": +"no", +"deny-action": +"drop-reset", +"cachable": +"no", +"can-disable": +"yes", +"new-appid": +"yes", +"tag": +{ +"@minver":"9.1.0", +"member":["[Web App]"] +} +, +"references": +{ +"entry":[{ +"@name":"HomePage", +"link": +"https://www.wago.com/"} +] +} +, +"use-applications": +{ +"member":["web-browsing"] +} +, +"risk": +"1", +"parent-app": +"web20_parrent_app", +"preview": +"yes"} +] +} +, +"application-type": +{ +"category": +[] +, +"technology": +[] +} +} +} +{ +"entry":[{ +"@name":"trust", +"network": +{ +"virtual-wire": +[] +} +} +, +{ +"@name":"untrust", +"network": +{ +"virtual-wire": +[] +} +} +, +{ +"@name":"default_l3", +"network": +{ +"layer3": +{ +"member":["ethernet1/5", +"ae1", +"tunnel", +"ethernet1/6.12", +"ethernet1/6", +"ethernet1/6.55", +"loopback.10", +"ethernet1/5.400", +"ae4", +"ethernet1/5.500", +"loopback.5"] +} +} +, +"enable-user-identification": +"no"} +, +{ +"@name":"outside", +"network": +{ +"layer3": +{ +"member":["loopback.20", +"loopback.30", +"ethernet1/5.450"] +} +} +} +, +{ +"@name":"default_l2", +"network": +{ +"layer2": +[] +} +, +"enable-user-identification": +"no"} +, +{ +"@name":"foo-test", +"network": +{ +"virtual-wire": +[] +} +, +"enable-user-identification": +"no"} +, +{ +"@name":"ipfabric", +"network": +{ +"layer3": +{ +"member":["loopback.40"] +} +} +} +] +} +{ +"setting": +[] +} +{ +"entry":[{ +"@name":"bgp", +"protocol": +{ +"tcp": +{ +"port": +"179", +"override": +{ +"no": +[] +} +} +} +} +, +{ +"@name":"dns", +"protocol": +{ +"udp": +{ +"port": +"53", +"override": +{ +"no": +[] +} +} +} +} +, +{ +"@name":"tftp", +"protocol": +{ +"udp": +{ +"port": +"69", +"override": +{ +"no": +[] +} +} +} +} +] +} +{ +"security": +{ +"rules": +{ +"entry":[{ +"@name":"bgp", +"@uuid":"e1e2a1d0-2fa8-4749-9482-902dbed3ae4a", +"to": +{ +"member":["any"] +} +, +"from": +{ +"member":["any"] +} +, +"source": +{ +"member":["any"] +} +, +"destination": +{ +"member":["192.168.0.2"] +} +, +"source-user": +{ +"member":["any"] +} +, +"category": +{ +"member":["any"] +} +, +"application": +{ +"member":["any"] +} +, +"service": +{ +"member":["bgp"] +} +, +"source-hip": +{ +"member":["any"] +} +, +"destination-hip": +{ +"member":["any"] +} +, +"action": +"allow", +"log-end": +"no"} +, +{ +"@name":"rule1", +"@uuid":"f88f61c9-f557-4a4c-9f86-1a04b076999b", +"from": +{ +"member":["trust"] +} +, +"to": +{ +"member":["untrust"] +} +, +"source": +{ +"member":["any"] +} +, +"destination": +{ +"member":["any"] +} +, +"service": +{ +"member":["any"] +} +, +"application": +{ +"member":["any"] +} +, +"action": +"allow", +"log-end": +"yes"} +, +{ +"@name":"icmp_test", +"@uuid":"ab4b9486-fad6-4b08-8857-868b139c2a85", +"to": +{ +"member":["default_l3"] +} +, +"from": +{ +"member":["any"] +} +, +"source": +{ +"member":["10.2.42.1", +"192.168.0.1"] +} +, +"destination": +{ +"member":["any"] +} +, +"source-user": +{ +"member":["any"] +} +, +"category": +{ +"member":["any"] +} +, +"application": +{ +"member":["icmp", +"ping"] +} +, +"service": +{ +"member":["any"] +} +, +"source-hip": +{ +"member":["any"] +} +, +"destination-hip": +{ +"member":["any"] +} +, +"action": +"allow", +"description": +"Allow pings from a host"} +, +{ +"@name":"http_out", +"@uuid":"78e8539a-d7a5-4431-956f-c26497680f3d", +"to": +{ +"member":["outside"] +} +, +"from": +{ +"member":["default_l3"] +} +, +"source": +{ +"member":["any"] +} +, +"destination": +{ +"member":["192.168.70.1"] +} +, +"source-user": +{ +"member":["any"] +} +, +"category": +{ +"member":["any"] +} +, +"application": +{ +"member":["any"] +} +, +"service": +{ +"member":["service-http"] +} +, +"source-hip": +{ +"member":["any"] +} +, +"destination-hip": +{ +"member":["any"] +} +, +"action": +"allow", +"log-start": +"yes", +"description": +"Allow HTTP traffic to test loopback out"} +, +{ +"@name":"http_in", +"@uuid":"5e952f9c-e306-427b-8464-38a8bc128c8a", +"to": +{ +"member":["default_l3"] +} +, +"from": +{ +"member":["outside"] +} +, +"source": +{ +"member":["192.168.70.1"] +} +, +"destination": +{ +"member":["any"] +} +, +"source-user": +{ +"member":["any"] +} +, +"category": +{ +"member":["any"] +} +, +"application": +{ +"member":["any"] +} +, +"service": +{ +"member":["service-http"] +} +, +"source-hip": +{ +"member":["any"] +} +, +"destination-hip": +{ +"member":["any"] +} +, +"action": +"allow"} +, +{ +"@name":"pk_icmp_nat", +"@uuid":"6e246138-80b9-471c-b367-738e8665426c", +"to": +{ +"member":["outside"] +} +, +"from": +{ +"member":["default_l3"] +} +, +"source": +{ +"member":["10.2.42.0/30"] +} +, +"destination": +{ +"member":["192.168.0.5"] +} +, +"source-user": +{ +"member":["any"] +} +, +"category": +{ +"member":["any"] +} +, +"application": +{ +"member":["icmp", +"ping"] +} +, +"service": +{ +"member":["application-default"] +} +, +"source-hip": +{ +"member":["any"] +} +, +"destination-hip": +{ +"member":["any"] +} +, +"action": +"allow"} +] +} +} +, +"nat": +{ +"rules": +{ +"entry":[{ +"@name":"ext_nat", +"@uuid":"e2f2201d-8d5f-40b0-99bd-7801702a87e1", +"source-translation": +{ +"dynamic-ip-and-port": +{ +"interface-address": +{ +"ip": +"192.168.0.6/30", +"interface": +"ethernet1/5.450"} +} +} +, +"to": +{ +"member":["outside"] +} +, +"from": +{ +"member":["default_l3"] +} +, +"source": +{ +"member":["10.2.42.0/30"] +} +, +"destination": +{ +"member":["any"] +} +, +"service": +"any", +"description": +"NAT test external translation"} +] +} +} +, +"pbf": +{ +"rules": +{ +"entry":[{ +"@name":"Pol1_Rule2", +"@uuid":"213035ec-4452-427d-b6cd-472d67e7e7e2", +"from": +{ +"interface": +{ +"member":["loopback.10"] +} +} +, +"source": +{ +"member":["10.1.100.0/24"] +} +, +"source-user": +{ +"member":["any"] +} +, +"negate-source": +"no", +"destination": +{ +"member":["any"] +} +, +"negate-destination": +"no", +"application": +{ +"member":["any"] +} +, +"service": +{ +"member":["bgp"] +} +, +"disabled": +"no", +"action": +{ +"forward": +{ +"egress-interface": +"loopback.20"} +} +} +, +{ +"@name":"Pol4_Rule3", +"@uuid":"f234d9e2-5052-45bc-84fc-ca4595cf67a3", +"from": +{ +"interface": +{ +"member":["loopback.40"] +} +} +, +"source": +{ +"member":["any"] +} +, +"source-user": +{ +"member":["any"] +} +, +"negate-source": +"no", +"destination": +{ +"member":["any"] +} +, +"negate-destination": +"no", +"application": +{ +"member":["any"] +} +, +"service": +{ +"member":["any"] +} +, +"disabled": +"no", +"action": +{ +"forward": +{ +"egress-interface": +"ae3"} +} +} +] +} +} +} +{ +"network": +{ +"interface": +{ +"member":["ae1", +"ethernet1/6", +"tunnel", +"ethernet1/6.12", +"ethernet1/6.55", +"loopback.10", +"loopback.20", +"loopback.30", +"ethernet1/5.450", +"ethernet1/5.400", +"ethernet1/5", +"ae3", +"ae4", +"ethernet1/5.500", +"loopback.40", +"ethernet1/8", +"loopback.5"] +} +} +} +{ +"entry":[{ +"@name":"test VLAN 100", +"ip-netmask": +"10.1.100.42/24", +"description": +"ping test"} +, +{ +"@name":"Panorama Subnet", +"ip-netmask": +"10.125.1.0/24"} +, +{ +"@name":"df gw", +"ip-netmask": +"10.1.254.1/32"} +, +{ +"@name":"IPFabric Lo40", +"ip-netmask": +"192.168.99.40"} +] +} +{ +"users": +{ +"entry":[{ +"@name":"admin", +"phash": +"$1$cmrjgtgw$D.g30YtUzcG407xsfHUgP/", +"permissions": +{ +"role-based": +{ +"superuser": +"yes"} +} +} +, +{ +"@name":"ntc", +"permissions": +{ +"role-based": +{ +"superuser": +"yes"} +} +, +"phash": +"$5$jwnyjrab$A/U.D1z6bJaxX78R9XfpXR1y1pThtJxoOxs2GTAnEv."} +] +} +, +"password-complexity": +{ +"enabled": +"yes", +"minimum-length": +"8"} +} \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_converted.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_converted.txt new file mode 100644 index 00000000..bb1f7c25 --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_converted.txt @@ -0,0 +1,2 @@ +set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ \ No newline at end of file diff --git a/tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_sent.txt b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_sent.txt new file mode 100644 index 00000000..db0cf2ba --- /dev/null +++ b/tests/unit/mock/config/conversion/paloalto_panos/paloalto_only_banner_sent.txt @@ -0,0 +1,12 @@ +config { + devices { + localhost.localdomain { + deviceconfig { + system { + login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~; + } + } + } + } +} \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_received.py new file mode 100644 index 00000000..d49ebf9e --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_received.py @@ -0,0 +1,10 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="set deviceconfig system hostname pa-ntc", parents=()), + ConfigLine( + config_line="set deviceconfig system login-banner '\"BANNER\"'", + parents=(), + ), + ConfigLine(config_line="set deviceconfig system domain ntc", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_sent.txt new file mode 100644 index 00000000..6f1fe931 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_double_quote_sent.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner '"BANNER"' +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_received.py new file mode 100644 index 00000000..988f8ef5 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_received.py @@ -0,0 +1,10 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="set deviceconfig system hostname pa-ntc", parents=()), + ConfigLine( + config_line="set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + parents=(), + ), + ConfigLine(config_line="set deviceconfig system domain ntc", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_sent.txt new file mode 100644 index 00000000..60c9df49 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_sent.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_received.py new file mode 100644 index 00000000..02ded299 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_received.py @@ -0,0 +1,10 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="set deviceconfig system hostname pa-ntc", parents=()), + ConfigLine( + config_line='set deviceconfig system login-banner "BANNER BANNER"', + parents=(), + ), + ConfigLine(config_line="set deviceconfig system domain ntc", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_sent.txt new file mode 100644 index 00000000..90ed4dc7 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_one_line_space_sent.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner "BANNER BANNER" +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_received.py new file mode 100644 index 00000000..8c1b067d --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_received.py @@ -0,0 +1,10 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="set deviceconfig system hostname pa-ntc", parents=()), + ConfigLine( + config_line="set deviceconfig system login-banner \"'BANNER'\"", + parents=(), + ), + ConfigLine(config_line="set deviceconfig system domain ntc", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_sent.txt new file mode 100644 index 00000000..a9878418 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_single_quote_sent.txt @@ -0,0 +1,3 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner "'BANNER'" +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_received.py new file mode 100644 index 00000000..a1c94e81 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_received.py @@ -0,0 +1,16 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine(config_line="set deviceconfig system hostname pa-ntc", parents=()), + ConfigLine( + config_line="set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + parents=(), + ), + ConfigLine( + config_line="!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + parents=( + "set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + ), + ), + ConfigLine(config_line="set deviceconfig system domain ntc", parents=()), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_sent.txt new file mode 100644 index 00000000..9536cb15 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_banner_two_line_sent.txt @@ -0,0 +1,4 @@ +set deviceconfig system hostname pa-ntc +set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +set deviceconfig system domain ntc \ No newline at end of file diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_received.py b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_received.py new file mode 100644 index 00000000..a7c5e617 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_received.py @@ -0,0 +1,14 @@ +from netutils.config.parser import ConfigLine + +data = [ + ConfigLine( + config_line="set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + parents=(), + ), + ConfigLine( + config_line="!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + parents=( + "set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~", + ), + ), +] diff --git a/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_sent.txt b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_sent.txt new file mode 100644 index 00000000..bb1f7c25 --- /dev/null +++ b/tests/unit/mock/config/parser/base/paloalto_panos/paloalto_only_banner_sent.txt @@ -0,0 +1,2 @@ +set deviceconfig system login-banner !#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ +!#$%&()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ \ No newline at end of file From 3da6ac91026d31eda5360b61cb935513f07cba17 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 10:27:28 -0600 Subject: [PATCH 08/13] Added helpful kwargs to 'invoke pytest' --- tasks.py | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/tasks.py b/tasks.py index 01be98f5..84805a24 100644 --- a/tasks.py +++ b/tasks.py @@ -169,10 +169,23 @@ def coverage(context): run_command(context, "coverage html") -@task -def pytest(context): +@task( + help={ + "pattern": "Only run tests which match the given substring. Can be used multiple times.", + "label": "Module path to run (e.g., tests/unit/test_foo.py). Can be used multiple times.", + }, + iterable=["pattern", "label"], +) +def pytest(context, pattern=None, label=None): """Run pytest test cases.""" - exec_cmd = "pytest -vv --doctest-modules netutils/ && coverage run --source=netutils -m pytest && coverage report" + doc_test_cmd = "pytest -vv --doctest-modules netutils/" + pytest_cmd = "coverage run --source=netutils -m pytest" + if pattern: + pytest_cmd += "".join([f" -k {_pattern}" for _pattern in pattern]) + if label: + pytest_cmd += "".join([f" {_label}" for _label in label]) + coverage_cmd = "coverage report" + exec_cmd = " && ".join([doc_test_cmd, pytest_cmd, coverage_cmd]) run_command(context, exec_cmd) From 3c4963dceb9145b8e7ef84a1585a947133f2e17d Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 10:32:44 -0600 Subject: [PATCH 09/13] Fixed mypy errors --- netutils/config/parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netutils/config/parser.py b/netutils/config/parser.py index ffa5f58e..9fa18424 100644 --- a/netutils/config/parser.py +++ b/netutils/config/parser.py @@ -1496,7 +1496,7 @@ class PaloAltoNetworksConfigParser(BaseSpaceConfigParser): "set deviceconfig system login-banner", ] # Not used, but must be defined - banner_end = None + banner_end = "" def _build_banner(self, config_line: str) -> t.Optional[str]: """Handle banner config lines. @@ -1512,7 +1512,7 @@ def _build_banner(self, config_line: str) -> t.Optional[str]: """ self._update_config_lines(config_line) self._current_parents += (config_line,) - banner_config = [] + banner_config: t.List[str] = [] for line in self.generator_config: # Note, this is a little fragile and will cause false positives if any line in # the middle of a multi-line banner starts with "set ". From e8f6f4def8c80398ced33ade5508ee74d7cdd99d Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 10:32:51 -0600 Subject: [PATCH 10/13] Fixed pylint errors --- netutils/config/conversion.py | 1 + 1 file changed, 1 insertion(+) diff --git a/netutils/config/conversion.py b/netutils/config/conversion.py index 01a66ab5..9f9534b4 100644 --- a/netutils/config/conversion.py +++ b/netutils/config/conversion.py @@ -125,6 +125,7 @@ def paloalto_panos_clean_newlines(cfg: str) -> str: return newlines_cleaned_cfg +# pylint: disable=too-many-branches def paloalto_panos_brace_to_set(cfg: str, cfg_type: str = "file") -> str: r"""Convert Palo Alto Brace format configuration to set format. From 1253aa9bea631062cbc7d683be649efe146c5f93 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 10:42:12 -0600 Subject: [PATCH 11/13] Added additional changelog fragment --- changes/+invoke.housekeeping | 1 + 1 file changed, 1 insertion(+) create mode 100644 changes/+invoke.housekeeping diff --git a/changes/+invoke.housekeeping b/changes/+invoke.housekeeping new file mode 100644 index 00000000..ba229616 --- /dev/null +++ b/changes/+invoke.housekeeping @@ -0,0 +1 @@ +Added `--pattern` and `--label` options to the `invoke pytest` task. \ No newline at end of file From e7beda56045447fb5342111c0b22931a7118c525 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 14:54:30 -0600 Subject: [PATCH 12/13] Release v1.17.0 --- changes/+class.deprecated | 1 - changes/+invoke.housekeeping | 1 - changes/752.added | 1 - changes/780.fixed | 1 - changes/793.added | 1 - docs/admin/release_notes/version_1.17.md | 23 +++++++++++++++++++++++ pyproject.toml | 4 ++-- 7 files changed, 25 insertions(+), 7 deletions(-) delete mode 100644 changes/+class.deprecated delete mode 100644 changes/+invoke.housekeeping delete mode 100644 changes/752.added delete mode 100644 changes/780.fixed delete mode 100644 changes/793.added create mode 100644 docs/admin/release_notes/version_1.17.md diff --git a/changes/+class.deprecated b/changes/+class.deprecated deleted file mode 100644 index 1d198ba0..00000000 --- a/changes/+class.deprecated +++ /dev/null @@ -1 +0,0 @@ -Deprecated the public HPEConfigParser class in lieu of a private class that should be subclassed for specific HP platforms. \ No newline at end of file diff --git a/changes/+invoke.housekeeping b/changes/+invoke.housekeeping deleted file mode 100644 index ba229616..00000000 --- a/changes/+invoke.housekeeping +++ /dev/null @@ -1 +0,0 @@ -Added `--pattern` and `--label` options to the `invoke pytest` task. \ No newline at end of file diff --git a/changes/752.added b/changes/752.added deleted file mode 100644 index eae143e4..00000000 --- a/changes/752.added +++ /dev/null @@ -1 +0,0 @@ -Added custom parsing of HP Network OS devices. \ No newline at end of file diff --git a/changes/780.fixed b/changes/780.fixed deleted file mode 100644 index 80b6c888..00000000 --- a/changes/780.fixed +++ /dev/null @@ -1 +0,0 @@ -Fixed parsing of login banner in Palo Alto Networks config. \ No newline at end of file diff --git a/changes/793.added b/changes/793.added deleted file mode 100644 index e0e2804c..00000000 --- a/changes/793.added +++ /dev/null @@ -1 +0,0 @@ -Added hp_comware running configuration command to the RUNNING_CONFIG_MAPPER. \ No newline at end of file diff --git a/docs/admin/release_notes/version_1.17.md b/docs/admin/release_notes/version_1.17.md new file mode 100644 index 00000000..8554ec27 --- /dev/null +++ b/docs/admin/release_notes/version_1.17.md @@ -0,0 +1,23 @@ + +# v1.17 Release Notes + +This document describes all new features and changes in the release. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [v1.17.0 (2026-01-30)](https://github.com/networktocode/netutils/releases/tag/v1.17.0) + +### Added + +- [#752](https://github.com/networktocode/netutils/issues/752) - Added custom parsing of HP Network OS devices. +- [#793](https://github.com/networktocode/netutils/issues/793) - Added hp_comware running configuration command to the RUNNING_CONFIG_MAPPER. + +### Deprecated + +- Deprecated the public HPEConfigParser class in lieu of a private class that should be subclassed for specific HP platforms. + +### Fixed + +- [#780](https://github.com/networktocode/netutils/issues/780) - Fixed parsing of login banner in Palo Alto Networks config. + +### Housekeeping + +- Added `--pattern` and `--label` options to the `invoke pytest` task. diff --git a/pyproject.toml b/pyproject.toml index 2948af71..e89817f8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "netutils" -version = "1.16.1a0" +version = "1.17.0" description = "Common helper functions useful in network automation." authors = ["Network to Code, LLC "] license = "Apache-2.0" @@ -171,7 +171,7 @@ show_error_codes = true [tool.towncrier] package = "netutils" directory = "changes" -filename = "docs/admin/release_notes/version_X.Y.md" +filename = "docs/admin/release_notes/version_1.17.md" template = "towncrier_template.j2" start_string = "" issue_format = "[#{issue}](https://github.com/networktocode/netutils/issues/{issue})" From 289f308fcf582b6d7082df3bc83aa91c0d4fe6b5 Mon Sep 17 00:00:00 2001 From: Joe Wesch Date: Fri, 30 Jan 2026 15:06:35 -0600 Subject: [PATCH 13/13] Updated mkdocs with new release notes file --- mkdocs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/mkdocs.yml b/mkdocs.yml index 8d00a0cd..3160780c 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -124,6 +124,7 @@ nav: - Uninstall: "admin/uninstall.md" - Release Notes: - "admin/release_notes/index.md" + - v1.17: "admin/release_notes/version_1.17.md" - v1.16: "admin/release_notes/version_1.16.md" - v1.15: "admin/release_notes/version_1.15.md" - v1.14: "admin/release_notes/version_1.14.md"