Spectra Intelligence OpenAPI Specification (latest)
Download OpenAPI specification:Download
ReversingLabs Spectra Intelligence offers REST web services providing file reputation, file analysis, malware hunting and network indicator information. These can be used for incident response triage, malware analysis, threat intelligence augmentation, and other uses. The output format of API results is either XML or JSON.
TCA-0101: File Reputation (single query)
The File Reputation (Malware Presence) API provides file reputation status calculated by a proprietary ReversingLabs algorithm for the requested sample. The status can be: MALICIOUS, SUSPICIOUS, KNOWN (non-malicious or benign), UNKNOWN. Additional classification-related metadata and hashes can be requested using optional parameters.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
extended | boolean Default: false Example: extended=true Optional parameter that specifies whether additional classification metadata for the requested sample should be returned in the response. Additional metadata includes information such as trust factor and threat level values; malware type, family name, and platform; first and last seen times, and more. If the parameter is not provided in the request, the default value is |
show_hashes | boolean Default: false Example: show_hashes=true Optional parameter that specifies whether MD5, SHA1, and SHA256 hashes should be returned in the response for the requested sample, in addition to the rest of the Malware Presence information. If the parameter is not provided in the request, the default value is |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/databrowser/malware_presence/query/sha1/2cfbb1d2ee28644934bbd3baf6a6667905eee27b?extended=true&show_hashes=true&format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "malware_presence": {
- "status": "KNOWN",
- "query_hash": {
- "sha1": "2cfbb1d2ee28644934bbd3baf6a6667905eee27b"
}, - "sha1": "2cfbb1d2ee28644934bbd3baf6a6667905eee27b",
- "md5": "c8ef05f345b61d4892496b1f8ddae78c",
- "sha256": "624200f51a513c05cdcb948649367f725953da9753a23e7f62861eabdb1f79c9",
- "first_seen": "2017-08-06T19:56:25",
- "last_seen": "2024-12-12T09:38:10",
- "reason": "best_source",
- "trust_factor": 0,
- "threat_level": 0,
- "scanner_count": 38,
- "scanner_match": 0,
- "scanner_percent": 0
}
}
}
TCA-0101: File Reputation (bulk query)
The File Reputation (Malware Presence) Bulk API provides file reputation status calculated by a proprietary ReversingLabs algorithm for the requested samples. Up to 100 hashes can be submitted in one request. The status can be: MALICIOUS, SUSPICIOUS, KNOWN (non-malicious or benign), UNKNOWN. Additional classification-related metadata and hashes can be requested using optional parameters.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
extended | boolean Default: false Example: extended=true Optional parameter that specifies whether additional classification metadata for the requested sample should be returned in the response. Additional metadata includes information such as trust factor and threat level values; malware type, family name, and platform; first and last seen times, and more. If the parameter is not provided in the request, the default value is |
show_hashes | boolean Default: false Example: show_hashes=true Optional parameter that specifies whether MD5, SHA1, and SHA256 hashes should be returned in the response for the requested sample, in addition to the rest of the Malware Presence information. If the parameter is not provided in the request, the default value is |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "entries": [
- {
- "status": "KNOWN",
- "query_hash": {
- "sha1": "b363713a938afcd3c74603827fab79e935b2b09b"
}
}, - {
- "status": "UNKNOWN",
- "query_hash": {
- "sha1": "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
}
}, - {
- "status": "KNOWN",
- "query_hash": {
- "sha1": "a7afddb68260a60f86c02a021efba7f216c2e7cf"
}
}
], - "invalid_hashes": [
- "example_of_a_wrong_hash"
]
}
}
TCA-0102: File Reputation Override
The File Reputation Override (Malware Presence) API enables file reputation status override for the requested samples. Up to 100 hashes can be submitted in one request. The status can be: MALICIOUS, SUSPICIOUS, or KNOWN (non-malicious or benign). Additional classification-related metadata and can be specified using optional parameters.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Request Body schema: application/jsonrequired
override_samples
is an array of samples to override. Each sample must be defined by sha1
, md5
, and sha256
, and include new status
for those hashes and may include threat_name
, threat_level
and trust_factor
depending on the status
value. remove_override
is an array of samples which already have an override that should be removed. Each sample must be defined by sha1
, md5
and sha256
. Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "override_samples": [
- {
- "sha1": "9865c7ecda437034e1513cc43ae9a1f6f334bb7f",
- "md5": "294c7e5ecdc3e94c6ea3f5a7c9ccc581",
- "sha256": "3cdbba0294d51b060436952e23dcf6243dd53e52a7b41bf60ee90583f27bc4ea",
- "status": "KNOWN",
- "trust_factor": 0,
- "threat_level": 0,
- "threat_name": "Win32.Backdoor.Bifrost"
}
], - "remove_override": [
- {
- "sha1": "9865c7ecda437034e1513cc43ae9a1f6f334bb7f",
- "md5": "294c7e5ecdc3e94c6ea3f5a7c9ccc581",
- "sha256": "3cdbba0294d51b060436952e23dcf6243dd53e52a7b41bf60ee90583f27bc4ea"
}
]
}
}
}
Response samples
- 200
{- "rl": {
- "user_override": {
- "create_override": [
- {
- "sha1": "9865c7ecda437034e1513cc43ae9a1f6f334bb7f",
- "md5": "294c7e5ecdc3e94c6ea3f5a7c9ccc581",
- "sha256": "3cdbba0294d51b060436952e23dcf6243dd53e52a7b41bf60ee90583f27bc4ea",
- "status": "KNOWN",
- "trust_factor": 3
}, - {
- "sha1": "2cfbb1d2ee28644934bbd3baf6a6667905eee27b",
- "md5": "c8ef05f345b61d4892496b1f8ddae78c",
- "sha256": "624200f51a513c05cdcb948649367f725953da9753a23e7f62861eabdb1f79c9",
- "status": "MALICIOUS",
- "threat_name": "Win32.Backdoor.Bifrost",
- "threat_level": 2
}
], - "remove_override": [
- {
- "sha1": "00000aae8c7a59999e156524a8d6fd35009f4275",
- "md5": "77459f04fde5c9945ed57508bfe54922",
- "sha256": "c88f99d08545143779123578804d71e83db8c0dfeb00284b646e3a3982568034"
}
]
}
}
}
TCA-0102: File Reputation Override (list)
The File Reputation Override (list) API lists all existing file reputation status overrides for the requested user. The hashes are sorted. Up to 1000 hashes will be returned. If there are more than 1000 active overrides, next_hash
value in the previous response may be provided as the start_hash
of the subsequent request to enumerate all hashes. Find more information in the official API documentation.
Authorizations:
path Parameters
hash_type required | string Enum: "xml" "json" Required parameter that defines the type of hash to be returned. Supported options are sha1, md5, and sha256. |
query Parameters
start_hash | string Example: start_hash=9865c7ecda437034e1513cc43ae9a1f6f334bb7f Optional parameter that specified the first hash in the response to be returned. Enables pagination. |
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/databrowser/malware_presence/user_override/list_hashes/sha1?start_hash=9865c7ecda437034e1513cc43ae9a1f6f334bb7f&format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "user_override": {
- "hash_values": [
- "0000000000000000000000000000000000000000000000000000000000000000",
- "0000000000000000000000000000000000000000000000000000000000000001",
- "0000000000000000000000000000000000000000000000000000000000000002",
- "0000000000000000000000000000000000000000000000000000000000000011",
- "0000000000000000000000000000000000000000000000000000000000000012",
- "0000000000000000000000000000000000000000000000000000000000000032",
- "0000000000000000000000000000000000000000000000000000000000000066",
- "0000000000000000000000000000000000000000000000000000000000000077",
- "0000000000000000000000000000000000000000000000000000000000000088",
- "028683657d248fbe190b3df024242f81667ffafe85897e64467c4c12303d62e3",
- "03198adb696f72a48cb6bc0e511976c8c769c89e95d2bae08de85fe7f8950b41",
- "033486a148fdbde5220320cd3a2eb5d4fcb635a61f7d804c5e243f1ed44b3fc8",
- "04345cdf952a9bf3f9d2b1481f8f1ce0ec3a1ba37109920d350a4d0464c9e476",
- "062d3dc34cc401c95fedd5a733b6d14d3637e4576fb0a9ca17492690abc132b1",
- "066555b967516408b70a588235edc2beac84ac39bddb050c739ace024f905aa3",
- "066a8f4ca87b6f4403280473d2a40adcaa6199290382c3363c268652c4e61b1a",
- "06922cf986e8ac45a6f207025a3a5fead0e286b3e00e84d24ce41b634e966033",
- "070eff2312357337089494e7823cc0eb0799952e61e4bbcbfdc8567d92118a52",
- "08ec79c415f61aedd508029ceffba99dd70ff328b2f5b7e635da140e6130a99c",
- "09f46a1fa84e7a26de7e64f6f28c13202dd2a3031c1e1963da82a27cce3d3af8",
- "0ba30532b48bc3be0012de3e360c02a1a62edf8768561f32f4ec1c686563f416",
- "0bfedb6442631437889f0ccfb96aae3d69e57478cfd6a65498d1486fb258a262",
- "0c8c83349e77b4a4c348e8d508ae6717151ef60198b41ff62ce9ed98ff3e7e70",
- "0cf0aadcc0449f9b9f39dc09bf0a5179d9edc86ed42215b602f72f4fd7a47d10",
- "0e7d7b0dae8c6851b560067a65c9c225d27648fd5418fb1644425d4e80405336",
- "0e9ad9ceb3caa39a8389d4b0b5b4d99c99fbebcf78966b430d2e58800a8920dd",
- "0f519fd853a3c2440f153ffccba614117d59348d139c3c58a180e0f49b41fbaa",
- "10255d13d88d21b553a21d293f63258dd749eecf6759387c5782de4a6ba71725",
- "167c9f50f62bd115e3d0d29f22270ce9c100c4ddc781019d27b7c2483071aeab",
- "16acb5da5f26e1e5d82ab197230542c37b558b2ccd0e5d2839273ceb6828b0f0",
- "175c97ec61687b9409ecb20a79c194ea563e9b9d3c5ce643704cd24580da3899",
- "176624d2e51631a148f3fbbf1946cbd2aadcf42149557b7aa6c9daf4494d0cd7",
- "178a754db1881ef6d44a1c5bf30e5571f4c1cf1473689e412057c712ce751827",
- "17ef135763d9bb1d2a44ac0d66ed01d751224c426b5632121e63b2cbe90907fa",
- "1a2fce9375bfc1d5ee968b355cdad7d8994938adefa107aa17b6c09574823b3e",
- "1ad6e1a6f3266fe2bd6c0bf09a8cf69f27ec41567fcf3884c4ace3aa09a93999",
- "1befd69d988a8aacc85835eaa7f6fcdc2a5a07be7ab42a3d20a8129efa194c5c",
- "1dc79772007ef9593393e8142d3090f3834c4fd38aa66f0aeb1ea98373e7d24b",
- "1dc9bfb2599a653fd0d492b1719835f3e8203ac6238e081b36974ffe4b4dcea1",
- "1e2a3f59101dcd48b6963a2575dc3ecb54f646f97a912bc6cf9b9697f67198f8",
- "210b7d3c1b7d34cf29a818af4a5f784b91eac463da4b62ae207ef8243ce920ae",
- "2157615d27980c09a252d9b2bbb94a018dbe5dda95311993cd6b435f2cd36dbe",
- "218cfd4df5d396cd6ad9ec3317aa0f6873da17456a5ae50cf53a166e079ad7ab",
- "224af283b6c2e0ec5f7cfa8c55b7f070a5e9ef3922b192c31921eaee9c442898",
- "225a8d538f146c40198c0be2981e1df66c1dce7399d538c5af14d45aaead7a4a",
- "2366d9ca48ee60dd310a4d7a741510b2955f2420c708671bc99cb74b71662b32",
- "23aacce348de7d2cb9e54eb8bacd86bdf1e9da88583d035b547647fac147d147",
- "23ca60aaf9443a764e8326421dbecc0a59a40f971597e882ae7cc30640c5a415",
- "263256823de1b90e47eb462a97b35f53bbeb60485c64524e8b96ad45aafed1fb",
- "281631390e6c35c336bb442e93398d1ceb07a6fd4c2a9075b802355126412ab5",
- "289020281057dcacfd3f5ede649425b911fbedd528d78ac7fcd314b23c496872",
- "28e64a3a37502be710724921873c84510c6c7490b906e70261b2ca6005217fc1",
- "291fe764f8e244357a089ed021b4c62be3f33c6d93726bfe81ab5f95b6e5ee04",
- "2bee0f36a8497badd2c4abe6fe22eac33f992f3b0160e4ce9de12518f5738b1b",
- "2d0372385a367b6caad663012078f19fb2b90837cf0cc970e76f9f4e2cb9e6ca",
- "2e4da7e189589cded8aefd07ea23d392607e141a0be525e109d2e6b7bb2d2539",
- "2e68a7bd65f24084138b42daf084449e4a391a9abe968b41dbb6f7afa24cf3d3",
- "2f6ae770a5d56ed8a2cfe262e196363b5c80e58468c66ff36cdf9c75306c2c55",
- "2fd3241e9686c672aaab125aa7af104f474e383d505fb3f61a0923e3f16e3b15",
- "30e13ea12c858e528788127eef8c68404275b876e803d1da32f686153b9eacae",
- "312acd8be93cddb708ca790f722485085b6ca6e1d7ff5717d977fce59ede53d8",
- "3480522b71d4bcdafda5986dfa3a488a3fff3f5d7852f79958794852b377400b",
- "36fa3c5749c3ad28d3ff0976f42b01798ca0762dcff3b3374704f008a1c28c51",
- "374136c3136dfe14eb3b18908f64fa21b00eb0d8456d2de9e135d3b29cd1de2f",
- "38b453c39417bdcdcb7bcffe0705286d039514499ead8f5b55c42d76a7543270",
- "39e664cee345c36935be3167a84b8b3392145a37ee533d1f395568e4560ab823",
- "3a0abb3538fe2fbcce9019b4e0b2cab79a48d1166245be9940674f70044958b8",
- "3cdbba0294d51b060436952e23dcf6243dd53e52a7b41bf60ee90583f27bc4ea",
- "3d11313e007bc06f6b7458f88820a1bb541662cfe736c07139471c3cb40c8178",
- "3e92964788987ba997b8fdbbf6bbf6929a6157c92b58bab55507fa04d80ec575",
- "3ea4220e74e38b56b71c6584032ab47e3220e63111187b47be2188a05970a49a",
- "3f1eb348bb7f682cb6359039d11f7933c317cc0cd1539c5ecb25538448648b66",
- "3f686e994eaf061eee9d4bafb8f58ce9dbf3ea93f7fe190491e284fd13ab2ffe",
- "3f731ef06e654c4f3431f20e0b47678a2b62abe32a129343f32e698a812ddc4d",
- "3fb674bf204edd66723cd92cb955d3c69589ed740e6343b60b49977900b06e00",
- "4275c1049cbf1e03800073344a8c5368c54f95462d46be5936fd57f580987933",
- "42c78e24cba012843b1dc3aba014e4dbb6ff30fd7de8676e00ef9c7a55d7ac7d",
- "438fac43605314b17e683c977127143ce38c3e0d2c1d112ff265dd5f9bf8ce7a",
- "445ebc1527d87208606b40edf8e585819743e0aed9a235d85808930e4472c9cf",
- "49f7eb66dfeca40a20bd74dd966da3a8b838e5847a2a28c9985a7f6b76889f9b",
- "4b8356d9cdbecc15a8f48a1d92013f243463fec214ec79a08d7fc6abf751a74d",
- "4dc3b9b53035ca5e36c5e42a0e927ff419745892f2fd5129d62890afc55de8c3",
- "4f0f1b4bc06a8cf1152befefcf2a84529379099c22a279c221665d2f48b38490",
- "4f30575ab59b4abb9eb451bb4f23869e65e8c5d54cea1303b928d6d5a3253281",
- "513436aa7d32c1c86b91163c3032fd2e98a09200547caa8c170724b28f17f013",
- "56319e54eea7229041696d727b1d9615dfdad6cf3087685a04ace5f92b190e52",
- "56622fc8feeadcdf6a0587f81608e60fd65b4a6f7152a282c8c42522a4bc9d1e",
- "5795e0ff4d0cc8cf46cd5a5aa996d83726ba69dd24f84bf41b7ec2e2d95f2c1d",
- "57d7e45a6720520b51ecd7cf6de504674edffba5a7779e2798ea2fc7b54cab7f",
- "58adf537d91e23574bfd4fdc0b7a6130bab417a88c1e225667fa49f55420bad9",
- "5ad58fb772cfba07b8966704993ba6bb698ab8fa27caf63d216324edbee87562",
- "5c394a12b13deec38d38b9cda6d44e4c8ebaa7b0a241815ad7a8b5ff69812890",
- "5de34ad31088ce24693bf0cb7cc76390a471c56d0c4335a8de8610e99dcffc5c",
- "5e817ed8ec0c88a55538bd99310048000eb7c67f3219f487ecb3b9db0fa3bb26",
- "6051a37de81dd40a7622c4b8f234b9f11fa04b8a24956992223d59c044ab7eae",
- "60f67c0adcf39742a6460b8e19953c5a3ce143549fdd1a035761a436d7255c17",
- "61f935e933c2ea41f7db43f0a1ef221c1ae62b3a2213b97a9525e32fc4fd92f8",
- "622a7cf0a2db88132fcad25cd5d1eda8209ed8c82c79516db2b79c99474eff80",
- "624200f51a513c05cdcb948649367f725953da9753a23e7f62861eabdb1f79c9",
- "62754c5c2ed5d8329671d90e5b7670abecd9a0b0a8c99bc4d0a96b5d3a7a97ec",
- "6393fe8dd4721190f240e22feeb769675b6194a70cabd5a415c2364686a9089c",
- "63c9ca1508390c71e8dce1a9632e86d9bd3b387caa90fe1341879398b0ba8e6d",
- "63ebfa6c858bd61faac83f6071bcfa56a9287ff46dde04ea4f94d10ab3d5e54f",
- "668d2f96a53e2b3d304b864994649a5a550285940ba6837dfcae646b052a670a",
- "69bb7a7579eed1b502e971d35f0e453f99e71db888ae008569c4707d978745b4",
- "6a949ab631e822ca4ffeea4277a05b5431558cc14c056adf95c1ebb7136ead41",
- "6aeaa5913e2e1025d78476bb1bca9c0b35dab45dea480b3732dc6606f1319abf",
- "6b4747ec0ab952caf2abb9f845768b561cf8709350c612c21f67beea7fca7559",
- "6bb5e530b92eaebdc2cb9c4865bd64988a641763e3b908c40bc99089f771d437",
- "6c986d50b9df74d949c2c05e6ac2a837bfcf02ccbf115bd33f684de86c3c9fe2",
- "6cee610adefe12db06d5e18a07a0f98133be87b012fa15b544f95d6de060d9b5",
- "6ddece9c15d73d87e63a0dcbdb7c654a1d4cc26f2c3feefa158be85b5d354384",
- "6e12a954287cb0226950601b79246a5e55285011dea37e833fc95e9ded4ed976",
- "6e8f243b33e78fcc69f8989e7c15c077d5fb6d2368cdbf9ebd95462870cc3157",
- "70b733dd13d970f99c566064770f2028cd987e8e8dac573ec9baad49af34a6a2",
- "70f608e49dcac4bec7a4dbea1f2b62d2a770c5a47cc7429a6d1431527ad28fb2",
- "7190e17655a55879bf9ed12350eadeec252d8f770a8117be28c274a8194f3233",
- "73861a237c629fc10eb6ed58cee0b58e6ea8d2cf18432ed72399dea663adb2dc",
- "74aa98d05cdefa4d2fb7e9ad91933122468656f4571271726387979db0855c8f",
- "7582bdc88e666fc23878f5173aa408aceec3cd2af96f743e0998ca0afc88632e",
- "75e673a9a6d43db51fc717b3b31095dd0cfe466df74d2df0070d4d7047bdff3b",
- "781b6e2b816c4f2438de593b174cee4a3ca1ba58813057bbe69eb14f6ecccf1f",
- "7b71d7ce3106610a8b712fa6afe5d3189dd403d35a14208d3a5eddba6abe3cc8",
- "7cf856dae1f24b12dac514f051e75c01370f23ae0c4d405039177d0df4084f8f",
- "7d459493b4cdcb13b2dba1e2f33b83363226e2667e3babe544e407c36c815a1c",
- "7d6685e80462b2eb4bc52719d248475c2734ab8e917f3d910d6aa704f2273807",
- "7ef789d7d285c19302af5b88be34333b69fb078745402b208e7d0ce4321dca6c",
- "802dee6253b7a5e7e00863c62793f164ae1d30702c6bb8ced45eb48652cf237b",
- "802e5dc7e6a3f1ed895337cba9790f34f5d3b637ec7d2bb6181765a704dae794",
- "81998b88c672e2ee93bc3c0a4b0c5fb4c155a87035a92c8b93d48020813ab5f5",
- "827ba583a345f868968f92631f511a60170cbd52b2cd068b9662bcecd90b1793",
- "831534c9c0e85c06c0f5638b5361e29a4575c822bf8610da2ff4b38641fe030b",
- "8377c858dbfd9d6e08c6d9851fdad112571740768d08c3be1e69cdf9151692f1",
- "839b707c99a0070add380cffc7f35af4417c2bb57ab6785cc19c963d058e48ba",
- "850e054d2dca0a912efd64e9b744621417d2d8ed9ffe08761896b214a22b5c0c",
- "864e6ef5392edd7df15cb6bb3e4ff68b0fb83da3c7c6c5fa970be293513d5c3c",
- "86be4d01a69bda3886662ff6b863d963f480b914764f540c53745b3bef2593f9",
- "87053bfc81ed8cbd479ecd74934e50bd02c289abcb4ae455fdb29e0e223a597e",
- "877cc814493523819d7dc84673a770f39d8148417a6ed96131e4e34149417894",
- "879919b9139200e4079af3a70e2f199ba201da2b2e58334d1df149df169f7932",
- "882c9dbd1e2fff904671456cd678678746cb26fead02fd365806b6d57a91952e",
- "88aa882bcd7dfde1aa1b8e1ceb9fb23c596e5244608cad71429d9bf1de8d7c24",
- "88b33ffd17d130530c6f4daa1ad97abe5f2a27c8a95ef1b3029010ae0aa59f30",
- "88d6e4834302bcfce76d2463eca85ff82822b5e0f0fbbfb38ff9fdc4edfbd937",
- "8c13cfa1f89ddf3cf0a36bad9e685e6b7a7444b2a8fa955fbbb960d023602497",
- "8cac147b964c167e25312e42cd70330745167464d590f323afbcae752669c24e",
- "8cc2c6b0edfe3a1bb9fcb0484a26a35ef1ad8c2c80ac796b1702d008a3a43f45",
- "8d06dd68906651bf142cbfd8498fee05ced85651b14119407b09efff73aff0bc",
- "8d0d0531e33e841a47f0efa08fc2e278e5ef920d5ea448a1ff1be61c86768542",
- "8ee3aeee546777728b40c1e05830c6984efae6d0b61ebcba4e5560ff681add1f",
- "8f88b554faffb78e88705167b7e884a381172b36aa1e325548da826bace7ee94",
- "93fb9d6f09980b5e3f8e1eefe8a5b7f38be144aa64331daeddf33d4240b95eda",
- "94e9bb041817de30d6548b3fdb8fe2b0db7f98bee1a0b9f05b83d22d8f4f77d9",
- "9509a9575c0d197dcea3233e2f007c155f5bad743b7c0f932e2ed1d5ed024764",
- "976307aedba4df55ebbe8593c103814a22574b87310156da89b57fd66bc0069b",
- "98f527223feb28520feef8e6347ce034a724cb3cd1126291f7901258ee3348c1",
- "99a012ac2897f9f14045fda0a803f0038c98f4adaeddf27efda10cb8daff3339",
- "9a791b63f8e53b3abd85ba73e517dcea8452f8d4add2ef98ffa432e3dab97de0",
- "9b1f476a967c3368caa9504062f15744b0d9f6fb3d00b22e7b31ee3a9d7bf009",
- "9d9448a27f899f395587fcc4bdcfde3895cc59348e5afe427935dd87aa767445",
- "9f40156b0bcbd12c13c32eeaabd2b000b9d705fc85689dbb84d4b810aca817e5",
- "9f9838d452aa834532ec7d3ea3dfd4b032cd45c0f21cdd59562b6811d8a3c3ee",
- "9fa181400012dbcb2328a066b355ce9d8c238c945f13dee2163f55baf070d843",
- "a1ced561831069aaf687c3a9398985b1dc2a03008c12ffd74d233f4084393653",
- "a2697fa9405e6571f6399af2f8129834a146dd5b7f3c00ab97801baf6a247cfd",
- "a2ad22d8e857144cbf067b7420cbea2d840f03ec4edf306df1b6362bfb170ffc",
- "a631f511831042d3ecc36cad6eb6cb892df082dfc234781c03a1dfaf440dee89",
- "a6c1f6363433f48fdbf8a876b30f06e6c089766e430e8ad5d49718282f0cff4c",
- "aab2a2f251ac0de720c96b1cc7e90f67f11d6307d497f14cf3a4c7c479cea8ce",
- "aad64f8711ed627801ae4af8186fbbcdd9b453345405b5a906aee369742be136",
- "aadef66aab4779d87565209e6fa373f1ef811cb9c80b4f2324662cd10d1a872b",
- "adba28e3e9cba31570dd16acf78e7d757c288a1d1f3deae499e4aa9810d6f91e",
- "ae32048a2344ea2c373ea3c3be4b76e825f57d58a33cedc7bb25d9bbbae04dac",
- "af1e70d1ea3976db9f3e8854189d49c59ca73730f4407f4b2292177ef5b8cf7d",
- "afa8a32ec29a31f152ba20a30eb483520fe50f2dce6c9aa9135d88f7c9c511d7",
- "b3f2753fa7790ac84b471b4eb6d5fc2d0b7d213290b172868f0541ee876c44be",
- "b61ebc5cedd8254139ae5367d4c0944560c57e9465b69bdf197a1df6ae536d0b",
- "b8517a5d8d486f035672cfe79faa6a0a3eede0ef81b85522e8cafd9a4a74e499",
- "b88e740e3ec5719b4b3d439ef5c1c9972586e4cd945c1b87b62c50a8ae59af05",
- "bb12c754255480c0d11cff376b8b8ba766eda462635d1ab4105988175b4c54d1",
- "bb9f25f9080c56c87d58960eeb8aefe47aa50e05e193a4be41418d6df20aabb5",
- "bbf625732446eee2c5c58fe7158d0aaefd4e2a6a8255444521e7b319c92eeed0",
- "bda17805d69cdbf27905df11bcce644d32b59bf0001371d57f3714a444039170",
- "bde699c7654ac2a5ba8ac88dfa6bfa41dd51318f9a0275959c6cdf1668ca22be",
- "c125e0cfe1e60518d6f6dee3b3014fa4e7f09b3a31e696a7ace1dc57a1d5216d",
- "c1f3491a2531b3e3ef762cb1262df745c04697fde1197dd9b5e3929a1eb7207a",
- "c48d2ef849a058ab86131fe74d73bdab89f8357d935a9d6b19af2ead3a864db5",
- "c68126055926d62407e3339b5953decddb2a6e7b3fabfc6bb652edc0166a5ad2",
- "c80a2dbc950ce4dd324f4a022f70277b3ef195ec84b3e7edd42bc7e77d045019",
- "c89cfbe4665404504c5d9608d7d826c80106c89cd04d66694e56933c4628ef24",
- "c904936c55e2bc638c6ea921419a3d61ea39a724fd8f0535b4e07fc855f21c73",
- "cafdffd3b9ab8abcdd33f6cdda1c113046f710b27beeb3b1730da825351bbe5a",
- "cb8779b5b5317cb5342c29cb9ca6eda0578725e3d35c43cb71307d014e95be3e",
- "cc099536d992b25c21460ac1c51af567f358f307baf0aaa32b4c795c93213214",
- "cc16ec8062a3ed597edf121dc8e74170c70dc50159a70604f9e6f4256974c396",
- "ceb9b21a371357a81c8da26edd0273db11cea6375b57069192214c8094e43a0e",
- "cf3f20e60c1e16446912963b9f1db5e1d90838ebc3553c43bea946d28649cca3",
- "d0efbb37f4c1977cd630e640e44ea8607f9b530a644b1322acfe585241abc67d",
- "d1a5cb0dc850cf11e454614638b483b3209e532202e72310b1357bbd5d77b64e",
- "d21e92a8a72cf1f75dae14d3230afc4f13b9e202d154c1171031cbc7013d378f",
- "d2b55876138e0cdac7caa2bff4c08c5eb7054dc10bc3101686350d5321f8ac53",
- "d41758c4aa32e51c9c6158a2fa8255d09430ef780de5bb125a40c412e7031df3",
- "d425fe4b9a58fecffdae5316480657dd05f812e414e8f204905c86b1474b14be",
- "d58fe59cc75525e9093fa5668bffde95854406919ee981f4f1479dd63dd52fb3",
- "d610e8b9e1c2b34395b17b666610a52c3982aa9dd73039c68e933829c8ab467d",
- "d644080708b3655e4e7d5827675f17327dfd3e30e41c5f00ec41e274e7c6ff99",
- "d71e273448f9179665c1bf7b565b698352c7974f4d32308b41c88d97d2fbed7b",
- "d82e158d10a3b2814b89a14cdf4922ecfd28b6a4abb009bed11cb014412b5c42",
- "d8b8f64727832173aa1199700bef149f2883688c2b406385e076eb1ac6b82415",
- "dc2da2f72f41a47f6970a09eb1200db9632b5254de2103131493726908c9f9fe",
- "dc8ca477283c41ff8d4a2bb318f3a9aea426767c8c1e44bdb725ef5e63b65345",
- "dc9f4f22700beb2895197fa0995e25075feb14457fde09ff3ac46dd35d75661a",
- "dff0013b59a622831efaacbfa5e58b2524719c877816039b23567b2bb508b500",
- "e1201b9c17ab643e0f7863aa0d3b9b386d8f18774a5b9d5450f46718e38f495b",
- "e1b6c2424fc067f71e42ec89352352563a0369362815e12bfd1422ecfebaf7e0",
- "e455ddd310b60b3965b3c94e6019db75973e35a2cb3c842577cb018997a7e300",
- "e7bd3361ed8bd9889c6b125458bf62ef87a55e6f7cd199f519ec8d9b151172e1",
- "e97fe65d3216636e0c645b44851ad8c48220f91bff0a6cc132144b85f03b1d3c",
- "e996cef9f9b4531299feb715f169b47a16cee6f83e9d88526d9722693f4e7c13",
- "e9cc8acf46a0cb6ffc61d44620f42f6880ff688f86f03cbe01f0ab219a5dbf47",
- "ea502655648e878f7b8cf745a7d979dc2b19534e26b7fdd875556367af41925d",
- "ead1a9a10ede6bcc63f20929a5c32bb408485b3304ea23de9ee237daeacfa8e3",
- "eae4a8fc0e3085c4539b007dfc59095acad0f6f6c832e3109adb23dae24dcbab",
- "ec20303d559040d2f598f4a2ec0dd3be36c203f552136f4b0e7c125df2865809",
- "eceac3f3a28326377b449f9f100a100ad690c81ce1b8daac18b13ca84578b6e8",
- "efc4c036984efb7c267b61f3cb304a3fe33af35702024823ebcdd17856c6070e",
- "f08aef68c91dbf299a1713ccb2b3234576ef1c8a6c5c0ef20dcf97a2a6403868",
- "f236e1ee03254ec60bb0c6ba632564abe653ca6eac7dc9f6dec5b5e41264ba56",
- "f4e167b2772140a69cb2250850765ed13f9795a183d8947aafc435a5b8dcdd8a",
- "f7c6c7ea22edd2f8bd07aa5b33cbce862ef1dcdc2226eb130e0018e02ff91dc1",
- "faf5d1078b6a6b4fec4c11225880ecf934c1235bd9f812fc97fe33a1e957fcd1",
- "fb56eb44c5cda0c1af99353b3dce61be28fd91de351b124c96c65e3b46df3720",
- "fbfca5baf1e4578ccf43ffe11cb5bb32ae2ce1def9572045992ba54c155afdc5",
- "fd42536dcabe40f33349bf299dc185df39f2ab1c6c675c02937eae48bdf90ab4",
- "fdfe17edacf8f77359c45ce368189ed24c3203673b5977610587a019f2ebb63d",
- "ff490786b1cf50f92cea53aaa31fd0abe528f8c23e06320537ccecf494e5a4c3"
], - "next_hash": null
}
}
}
TCA-0103: Historic Multi-AV Scan Records (single query)
The Historic Multi-AV Scan Records (XREF) API provides cross-reference data (AV scanner scanning information, first and last seen date-time (UTC), sample type and size, first and last scanned date, etc.) for the requested sample. An optional parameter history
can be used in requests to this API to retrieve historical XREF record changes for the sample (if available).
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
history | boolean Default: false Example: history=true Optional parameter that defines whether the response should contain a history of XREF records for a sample (when |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/xref/v2/query/sha1/7d8f177243cfa055c95cbbf32ebc2d7e8c71d4fb?format=json&history=true' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "sample": {
- "sha1": "7d8f177243cfa055c95cbbf32ebc2d7e8c71d4fb",
- "md5": "e196466d4597bef92404f73892db5606",
- "sha256": "000e2bd65848674562b615696a28f2cb3ed974a3600dbfa52da1c6240bef4e76",
- "sha384": "23e0bf3a284ae10edfbc5f155eb9effa92678be7eae67bc68dd6f4cb99f4f458a2cb986ba6035fb24d14aa65ab7efb35",
- "sha512": "e9f7d04c903d28fe00a99aa2043ac9172e4c1a8d6a6c2bc06d8bd7fd656c1aeb613659a24eaf76f00553696a964529b50262214632c55138c5aa11a5b4e66b45",
- "ripemd160": "76a939882589b74cab5ff136f5724ae075c6496a",
- "sample_type": "PE32 executable (GUI) Intel 80386, for MS Windows, 11 sections",
- "sample_size": 417792,
- "single_scan": false,
- "first_seen_on": "2013-10-26T17:55:00",
- "last_seen_on": "2023-12-22T07:22:00",
- "first_scanned_on": "2013-10-26T17:55:00",
- "last_scanned_on": "2023-12-22T07:22:00",
- "xref": [
- {
- "scanner_match": 7,
- "scanner_count": 23,
- "scanned_on": "2023-12-22T07:22:00",
- "scanners": [
- {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T04:55:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T05:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T06:50:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T06:50:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T05:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-21T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T07:13:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T06:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T05:35:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T06:10:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T06:40:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-21T19:55:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T05:10:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-21T16:05:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T05:50:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-21T13:15:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-21T22:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T03:50:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T07:15:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T01:05:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T07:05:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-22T06:30:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2023-12-21T09:45:00"
}
], - "results": [
- {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}
]
}
]
}
}
}
TCA-0103: Historic Multi-AV Scan Records (bulk query)
The Historic Multi-AV Scan Records Bulk API provides cross-reference data (AV scanner scanning information, first and last seen date-time (UTC), sample type and size, first and last scanned date, etc.) for up to 100 requested samples. An optional parameter history
can be used in requests to this API to retrieve historical XREF record changes for each sample (if available).
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
history | boolean Default: false Example: history=true Optional parameter that defines whether the response should contain a history of XREF records for a sample (when |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "samples": [
- {
- "sha1": "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "md5": "ecae13117d6f0584c25a9da6c8f8415e",
- "sha256": "3316348dbadfb7b11c7c2ea235949419e23f9fa898ad2c198f999617912a9925",
- "sha384": "ec635fbf3c47a97bf33fc24fe6ee7b04da172537ad8eb01885f29432614c433398789505277ed350ad56648af98c207e",
- "sha512": "ee021c5aa94c55f1dbbe287200618d386799f21ce4e35af71c9e7474267ebaf5fde5436ea44d689c8abd9dbb24e76da9493f982453cad987d1ca003f9eb9ef34",
- "ripemd160": "3f756169279d4a50ee2931f653a1020c39951235",
- "sample_type": "ASCII text, with no line terminators",
- "sample_size": 4,
- "single_scan": false,
- "first_seen_on": "2013-12-14T07:53:00",
- "last_seen_on": "2025-01-10T11:12:00",
- "first_scanned_on": "2013-12-14T07:53:00",
- "last_scanned_on": "2025-01-10T11:12:00",
- "xref": [
- {
- "scanner_match": 0,
- "scanner_count": 38,
- "scanned_on": "2025-01-10T11:12:00",
- "scanners": [
- {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:56:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:00:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:33:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:56:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:02:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:03:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:14:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:04:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:04:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:09:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:42:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:31:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:06:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-09T13:58:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2024-04-26T10:14:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-09T13:58:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-09T14:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:21:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:21:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T00:56:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:46:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:46:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:08:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:08:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:43:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:32:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:32:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:26:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:26:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:49:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:20:00"
}
], - "results": [
- {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}
]
}
]
}, - {
- "sha1": "b363713a938afcd3c74603827fab79e935b2b09b",
- "md5": "3c78b35502b2693fefdfc51cba3a53a5",
- "sha256": "36bde66f289a35683683b041c6d8f418a5f36607b547da25d00ad55891e80b88",
- "sha384": "ce5d21c271776c88490850cad79c5794f7822165e402cf0abde2be1b5ebeb4e988eee6d9ce22ea06babe7ee3233e2c94",
- "sha512": "58941c13ad37895a59ef321bbac1c4818734c0ea305cee3eaab38b3d3ee90005843c334eff1a6d1f4bf9f90c0f1d458dac833ed24a9153761935d355fb0dbef6",
- "ripemd160": "1f0e050f8570a9e4a99ad38ef05903efac03db37",
- "sample_type": "ASCII text, with no line terminators",
- "sample_size": 6,
- "single_scan": false,
- "first_seen_on": "2018-05-29T05:53:41",
- "last_seen_on": "2025-01-10T11:04:00",
- "first_scanned_on": "2018-05-29T06:11:00",
- "last_scanned_on": "2025-01-10T11:04:00",
- "xref": [
- {
- "scanner_match": 0,
- "scanner_count": 38,
- "scanned_on": "2025-01-10T11:04:00",
- "scanners": [
- {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:56:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T08:57:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:33:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:56:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:02:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:14:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:02:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:02:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:09:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:42:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:31:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:02:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-09T13:58:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2024-04-26T10:14:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-09T13:58:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-09T14:01:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:21:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:21:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T00:56:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:46:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:46:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:03:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T11:03:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:43:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:32:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:32:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:26:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:26:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T09:49:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:20:00"
}
], - "results": [
- {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}, - {
- "scanner": "",
- "result": ""
}
]
}
]
}
], - "unknown_hashes": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
], - "invalid_hashes": [
- "example_of_a_wrong_hash"
]
}
}
TCA-0104: File Analysis - Hash (single query)
The File Analysis - Hash [RLDATA] API provides analysis results for the requested hash. The extent of analysis data returned in the response varies based on the file type. Note that the dynamic analysis report is only available with additional permissions.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/databrowser/rldata/query/sha1/a45ab18fb7a06dd5ecb44bf6c221a951f974059f?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "sample": {
- "sha1": "ed4800dcf00527000a7aad254625df5ac1b78781",
- "md5": "fcd541a7e549c585bb0f4bfa90af52a9",
- "sha256": "6ecd6595f66a1e09f6197d991a33f56383948ac5d883d34819e4d5ce93556ef5",
- "sha384": "e7108be5aef817b2542334c23a0761b7b4f25246db44466e4bc0066deda621fe16f396b8804ea1fdab726b515f9d121c",
- "sha512": "157a4a07b7e6655f208a0cd37621df8b4285b422523e9274463eac130be743377187e532a3671f392e2a7191145347aa89115e9e281955c7a961575bd25a3ec4",
- "ripemd160": "0955288526bc3ccdbe3c6abcc83682610ba0829b",
- "ssdeep": "24:oDZ+mCbj/CSUQEX1hXVLPP+5TN4t4j1SzsTjdcCll51:rR/JUQEFhl7P++t4jUzECCt1",
- "tlsh": "T13A11E9DF8723989FA2F219B394273094DA5B7AD9F020563349134C921E0B19DA77E544",
- "sample_size": 1085,
- "relationships": {
- "container_sample_sha1": [
- "ed4800dcf00527000a7aad254625df5ac1b78781"
]
}, - "analysis": {
- "entries": [
- {
- "record_time": "2025-01-15T13:26:37",
- "analysis_type": "TC_REPORT",
- "analysis_version": "3.0.1",
- "tc_report": {
- "info": {
- "file": {
- "file_type": "Image",
- "file_subtype": "None"
}, - "identification": {
- "name": "PNG"
}
}
}
}
]
}, - "xref": {
- "entries": [
- {
- "record_time": "2025-01-15T13:42:00",
- "scanners": [
- {
- "name": "",
- "result": ""
}, - {
- "name": "",
- "result": ""
}, - {
- "name": "",
- "result": ""
}
], - "info": {
- "scanners": [
- {
- "name": "",
- "version": "",
- "timestamp": "2025-01-15T09:47:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-15T09:47:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-15T11:50:00"
}
]
}
}
], - "first_seen": "2025-01-15T13:23:44",
- "last_seen": "2025-01-15T13:42:00",
- "sample_type": "PNG image data, 510 x 510, 1-bit grayscale, non-interlaced"
}, - "computer_vision_analysis": {
- "entries": [
- {
- "analysis_time": "2025-02-27T10:14:11",
- "results": [
- {
- "format": "QR_CODE",
- "category": "domain",
- "value": "master.dl.sourceforge.net"
}, - {
- "format": "QR_CODE",
- "category": "https",
}
]
}
]
}, - "sources": {
- "entries": [
- {
- "record_time": "2025-01-15T13:23:44",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_name",
- "value": "a100065a5a71766e7e3cbe7332fbabc5294ee294.png"
}
]
}
]
}
}
}
}
TCA-0104: File Analysis - Hash (bulk query)
The File Analysis - Hash [RLDATA] Bulk API provides analysis results for up to 100 requested hashes in a single response. The extent of analysis data returned in the response varies based on the file type. Note that the dynamic analysis report is only available with additional permissions. Find more information in the official API documentation.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "entries": [
- {
- "sha1": "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "crc32": "98574167",
- "md5": "ecae13117d6f0584c25a9da6c8f8415e",
- "sha256": "3316348dbadfb7b11c7c2ea235949419e23f9fa898ad2c198f999617912a9925",
- "sha384": "ec635fbf3c47a97bf33fc24fe6ee7b04da172537ad8eb01885f29432614c433398789505277ed350ad56648af98c207e",
- "sha512": "ee021c5aa94c55f1dbbe287200618d386799f21ce4e35af71c9e7474267ebaf5fde5436ea44d689c8abd9dbb24e76da9493f982453cad987d1ca003f9eb9ef34",
- "ripemd160": "3f756169279d4a50ee2931f653a1020c39951235",
- "sample_size": 4,
- "relationships": {
- "container_sample_sha1": [
- "9a6dfa1158a3a5594d828cc54aecb3adf25b0791",
- "fd52de404c18d73f37353bb7d74266e9226a7b4c",
- "62b295dd94a5f3a53ff6bb902c397103b8519b1e",
- "e2d89992d3ce90e7f15a22a5957fdd135e8e7058",
- "a455b1144988f4e1ddafd2a9a3af49aeefa10515"
], - "parent_sample_sha1": [
- "11b6af9a3f58ad692fe958eb11044ebf53b0a79d",
- "99dba7e826df697e57d4f0a2b623dce07b4fcd51",
- "bf312aa0765083f71f0d12a5eb96589d5fe03887",
- "9b9872f7f45da560975806a921c0a5578ef439cf",
- "c70b0d518b5e4fe215a8b07eaeed3a49b4fe1a77"
]
}, - "analysis": {
- "entries": [
- {
- "record_time": "2024-04-07T21:23:23",
- "analysis_type": "TC_REPORT",
- "analysis_version": "3.7.1.0",
- "tc_report": {
- "info": {
- "file": {
- "file_type": "Text",
- "file_subtype": "None"
}
}, - "metadata": {
- "certificate": {
- "signer_info": {
- "version": 0,
- "issuer": "",
- "serial_number": "",
- "digest_algorithm": "",
- "digest_encrypt_algorithm": "",
- "encrypted_digest": ""
}
}
}
}
}
]
}, - "xref": {
- "entries": [
- {
- "record_time": "2025-01-10T11:12:00",
- "scanners": [
- {
- "name": "",
- "result": ""
}, - {
- "name": "",
- "result": ""
}, - {
- "name": "",
- "result": ""
}
], - "info": {
- "scanners": [
- {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:56:00"
}
]
}
}
], - "first_seen": "2013-12-14T07:53:00",
- "last_seen": "2025-01-10T11:12:00",
- "sample_type": "ASCII text, with no line terminators"
}, - "sources": {
- "entries": [
- {
- "record_time": "2024-08-20T01:38:20",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "url",
}, - {
- "name": "file_name",
- "value": "landasan.teknologi.pendidikan.dan.pembelajaran"
}, - {
- "name": "request_sequence_urls",
}
], - "domain": {
- "name": "scholae.co"
}
}, - {
- "record_time": "2023-12-02T09:54:15",
- "tag": "reversing_labs"
}, - {
- "record_time": "2019-10-05T13:15:22",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_type",
- "value": "ASCII text, with no line terminators"
}, - {
- "name": "file_name",
- "value": "screenshot.txt"
}, - {
- "name": "malware",
- "value": "false"
}
], - "domain": {
- "name": "mydiv.net"
}
}, - {
- "record_time": "2016-10-30T05:15:44",
- "tag": "microsoft_whitelist",
- "properties": [
- {
- "name": "filename",
- "value": "word.txt"
}
], - "domain": {
- "name": "microsoft.com"
}
}, - {
- "record_time": "2015-12-03T01:23:22",
- "tag": "reversing_labs"
}, - {
- "record_time": "2014-08-27T00:50:40",
- "tag": "reversing_labs"
}
]
}, - "dynamic_analysis": {
- "entries": [
- {
- "dynamic_analysis_report_joe_sandbox": {
- "network": {
- "dns_requests": [
- {
- "type": "33",
- "query": "_VLMCS._TCP.example.org"
}, - {
- "type": "33",
- "query": "_ldap._tcp.dc._msdcs.WORKGROUP.example.org"
}
], - "domains": [
- {
- "ip": "unknown",
- "name": "_VLMCS._TCP.example.org"
}, - {
- "ip": "unknown",
- "name": "_ldap._tcp.dc._msdcs.WORKGROUP.example.org"
}
], - "udp_destinations": [
- {
- "port": 50023,
- "address": "192.168.2.152"
}, - {
- "port": 57994,
- "address": "192.168.2.152"
}, - {
- "port": 53,
- "address": "8.8.8.8"
}
]
}, - "joe_sandbox_version": "34.0.0",
- "analysed_on": "2025-01-10T11:21:23"
}
}
]
}
}, - {
- "sha1": "b363713a938afcd3c74603827fab79e935b2b09b",
- "crc32": "10dbbec4",
- "md5": "3c78b35502b2693fefdfc51cba3a53a5",
- "sha256": "36bde66f289a35683683b041c6d8f418a5f36607b547da25d00ad55891e80b88",
- "sha384": "ce5d21c271776c88490850cad79c5794f7822165e402cf0abde2be1b5ebeb4e988eee6d9ce22ea06babe7ee3233e2c94",
- "sha512": "58941c13ad37895a59ef321bbac1c4818734c0ea305cee3eaab38b3d3ee90005843c334eff1a6d1f4bf9f90c0f1d458dac833ed24a9153761935d355fb0dbef6",
- "ripemd160": "1f0e050f8570a9e4a99ad38ef05903efac03db37",
- "sample_size": 6,
- "relationships": {
- "container_sample_sha1": [
- "d7ec3017a32364f9670f76e29d813a0065bf2e81",
- "b5a01f94109c408af148b03e81f62242879bf74a",
- "6fbdcfc3b7f71ab52cd6568981b2b4391a1cae9d",
- "197b90da2efc37b4558aad0f58314403ee8d25a4",
- "1975d066d4645bddc3f6c85bda7de29fda3e9199"
], - "parent_sample_sha1": [
- "82d8f3cee8a9a3180c9e2a30c42da1527d7a7cc6",
- "1ea21252dc182f1c5de28b57d7b7ebf498241d6a",
- "e2a3e10524bed3cc6f6e43e7f3fd12b6b89099c9",
- "21d44ec3d12e1b55afb5113d7d3487fcd2fc59d1",
- "6748e2ec84ff48af1e67381a31d9a75ba09921d8"
]
}, - "analysis": {
- "entries": [
- {
- "record_time": "2024-06-24T22:21:31",
- "analysis_type": "TC_REPORT",
- "analysis_version": "3.0.1",
- "tc_report": {
- "info": {
- "file": {
- "file_type": "Text",
- "file_subtype": "None"
}
}
}
}
]
}, - "xref": {
- "entries": [
- {
- "record_time": "2025-01-10T11:04:00",
- "scanners": [
- {
- "name": "",
- "result": ""
}, - {
- "name": "",
- "result": ""
}, - {
- "name": "",
- "result": ""
}
], - "info": {
- "scanners": [
- {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:45:00"
}, - {
- "name": "",
- "version": "",
- "timestamp": "2025-01-10T10:56:00"
}
]
}
}
], - "first_seen": "2018-05-29T05:53:41",
- "last_seen": "2025-01-10T11:04:00",
- "sample_type": "ASCII text, with no line terminators"
}, - "sources": {
- "entries": [
- {
- "record_time": "2020-04-22T07:11:40",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_name",
- "value": "couchdb.override"
}, - {
- "name": "application_description",
- "value": "Extracted from DockerHub, travisci/ci-amethyst:packer-1513010293-3f2fb39"
}
]
}, - {
- "record_time": "2019-09-12T03:12:08",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_name",
- "value": "couchdb.override"
}, - {
- "name": "application_description",
- "value": "Extracted from bugswarm/artifacts:dnanexus-dx-toolkit-104692324"
}
]
}, - {
- "record_time": "2018-05-29T05:53:41",
- "tag": "external_feed",
- "properties": [
- {
- "name": "tags",
- "value": "malware"
}
]
}
]
}, - "dynamic_analysis": {
- "entries": [
- {
- "dynamic_analysis_report_joe_sandbox": {
- "network": {
- "dns_requests": [
- {
- "type": "A (IP address)",
- "query": "bg.microsoft.map.fastly.net"
}, - {
- "type": "A (IP address)",
- "query": "fp2e7a.wpc.phicdn.net"
}, - {
- "type": "CNAME (Canonical name)",
- "query": "fp2e7a.wpc.2be4.phicdn.net"
}
], - "domains": [
- {
- "ip": "192.229.211.108",
- "name": "fp2e7a.wpc.phicdn.net"
}, - {
- "ip": "199.232.214.172",
- "name": "bg.microsoft.map.fastly.net"
}
]
}, - "joe_sandbox_version": "34.0.0",
- "analysed_on": "2025-01-10T11:21:23"
}
}
]
}
}
], - "invalid_hashes": [
- "example_of_a_wrong_hash"
], - "unknown_hashes": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
]
}
}
TCA-0105: File Analysis - Non-Malicious (single query)
The File Analysis - Non-Malicious [RLDATA Goodware] API provides sample hashes, trust factor, relationships, size, and sources for benign samples only. If a malicious hash is queried, a 404 (Not Found) HTTP response will be returned.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/databrowser/rldata/goodware/query/sha1/a25b6db2d363eaa31de348399aedc5651280b52b?format=json' --user <username>:<password> --header 'Content-Type: application/json'
Response samples
- 200
{- "rl": {
- "sample": {
- "sha1": "a25b6db2d363eaa31de348399aedc5651280b52b",
- "trust_factor": 2,
- "crc32": "52520008",
- "md5": "ca083f61113e1fb8f539ecfa7c725fc8",
- "sha256": "10dbb2b27208c5566d326b47950657bf6b3c9a59e302598a128ad7125d5fb4fd",
- "sha384": "b2bad07d6a3df4b0ec0c8d5f9a4905c289f9348e9e18d41d1b6033576ddf655cf80bc405e059ded6742947d78e0bfeb8",
- "sha512": "da399c5edc81f9ba50cf49fbf11c8ed1f067f22984fd1284b6fe1d4cc30d5639dc079e08a3b2e029f4060e2c8fb7bdb58a52a595a4a57e3e8c8b9e581c87fe64",
- "ripemd160": "2be02239f2c1009ca093e2827591feba5114e117",
- "ssdeep": "768:xRMzxdfGYc0qGU+BmFswgfqqYjLvTOwYoVlom0gvzUc4Rys0jxw+:W+x0lERgfFYfrvZUm0g4bydjxw+",
- "sample_size": 40870,
- "relationships": {
- "container_sample_sha1": [
- "87668585f1f1b07b7247f1cc788a26d9498088d4",
- "84d552e4a829b7dc36feb638d374571067def34b",
- "7ce3cc9878c77de183e3fde7872660efdbbfdf39",
- "c46f607eab3c62598a0e0548bb46eab7f5440e3e",
- "817415fbac13de1597c33ee856af5b62983f1910"
], - "parent_sample_sha1": [
- "e704be3cb32cf3c4e3cc0232aad20bec2e5caf32",
- "41b3263c367d526d61d510bb3fe5859e9b003804",
- "4cca1a6b96d24cc00b876bd418dce38dbd77777d",
- "25ddf4f9c2ba04ce16be51a44133c10525224a64",
- "d48396c432169340b53bda22eab65ceea758ded7"
]
}, - "sources": {
- "entries": [
- {
- "record_time": "2022-04-13T14:19:01",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_name",
- "value": "a25b6db2d363eaa31de348399aedc5651280b52b"
}
]
}, - {
- "record_time": "2021-09-24T04:45:20",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "url",
- "value": ""
}
]
}, - {
- "record_time": "2017-05-15T16:34:49",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "filename",
- "value": "player.swf"
}
], - "domain": {
- "name": "klikhost.com"
}
}, - {
- "record_time": "2015-09-29T01:13:52",
- "tag": "reversing_labs"
}, - {
- "record_time": "2014-09-08T22:08:48",
- "tag": "external_feed",
- "properties": [
- {
- "name": "tags",
- "value": "malware"
}
]
}
]
}
}
}
}
TCA-0105: File Analysis - Non-Malicious (bulk query)
The File Analysis - Non-Malicious [RLDATA Goodware] Bulk API provides sample hashes, trust factor, relationships, size, and sources for benign samples only. Up to 100 hashes can be submitted in one request. If a malicious hash is queried, a 404 (Not Found) HTTP response will be returned. Find more information in the official API documentation.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "entries": [
- {
- "sha1": "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "trust_factor": 0,
- "crc32": "98574167",
- "md5": "ecae13117d6f0584c25a9da6c8f8415e",
- "sha256": "3316348dbadfb7b11c7c2ea235949419e23f9fa898ad2c198f999617912a9925",
- "sha384": "ec635fbf3c47a97bf33fc24fe6ee7b04da172537ad8eb01885f29432614c433398789505277ed350ad56648af98c207e",
- "sha512": "ee021c5aa94c55f1dbbe287200618d386799f21ce4e35af71c9e7474267ebaf5fde5436ea44d689c8abd9dbb24e76da9493f982453cad987d1ca003f9eb9ef34",
- "ripemd160": "3f756169279d4a50ee2931f653a1020c39951235",
- "sample_size": 4,
- "relationships": {
- "container_sample_sha1": [
- "9a6dfa1158a3a5594d828cc54aecb3adf25b0791",
- "fd52de404c18d73f37353bb7d74266e9226a7b4c",
- "62b295dd94a5f3a53ff6bb902c397103b8519b1e",
- "e2d89992d3ce90e7f15a22a5957fdd135e8e7058",
- "a455b1144988f4e1ddafd2a9a3af49aeefa10515"
], - "parent_sample_sha1": [
- "11b6af9a3f58ad692fe958eb11044ebf53b0a79d",
- "99dba7e826df697e57d4f0a2b623dce07b4fcd51",
- "bf312aa0765083f71f0d12a5eb96589d5fe03887",
- "9b9872f7f45da560975806a921c0a5578ef439cf",
- "c70b0d518b5e4fe215a8b07eaeed3a49b4fe1a77"
]
}, - "sources": {
- "entries": [
- {
- "record_time": "2024-08-20T01:38:20",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "url",
}, - {
- "name": "file_name",
- "value": "landasan.teknologi.pendidikan.dan.pembelajaran"
}, - {
- "name": "request_sequence_urls",
}, - {
- "name": "ip_address",
- "value": "104.21.4.212"
}, - {
- "name": "request_sequence_ip_addresses",
- "value": "104.21.4.212"
}
], - "domain": {
- "name": "scholae.co"
}
}, - {
- "record_time": "2023-12-02T09:54:15",
- "tag": "reversing_labs"
}, - {
- "record_time": "2016-10-30T05:15:44",
- "tag": "microsoft_whitelist",
- "properties": [
- {
- "name": "filename",
- "value": "word.txt"
}
], - "domain": {
- "name": "microsoft.com"
}
}, - {
- "record_time": "2015-12-03T01:23:22",
- "tag": "reversing_labs"
}, - {
- "record_time": "2014-08-27T00:50:40",
- "tag": "reversing_labs"
}
]
}
}, - {
- "sha1": "b363713a938afcd3c74603827fab79e935b2b09b",
- "trust_factor": 0,
- "crc32": "10dbbec4",
- "md5": "3c78b35502b2693fefdfc51cba3a53a5",
- "sha256": "36bde66f289a35683683b041c6d8f418a5f36607b547da25d00ad55891e80b88",
- "sha384": "ce5d21c271776c88490850cad79c5794f7822165e402cf0abde2be1b5ebeb4e988eee6d9ce22ea06babe7ee3233e2c94",
- "sha512": "58941c13ad37895a59ef321bbac1c4818734c0ea305cee3eaab38b3d3ee90005843c334eff1a6d1f4bf9f90c0f1d458dac833ed24a9153761935d355fb0dbef6",
- "ripemd160": "1f0e050f8570a9e4a99ad38ef05903efac03db37",
- "sample_size": 6,
- "relationships": {
- "container_sample_sha1": [
- "d7ec3017a32364f9670f76e29d813a0065bf2e81",
- "b5a01f94109c408af148b03e81f62242879bf74a",
- "6fbdcfc3b7f71ab52cd6568981b2b4391a1cae9d",
- "197b90da2efc37b4558aad0f58314403ee8d25a4",
- "1975d066d4645bddc3f6c85bda7de29fda3e9199"
], - "parent_sample_sha1": [
- "82d8f3cee8a9a3180c9e2a30c42da1527d7a7cc6",
- "1ea21252dc182f1c5de28b57d7b7ebf498241d6a",
- "e2a3e10524bed3cc6f6e43e7f3fd12b6b89099c9",
- "21d44ec3d12e1b55afb5113d7d3487fcd2fc59d1",
- "6748e2ec84ff48af1e67381a31d9a75ba09921d8"
]
}, - "sources": {
- "entries": [
- {
- "record_time": "2020-04-22T07:11:40",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_name",
- "value": "couchdb.override"
}, - {
- "name": "application_description",
- "value": "Extracted from DockerHub, travisci/ci-amethyst:packer-1513010293-3f2fb39"
}
]
}, - {
- "record_time": "2019-09-12T03:12:08",
- "tag": "reversing_labs",
- "properties": [
- {
- "name": "file_name",
- "value": "couchdb.override"
}, - {
- "name": "application_description",
- "value": "Extracted from bugswarm/artifacts:dnanexus-dx-toolkit-104692324"
}
]
}, - {
- "record_time": "2018-05-29T05:53:41",
- "tag": "external_feed",
- "properties": [
- {
- "name": "tags",
- "value": "malware"
}
]
}
]
}
}
], - "invalid_hashes": [
- "example_of_a_wrong_hash"
], - "unknown_hashes": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
]
}
}
TCA-0501: Certificate Index
The Certificate Index API provides a list of samples that are signed with the requested certificate. The certificate should be requested using its thumbprint value as a SHA1, SHA256, or MD5 hash. Only one certificate thumbprint can be submitted in one request. Optional parameters can be used in the request to retrieve additional sample metadata and filter the results by classification status.
Authorizations:
path Parameters
thumbprint required | string Required parameter that specifies the thumbprint of the certificate for which the user is requesting data from the service. The thumbprint value should be provided as a valid hash. Supported hash types are: MD5, SHA1, SHA256. |
query Parameters
limit | integer [ 1 .. 100 ] Default: 100 Example: limit=50 Optional parameter; specifies the maximum number of sample SHA1 hashes to include in the response. This value has to be an integer in the range from 1 and 100. When the parameter is not included in the request, 100 hashes are returned by default. |
extended | boolean Default: false Example: extended=true If the extended option is selected, each SHA1 hash in the list will be expanded with additional metadata: certificate validation status, classification, threat level, trust factor, malware family name, threat name, malware type, targeted platform and subplatform; SHA1, MD5, PE_SHA1, PE_SHA256 and SHA256 hashes; sample size, sample type, download availability, first and last seen dates (UTC). |
classification | string Enum: "known" "malicious" "suspicious" "unknown" Example: classification=malicious Optional parameter that allows filtering the results by their classification status. If this parameter is provided in the request, the response will include only those samples that match the requested status. Supported values are: known, malicious, suspicious, unknown (case-insensitive). |
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/certificate/index/v1/query/thumbprint/A909502DD82AE41433E6F83886B00D4277A32A7B?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "request": {
- "thumbprint": "A909502DD82AE41433E6F83886B00D4277A32A7B",
- "response_format": "json",
- "limit": 100,
- "extended": false
}, - "samples": [ ]
}
}
TCA-0501: Certificate Index (paginated)
The Certificate Index API provides a list of samples that are signed with the requested certificate. The certificate should be requested using its thumbprint value as a SHA1, SHA256, or MD5 hash. Only one certificate thumbprint can be submitted in one request. Optional parameters can be used in the request to retrieve additional sample metadata and filter the results by classification status.
Authorizations:
path Parameters
thumbprint required | string Required parameter that specifies the thumbprint of the certificate for which the user is requesting data from the service. The thumbprint value should be provided as a valid hash. Supported hash types are: MD5, SHA1, SHA256. |
next_page required | string Optional parameter used for pagination. To get the next page of results from the API, use the |
query Parameters
limit | integer [ 1 .. 100 ] Default: 100 Example: limit=50 Optional parameter; specifies the maximum number of sample SHA1 hashes to include in the response. This value has to be an integer in the range from 1 and 100. When the parameter is not included in the request, 100 hashes are returned by default. |
extended | boolean Default: false Example: extended=true If the extended option is selected, each SHA1 hash in the list will be expanded with additional metadata: certificate validation status, classification, threat level, trust factor, malware family name, threat name, malware type, targeted platform and subplatform; SHA1, MD5, PE_SHA1, PE_SHA256 and SHA256 hashes; sample size, sample type, download availability, first and last seen dates (UTC). |
classification | string Enum: "known" "malicious" "suspicious" "unknown" Example: classification=malicious Optional parameter that allows filtering the results by their classification status. If this parameter is provided in the request, the response will include only those samples that match the requested status. Supported values are: known, malicious, suspicious, unknown (case-insensitive). |
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/certificate/index/v1/query/thumbprint/A909502DD82AE41433E6F83886B00D4277A32A7B?format=json' --user <username>:<password>
Response samples
- 200
{- "JSON Example Response for extended": {
- "$ref": "../components/examples/certindex-extended-example.yaml"
}, - "rl": {
- "request": {
- "thumbprint": "A909502DD82AE41433E6F83886B00D4277A32A7B",
- "response_format": "json",
- "limit": 100,
- "extended": false,
- "page": "0133a64a3e360138da5820e25178490577d0400d"
}, - "samples": [ ]
}
}
TCA-0502: Certificate Analytics
The Certificate Analytics API provides certificate analytics for the requested certificate and its chain of trust. The certificate should be requested using its thumbprint value as a SHA1, SHA256, or MD5 hash. Sending requests using the GET method allows only one thumbprint per request, while the POST method accepts up to 100 thumbprints in one request. Find more information in the official API documentation.
Authorizations:
path Parameters
post_format required | string |
thumbprint required | string Required parameter that specifies the thumbprint of the certificate for which the user is requesting data from the service. The thumbprint value should be provided as a valid hash. Supported hash types are: MD5, SHA1, SHA256. |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/certificate/analytics/v1/query/thumbprint/18254B1DC375B74E339EB99ABFE31AF0D735CB5A3B535570731175811D735B0D?format=json' --user <username>:<password> --header 'Content-Type: application/json'
Response samples
- 200
{- "rl": {
- "request": {
- "thumbprint": "18254B1DC375B74E339EB99ABFE31AF0D735CB5A3B535570731175811D735B0D",
- "response_format": "json"
}, - "certificate_analytics": {
- "certificate": {
- "common_name": "Microsoft",
- "valid_from": "Sep 3 17:25:37 2018 GMT",
- "valid_to": "Oct 3 17:25:37 2018 GMT",
- "signature_algorithm": "sha1WithRSAEncryption",
- "signature": "CB1D7E0B933642F8B9CA16C90825B6FE7C449932DFBB2B6651077E73583394B37551B2AA2880C7B0F4C2E7289D0743996ACB34CB8FE71D0438072F921F3E7A53E547970B4BC8928D2F18ED9FCCA8062D46A6EBFE24166523DF9191AF84F8FCD3450D82E0556031E7580494597661EB155DA13D744F0BADCD14510FF29C18499BDB3239926A0281FB0090EF548D2AB7DC68A952CFAC1B48ED459E777EA9136DAAA33ACB5149748146DC7138FE7E8F06978B12F8B2B0F47CA24E927EB6A3A8A26A6A85AD046F1D8897F3843A072E3695BAAA4AC39797D66C7A6C1E50F1F6B3B1D9131288343BF44436A071B36B5137F206025550755F16D7E79D02709ACF3235FD",
- "extensions": [
- {
- "name": "X509v3 Key Usage",
- "value": "Digital Signature, Non Repudiation",
- "is_critical": "True"
}, - {
- "name": "X509v3 Basic Constraints",
- "value": "CA:FALSE",
- "is_critical": "True"
}, - {
- "name": "Authority Information Access",
- "value": "OCSP - URI:http://ocsp.globaltrustfinder.com\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Certificate Policies",
- "value": "Policy: 1.3.6.1.4.1.15945.1.1.1\n User Notice:\n Explicit Text: Warning: Certificates are issued under this policy to individuals that have not had their identity confirmed. Do not use these certificates for valuable transactions. NO LIABILITY IS ACCEPTED.\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 CRL Distribution Points",
- "value": "\nFull Name:\n URI:http://www.globaltrustfinder.com/crls/AscertiaPublicCA1.crl\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Extended Key Usage",
- "value": "Code Signing",
- "is_critical": "False"
}
], - "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "2377666edb5a4d5656f68e002efb8415"
}, - {
- "name": "SHA1",
- "value": "4f0333347b6f953b33966e976f24c5da36d75143"
}, - {
- "name": "SHA256",
- "value": "18254B1DC375B74E339EB99ABFE31AF0D735CB5A3B535570731175811D735B0D"
}
], - "serial_number": "9935F30E9D6FECB0873E4114E000E1C776B3D432",
- "version": "2",
- "issuer": {
- "common_name": "Ascertia Public CA 1",
- "valid_from": "Apr 21 12:15:17 2009 GMT",
- "valid_to": "Apr 14 23:59:59 2028 GMT",
- "signature_algorithm": "sha1WithRSAEncryption",
- "signature": "949497A1A31399BA864A5C8B658B3E824CAC6F744C02DB8A01994B5CD360BB08C14C5FC7456776147F614EDD5107F9BC53E1CD07FD9B09BDBE2753F56C1DE968348660E24FC2E1E72ED3E17CAA8EE30A377729EDE0C592B482521BD3F0B8369FFAB179E24C0F7821B45868C97B48E40FFA0A63C706470D32D4190213912A3A49E35C126BEBC7EAFD53CC2F28B70FB1BB18320243BF8519A6981220183BB0C4A7CBADD05045959E051996A87EE0AD0944D20618A41152E05968AF006A8E2203A7A147E763AB2D2F602D5D9FD5E9B1310025C21DCB3019B0BD4B5342CFBEF0CF285F61295D90881DEA0E10510C6F3984BF823CF32A281C9C5C4CBD36EAF725FF52",
- "extensions": [
- {
- "name": "X509v3 Key Usage",
- "value": "Certificate Sign, CRL Sign",
- "is_critical": "True"
}, - {
- "name": "X509v3 Basic Constraints",
- "value": "CA:TRUE, pathlen:2",
- "is_critical": "True"
}, - {
- "name": "X509v3 Certificate Policies",
- "value": "Policy: 1.3.6.1.4.1.15945.1.1.1\n User Notice:\n Explicit Text: Warning: Certificates are issued under this policy to individuals that have not had their identity confirmed. Do not use these certificates for valuable transactions. NO LIABILITY IS ACCEPTED.\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Subject Key Identifier",
- "value": "30:82:01:22:30:0D:06:09:2A:86:48:86:F7:0D:01:01:01:05:00:03:82:01:0F:00:30:82:01:0A:02:82:01:01:00:CF:58:F2:33:C4:B3:D9:1D:F9:4F:11:DB:B8:E3:B6:D6:BC:A7:21:37:57:2E:7B:A9:0C:94:B3:CB:12:F0:47:5A:CE:21:70:5E:13:83:9C:3E:CC:A3:FE:9E:BD:53:D6:D8:30:64:3F:8A:6E:5D:C4:1B:52:B0:11:F5:D9:08:D0:4E:F6:04:4F:FE:FF:24:72:5F:0D:AC:B4:AA:7C:34:F8:DB:0A:58:26:6B:34:BB:AC:69:34:28:CC:F1:85:6B:92:17:90:95:DE:9F:8B:F1:DF:A3:8A:D5:10:48:56:78:71:39:5E:34:9D:68:BB:9A:B3:09:F3:FD:64:0E:27:5D:88:9E:3A:CE:C4:E7:6E:F1:FB:F2:1D:51:ED:EB:87:D6:D3:B9:C1:30:8F:8D:A7:C9:CD:5D:0F:EB:7E:7F:04:9B:5F:46:C6:07:B3:3F:CD:BA:95:B1:57:F4:9B:6F:E6:B4:8A:18:65:2A:E0:0F:40:00:0E:44:70:C0:7E:F8:06:7A:B5:6A:33:17:F4:9B:31:19:35:44:BD:1B:06:39:FA:96:69:E7:A2:55:94:69:DF:21:8D:C1:D1:09:F6:9E:EB:98:A6:73:20:A1:D5:99:77:08:22:B9:FC:E9:1D:B3:E8:59:F0:D2:10:70:9A:29:0E:2D:CE:EC:44:38:73:17:72:41:37:65:02:03:01:00:01",
- "is_critical": "False"
}, - {
- "name": "X509v3 CRL Distribution Points",
- "value": "\nFull Name:\n URI:http://www.ascertia.com/OnlineCA/crls/AscertiaRootCA2/AscertiaRootCA2.crl\n",
- "is_critical": "False"
}, - {
- "name": "Authority Information Access",
- "value": "OCSP - URI:http://ocsp.globaltrustfinder.com\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Authority Key Identifier",
- "value": "keyid:30:82:01:22:30:0D:06:09:2A:86:48:86:F7:0D:01:01:01:05:00:03:82:01:0F:00:30:82:01:0A:02:82:01:01:00:96:37:BE:9E:E0:D9:3E:A6:86:13:17:F6:4A:F3:A9:07:F3:16:68:D5:7F:44:16:47:F3:21:9F:7D:FC:E4:FF:A4:F4:0B:BE:CD:F4:C2:06:03:E2:EC:A1:44:14:C5:90:A1:9F:D1:D1:F7:1E:32:B3:D4:DF:52:14:9B:9D:D1:EA:9B:C6:D1:F7:60:FA:FC:AD:48:C7:93:18:EB:5F:7E:0B:C4:21:56:04:DA:23:E1:3D:C5:C3:72:C6:9D:3A:46:78:EE:B1:11:A1:03:01:DB:DD:22:79:B7:04:9B:E9:1B:85:56:11:2D:D9:ED:22:6D:79:A2:1B:90:D9:AA:0E:7D:03:85:1A:4C:15:78:8D:2A:06:4A:35:62:1C:24:CD:59:19:6F:7E:39:93:BB:BF:15:19:AC:E3:C1:7D:C7:A9:95:68:3B:D1:3A:2B:73:C4:C1:60:BE:CF:BF:5F:E0:EA:4B:99:08:EE:C3:C7:59:C5:E9:A8:22:F4:60:88:1D:19:0C:AD:C8:E0:B8:8A:A4:83:CA:92:2F:E2:96:C7:05:AE:2A:2F:18:1C:11:B8:8B:BB:C8:82:F1:CE:28:BD:A5:9E:67:68:7B:AD:D6:44:01:BD:C1:41:DB:EB:C7:6E:C0:17:35:B4:80:0F:A9:A9:BD:D0:C4:2B:33:28:53:1B:38:70:23:B6:83:02:03:01:00:01\n",
- "is_critical": "False"
}
], - "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "c00947372e2954d2202b82c0b435810e"
}, - {
- "name": "SHA1",
- "value": "36d8f9de10381aaee9bca2aebca8b75804f49ea7"
}, - {
- "name": "SHA256",
- "value": "74FBDED7D182E0C8BD89EE7F277EC99A18688265B28918D24E8787CFE9E70599"
}
], - "serial_number": "E6",
- "version": "2",
- "issuer": "Ascertia Root CA 2"
}
}, - "statistics": {
- "unknown": 0,
- "known": 1,
- "malicious": 0,
- "suspicious": 0,
- "total": 1
}, - "classification": {
- "status": "undefined"
}, - "certificate_first_seen": "2018-11-25T23:50:11"
}
}
}
TCA-0502: Certificate Analytics
The Certificate Analytics API provides certificate analytics for the requested certificate and its chain of trust. The certificate should be requested using its thumbprint value as a SHA1, SHA256, or MD5 hash. Sending requests using the GET method allows only one thumbprint per request, while the POST method accepts up to 100 thumbprints in one request. Find more information in the official API documentation.
Authorizations:
path Parameters
thumbprint required | string |
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
thumbprints
is a required parameter that specifies a list of certificate thumbprints for which the user is requesting data from the service. Each thumbprint value should be provided as a valid hash. Supported hash types are: MD5, SHA1, SHA256. Up to 100 thumbprints can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "thumbprints": [
- { }
], - "format": "string"
}
}
}
Response samples
- 200
{- "rl": {
- "request": {
- "thumbprints": [
- "18254B1DC375B74E339EB99ABFE31AF0D735CB5A3B535570731175811D735B0D"
], - "response_format": "json"
}, - "certificate_analytics": [
- {
- "certificate": {
- "common_name": "Microsoft",
- "valid_from": "Sep 3 17:25:37 2018 GMT",
- "valid_to": "Oct 3 17:25:37 2018 GMT",
- "signature_algorithm": "sha1WithRSAEncryption",
- "signature": "CB1D7E0B933642F8B9CA16C90825B6FE7C449932DFBB2B6651077E73583394B37551B2AA2880C7B0F4C2E7289D0743996ACB34CB8FE71D0438072F921F3E7A53E547970B4BC8928D2F18ED9FCCA8062D46A6EBFE24166523DF9191AF84F8FCD3450D82E0556031E7580494597661EB155DA13D744F0BADCD14510FF29C18499BDB3239926A0281FB0090EF548D2AB7DC68A952CFAC1B48ED459E777EA9136DAAA33ACB5149748146DC7138FE7E8F06978B12F8B2B0F47CA24E927EB6A3A8A26A6A85AD046F1D8897F3843A072E3695BAAA4AC39797D66C7A6C1E50F1F6B3B1D9131288343BF44436A071B36B5137F206025550755F16D7E79D02709ACF3235FD",
- "extensions": [
- {
- "name": "X509v3 Key Usage",
- "value": "Digital Signature, Non Repudiation",
- "is_critical": "True"
}, - {
- "name": "X509v3 Basic Constraints",
- "value": "CA:FALSE",
- "is_critical": "True"
}, - {
- "name": "Authority Information Access",
- "value": "OCSP - URI:http://ocsp.globaltrustfinder.com\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Certificate Policies",
- "value": "Policy: 1.3.6.1.4.1.15945.1.1.1\n User Notice:\n Explicit Text: Warning: Certificates are issued under this policy to individuals that have not had their identity confirmed. Do not use these certificates for valuable transactions. NO LIABILITY IS ACCEPTED.\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 CRL Distribution Points",
- "value": "\nFull Name:\n URI:http://www.globaltrustfinder.com/crls/AscertiaPublicCA1.crl\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Extended Key Usage",
- "value": "Code Signing",
- "is_critical": "False"
}
], - "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "2377666edb5a4d5656f68e002efb8415"
}, - {
- "name": "SHA1",
- "value": "4f0333347b6f953b33966e976f24c5da36d75143"
}, - {
- "name": "SHA256",
- "value": "18254B1DC375B74E339EB99ABFE31AF0D735CB5A3B535570731175811D735B0D"
}
], - "serial_number": "9935F30E9D6FECB0873E4114E000E1C776B3D432",
- "version": "2",
- "issuer": {
- "common_name": "Ascertia Public CA 1",
- "valid_from": "Apr 21 12:15:17 2009 GMT",
- "valid_to": "Apr 14 23:59:59 2028 GMT",
- "signature_algorithm": "sha1WithRSAEncryption",
- "signature": "949497A1A31399BA864A5C8B658B3E824CAC6F744C02DB8A01994B5CD360BB08C14C5FC7456776147F614EDD5107F9BC53E1CD07FD9B09BDBE2753F56C1DE968348660E24FC2E1E72ED3E17CAA8EE30A377729EDE0C592B482521BD3F0B8369FFAB179E24C0F7821B45868C97B48E40FFA0A63C706470D32D4190213912A3A49E35C126BEBC7EAFD53CC2F28B70FB1BB18320243BF8519A6981220183BB0C4A7CBADD05045959E051996A87EE0AD0944D20618A41152E05968AF006A8E2203A7A147E763AB2D2F602D5D9FD5E9B1310025C21DCB3019B0BD4B5342CFBEF0CF285F61295D90881DEA0E10510C6F3984BF823CF32A281C9C5C4CBD36EAF725FF52",
- "extensions": [
- {
- "name": "X509v3 Key Usage",
- "value": "Certificate Sign, CRL Sign",
- "is_critical": "True"
}, - {
- "name": "X509v3 Basic Constraints",
- "value": "CA:TRUE, pathlen:2",
- "is_critical": "True"
}, - {
- "name": "X509v3 Certificate Policies",
- "value": "Policy: 1.3.6.1.4.1.15945.1.1.1\n User Notice:\n Explicit Text: Warning: Certificates are issued under this policy to individuals that have not had their identity confirmed. Do not use these certificates for valuable transactions. NO LIABILITY IS ACCEPTED.\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Subject Key Identifier",
- "value": "30:82:01:22:30:0D:06:09:2A:86:48:86:F7:0D:01:01:01:05:00:03:82:01:0F:00:30:82:01:0A:02:82:01:01:00:CF:58:F2:33:C4:B3:D9:1D:F9:4F:11:DB:B8:E3:B6:D6:BC:A7:21:37:57:2E:7B:A9:0C:94:B3:CB:12:F0:47:5A:CE:21:70:5E:13:83:9C:3E:CC:A3:FE:9E:BD:53:D6:D8:30:64:3F:8A:6E:5D:C4:1B:52:B0:11:F5:D9:08:D0:4E:F6:04:4F:FE:FF:24:72:5F:0D:AC:B4:AA:7C:34:F8:DB:0A:58:26:6B:34:BB:AC:69:34:28:CC:F1:85:6B:92:17:90:95:DE:9F:8B:F1:DF:A3:8A:D5:10:48:56:78:71:39:5E:34:9D:68:BB:9A:B3:09:F3:FD:64:0E:27:5D:88:9E:3A:CE:C4:E7:6E:F1:FB:F2:1D:51:ED:EB:87:D6:D3:B9:C1:30:8F:8D:A7:C9:CD:5D:0F:EB:7E:7F:04:9B:5F:46:C6:07:B3:3F:CD:BA:95:B1:57:F4:9B:6F:E6:B4:8A:18:65:2A:E0:0F:40:00:0E:44:70:C0:7E:F8:06:7A:B5:6A:33:17:F4:9B:31:19:35:44:BD:1B:06:39:FA:96:69:E7:A2:55:94:69:DF:21:8D:C1:D1:09:F6:9E:EB:98:A6:73:20:A1:D5:99:77:08:22:B9:FC:E9:1D:B3:E8:59:F0:D2:10:70:9A:29:0E:2D:CE:EC:44:38:73:17:72:41:37:65:02:03:01:00:01",
- "is_critical": "False"
}, - {
- "name": "X509v3 CRL Distribution Points",
- "value": "\nFull Name:\n URI:http://www.ascertia.com/OnlineCA/crls/AscertiaRootCA2/AscertiaRootCA2.crl\n",
- "is_critical": "False"
}, - {
- "name": "Authority Information Access",
- "value": "OCSP - URI:http://ocsp.globaltrustfinder.com\n",
- "is_critical": "False"
}, - {
- "name": "X509v3 Authority Key Identifier",
- "value": "keyid:30:82:01:22:30:0D:06:09:2A:86:48:86:F7:0D:01:01:01:05:00:03:82:01:0F:00:30:82:01:0A:02:82:01:01:00:96:37:BE:9E:E0:D9:3E:A6:86:13:17:F6:4A:F3:A9:07:F3:16:68:D5:7F:44:16:47:F3:21:9F:7D:FC:E4:FF:A4:F4:0B:BE:CD:F4:C2:06:03:E2:EC:A1:44:14:C5:90:A1:9F:D1:D1:F7:1E:32:B3:D4:DF:52:14:9B:9D:D1:EA:9B:C6:D1:F7:60:FA:FC:AD:48:C7:93:18:EB:5F:7E:0B:C4:21:56:04:DA:23:E1:3D:C5:C3:72:C6:9D:3A:46:78:EE:B1:11:A1:03:01:DB:DD:22:79:B7:04:9B:E9:1B:85:56:11:2D:D9:ED:22:6D:79:A2:1B:90:D9:AA:0E:7D:03:85:1A:4C:15:78:8D:2A:06:4A:35:62:1C:24:CD:59:19:6F:7E:39:93:BB:BF:15:19:AC:E3:C1:7D:C7:A9:95:68:3B:D1:3A:2B:73:C4:C1:60:BE:CF:BF:5F:E0:EA:4B:99:08:EE:C3:C7:59:C5:E9:A8:22:F4:60:88:1D:19:0C:AD:C8:E0:B8:8A:A4:83:CA:92:2F:E2:96:C7:05:AE:2A:2F:18:1C:11:B8:8B:BB:C8:82:F1:CE:28:BD:A5:9E:67:68:7B:AD:D6:44:01:BD:C1:41:DB:EB:C7:6E:C0:17:35:B4:80:0F:A9:A9:BD:D0:C4:2B:33:28:53:1B:38:70:23:B6:83:02:03:01:00:01\n",
- "is_critical": "False"
}
], - "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "c00947372e2954d2202b82c0b435810e"
}, - {
- "name": "SHA1",
- "value": "36d8f9de10381aaee9bca2aebca8b75804f49ea7"
}, - {
- "name": "SHA256",
- "value": "74FBDED7D182E0C8BD89EE7F277EC99A18688265B28918D24E8787CFE9E70599"
}
], - "serial_number": "E6",
- "version": "2",
- "issuer": "Ascertia Root CA 2"
}
}, - "statistics": {
- "unknown": 0,
- "known": 1,
- "malicious": 0,
- "suspicious": 0,
- "total": 1
}, - "classification": {
- "status": "undefined"
}, - "certificate_first_seen": "2018-11-25T23:50:11"
}
]
}
}
TCA-0503: Certificate Thumbprint Search
The Certificate Thumbprint Search API allows users to find certificate thumbprints by using the full or partial certificate common name as the search keyword. The results contain thumbprints of certificates that match the requested common name. Those thumbprints can be used with the TCA-0501 and TCA-0502 APIs to obtain a list of certificate-signed samples and certificate analytics, respectively.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "common_name": "string",
- "limit": 100,
- "page_common_name": "string",
- "page_thumbprint": "string",
- "response_format": "xml"
}
}
}
Response samples
- 200
{- "rl": {
- "request": {
- "common_name": "Microsoft*",
- "limit": 5,
- "response_format": "json"
}, - "search": [
- {
- "common_name": "Microsoft",
- "thumbprints": [
- {
- "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "2377666edb5a4d5656f68e002efb8415"
}, - {
- "name": "SHA1",
- "value": "4f0333347b6f953b33966e976f24c5da36d75143"
}, - {
- "name": "SHA256",
- "value": "18254B1DC375B74E339EB99ABFE31AF0D735CB5A3B535570731175811D735B0D"
}
]
}, - {
- "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "91888389aa2cac07c610f469e5f18092"
}, - {
- "name": "SHA1",
- "value": "e8a53bed75c33d48cf49382ddba6b048e85072b2"
}, - {
- "name": "SHA256",
- "value": "0AF958372FEDCFA29B8DD4C6DB83D44DC25AC6AD2435ACA5C0B08DCD5D596828"
}
]
}, - {
- "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "f971881e5219b17d98c181d50440d3d0"
}, - {
- "name": "SHA1",
- "value": "b5d1c90c8e8036610094bb6182d6c3f7481cd9eb"
}, - {
- "name": "SHA256",
- "value": "0F59B2A0809BE2B87728DCE7051C81FFD005A00CEA60FF1F0D7E11C911C8BBAB"
}
]
}, - {
- "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "2acdfc999c7b50813635718cfb0eea7f"
}, - {
- "name": "SHA1",
- "value": "39c4da3d122c4bc9369928464377ead34878d4a6"
}, - {
- "name": "SHA256",
- "value": "2606995A71C2128D6410DE8F1D7C199C5254F677FA44EA312C32A8B991F32C5F"
}
]
}, - {
- "certificate_thumbprints": [
- {
- "name": "MD5",
- "value": "e0379a7291368975ffa2c8c10cb71fe7"
}, - {
- "name": "SHA1",
- "value": "c8f9dd2174879e6d50def833c68338fe4227c26f"
}, - {
- "name": "SHA256",
- "value": "0695208909EDBFD9AEBAAF712EEE1FC7916BC0F563475CDEE5E64F497D7563D0"
}
]
}
]
}
], - "next_page_common_name": "Microsoft",
- "next_page_thumbprint": "2606995A71C2128D6410DE8F1D7C199C5254F677FA44EA312C32A8B991F32C5F"
}
}
TCA-0401: URI to Hash Search
The URI to Hash Search API provides a list of all available SHA1 hashes associated with the requested URI. The following URI types are supported: email, URL, IPv4 address, domain. Only one URI can be submitted in one request. Sending requests using the GET method requires the SHA1 value of the URI string, while the POST method accepts the URI string value in plain text.
Authorizations:
path Parameters
hash required | string SHA1 hash value of the URI string for which the user is requesting data from the service. The user should generate a SHA1 hash of the URI string prior to submitting a request. |
query Parameters
classification | string Enum: "known" "malicious" "suspicious" "unknown" Example: classification=malicious Optional parameter that allows filtering the results by their classification status. If this parameter is provided in the request, the response will include only those samples that match the requested status. Supported values are: known, malicious, suspicious, unknown (case-insensitive). |
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/uri_index/v1/query/c2208abde9668e8e9815c3690855edd1e63abeac?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "uri_index": {
- "query_uri": "google.com",
- "next_page_sha1": "000105c9b3765fa90f1e9eae1fb8dc4cc0cac50c",
- "sha1_list": [
- "0000004de689bdf7ee43a91bbf377142f1abcf57",
- "00000067a0a26a489e46560d64a67735a23fe697",
- "0000007135278826e0f5ab9188e45b67f130f755",
- "00000080f7036ed995f82e7ccc3e10c5bb32891e",
- "000000c1eea316d98aec2fd42071292a2a3cd014",
- "0000010efd519927e426d3997ab9f4fd250dccac",
- "0000013a38359a1ab5f039a752c8d8d5691986dd",
- "000001400aa11d61e9f5f340d0b14900abc15f92",
- "0000014a076179bc98c54afc507ca13d29473715",
- "0000014f7ca12d43c77da9b07a101ac6a3216925",
- "0000016f04332c20a1e615fe7f8196f7793b2e8b",
- "000001ab22f042e888d688994c18accac5670d03",
- "000001c15e25631fbd567e4776eaa8e2e4d40e07",
- "000001eea0aacea2cf7ad6ddd6e1f87008a23379",
- "000001ef32893ec0636286a3b7a134b7f784b3fa",
- "0000024ddf08e5ea8da14e6ced6e0fee69d31e12",
- "000002804a9c43414515ca48141ff5410c40a75b",
- "000002c5a06aef0d6cb63dd534a40e2cbede1220",
- "0000031185694d6ea5119204dbb4a3388f8688ca",
- "00000380790e1ffc153c94fa7c79d820dcddee2e",
- "000003cd283502c064cc5851043343a5c02b8ba8",
- "0000042018062a913b1ed124dd73ba8f41f545c8",
- "0000043848e6396cf3fb941d12d60eac81779697",
- "0000044c3d062917d3f4532098db673b8238dfef",
- "0000045f5d15bbeea133d386aaca8ae9ff303c5c",
- "000004933b884da097f068fd55df7a33aee03ae8",
- "000004d8824e44f399eef3f27020817564e94e8a",
- "000004f33dccb3bdc4e41b13c54e82d1e6d659b1",
- "000005caa4e27fa700382c241adcb512dabfea61",
- "000005cff15f1b56eb6ffa0061015fdf2a013b42",
- "000007042c5054881dbc4dc8d55937ead753f792",
- "0000075934c8225f79fe181eaf43307ba9367d0f",
- "0000075a67beb4b4999a1661c43a8f9a0157b15e",
- "000007ae83a2c18205e5efaf49835773f472ce91",
- "00000809615a77318aff43bda328d3581948a22d",
- "00000853c881aceafc4f37104fa445f0455faa8c",
- "00000859d9006affd6511f44767446b1ae44a057",
- "000008918acb9856fdafae8c4ae37dcc9f458904",
- "0000094f00ccb640c9c4a5196258426fcefe4931",
- "00000a0733ee25d12051d70e57337da986e4e9d1",
- "00000a20c30fc337130bcebfecda7fe70f322f12",
- "00000a536cf6ab8c84930e54cf33edda566c63a5"
]
}
}
}
TCA-0401: URI to Hash Search (paginated)
The URI to Hash Search API provides a list of all available SHA1 hashes associated with the requested URI. The following URI types are supported: email, URL, IPv4 address, domain. Only one URI can be submitted in one request. Sending requests using the GET method requires the SHA1 value of the URI string, while the POST method accepts the URI string value in plain text. Find more information in the official API documentation.
Authorizations:
path Parameters
hash required | string Next page hash value. |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
header Parameters
Content-Type: required | string Enum: "application/json" "text/xml" Required parameter that defines the POST payload format. |
Request Body schema: application/jsonrequired
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "uri": "google.com",
- "next_page_sha1": "0514718b9f0eba3dac00"
}
}
}
Response samples
- 200
{- "rl": {
- "uri_index": {
- "query_uri": "google.com",
- "next_page_sha1": "000105c9b3765fa90f1e9eae1fb8dc4cc0cac50c",
- "sha1_list": [
- "0000004de689bdf7ee43a91bbf377142f1abcf57",
- "00000067a0a26a489e46560d64a67735a23fe697",
- "0000007135278826e0f5ab9188e45b67f130f755",
- "00000080f7036ed995f82e7ccc3e10c5bb32891e",
- "000000c1eea316d98aec2fd42071292a2a3cd014",
- "0000010efd519927e426d3997ab9f4fd250dccac",
- "0000013a38359a1ab5f039a752c8d8d5691986dd",
- "000001400aa11d61e9f5f340d0b14900abc15f92",
- "0000014a076179bc98c54afc507ca13d29473715",
- "0000014f7ca12d43c77da9b07a101ac6a3216925",
- "0000016f04332c20a1e615fe7f8196f7793b2e8b",
- "000001ab22f042e888d688994c18accac5670d03",
- "000001c15e25631fbd567e4776eaa8e2e4d40e07",
- "000001eea0aacea2cf7ad6ddd6e1f87008a23379",
- "000001ef32893ec0636286a3b7a134b7f784b3fa",
- "0000024ddf08e5ea8da14e6ced6e0fee69d31e12",
- "000002804a9c43414515ca48141ff5410c40a75b",
- "000002c5a06aef0d6cb63dd534a40e2cbede1220",
- "0000031185694d6ea5119204dbb4a3388f8688ca",
- "00000380790e1ffc153c94fa7c79d820dcddee2e",
- "000003cd283502c064cc5851043343a5c02b8ba8",
- "0000042018062a913b1ed124dd73ba8f41f545c8",
- "0000043848e6396cf3fb941d12d60eac81779697",
- "0000044c3d062917d3f4532098db673b8238dfef",
- "0000045f5d15bbeea133d386aaca8ae9ff303c5c",
- "000004933b884da097f068fd55df7a33aee03ae8",
- "000004d8824e44f399eef3f27020817564e94e8a",
- "000004f33dccb3bdc4e41b13c54e82d1e6d659b1",
- "000005caa4e27fa700382c241adcb512dabfea61",
- "000005cff15f1b56eb6ffa0061015fdf2a013b42",
- "000007042c5054881dbc4dc8d55937ead753f792",
- "0000075934c8225f79fe181eaf43307ba9367d0f",
- "0000075a67beb4b4999a1661c43a8f9a0157b15e",
- "000007ae83a2c18205e5efaf49835773f472ce91",
- "00000809615a77318aff43bda328d3581948a22d",
- "00000853c881aceafc4f37104fa445f0455faa8c",
- "00000859d9006affd6511f44767446b1ae44a057",
- "000008918acb9856fdafae8c4ae37dcc9f458904",
- "0000094f00ccb640c9c4a5196258426fcefe4931",
- "00000a0733ee25d12051d70e57337da986e4e9d1",
- "00000a20c30fc337130bcebfecda7fe70f322f12",
- "00000a536cf6ab8c84930e54cf33edda566c63a5"
]
}
}
}
TCA-0401: URI to Hash Search
The URI to Hash Search service provides a list of all available SHA1 hashes associated with the requested URI. This service takes into account network IOCs extracted during file static analysis and uses that data to correlate URIs with samples. The following URI types are supported: email, URL, IPv4 address, and domain. Only one URI can be submitted in one request. Find more information in the official API documentation.
Authorizations:
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
header Parameters
Content-Type: required | string Enum: "application/json" "text/xml" Required parameter that defines the POST payload format. |
Request Body schema: application/jsonrequired
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "uri": "google.com",
- "next_page_sha1": "0514718b9f0eba3dac00"
}
}
}
Response samples
- 200
{- "rl": {
- "uri_index": {
- "query_uri": "google.com",
- "next_page_sha1": "000105c9b3765fa90f1e9eae1fb8dc4cc0cac50c",
- "sha1_list": [
- "0000004de689bdf7ee43a91bbf377142f1abcf57",
- "00000067a0a26a489e46560d64a67735a23fe697",
- "0000007135278826e0f5ab9188e45b67f130f755",
- "00000080f7036ed995f82e7ccc3e10c5bb32891e",
- "000000c1eea316d98aec2fd42071292a2a3cd014",
- "0000010efd519927e426d3997ab9f4fd250dccac",
- "0000013a38359a1ab5f039a752c8d8d5691986dd",
- "000001400aa11d61e9f5f340d0b14900abc15f92",
- "0000014a076179bc98c54afc507ca13d29473715",
- "0000014f7ca12d43c77da9b07a101ac6a3216925",
- "0000016f04332c20a1e615fe7f8196f7793b2e8b",
- "000001ab22f042e888d688994c18accac5670d03",
- "000001c15e25631fbd567e4776eaa8e2e4d40e07",
- "000001eea0aacea2cf7ad6ddd6e1f87008a23379",
- "000001ef32893ec0636286a3b7a134b7f784b3fa",
- "0000024ddf08e5ea8da14e6ced6e0fee69d31e12",
- "000002804a9c43414515ca48141ff5410c40a75b",
- "000002c5a06aef0d6cb63dd534a40e2cbede1220",
- "0000031185694d6ea5119204dbb4a3388f8688ca",
- "00000380790e1ffc153c94fa7c79d820dcddee2e",
- "000003cd283502c064cc5851043343a5c02b8ba8",
- "0000042018062a913b1ed124dd73ba8f41f545c8",
- "0000043848e6396cf3fb941d12d60eac81779697",
- "0000044c3d062917d3f4532098db673b8238dfef",
- "0000045f5d15bbeea133d386aaca8ae9ff303c5c",
- "000004933b884da097f068fd55df7a33aee03ae8",
- "000004d8824e44f399eef3f27020817564e94e8a",
- "000004f33dccb3bdc4e41b13c54e82d1e6d659b1",
- "000005caa4e27fa700382c241adcb512dabfea61",
- "000005cff15f1b56eb6ffa0061015fdf2a013b42",
- "000007042c5054881dbc4dc8d55937ead753f792",
- "0000075934c8225f79fe181eaf43307ba9367d0f",
- "0000075a67beb4b4999a1661c43a8f9a0157b15e",
- "000007ae83a2c18205e5efaf49835773f472ce91",
- "00000809615a77318aff43bda328d3581948a22d",
- "00000853c881aceafc4f37104fa445f0455faa8c",
- "00000859d9006affd6511f44767446b1ae44a057",
- "000008918acb9856fdafae8c4ae37dcc9f458904",
- "0000094f00ccb640c9c4a5196258426fcefe4931",
- "00000a0733ee25d12051d70e57337da986e4e9d1",
- "00000a20c30fc337130bcebfecda7fe70f322f12",
- "00000a536cf6ab8c84930e54cf33edda566c63a5"
]
}
}
}
TCA-0401: URI to Hash Search (paginated)
The URI to Hash Search API provides a list of all available SHA1 hashes associated with the requested URI. The following URI types are supported: email, URL, IPv4 address, domain. Only one URI can be submitted in one request. Sending requests using the GET method requires the SHA1 value of the URI string, while the POST method accepts the URI string value in plain text.
Authorizations:
path Parameters
uri_sha1 required | string The SHA1 hash value of the URI string |
next_page_sha1 required | string Optional path parameter used for pagination. To get the next page of results from the API, use the |
query Parameters
classification | string Enum: "known" "malicious" "suspicious" "unknown" Example: classification=malicious Optional parameter that allows filtering the results by their classification status. If this parameter is provided in the request, the response will include only those samples that match the requested status. Supported values are: known, malicious, suspicious, unknown (case-insensitive). |
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/uri_index/v1/query/c2208abde9668e8e9815c3690855edd1e63abeac?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "uri_index": {
- "query_uri": "google.com",
- "next_page_sha1": "000105c9b3765fa90f1e9eae1fb8dc4cc0cac50c",
- "sha1_list": [
- "0000004de689bdf7ee43a91bbf377142f1abcf57",
- "00000067a0a26a489e46560d64a67735a23fe697",
- "0000007135278826e0f5ab9188e45b67f130f755",
- "00000080f7036ed995f82e7ccc3e10c5bb32891e",
- "000000c1eea316d98aec2fd42071292a2a3cd014",
- "0000010efd519927e426d3997ab9f4fd250dccac",
- "0000013a38359a1ab5f039a752c8d8d5691986dd",
- "000001400aa11d61e9f5f340d0b14900abc15f92",
- "0000014a076179bc98c54afc507ca13d29473715",
- "0000014f7ca12d43c77da9b07a101ac6a3216925",
- "0000016f04332c20a1e615fe7f8196f7793b2e8b",
- "000001ab22f042e888d688994c18accac5670d03",
- "000001c15e25631fbd567e4776eaa8e2e4d40e07",
- "000001eea0aacea2cf7ad6ddd6e1f87008a23379",
- "000001ef32893ec0636286a3b7a134b7f784b3fa",
- "0000024ddf08e5ea8da14e6ced6e0fee69d31e12",
- "000002804a9c43414515ca48141ff5410c40a75b",
- "000002c5a06aef0d6cb63dd534a40e2cbede1220",
- "0000031185694d6ea5119204dbb4a3388f8688ca",
- "00000380790e1ffc153c94fa7c79d820dcddee2e",
- "000003cd283502c064cc5851043343a5c02b8ba8",
- "0000042018062a913b1ed124dd73ba8f41f545c8",
- "0000043848e6396cf3fb941d12d60eac81779697",
- "0000044c3d062917d3f4532098db673b8238dfef",
- "0000045f5d15bbeea133d386aaca8ae9ff303c5c",
- "000004933b884da097f068fd55df7a33aee03ae8",
- "000004d8824e44f399eef3f27020817564e94e8a",
- "000004f33dccb3bdc4e41b13c54e82d1e6d659b1",
- "000005caa4e27fa700382c241adcb512dabfea61",
- "000005cff15f1b56eb6ffa0061015fdf2a013b42",
- "000007042c5054881dbc4dc8d55937ead753f792",
- "0000075934c8225f79fe181eaf43307ba9367d0f",
- "0000075a67beb4b4999a1661c43a8f9a0157b15e",
- "000007ae83a2c18205e5efaf49835773f472ce91",
- "00000809615a77318aff43bda328d3581948a22d",
- "00000853c881aceafc4f37104fa445f0455faa8c",
- "00000859d9006affd6511f44767446b1ae44a057",
- "000008918acb9856fdafae8c4ae37dcc9f458904",
- "0000094f00ccb640c9c4a5196258426fcefe4931",
- "00000a0733ee25d12051d70e57337da986e4e9d1",
- "00000a20c30fc337130bcebfecda7fe70f322f12",
- "00000a536cf6ab8c84930e54cf33edda566c63a5"
]
}
}
}
TCA-0402: URI Statistics
The URI Statistics API provides statistical information on how many known, malicious, and suspicious samples are associated with a particular URI. The following URI types are supported: email, URL, IPv4 address, domain. Only one URI can be submitted in one request. This service accepts only SHA1 values of URI strings. Requested URI strings cannot be in plain text. Find more information in the official API documentation.
Authorizations:
path Parameters
uri_sha1 required | string The SHA1 hash value of the URI string for which the user is requesting data from the service. The user should generate a SHA1 hash of the URI string prior to submitting a request. Supported URI types are: email (e.g., |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/uri/statistics/uri_state/sha1/234988566c9a0a9cf952cec82b143bf9c207ac16?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "uri_state": {
- "sha1": "234988566c9a0a9cf952cec82b143bf9c207ac16",
- "uri_type": "url",
- "counters": {
- "known": 526795,
- "malicious": 295091,
- "suspicious": 4514
}
}
}
}
TCA-0403: URL Threat Intelligence (report)
This service returns the report for the submitted URL. The report contains the ReversingLabs URL classification status, URL reputation from various reputation sources, metadata for performed URL analyses, statistics of files found on the submitted URL mapped to their classification, and an overview of the most common threats.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{
}
Response samples
- 200
{- "rl": {
- "sha1": "9c17e047f58f9220a7008d4f18152fee4d111d14",
- "base64": "aHR0cDovL2V4YW1wbGUuY29tLw",
- "analysis": {
- "first_analysis": "2024-12-17T12:36:06",
- "analysis_history": [
- {
- "analysis_id": "17344388388189dc",
- "analysis_time": "2024-12-17T12:36:06",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734451388159c17",
- "analysis_time": "2024-12-17T16:05:10",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734462209028ece",
- "analysis_time": "2024-12-17T19:05:35",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734487456868ece",
- "analysis_time": "2024-12-18T02:06:04",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734518271939c17",
- "analysis_time": "2024-12-18T10:39:40",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734529116448ece",
- "analysis_time": "2024-12-18T13:40:25",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734554351438ece",
- "analysis_time": "2024-12-18T20:41:22",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1734593981178ece",
- "analysis_time": "2024-12-19T07:41:29",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "17349536572289dc",
- "analysis_time": "2024-12-23T11:36:10",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - {
- "analysis_id": "1735108787428ece",
- "analysis_time": "2024-12-25T06:42:19",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}
], - "last_analysis": {
- "analysis_id": "1735108787428ece",
- "analysis_time": "2024-12-25T06:42:19",
- "http_response_code": 200,
- "availability_status": "online",
- "domain": "example.com",
- "serving_ip_address": "93.184.215.14"
}, - "analysis_count": 478,
- "statistics": {
- "unknown": 0,
- "known": 4,
- "suspicious": 0,
- "malicious": 0,
- "total": 4
}
}, - "dynamic_analysis": {
- "analysis_history": [
- {
- "analysis_id": "a67ee1e9-0391-4ea1-8f19-d669732ec93c",
- "analysis_time": "2024-03-06T21:17:58",
- "platform": "windows10",
- "classification": "SUSPICIOUS",
- "risk_score": 6,
- "threat_type": [
- "Phishing"
], - "browser": "Google chrome 69"
}, - {
- "analysis_id": "b2ba7554-1254-430c-a2e7-d8e73217e203",
- "analysis_time": "2024-05-17T10:20:15",
- "platform": "windows10",
- "classification": "CLEAN",
- "risk_score": 0,
- "browser": "Google chrome 69"
}
], - "last_analysis": {
- "analysis_id": "b2ba7554-1254-430c-a2e7-d8e73217e203",
- "analysis_time": "2024-05-17T10:20:15",
- "platform": "windows10",
- "classification": "CLEAN",
- "risk_score": 0,
- "browser": "Google chrome 69"
}
}, - "third_party_reputations": {
- "sources": [
- {
- "source": "0xSI_f33d",
- "update_time": "2025-01-15T06:21:21",
- "detection": "undetected"
}, - {
- "source": "adminus_labs",
- "update_time": "2025-01-15T09:34:54",
- "detection": "undetected"
}, - {
- "source": "apwg",
- "update_time": "2025-01-15T02:19:23",
- "detection": "undetected"
}, - {
- "source": "crdf",
- "update_time": "2025-01-15T09:29:22",
- "detection": "undetected"
}, - {
- "source": "cyradar",
- "update_time": "2025-01-15T01:29:02",
- "detection": "malicious",
- "detect_time": "2022-06-08T12:55:18"
}, - {
- "source": "cyren",
- "update_time": "2025-01-15T06:13:42",
- "detection": "undetected"
}, - {
- "source": "mrg",
- "update_time": "2025-01-15T08:45:56",
- "detection": "undetected"
}, - {
- "source": "mute",
- "update_time": "2025-01-15T05:08:13",
- "detection": "undetected"
}, - {
- "source": "netstar",
- "update_time": "2025-01-15T09:12:05",
- "detection": "undetected"
}, - {
- "source": "openphish",
- "update_time": "2025-01-14T17:55:45",
- "detection": "undetected"
}, - {
- "source": "osint",
- "update_time": "2025-01-15T01:31:01",
- "detection": "undetected"
}, - {
- "source": "phishing_database",
- "update_time": "2024-12-17T10:46:51",
- "detection": "undetected"
}, - {
- "source": "phishstats",
- "update_time": "2025-01-14T23:46:59",
- "detection": "undetected"
}, - {
- "source": "phishtank",
- "update_time": "2025-01-15T03:22:16",
- "detection": "undetected"
}, - {
- "source": "threatfox_abuse_ch",
- "update_time": "2025-01-15T08:19:51",
- "detection": "undetected"
}, - {
- "source": "urlhaus",
- "update_time": "2025-01-14T22:57:06",
- "detection": "undetected"
}, - {
- "source": "mnemonic",
- "update_time": "2025-01-14T22:51:44",
- "detection": "undetected"
}, - {
- "source": "alphamountain",
- "update_time": "2024-12-18T09:37:52",
- "detection": "clean",
- "categories": [
- "parked_domain",
- "information_technology"
], - "detect_time": "2024-12-18T09:37:52"
}, - {
- "source": "forcepoint",
- "update_time": "2024-12-18T09:37:51",
- "detection": "undetected",
- "categories": [
- "information_technology"
], - "detect_time": "2024-12-18T09:37:51"
}, - {
- "source": "botvrij",
- "update_time": "2025-01-15T02:25:17",
- "detection": "undetected"
}
], - "statistics": {
- "total": 20,
- "malicious": 1,
- "clean": 1,
- "suspicious": 0,
- "undetected": 18
}
}, - "last_seen": "2024-12-25T06:42:19",
- "classification": "malicious",
- "reason": "user_override",
- "threat_level": 5,
- "categories": [
- "phishing"
],
}
}
TCA-0403: URL Threat Intelligence (downloaded files)
This service provides a list of hashes for files downloaded from the submitted URL, across all analyses, during the last analysis, or those downloaded during a specific analysis.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "analysis_id": "string",
- "last_analysis": false,
- "response_format": "json",
- "limit": 1000,
- "classification": "KNOWN",
- "extended": false
}
}
}
Response samples
- 200
{- "rl": {
- "first_analysis": "1970-01-19T16:07:25",
- "last_analysis": "2024-12-25T06:42:19",
- "analysis_count": 478,
- "total_files_count": 4,
- "files": [
- {
- "sha1": "0e973b59f476007fd10f87f347c3956065516fc0",
- "classification": "KNOWN",
- "first_download": "2018-12-11T01:17:43",
- "last_download": "2022-05-19T14:18:20"
}, - {
- "sha1": "4a3ce8ee11e091dd7923f4d8c6e5b5e41ec7c047",
- "classification": "KNOWN",
- "first_download": "2022-02-08T11:34:14",
- "last_download": "2024-12-25T06:42:19"
}, - {
- "sha1": "9a1fbf3b052e9be0651cd65a52c9b22076e3c155",
- "classification": "KNOWN",
- "first_download": "2024-03-11T15:03:35",
- "last_download": "2024-12-25T06:42:19"
}, - {
- "sha1": "b6c7bddcb854735e92177f00e76730737faecebe",
- "classification": "KNOWN",
- "first_download": "2023-07-12T08:23:39",
- "last_download": "2024-02-21T08:54:09"
}
]
}
}
TCA-0403: URL Threat Intelligence (notifications) (time range)
This service provides a continuous list of completed analyses. The records enter the feed once the submitted URL is analyzed to completion and the report is ready.
Authorizations:
path Parameters
time_format required | string Enum: "timestamp" "utc" Required parameter that specifies the time format for the |
time_value required | string <Unix timestamp OR date-time> Accepts values formatted according to the format set in the time_format parameter. |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
limit | integer [ 1 .. 1000 ] Default: 1000 Example: limit=50 Specifies the maximum number of reports to return in the response. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/networking/url/v1/notifications/query/latest?limit=1' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "urls": [
- {
- "analysis_id": "1736934010697fcd",
- "analysis_time": "2025-01-15T09:40:12",
- "availability_status": "online",
}
], - "next_page": "17369340129ac2fbb4e05bfab575c2b47bb05530ecc97615d9"
}
}
TCA-0403: URL Threat Intelligence (notifications) (time range) (paginated)
This service provides a continuous list of completed analyses. The records enter the feed once the submitted URL is analyzed to completion and the report is ready.
Authorizations:
path Parameters
time_format required | string Enum: "timestamp" "utc" Required parameter that specifies the time format for the |
time_value required | string Accepts values formatted according to the format set in the time_format parameter. |
page required | string The pagination value for the next page is provided in the previous request response |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
limit | integer [ 1 .. 1000 ] Default: 1000 Example: limit=50 Specifies the maximum number of reports to return in the response. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/networking/url/v1/notifications/query/latest?limit=1' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "urls": [
- {
- "analysis_id": "17369340884301ca",
- "analysis_time": "2025-01-15T09:41:31",
- "availability_status": "online",
}, - {
- "analysis_id": "1736934089930221",
- "analysis_time": "2025-01-15T09:41:31",
- "availability_status": "online",
}, - {
- "analysis_id": "17369340897702d5",
- "analysis_time": "2025-01-15T09:41:31",
- "availability_status": "online",
}, - {
- "analysis_id": "17369340899103d2",
- "analysis_time": "2025-01-15T09:41:31",
- "availability_status": "online",
}, - {
- "analysis_id": "173693409004e26c",
- "analysis_time": "2025-01-15T09:41:31",
- "availability_status": "online",
}
], - "next_page": "17369341201014bfca229a2c6f307495d4bc6fedae92d1be57"
}
}
TCA-0403: URL Threat Intelligence (notifications) (latest)
This service provides a continuous list of completed analyses. The records enter the feed once the submitted URL is analyzed to completion and the report is ready.
Authorizations:
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
limit | integer [ 1 .. 1000 ] Default: 1000 Example: limit=50 Specifies the maximum number of reports to return in the response. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/networking/url/v1/notifications/query/latest?limit=1' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "urls": [
- {
- "analysis_id": "173693484113ac95",
- "analysis_time": "2025-01-15T09:54:03",
- "availability_status": "online",
}
], - "next_page": "1736934846ab647958d7e8eb7fc4f776b3d04579007179660f"
}
}
TCA-0403: URL Threat Intelligence (notifications) (latest) (paginated)
This service provides a continuous list of completed analyses. The records enter the feed once the submitted URL is analyzed to completion and the report is ready.
Authorizations:
path Parameters
page required | string |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
limit | integer [ 1 .. 1000 ] Default: 1000 Example: limit=50 Specifies the maximum number of reports to return in the response. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/networking/url/v1/notifications/query/latest?limit=1' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "urls": [
- {
- "analysis_id": "1737628407655631",
- "analysis_time": "2025-01-23T10:33:30",
- "availability_status": "online",
}, - {
- "analysis_id": "1737628417940126",
- "analysis_time": "2025-01-23T10:33:40",
- "availability_status": "online",
}, - {
- "analysis_id": "17376284179007ca",
- "analysis_time": "2025-01-23T10:33:40",
- "availability_status": "online",
}, - {
- "analysis_id": "1737628417910936",
- "analysis_time": "2025-01-23T10:33:40",
- "availability_status": "online",
}, - {
- "analysis_id": "1737628417892422",
- "analysis_time": "2025-01-23T10:33:40",
- "availability_status": "online",
}
], - "next_page": "1737628451ff850ab841ed28ef22280c2a63fd4a6f85e051b4"
}
}
TCA-0404: Analyze URL
This service allows users to submit a URL for analysis. The analysis is a crawling process that will start looking for files to download from the submitted URL. When downloaded, the files are sent for analysis to the ReversingLabs file processing pipeline.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST body format. |
header Parameters
Content-Type required | string Value: "application/octet-stream" Required parameter that defines the POST payload format. |
Request Body schema: application/jsonrequired
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{
}
Response samples
- 200
{- "rl": {
- "status": "started",
- "analysis_id": "1736938889399c17",
}
}
TCA-0405 Domain Threat Intelligence (resolutions)
This service provides a list of domain-to-IP mappings for the requested domain.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "domain": "string",
- "limit": 1000,
- "response_format": "json"
}
}
}
Response samples
- 200
{- "rl": {
- "query": {
- "domain": "530908.selcdn.ru",
- "limit": 1000,
- "response_format": "json"
}
}
}
TCA-0405 Domain Threat Intelligence (URLs)
This service provides a list of URLs associated with the requested domain.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "domain": "string",
- "response_format": "string",
- "limit": 0
}
}
}
Response samples
- 200
{- "rl": {
- "requested_domain": "google.com",
- "urls": [
], - "next_page": "0001ecc50bed4aceefef8ba0e987f5d42a402856"
}
}
TCA-0405 Domain Threat Intelligence (report)
This service returns threat intelligence data for the submitted domain. The report contains domain reputation from various reputation sources, classification statistics for files downloaded from the domain, the most common threats found on the domain DNS information about the domain, and parent domain information.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "domain": "string",
- "response_format": "json"
}
}
}
Response samples
- 200
{- "rl": {
- "requested_domain": "google.com",
- "third_party_reputations": {
- "statistics": {
- "malicious": 2,
- "clean": 0,
- "suspicious": 0,
- "undetected": 10,
- "total": 12
}, - "sources": [
- {
- "source": "apwg",
- "update_time": "2025-01-15T05:57:19",
- "detection": "malicious",
- "categories": [ ],
- "detect_time": "2023-11-02T16:57:30"
}, - {
- "source": "botvrij",
- "update_time": "2025-01-15T02:25:17",
- "detection": "undetected"
}, - {
- "source": "osint",
- "update_time": "2025-01-15T01:31:01",
- "detection": "undetected"
}, - {
- "source": "cyradar",
- "update_time": "2025-01-15T01:29:02",
- "detection": "undetected"
}, - {
- "source": "0xSI_f33d",
- "update_time": "2025-01-15T06:21:21",
- "detection": "undetected"
}, - {
- "source": "threatfox_abuse_ch",
- "update_time": "2025-01-15T08:19:51",
- "detection": "undetected"
}, - {
- "source": "adminus_labs",
- "update_time": "2025-01-15T10:08:44",
- "detection": "malicious",
- "categories": [ ],
- "detect_time": "2022-09-06T12:57:27"
}, - {
- "source": "crdf",
- "update_time": "2025-01-15T09:29:22",
- "detection": "undetected"
}, - {
- "source": "netstar",
- "update_time": "2025-01-15T10:08:25",
- "detection": "undetected"
}, - {
- "source": "phishing_database",
- "update_time": "2024-12-17T14:33:42",
- "detection": "undetected"
}, - {
- "source": "forcepoint",
- "update_time": "2024-04-17T23:57:47",
- "detection": "undetected",
- "categories": [
- "search_engines_and_portals"
], - "detect_time": "2024-04-17T23:57:47"
}, - {
- "source": "alphamountain",
- "update_time": "2024-04-18T04:45:03",
- "detection": "undetected",
- "categories": [
- "search_engines_and_portals"
], - "detect_time": "2024-04-18T04:45:03"
}
]
}, - "downloaded_files_statistics": {
- "unknown": 831,
- "known": 559815,
- "suspicious": 0,
- "malicious": 320,
- "total": 560966
}, - "last_dns_records": [
- {
- "type": "A",
- "value": "0.0.0.0",
- "provider": "ReversingLabs"
}, - {
- "type": "AAAA",
- "value": "2a00:1450:400d:80d::200e",
- "provider": "ReversingLabs"
}, - {
- "type": "TXT",
- "value": "\"facebook-domain-verification=22rm551cu4k0ab0bxsw536tlds4h95\"",
- "provider": "ReversingLabs"
}, - {
- "type": "NS",
- "value": "ns4.google.com",
- "provider": "ReversingLabs"
}, - {
- "type": "MX",
- "value": "smtp.google.com",
- "provider": "ReversingLabs"
}
], - "top_threats": [
- {
- "threat_name": "Script-JS.Adware.Popunder",
- "threat_level": 1,
- "files_count": 304
}, - {
- "threat_name": "Script-JS.Phishing.Acsogenixx",
- "threat_level": 5,
- "files_count": 7
}, - {
- "threat_name": "Document-HTML.Phishing.PhishHtml",
- "threat_level": 5,
- "files_count": 1
}, - {
- "threat_name": "Document-PDF.Phishing.Generic",
- "threat_level": 5,
- "files_count": 1
}, - {
- "threat_name": "Document-HTML.Trojan.ClickFix",
- "threat_level": 5,
- "files_count": 1
}
], - "last_dns_records_time": "2025-01-15T11:04:01",
- "last_seen": "2025-01-15T11:08:30",
- "modified_time": "2025-01-15T11:08:30"
}
}
TCA-0405 Domain Threat Intelligence (downloaded files)
This service provides a list of hashes for files downloaded from the submitted domain.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "domain": "string",
- "limit": 0,
- "extended": true,
- "classification": "string",
- "response_format": "string"
}
}
}
Response samples
- 200
{- "rl": {
- "requested_domain": "google.com",
- "downloaded_files": [
- {
- "sha1": "0161a08778b568ea3f6ec4ad01d04b367b1d53ba",
- "classification": "MALICIOUS",
- "first_download": "2024-04-23T15:40:29",
- "last_download": "2024-04-23T15:40:29",
- "threat_name": "Script-JS.Adware.Popunder",
- "threat_level": 1,
- "trust_factor": 5,
- "malware_family": "Popunder",
- "malware_type": "Adware",
- "platform": "Script",
- "subplatform": "JS",
- "first_seen": "2024-04-23T14:40:32",
- "last_seen": "2025-01-14T00:21:13",
- "sample_available": true,
- "md5": "18c8b9b1cd7b4e2d026884f172febdc2",
- "sample_size": 37006,
- "sample_type": "Text/HTML/HTML",
- "sha256": "5ef39ae5ce2fa3d34a147507b97b83479aeab6adbaef3ca890d46ef285d4021f"
}
], - "next_page": "0177e1e2581158cc204b7fbb0fba178a3ec7ef4a"
}
}
TCA-0406 IP Threat Intelligence (resolutions)
This service provides a list of IP-to-domain mappings for the specified IP.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "ip": "string",
- "limit": 1000,
- "response_format": "json"
}
}
}
Response samples
- 200
{- "rl": {
- "requested_ip": "151.139.128.10",
- "resolutions": [
- {
- "host_name": "fi.werk.eu",
- "last_resolution_time": "2023-03-02T04:41:51",
- "provider": "ReversingLabs"
}, - {
- "host_name": "dancvrcek.com",
- "last_resolution_time": "2023-05-07T23:51:12",
- "provider": "ReversingLabs"
}, - {
- "host_name": "pomonaks.org",
- "last_resolution_time": "2023-01-31T07:45:37",
- "provider": "ReversingLabs"
}, - {
- "host_name": "library.fuckswipe.com",
- "last_resolution_time": "2023-03-05T16:18:40",
- "provider": "ReversingLabs"
}, - {
- "host_name": "thealliancedc.com",
- "last_resolution_time": "2023-06-18T00:43:43",
- "provider": "ReversingLabs"
}
], - "next_page": "0d046828999bfdaa2a2d82b5cdfe58e197c95b7d"
}
}
TCA-0406 IP Threat Intelligence (URLs)
This service provides a list of URLs associated with the requested IP. Find more information in the official API documentation.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "ip": "string",
- "limit": 1000,
- "response_format": "json"
}
}
}
Response samples
- 200
{- "rl": {
- "requested_ip": "37.34.248.24",
- "urls": [
]
}
}
TCA-0406 IP Threat Intelligence (report)
This service returns threat intelligence data for the submitted IP. The report contains IP reputation from various reputation sources, classification statistics for files downloaded from the IP, and the top threats hosted on the submitted IP.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "ip": "string",
- "response_format": "json"
}
}
}
Response samples
- 200
{- "rl": {
- "requested_ip": "151.139.128.10",
- "third_party_reputations": {
- "statistics": {
- "malicious": 2,
- "clean": 0,
- "suspicious": 0,
- "undetected": 9,
- "total": 11
}, - "sources": [
- {
- "source": "osint",
- "update_time": "2025-01-15T01:31:01",
- "detection": "undetected"
}, - {
- "source": "threatfox_abuse_ch",
- "update_time": "2025-01-15T08:19:51",
- "detection": "undetected"
}, - {
- "source": "cyren",
- "update_time": "2025-01-15T09:04:04",
- "detection": "malicious",
- "categories": [
- "phishing"
], - "detect_time": "2024-08-30T08:01:02"
}, - {
- "source": "cyradar",
- "update_time": "2025-01-15T01:29:02",
- "detection": "malicious",
- "categories": [
- "phishing"
], - "detect_time": "2024-03-30T17:52:50"
}, - {
- "source": "blocklist_de",
- "update_time": "2025-01-15T00:26:13",
- "detection": "undetected"
}, - {
- "source": "apwg",
- "update_time": "2025-01-15T09:23:44",
- "detection": "undetected"
}, - {
- "source": "crdf",
- "update_time": "2025-01-15T09:29:22",
- "detection": "undetected"
}, - {
- "source": "adminus_labs",
- "update_time": "2025-01-15T09:58:10",
- "detection": "undetected",
- "categories": [ ],
- "detect_time": "2024-02-19T13:52:29"
}, - {
- "source": "feodotracker",
- "update_time": "2025-01-15T05:28:17",
- "detection": "undetected"
}, - {
- "source": "forcepoint",
- "update_time": "2024-04-17T16:22:04",
- "detection": "undetected",
- "categories": [
- "uncategorized"
], - "detect_time": "2024-04-17T16:22:04"
}, - {
- "source": "alphamountain",
- "update_time": "2024-04-18T03:20:08",
- "detection": "undetected",
- "categories": [
- "web_hosting"
], - "detect_time": "2024-04-18T03:20:08"
}
]
}, - "downloaded_files_statistics": {
- "unknown": 23,
- "known": 193682,
- "suspicious": 9,
- "malicious": 2347,
- "total": 196061
}, - "last_seen": "2025-01-15T09:23:32",
- "modified_time": "2025-01-15T09:23:32",
- "top_threats": [
- {
- "threat_name": "Document-PDF.Phishing.Generic",
- "files_count": 1468,
- "threat_level": 5
}, - {
- "threat_name": "Document-PDF.Trojan.Heuristic",
- "files_count": 185,
- "threat_level": 2
}, - {
- "threat_name": "Script-JS.Trojan.Injected",
- "files_count": 149,
- "threat_level": 5
}, - {
- "threat_name": "Script-JS.Trojan.Cryxos",
- "files_count": 131,
- "threat_level": 5
}, - {
- "threat_name": "Script-JS.Trojan.Heuristic",
- "files_count": 92,
- "threat_level": 2
}
]
}
}
TCA-0406 IP Threat Intelligence (downloaded files)
This service provides a list of hashes for files downloaded from the submitted IP address.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
required | object | ||||||||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "ip": "string",
- "limit": 1000,
- "response_format": "json",
- "classification": "KNOWN",
- "extended": false
}
}
}
Response samples
- 200
{- "rl": {
- "requested_ip": "104.19.138.57",
- "downloaded_files": [
- {
- "sha1": "0035bd7153d5c4fdaf56d11ca48211037f8a5ecd",
- "classification": "KNOWN"
}, - {
- "sha1": "0039e262e9b37a07ff8b88827317fb56b6091260",
- "classification": "KNOWN"
}, - {
- "sha1": "006d2b643a12f61cfa5adfd5ba32897109f590af",
- "classification": "KNOWN"
}, - {
- "sha1": "0075dffd5874e7a9dd64548019250b50e586203c",
- "classification": "KNOWN"
}, - {
- "sha1": "00763e16830ea6fc20232dfbc6e3e6ad1ef484a4",
- "classification": "KNOWN"
}
], - "next_page": "3aa6883af49bfa47268fd6b3e319344a6b2d9f53"
}
}
TCA-0407: Network Reputation API
The Network Reputation service provides information regarding the reputation of a requested URL, domain, or IP address. When a URL is submitted, the service provides its ReversingLabs classification, along with an overview of detections from our partners. It also includes the category of the URL (for example phishing, gambling, adult content) and indicates whether we have encountered any malware samples associated with the submitted URL.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/json
object | |||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "network_locations": [
- {
- "network_location": "string",
- "type": "url"
}
], - "response_format": "json"
}
}
}
Response samples
- 200
{- "rl": {
- "entries": [
- {
- "type": "domain",
- "requested_network_location": "example.com",
- "associated_malware": false,
- "last_seen": "2025-01-20T09:18:38",
- "first_seen": "2025-01-20T09:18:38",
- "third_party_reputations": {
- "total": 13,
- "undetected": 12,
- "malicious": 1,
- "suspicious": 0,
- "clean": 0
}
}
]
}
}
TCA-0408: Network Reputation User Override
The Network Reputation User Override service enables URL classification overrides. Any URL can be overridden to malicious, suspicious, or known. Overrides are visible to all users within the same organization. The service also supports listing existing overrides.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
Request Body schema: application/jsonrequired
object | |||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "user_override": {
- "override_network_locations": [
- {
- "network_location": "string",
- "type": "url",
- "classification": "malicious",
- "TTL": "string",
- "threat_level": "string",
- "categories": [
- "string"
]
}
]
}
}, - "response_format": "json"
}
}
Response samples
- 200
{- "rl": {
- "user_override": {
- "created_overrides": [
- {
- "network_location": "string",
- "type": "url",
- "classification": "malicious",
- "TTL": "string",
- "threat_level": "string",
- "categories": [
- "string"
]
}
]
}
}
}
TCA-0408: List User Overrides
The Network Reputation User Override service enables URL classification overrides. Any URL can be overridden to malicious, suspicious, or known. Overrides are visible to all users within the same organization. The service also supports listing existing overrides.
Authorizations:
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
next_network_location | string <sha1> Optional parameter used for pagination. To get the next page of results from the API, use the |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/networking/user_override/v1/query/list_overrides?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "user_override": {
- "next_network_location": "855259c27b4a0d4f4f94d75ae0d35c89c8635df8",
- "network_locations": [
- {
- "network_location": "https://schemas.openxmlformats.org/officeDocument/2006/relationships/sharedStrings/",
- "type": "url",
- "threat_level": 0,
- "expiration_time": "2025-11-07T09:26:01",
- "classification": "known"
}, - {
- "network_location": "http://schemas.openxmlformats.org/officeDocument/2006/relationships/pivotTable/",
- "type": "url",
- "threat_level": 0,
- "expiration_time": "2025-11-07T10:09:03",
- "classification": "known"
}, - {
- "network_location": "https://schemas.openxmlformats.org/officeDocument/2006/relationships/ctrlProp/",
- "type": "url",
- "threat_level": 0,
- "expiration_time": "2025-11-07T10:08:55",
- "classification": "known"
}, - {
- "type": "url",
- "threat_level": 0,
- "expiration_time": "2025-11-09T05:58:06",
- "classification": "known"
}, - {
- "type": "url",
- "threat_level": 0,
- "expiration_time": "2025-11-07T10:05:47",
- "classification": "known"
}
]
}
}
}
TCA-0201: File Download Request
The External Sample Exchange Service allows users to download files from ReversingLabs Spectra Intelligence. This query returns the contents of a file matching the requested hash. The contents are returned as a byte stream. Only one file can be downloaded per request.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/spex/download/v2/query/sha1/a45ab18fb7a06dd5ecb44bf6c221a951f974059f' --user <username>:<password>
TCA-0201: File Download Status Request
The External Sample Exchange Service allows users to download files from ReversingLabs Spectra Intelligence. This query returns the file size of samples matching the requested hash values, but only if they are available for download. If the requested samples are not available for download, their size is represented as -1
in the response. Up to 1000 hashes can be submitted in one download status request.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
Responses
Request samples
- bash
- Python
curl -X POST --url 'https://data.reversinglabs.com/api/spex/download/v2/status/bulk_query/json' --header 'Content-Type: application/json' --data '{ "rl": { "query": { "hash_type": "sha1", "hashes": [ "a7afddb68260a60f86c02a021efba7f216c2e7cf", "ca03064987d3c4465f91552ba8b6a883eecfd3e5", "b363713a938afcd3c74603827fab79e935b2b09b" ] } } }' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "unknown_hashes": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
], - "entries": [
- {
- "sha1": "b363713a938afcd3c74603827fab79e935b2b09b",
- "size": 6
}, - {
- "sha1": "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "size": 4
}
]
}
}
TCA-0202/0203: File Upload Request
The External Sample Exchange Service allows users to upload files to Spectra Intelligence. This query uploads the file contents using a byte stream and the SHA1 hash of the file provided in the request. The file metadata must be uploaded after the file contents in a separate request for file processing to occur. Depending on the user's Spectra Intelligence account configuration, files are uploaded as public (sent to TCA-0202), or private (sent to TCA-0203).
Authorizations:
path Parameters
hash_value required | string Must be a valid SHA1 hash of the uploaded file. |
Request Body schema: application/octet-streamrequired
Responses
Request samples
- bash
- Python
curl --request POST 'https://data.reversinglabs.com/api/spex/upload/3715b867a6ce91aec3ce21d3703c68f80cf1cbc6' --data-binary @example_file.tar.gz --user <username>:<password>
TCA-0202/0203: File Metadata Upload Request
The External Sample Exchange Service allows users to upload files from ReversingLabs Spectra Intelligence. This query uploads the metadata of the file that matches the SHA1 hash provided in the request. Metadata must be provided in the XML format. The file metadata must be uploaded after the file contents in a separate request for file processing to occur. Depending on the user's Spectra Intelligence account configuration, files are uploaded as public (sent to TCA-0202), or private (sent to TCA-0203).
Authorizations:
path Parameters
hash_value required | string Must be a valid SHA1 hash of a previously uploaded file. |
query Parameters
subscribe | string Value: "data_change" Optional parameter. If set, adds the file to the user's data_change feed subscription list. |
Request Body schema: application/octet-streamrequired
Metadata must be provided in the XML format, while the request for the metadata must be sent using the Content-Type: application/octet-stream
header.
Metadata must contain the domain
field and at least one property
field. When submitting an archive for upload, it is recommended to include the archive
object when uploading sample metadata. If not included, the sample will be processed as a regular sample and not as an archive, therefore it is possible that the content of the zip will not be processed completely.
The domain name should represent the web domain where the sample was found/downloaded. If the domain name is not known, the domain name should be set to an empty string.
The property_name
and property_value
can be any kind of string. They can represent some properties of the sample, such as its application name, version, file name of the sample, or tags.
The archive_type
specifies the compression algorithm used to create the archive, and is a mandatory field if the archive
field is provided. The archive_password
is the password used to extract the content, and is optional.
object | |||||||
|
Responses
Request samples
- Payload
- bash
- Python
<rl> <properties> <property> <name>application</name> <value>TestApplication</value> </property> <property> <name>author</name> <value>Test_Author</value> </property> </properties> <domain>testdomain.com</domain> <archive> <archive_type>zip</archive_type> <archive_password>password123</archive_password> </archive> </rl>
TCA-0204: Delete File Single Query
The Delete File API provides the functionality of deleting files submitted and owned exclusively by the user sending the request. This query allows the user to delete a single file.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
delete_on | string Example: delete_on=1437464369 Optional parameter that specifies when the file will be deleted, allowing users to schedule file removal for a specific time. Expressed as a Unix timestamp in seconds. |
Responses
Request samples
- bash
- Python
curl --request DELETE --url 'https://data.reversinglabs.com/api/delete/sample/v1/query/sha1/bc7a6c7bba614456412fcd11d870f207be1bf6a5' --user <username>:<password>
TCA-0204: Delete File Bulk Query
The Delete File API provides the functionality of deleting files submitted and owned exclusively by the user sending the request. Up to 100 hashes can be submitted in one request.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "forbidden_hashes": [
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "a7afddb68260a60f86c02a021efba7f216c2e7cf"
], - "unknown_hashes": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
], - "invalid_hashes": [
- "example_of_a_wrong_hash"
]
}
}
TCA-0205: Re-Analyze File Single Query
The Rescan API allows users to submit files for re-analysis in the ReversingLabs Spectra Intelligence system. Re-analysis includes all components of the ReversingLabs Classification Algorithm: Spectra Intelligence antivirus scan results, threat and trust factors, parent/child relationships, certificates, and other metadata-specific information.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/rescan/v1/query/sha1/289512144b8b4e9e25e7a7d6250da24cda02eee0' --user <username>:<password>
TCA-0205: Re-Analyze File Bulk Query
The Rescan API allows users to submit files for (re)analysis in the ReversingLabs Spectra Intelligence system. Up to 100 hashes can be submitted in one request. Re-analysis includes all components of the ReversingLabs Classification Algorithm: Spectra Intelligence antivirus scan results, threat and trust factors, parent/child relationships, certificates, and other metadata-specific information.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "sent_for_rescan": [
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "a7afddb68260a60f86c02a021efba7f216c2e7cf"
], - "sample_unavailable": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5"
], - "invalid_hashes": [
- "example_of_a_wrong_hash"
]
}
}
TCA-0206: Alert Subscribe Query
This query is used for subscribing to a list of samples and URLs for which the changed sections (if there are any) will be delivered in the Data Change Feed. To subscribe to a list of samples or URLs, the user should submit the sample or URL hashes in a POST request. All hashes in a request should be of the same type. The maximum amount of hashes that can be submitted in one request is 100.
Subscriptions never expire on their own. Users need to manually unsubscribe using the TCA-0206 Unsubscribe Query. Note: Samples or URLs that have not yet been seen can be subscribed to only using SHA1 hash values.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "subscription_data_change": {
- "invalid_hashes": [
- "example_of_a_wrong_hash"
], - "subscribed": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "a7afddb68260a60f86c02a021efba7f216c2e7cf"
], - "hash_type": "sha1"
}
}
}
TCA-0206: Alert Unsubscribe Query
This query is used for unsubscribing from a list of samples that the user was previously subscribed to. Submitting a sample hash in a POST request to this endpoint removes the associated sample from the list of user's subscriptions.
The maximum amount of hashes that can be submitted in one request is 100. Changes for unsubscribed samples will no longer be delivered in the Data Change Feed.
Authorizations:
path Parameters
post_format required | string Enum: "xml" "json" Required parameter that defines the POST payload format. Supported options are xml and json. By default, the response format matches the format defined by this parameter. |
query Parameters
format | string Enum: "xml" "json" Optional parameter that allows choosing the response format. Supported values: json, xml. When the parameter is not included in the request, the response is in the same format specified by the |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "subscription_data_change": {
- "invalid_hashes": [
- "example_of_a_wrong_hash"
], - "unsubscribed": [
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "a7afddb68260a60f86c02a021efba7f216c2e7cf"
], - "hash_type": "sha1"
}
}
}
TCA-0206: Data Change Feed Start Query
This query sets the starting timestamp for TCA-0206 Data Change Feed Pull Query.
Authorizations:
path Parameters
time_format required | string Enum: "timestamp" "utc" Required parameter; accepts these options: timestamp, utc. timestamp is the number of seconds since 1970-01-01 00:00:00. utc is the date and time in format YYYY-MM-DDThh:mm:ss |
time_value required | string Required parameter; Accepts values defined by the time_format parameter |
Responses
Request samples
- bash
- Python
curl --request PUT --url 'https://data.reversinglabs.com/api/feed/data_change/v3/start/timestamp/1640991600' --user <username>:<password>
TCA-0206: Data Change Feed Pull Query
This query returns the next recordset with samples and URLs to which the user is subscribed. The starting point for this query is defined using the TCA-0206 Start Query.
If the user has not previously requested this query or called the START query, it will return records starting with the current timestamp. Every subsequent call will continue from the timestamp where the previous call ended.
Unless the limit parameter is specified, the query returns a maximum of 1000 records, or a little bit more than 1000 if there are records with the same timestamp. This ensures that all the records with the same timestamp will be included in the recordset. The limit parameter must not be greater than 1000.
This endpoint is built to be queried by a single thread (single instance). Any concurrent requests will be blocked until the previous one is fulfilled.
Authorizations:
query Parameters
events | string Default: "default" Enum: "default" "sections" Optional parameter that accepts a list of sections that should be included in the response, delimited by commas. Supported values: default - all events will be included in the response; sections - include info, sources, xref, analysis, sample_available, malware_presence, sample_became_shareable, dynamic_analysis |
format | string Default: "xml" Enum: "xml" "json" "tsv" Optional parameter; Specifies the response format. Supported values: xml (default), json, tsv (Tab Separated Values, delimiter character \t 0x09) |
limit | integer [ 1 .. 1000 ] Default: 1000 Optional parameter; Specifies the number of records to return in the response. The maximum value is 1000. Note that the response may include a little more than the requested number of records to ensure that all the records with the same timestamp are returned. |
Request Body schema: application/jsonrequired
hashes
is an array of valid hashes of the same type as specified in the hash_type
parameter.
Up to 100 hashes can be submitted in one request.
required | object | ||||||||
|
Responses
Request samples
- Payload
- bash
- Python
{- "rl": {
- "query": {
- "hash_type": "sha1",
- "hashes": [
- "a7afddb68260a60f86c02a021efba7f216c2e7cf",
- "ca03064987d3c4465f91552ba8b6a883eecfd3e5",
- "b363713a938afcd3c74603827fab79e935b2b09b",
- "example_of_a_wrong_hash"
]
}
}
}
Response samples
- 200
{- "rl": {
- "data_change_feed": {
- "entries": [
- {
- "record_on": "2022-04-13T18:07:14",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "malware_presence"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:07:14",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "xref"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:09:14",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "malware_presence"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:09:14",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "xref"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:11:45",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "malware_presence"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:11:45",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "xref"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:15:15",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "malware_presence"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:15:15",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "xref"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:18:16",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "malware_presence"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}, - {
- "record_on": "2022-04-13T18:18:16",
- "sha1": "47b15748ecc8e952c5935170090db7c269ce4b4f",
- "updated_sections": [
- "xref"
], - "sha256": "66b5ebd1b0fc73f041ba669ce2184f6f471d5e3524efa34ca31233e9f5395262",
- "md5": "0cd8c971317d19bbed44757809bcb92b"
}
], - "last_timestamp": 1649873896,
- "time_range": {
- "to": "2022-04-13T18:18:16",
- "from": "2022-04-13T18:03:14"
}
}
}
}
TCA-0206: Data Change Continuous Feed Query
This query returns a recordset with samples and URLs that the user is subscribed to from the requested timestamp onwards. The feed will return 1000 records at most, or a little bit more than 1000 if there are some records with the same timestamp. The response also contains the latest timestamp up to which the events are included in the response.
To fetch the next recordset, use the the last_timestamp value from the response, increase it by 1 and submit it in a new request.
Authorizations:
path Parameters
time_format required | string Enum: "timestamp" "utc" Required parameter; accepts these options: timestamp, utc. timestamp is the number of seconds since 1970-01-01 00:00:00. utc is the date and time in format YYYY-MM-DDThh:mm:ss |
time_value required | string Required parameter; Accepts values defined by the time_format parameter |
query Parameters
events | string Default: "default" Enum: "default" "sections" Optional parameter that accepts a list of sections that should be included in the response, delimited by commas. Supported values: default - all events will be included in the response; sections - include info, sources, xref, analysis, sample_available, malware_presence, sample_became_shareable, dynamic_analysis |
format | string Default: "xml" Enum: "xml" "json" "tsv" Optional parameter; Specifies the response format. Supported values: xml (default), json, tsv (Tab Separated Values, delimiter character \t 0x09) |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/feed/data_change/v3/query/utc/2022-01-01T13:00:00?format=json&events=xref' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "data_change_feed": {
- "time_range": {
- "from": "2025-01-21T12:58:31",
- "to": "2025-01-23T11:19:12"
}, - "entries": [ ],
- "last_timestamp": 1737631152
}
}
}
Detonate files in ReversingLabs Cloud Sandbox and retrieve reports
TCA-0106: Dynamic Analysis Report (merged report)
The File and URL Dynamic Analysis Report service allows users to retrieve dynamic analysis reports for files and URLs executed in the cloud sandbox. Find more information in the official API documentation.
Authorizations:
path Parameters
hash_type required | string Enum: "md5" "sha1" "sha256" Required parameter. Specifies which hash type will be used in the request. Supported values: md5, sha1, sha256. |
hash_value required | string Required parameter. Hash of the file for which the user is requesting data from the service. The value must be a valid hash of the same type specified by the |
query Parameters
format | string Default: "xml" Enum: "xml" "json" Example: format=json Optional parameter that allows choosing the response format. Supported values: xml, json. When the parameter is not included in the request, defaults to xml. |
artifacts_url | boolean Value: true Optional parameter that includes artifact links for specific reports in the history part of the merged report. |
Responses
Request samples
- bash
- Python
curl --url 'https://data.reversinglabs.com/api/dynamic/analysis/report/v1/query/sha1/cac61424fb5414d589687bfd35452a351604ef11?format=json' --user <username>:<password>
Response samples
- 200
{- "rl": {
- "requested_hash": "734aaf5b557159d58dfc04d9eeecdbaafcfd2372",
- "report": {
- "platforms": [
- "windows7",
- "windows10",
- "windows11"
], - "classification": "MALICIOUS",
- "first_analysis": "2024-12-16T14:15:44",
- "last_analysis": "2024-12-16T17:17:40",
- "history_analysis": [
- {
- "analysis_id": "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "analysis_time": "2024-12-16T14:15:44",
- "classification": "MALICIOUS",
- "platform": "windows7",
- "configuration": "MS Office 2007;Java 7;Adobe reader 8;Firefox 37;Google Chrome 51;Internet Explorer 8",
- "risk_score": 10,
- "classification_version": 3,
- "browser": "Google Chrome 51",
- "sample_name": "qdqfms73il",
- "geolocation": "us",
- "locale": "en-US",
- "analysis_duration": 210,
- "warnings": [
- "Max analysis timeout: 200s exceeded, the analysis took too long",
- "Exclude process from analysis (whitelisted): dllhost.exe, sppsvc.exe, mscorsvw.exe, spsys.sys, svchost.exe",
- "Not all processes where analyzed, report is missing behavior information",
- "Report size getting too big, too many NtOpenKeyEx calls found.",
- "Report size getting too big, too many NtQueryValueKey calls found."
]
}, - {
- "analysis_id": "ebed9363-3bfc-488a-83f9-529db7564a9f",
- "analysis_time": "2024-12-16T14:16:00",
- "classification": "MALICIOUS",
- "platform": "windows10",
- "configuration": "MS Office 2016;Java 8;Adobe reader 2024;Firefox 63;Google Chrome 104",
- "risk_score": 9,
- "classification_version": 3,
- "browser": "Google chrome 104",
- "sample_name": "cenip0ph2y",
- "geolocation": "us",
- "locale": "en-US",
- "analysis_duration": 210,
- "warnings": [
- "Max analysis timeout: 200s exceeded, the analysis took too long",
- "Exclude process from analysis (whitelisted): MpCmdRun.exe, WMIADAP.exe, MusNotifyIcon.exe, conhost.exe, svchost.exe",
- "Excluded IPs from analysis (whitelisted): 40.126.29.11, 40.126.29.13, 20.190.157.11, 40.126.29.5, 20.190.157.12, 40.126.29.15, 20.190.157.9, 20.190.157.14, 20.7.251.164, 20.83.72.98",
- "Excluded domains from analysis (whitelisted): prdv4a.aadg.msidentity.com, fs.microsoft.com, eus2-7.frontdoor.licensing.commerce.microsoft.com, activation-v2.sls.microsoft.com, www.tm.lg.prod.aadmsa.akadns.net, www.tm.v4.a.prd.aadg.trafficmanager.net, settings-win.data.microsoft.com, licensing-prod-frontdoor-geomap.trafficmanager.net, login.msa.msidentity.com, licensing.mp.microsoft.com, login.live.com, activation-v2.sls.trafficmanager.net, consumer-licensing-aks2aks.md.mp.microsoft.com.akadns.net",
- "Not all processes where analyzed, report is missing behavior information",
- "Report size getting too big, too many NtOpenKeyEx calls found.",
- "Report size getting too big, too many NtQueryValueKey calls found."
]
}, - {
- "analysis_id": "28f86ba6-aaa6-4a1f-90bb-a48a4fa65b00",
- "analysis_time": "2024-12-16T17:17:40",
- "classification": "MALICIOUS",
- "platform": "windows11",
- "configuration": "MS Office 2016;Java 8;Adobe reader 21;Firefox 96;Google Chrome 113",
- "risk_score": 8,
- "classification_version": 3,
- "browser": "Google chrome 113",
- "sample_name": "yzlxnluza4",
- "geolocation": "us",
- "locale": "en-US",
- "analysis_duration": 81,
- "errors": [
- "System.Exception: Operation did not complete successfully because the file contains a virus or potentially unwanted software., copy target files",
- "No process behavior to analyse as no analysis process or sample was found"
]
}
], - "risk_score": 10,
- "classification_version": 3,
- "mitre_attack": {
- "matrix_list": [
- {
- "name": "Enterprise",
- "tactics": {
- "tactic_list": [
- {
- "id": "TA0005",
- "name": "Defense Evasion",
- "techniques": {
- "technique_list": [
- {
- "id": "T1574.002",
- "name": "DLL Side-Loading",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1055",
- "name": "Process Injection",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1036",
- "name": "Masquerading",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1027",
- "name": "Obfuscated Files or Information",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}
]
}
}, - {
- "id": "TA0007",
- "name": "Discovery",
- "techniques": {
- "technique_list": [
- {
- "id": "T1497",
- "name": "Virtualization/Sandbox Evasion",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1518.001",
- "name": "Security Software Discovery",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1010",
- "name": "Application Window Discovery",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1018",
- "name": "Remote System Discovery",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1083",
- "name": "File and Directory Discovery",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1082",
- "name": "System Information Discovery",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}
]
}
}, - {
- "id": "TA0009",
- "name": "Collection",
- "techniques": {
- "technique_list": [
- {
- "id": "T1560",
- "name": "Archive Collected Data",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1115",
- "name": "Clipboard Data",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "id": "T1056",
- "name": "Input Capture",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}
]
}
}, - {
- "id": "TA0011",
- "name": "Command and Control",
- "techniques": {
- "technique_list": [
- {
- "id": "T1573",
- "name": "Encrypted Channel",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1571",
- "name": "Non-Standard Port",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1105",
- "name": "Ingress Tool Transfer",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1095",
- "name": "Non-Application Layer Protocol",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "id": "T1071",
- "name": "Application Layer Protocol",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2",
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}
]
}
}
]
}
}
]
}, - "malware_configurations": [
- {
- "configuration": "{\"C2 urls\": [\"green-fuel.us/upload/box/1509uk1.ltc\", \"188.165.204.210/bin/1509uk1.ltc\"]}",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "threat_name": "Upatre",
- "malware_config_ip": [
- "188.165.204.210"
]
}, - {
- "configuration": "{\"C2 urls\": [\"188.165.204.210/bin/1509uk1.ltc\", \"green-fuel.us/upload/box/1509uk1.ltc\"]}",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "threat_name": "Upatre",
- "malware_config_ip": [
- "188.165.204.210"
]
}
], - "dropped_files": [
- {
- "md5": "e89f75f918dbdcee28604d4e09dd71d7",
- "sha1": "f9d9055e9878723a12063b47d4a1a5f58c3eb1e9",
- "sha256": "6dc9c7fc93bb488bb0520a6c780a8d3c0fb5486a4711aca49b4c53fac7393023",
- "file_name": "1509uk1[1].htm",
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\A2VOSV08",
- "sample_type": "Text/HTML",
- "sample_size": "114",
- "classification": "NO_THREATS_FOUND",
- "analysis_ids": [
- {
- "classification": "UNKNOWN",
- "analysis_id": "db711a31-a3db-457a-9b83-65325bfb1ac2"
}
]
}, - {
- "md5": "e89f75f918dbdcee28604d4e09dd71d7",
- "sha1": "f9d9055e9878723a12063b47d4a1a5f58c3eb1e9",
- "sha256": "6dc9c7fc93bb488bb0520a6c780a8d3c0fb5486a4711aca49b4c53fac7393023",
- "file_name": "1509uk1[1].htm",
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\BXA5A9U9",
- "sample_type": "Text/HTML",
- "sample_size": "114",
- "classification": "NO_THREATS_FOUND",
- "analysis_ids": [
- {
- "classification": "UNKNOWN",
- "analysis_id": "db711a31-a3db-457a-9b83-65325bfb1ac2"
}
]
}, - {
- "md5": "334c5cdf0dea5c43791552ef19e5c43d",
- "sha1": "4d35f07441cfd46ced22f399cf6da3af3e140d23",
- "sha256": "18bf94b0db0bb9ed73ee54de1e906e7d3d71e58c336063ccf05030e145987cc5",
- "file_name": "kyyjs.exe",
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "sample_type": "MZ/DOS",
- "sample_size": "62907",
- "classification": "NO_THREATS_FOUND",
- "analysis_ids": [
- {
- "classification": "UNKNOWN",
- "analysis_id": "db711a31-a3db-457a-9b83-65325bfb1ac2"
}
]
}, - {
- "md5": "e89f75f918dbdcee28604d4e09dd71d7",
- "sha1": "f9d9055e9878723a12063b47d4a1a5f58c3eb1e9",
- "sha256": "6dc9c7fc93bb488bb0520a6c780a8d3c0fb5486a4711aca49b4c53fac7393023",
- "file_name": "1509uk1[1].htm",
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\1AFL0DSY",
- "sample_type": "Text/HTML",
- "sample_size": "114",
- "classification": "NO_THREATS_FOUND",
- "analysis_ids": [
- {
- "classification": "UNKNOWN",
- "analysis_id": "ebed9363-3bfc-488a-83f9-529db7564a9f"
}
]
}, - {
- "md5": "e89f75f918dbdcee28604d4e09dd71d7",
- "sha1": "f9d9055e9878723a12063b47d4a1a5f58c3eb1e9",
- "sha256": "6dc9c7fc93bb488bb0520a6c780a8d3c0fb5486a4711aca49b4c53fac7393023",
- "file_name": "1509uk1[1].htm",
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\CCSD3KIS",
- "sample_type": "Text/HTML",
- "sample_size": "114",
- "classification": "NO_THREATS_FOUND",
- "analysis_ids": [
- {
- "classification": "UNKNOWN",
- "analysis_id": "ebed9363-3bfc-488a-83f9-529db7564a9f"
}
]
}, - {
- "md5": "af577f5612dee3b180db5298dee68eac",
- "sha1": "914aef78d72aeb8093786bcf41f0b11e96586c7c",
- "sha256": "9f442338aa4d30c93d6e830fd9a80c03b32cf092a0ce14f68efed45a920a3738",
- "file_name": "kyyjs.exe",
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "sample_type": "MZ/DOS",
- "sample_size": "62907",
- "classification": "NO_THREATS_FOUND",
- "analysis_ids": [
- {
- "classification": "UNKNOWN",
- "analysis_id": "ebed9363-3bfc-488a-83f9-529db7564a9f"
}
]
}
], - "behavioral": [
- {
- "process": {
- "name": "qdqfms73il.exe",
- "parameters": "\"C:\\Users\\user\\Desktop\\qdqfms73il.exe\"",
- "process_id": 2216,
- "parent_process_id": 1128,
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "process_time": "2024-12-16T06:11:24"
}, - "mutex_actions": [
- {
- "name": "NULL",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZoneAttributeCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesLockedCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}
], - "file_actions": [
- {
- "file_path": "C:\\Windows\\Globalization\\Sorting",
- "file_name": "sortdefault.nls",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "qdqfms73il.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\Registration",
- "file_name": "R000000000007.clb",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Caches",
- "file_name": "cversions.1.db",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Caches",
- "file_name": "{AFBF9F1A-8EE8-4C77-AF34-C647E37CA0D9}.1.ver0x0000000000000016.db",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "MountPointManager",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\AppPatch",
- "file_name": "sysmain.sdb",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Windows",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SYSTEM32",
- "file_name": "wow64.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SYSTEM32",
- "file_name": "wow64win.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SYSTEM32",
- "file_name": "wow64cpu.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user",
- "file_name": "Desktop",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "sechost.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "IMM32.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "uxtheme.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dwmapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "Riched32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RICHED20.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "KsecDD",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "PROPSYS.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\syswow64",
- "file_name": "shell32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\WinSxS",
- "file_name": "x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\WinSxS\\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2",
- "file_name": "comctl32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "WindowsShell.Manifest",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ntmarta.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "profapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "C:",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Users",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users",
- "file_name": "user~1",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1",
- "file_name": "AppData",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData",
- "file_name": "Local",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local",
- "file_name": "Temp",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "STORAGE#Volume#{4cef29a2-c8ef-11e8-824e-806e6f6e6963}#0000000000100000#{53f5630d-b6bf-11d0-94f2-00a0c91efb8b}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "STORAGE#Volume#{4cef29a2-c8ef-11e8-824e-806e6f6e6963}#0000000006500000#{53f5630d-b6bf-11d0-94f2-00a0c91efb8b}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "apphelp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "Caches",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_written",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "qdqfms73il.exe",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}
], - "registry_actions": [
- {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WOW64",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Terminal Server",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\SafeBoot\\Option",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Srp\\GP\\DLL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Diagnostics",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\NLS\\Language",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages\\PendingDelete",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\MUI\\Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached\\MachineLanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\OLE\\Tracing",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\OLEAUT",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\crypt32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\Setup",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\ShellCompatibility\\Applications\\qdqfms73il.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\SideBySide",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\SideBySide\\AssemblyStorageRoots",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Wow6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Wow6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\NonEnum",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Policies\\NonEnum",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.exe\\OpenWithProgids",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.exe\\OpenWithProgids",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\.exe\\OpenWithProgids",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\.exe\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\.exe\\UserChoice",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\exefile",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\exefile",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\CurVer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\CurVer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\SystemFileAssociations\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\SystemFileAssociations\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1\\KnownFolders",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\COM3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\SQMClient\\Windows\\DisabledProcesses\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\SQMClient\\Windows\\DisabledSessions\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InProcServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\LSA\\AccessProviders",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\LDAP",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KnownFolderSettings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\Shell\\RegisteredApplications\\UrlAssociations\\Directory\\OpenWithProgids",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\Directory",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Directory",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Directory",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\CurVer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\CurVer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Folder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Folder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\AllFilesystemObjects",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\AllFilesystemObjects",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-641585131-227076527-2008308082-1000",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KindMap",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\Windows Error Reporting\\WMR",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\shell\\open",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\shell\\open\\command",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open\\command",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\shell\\open\\DropTarget",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open\\DropTarget",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Policies\\Associations",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Associations",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.ade",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.ade",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.ade",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.adp",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.adp",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.adp",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.app",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.app",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.asp",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.asp",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.asp",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.bas",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.bas",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.bas",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.bat",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.bat",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.bat",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.cer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.cer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.cer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.chm",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.chm",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.chm",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.cmd",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.cmd",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.cmd",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.com",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.com",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.com",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.cpl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.cpl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.cpl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.crt",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.crt",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.crt",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\.csh",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.csh",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_IGNORE_POLICIES_ZONEMAP_IF_ESC_ENABLED_KB918915",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_IGNORE_POLICIES_ZONEMAP_IF_ESC_ENABLED_KB918915",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_UNC_SAVEDFILECHECK",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_UNC_SAVEDFILECHECK",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_ZONES_CHECK_ZONEMAP_POLICY_KB941001",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_ZONES_CHECK_ZONEMAP_POLICY_KB941001",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\ProtocolDefaults\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_INITIALIZE_URLACTION_SHELLEXECUTE_TO_ALLOW_KB936610",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_INITIALIZE_URLACTION_SHELLEXECUTE_TO_ALLOW_KB936610",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_ALLOW_REVERSE_SOLIDUS_IN_USERINFO_KB932562",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_ALLOW_REVERSE_SOLIDUS_IN_USERINFO_KB932562",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Internet Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows NT\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Policies\\Microsoft\\SQMClient\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\SQMClient\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_LOCALMACHINE_LOCKDOWN",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_LOCALMACHINE_LOCKDOWN",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_ZONES_DEFAULT_DRIVE_INTRANET_KB941000",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_ZONES_DEFAULT_DRIVE_INTRANET_KB941000",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_value_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ProxyBypass"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_value_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ProxyBypass"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableUserModeCallbackFilter"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\SESSION MANAGER",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "CWDIllegalInDLLSearch"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Terminal Server",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "TSAppCompat"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\safer\\codeidentifiers",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "TransparentEnabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableMetaFiles"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\CustomLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "EMPTY"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Language",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "InstallLanguageFallback"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Type"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PreferredUILanguages"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "MachinePreferredUILanguages"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LoadAppInit_DLLs"
}, - {
- "key_name": "unknown",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "invalid handle",
- "value": "",
- "value_name": "DisableUserModeCallbackFilter"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "en-US"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ScrollInset"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\OLE",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PageAllocatorUseSystemHeap"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\crypt32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DebugHeapFlags"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableImprovedZoneCheck"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Security_HKLM_only"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "ComputerName"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\Setup",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "OOBEInProgress"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "MaximizeApps"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "MaximizeApps"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "EnableShellExecuteHooks"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\SideBySide",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PreferExternalManifest"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Attributes"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\NonEnum",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "DriveMask"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Hidden"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.exe",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Desktop"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\COM3",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Com+Enabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\SQMClient\\Windows\\DisabledProcesses",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "3A7F1163"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\SQMClient\\Windows\\DisabledSessions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "MachineThrottling"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "InprocServer32"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Lsa\\AccessProviders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "MartaExtension"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\ldap",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LdapClientIntegrity"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-641585131-227076527-2008308082-1000",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "ProfileImagePath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KindMap",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ".exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\Windows Error Reporting\\WMR",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Disable"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open\\command",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DelegateExecute"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.ade",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.adp",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.asp",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.bas",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.bat",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.cer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.chm",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.cmd",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.com",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.cpl",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.crt",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{7B8A2D94-0AC9-11D1-896C-00C04FB6BFC4}\\InprocServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "InprocServer32"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_UNC_SAVEDFILECHECK",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "qdqfms73il.exe"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "CreateUriCacheSize"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "CreateUriCacheSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "qdqfms73il.exe"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "DisableSecuritySettingsCheck"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Rpc",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "MaxRpcSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\SQMClient\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "CEIPEnable"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Flags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Flags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Flags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Flags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Flags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_LOCALMACHINE_LOCKDOWN",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "qdqfms73il.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_LOCALMACHINE_LOCKDOWN",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "qdqfms73il.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_PROTOCOL_LOCKDOWN",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "qdqfms73il.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "1806"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "SetWorkingDirectoryFromTarget"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{2802fa92-c749-11e8-9ad6-806e6f6e6963}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "Data"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Setup",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "SourcePath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "DevicePath"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{2802fa91-c749-11e8-9ad6-806e6f6e6963}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "Data"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Cache"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Layers",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "C:\\Users\\user\\AppData\\Local\\Temp\\kyyjs.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FileExts\\.exe\\OpenWithProgids",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\ProtocolDefaults",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}
], - "process_actions": [
- {
- "path": "C:\\Users\\user\\Desktop\\qdqfms73il.exe",
- "action_type": "process_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "path": "unknown",
- "action_type": "process_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "path": "C:\\Users\\user\\AppData\\Local\\Temp\\kyyjs.exe",
- "action_type": "process_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "path": "C:\\Users\\user\\AppData\\Local\\Temp\\kyyjs.exe",
- "action_type": "process_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "path": "C:\\Users\\user\\Desktop\\qdqfms73il.exe",
- "action_type": "process_terminated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}
], - "modules_loaded": [
- {
- "module_name": "\\KnownDlls\\wow64win.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls\\wow64cpu.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\dwmapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\Riched32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\RICHED20.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\PROPSYS.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*Users*user*AppData*Local*Microsoft*Windows*Caches*cversions.1",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*Users*user*AppData*Local*Microsoft*Windows*Caches*cversions.1.ro",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ntmarta.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*Users*user*AppData*Local*Microsoft*Windows*Caches*{AFBF9F1A-8EE8-4C77-AF34-C647E37CA0D9}.1.ver0x0000000000000016.db",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\profapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*cversions.2",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*ProgramData*Microsoft*Windows*Caches*cversions.2",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "NULL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls\\kernel32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\kernel32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls\\user32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\KERNELBASE.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\Windows\\SharedSection",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\MSVCRT.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\USER32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\GDI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\LPK.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\USP10.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ADVAPI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\RPCRT4.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\SspiCli.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CRYPTBASE.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\MSCTF.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "unknown",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ole32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\wininet.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\SHLWAPI.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\urlmon.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\OLEAUT32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CRYPT32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\MSASN1.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\iertutil.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\shell32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\windows_shell_global_counters",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\__ComCatalogCache__",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CLBCatQ.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\WLDAP32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\windows_shell_global_counters",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*cversions.2.ro",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*{6AF0698E-D558-4F6E-9B3C-3716689AF493}.2.ver0x0000000000000005.db",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*{DDF571F2-BE98-426D-8288-1A9A39C3FDA2}.2.ver0x0000000000000002.db",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\UrlZonesSM_user",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\SETUPAPI.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CFGMGR32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\DEVOBJ.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}
]
}, - {
- "process": {
- "name": "kyyjs.exe",
- "parameters": "\"C:\\Users\\user~1\\AppData\\Local\\Temp\\kyyjs.exe\" ",
- "process_id": 1952,
- "parent_process_id": 2216,
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "process_time": "2024-12-16T06:11:25"
}, - "mutex_actions": [
- {
- "name": "NULL",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\_!MSFTHISTORY!_",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\c:!users!user!appdata!local!microsoft!windows!temporary internet files!content.ie5!",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\c:!users!user!appdata!roaming!microsoft!windows!cookies!",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\c:!users!user!appdata!local!microsoft!windows!history!history.ie5!",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\WininetStartupMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\WininetConnectionMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\WininetProxyRegistryMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\RasPbFile",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\IESQMMUTEX_0_208",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZoneAttributeCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesLockedCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\!IETld!Mutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\c:!users!user!appdata!roaming!microsoft!windows!ietldcache!",
- "action_type": "mutex_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}
], - "file_actions": [
- {
- "file_path": "C:\\Windows\\Globalization\\Sorting",
- "file_name": "sortdefault.nls",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5",
- "file_name": "index.dat",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows\\Cookies",
- "file_name": "index.dat",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\History\\History.IE5",
- "file_name": "index.dat",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "Nsi",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device\\Afd",
- "file_name": "Endpoint",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\DEVICE",
- "file_name": "NETBT_TCPIP_{C9A8B4D3-9F05-4E8A-847F-0F5BED3C3B35}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\DEVICE",
- "file_name": "NETBT_TCPIP_{3D3783A2-703A-11DE-8C7A-806E6F6E6963}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\DEVICE",
- "file_name": "NETBT_TCPIP_{0CF35FE8-AB3D-4958-A5B5-3965387FE970}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\Device",
- "file_name": "RasAcd",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "C:\\Windows\\system32\\drivers\\etc",
- "file_name": "hosts",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\Registration",
- "file_name": "R000000000007.clb",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "rsaenh.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "NetBT_Tcpip_{C9A8B4D3-9F05-4E8A-847F-0F5BED3C3B35}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "NetBT_Tcpip_{00239122-3A15-411A-9EA4-1EA36B798EF3}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\Device",
- "file_name": "NetBT_Tcpip6_{6AB910A0-4841-4400-9D10-45F7D1B27413}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\Device",
- "file_name": "NetBT_Tcpip6_{C9A8B4D3-9F05-4E8A-847F-0F5BED3C3B35}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\Device",
- "file_name": "NetBT_Tcpip6_{0CF35FE8-AB3D-4958-A5B5-3965387FE970}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\Device",
- "file_name": "NetBT_Tcpip6_{00239122-3A15-411A-9EA4-1EA36B798EF3}",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "\\Device\\Afd",
- "file_name": "AsyncConnectHlp",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\syswow64\\en-US",
- "file_name": "urlmon.dll.mui",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows\\IETldCache",
- "file_name": "index.dat",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Windows",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SYSTEM32",
- "file_name": "wow64.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SYSTEM32",
- "file_name": "wow64win.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SYSTEM32",
- "file_name": "wow64cpu.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local",
- "file_name": "Temp",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "sechost.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "IMM32.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "uxtheme.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dwmapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "Riched32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RICHED20.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "KsecDD",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "1f9a3eb5f0d09d97979b90b8f17f1939e7cb6.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "C:\\Windows\\syswow64",
- "file_name": "wininet.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\WinSxS",
- "file_name": "x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\WinSxS\\x86_microsoft.windows.common-controls_6595b64144ccf1df_6.0.7601.17514_none_41e6975e2bd6f2b2",
- "file_name": "comctl32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "WindowsShell.Manifest",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "profapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files",
- "file_name": "Content.IE5",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows",
- "file_name": "Cookies",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\History",
- "file_name": "History.IE5",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ntmarta.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dnsapi.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "iphlpapi.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "WINNSI.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RASAPI32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "rasman.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "rtutils.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\ProgramData\\Microsoft\\Network\\Connections",
- "file_name": "Pbk",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "Ras",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Network\\Connections",
- "file_name": "Pbk",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "sensapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "NLAapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "napinsp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "pnrpnsp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "mswsock.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "winrnr.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "wshtcpip.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "wship6.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dhcpcsvc6.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dhcpcsvc.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "rasadhlp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "fwpuclnt.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "netprofm.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "CRYPTSP.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RpcRtRemote.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "VERSION.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows",
- "file_name": "IETldCache",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\BXA5A9U9",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\A2VOSV08",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users",
- "file_name": "user",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData",
- "file_name": "Local",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "Temporary Internet Files",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData",
- "file_name": "Roaming",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Roaming\\Microsoft\\Windows",
- "file_name": "Cookies",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "History",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\BXA5A9U9",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\A2VOSV08",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\BXA5A9U9",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\A2VOSV08",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\BXA5A9U9",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_written",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Temporary Internet Files\\Content.IE5\\A2VOSV08",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_written",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\System32\\drivers\\etc",
- "file_name": "hosts",
- "action_type": "file_read",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}
], - "registry_actions": [
- {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WOW64",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Terminal Server",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\SafeBoot\\Option",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Srp\\GP\\DLL",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Diagnostics",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\NLS\\Language",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages\\PendingDelete",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\MUI\\Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached\\MachineLanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\OLE\\Tracing",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\OLEAUT",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\crypt32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\Setup",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\SideBySide",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\SideBySide\\AssemblyStorageRoots",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Internet Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows NT\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Policies\\Microsoft\\SQMClient\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\SQMClient\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Content",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Content",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1\\KnownFolders",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-641585131-227076527-2008308082-1000",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KnownFolderSettings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Cookies",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Cookies",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\History",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\History",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{D9DC8A3B-B784-432E-A781-5A1130A75963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{D9DC8A3B-B784-432E-A781-5A1130A75963}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache\\feedplat",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache\\ietld",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache\\MSHist012024111120241112",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\RETRY_HEADERONLYPOST_ONCONNECTIONRESET",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\RETRY_HEADERONLYPOST_ONCONNECTIONRESET",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_BUFFERBREAKING_818408",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_BUFFERBREAKING_818408",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_SKIP_POST_RETRY_ON_INTERNETWRITEFILE_KB895954",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_SKIP_POST_RETRY_ON_INTERNETWRITEFILE_KB895954",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_FIX_CHUNKED_PROXY_SCRIPT_DOWNLOAD_KB843289",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_FIX_CHUNKED_PROXY_SCRIPT_DOWNLOAD_KB843289",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_USE_CNAME_FOR_SPN_KB911149",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_USE_CNAME_FOR_SPN_KB911149",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_DISABLE_NOTIFY_UNVERIFIED_SPN_KB2385266",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_DISABLE_NOTIFY_UNVERIFIED_SPN_KB2385266",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_COMPAT_USE_CONNECTION_BASED_NEGOTIATE_AUTH_KB2151543",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_COMPAT_USE_CONNECTION_BASED_NEGOTIATE_AUTH_KB2151543",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_ALLOW_LONG_INTERNATIONAL_FILENAMES",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_ALLOW_LONG_INTERNATIONAL_FILENAMES",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_PERMIT_CACHE_FOR_AUTHENTICATED_FTP_KB910274",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_PERMIT_CACHE_FOR_AUTHENTICATED_FTP_KB910274",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_DISABLE_UNICODE_HANDLE_CLOSING_CALLBACK",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_DISABLE_UNICODE_HANDLE_CLOSING_CALLBACK",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_DISALLOW_NULL_IN_RESPONSE_HEADERS",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_DISALLOW_NULL_IN_RESPONSE_HEADERS",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_DIGEST_NO_EXTRAS_IN_URI",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_DIGEST_NO_EXTRAS_IN_URI",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_ENABLE_PASSPORT_SESSION_STORE_KB948608",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_EXCLUDE_INVALID_CLIENT_CERT_KB929477",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_EXCLUDE_INVALID_CLIENT_CERT_KB929477",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_USE_UTF8_FOR_BASIC_AUTH_KB967545",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_USE_UTF8_FOR_BASIC_AUTH_KB967545",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_RELEASE_KEYS_ON_UNLOAD_KB975619",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_RELEASE_KEYS_ON_UNLOAD_KB975619",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_SECURITY_FLAG_IGNORE_REVOCATION_KB2275828",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_SECURITY_FLAG_IGNORE_REVOCATION_KB2275828",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\LSA\\AccessProviders",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\LDAP",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\WinSock2\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\AppId_Catalog",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\AppId_Catalog\\2B637A63",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\00000008",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000001",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000002",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000003",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000004",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000005",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000006",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000007",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000008",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000009",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000010",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\00000028",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000001",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000002",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000003",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000004",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000005",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000006",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Winsock2\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\windows\\CurrentVersion\\Internet Settings\\Wpad",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_RETURN_FAILED_CONNECT_CONTENT_KB942615",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_RETURN_FAILED_CONNECT_CONTENT_KB942615",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Policies\\Microsoft\\PeerDist\\Service",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\PeerDist\\Service",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_INCLUDE_PORT_IN_SPN_KB908209",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_INCLUDE_PORT_IN_SPN_KB908209",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_MIME_HANDLING",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_MIME_HANDLING",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASAPI32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASMANCS",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\SQMClient\\Windows\\DisabledProcesses\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\SQMClient\\Windows\\DisabledSessions\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "\\REGISTRY\\USER",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\SQMServiceList",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\AutoProxyTypes",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\AutoProxyTypes",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AutoProxyTypes",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AutoProxyTypes\\Application/x-internet-signup",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AutoProxyTypes\\Application/x-internet-signup",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AutoProxyTypes\\Application/x-ns-proxy-autoconfig",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AutoProxyTypes\\Application/x-ns-proxy-autoconfig",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\DnsCache\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\Windows NT\\DnsClient",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\DNS",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Policies\\Microsoft\\Windows NT\\DNSClient\\DnsPolicyConfig",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\DnsCache\\Parameters\\DnsPolicyConfig",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Policies\\Microsoft\\System\\DNSClient",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Winsock\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip6\\Parameters\\Winsock",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Winsock",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Winsock\\Setup Migration\\Providers",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\Winsock\\Setup Migration\\Providers\\Tcpip",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\Winsock\\Setup Migration\\Providers\\Tcpip6",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Dnscache\\Parameters\\dnscache",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters\\Interfaces\\{C9A8B4D3-9F05-4E8A-847F-0F5BED3C3B35}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\Tcpip\\Parameters\\Interfaces\\{c9a8b4d3-9f05-4e8a-847f-0f5bed3c3b35}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{C9A8B4D3-9F05-4E8A-847F-0F5BED3C3B35}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters\\Interfaces\\{3D3783A2-703A-11DE-8C7A-806E6F6E6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\Tcpip\\Parameters\\Interfaces\\{3d3783a2-703a-11de-8c7a-806e6f6e6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{3D3783A2-703A-11DE-8C7A-806E6F6E6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\Tcpip\\Parameters\\Interfaces\\{0cf35fe8-ab3d-4958-a5b5-3965387fe970}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Linkage",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{C9A8B4D3-9F05-4E8A-847F-0F5BED3C3B35}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{3D3783A2-703A-11DE-8C7A-806E6F6E6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\COM3",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InProcServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{DCB00C01-570F-4A9B-8D69-199FDBA5723B}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Rpc\\Extensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\Progid",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\CLSID\\{A47979D2-C419-11D9-A5B4-001185AD2B89}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\AppID\\kyyjs.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\AppID\\kyyjs.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\OLE\\AppCompat",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Cryptography\\Defaults\\Provider\\Microsoft Strong Cryptographic Provider",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Lsa\\FipsAlgorithmPolicy",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Lsa",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Policies\\Microsoft\\Cryptography\\Configuration",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Policies\\Microsoft\\Cryptography",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Cryptography",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Cryptography\\Offload",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_CLASSES\\Wow6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Wow6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Wow6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Wow6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\BFE",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\NetBT\\Linkage",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Tracing",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\windows\\CurrentVersion\\Internet Settings\\Connections",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASAPI32",
- "action_type": "key_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASMANCS",
- "action_type": "key_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ProxyServer"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_value_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ProxyBypass"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_value_deleted",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ProxyBypass"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASAPI32",
- "action_type": "key_value_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "0",
- "value_name": "EnableFileTracing"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASMANCS",
- "action_type": "key_value_created",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "0",
- "value_name": "EnableFileTracing"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Connections",
- "action_type": "key_value_modified",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "46 00 00 00 29 00 00 00 09 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 00 00 00 00 00 00 00 D0 19 BA 04 84 A6 DA 01 00 00 00 00 00 00 00 00 00 00 00 00 02 00 00 00 17 00 00 00 00 00 00 00 FE 80 00 00 00 00 00 00 A0 9D B9 F3 CD 50 2B D9 0D 00 00 00 00 00 00 00 17 00 00 00 00 00 00 00 FE 80 00 00 00 00 00 00 A0 9D B9 F3 CD 50 2B D9 0D 00 00 00 00 00 00 00 1C 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 17 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 FF FF 0A 00 02 0F 00 00 00 00 00 00 00 00 02 00 00 00 0A 00 02 0F 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0C 00 00 0C D2 24 01 00 68 48 2A 03 98 D8 43 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 40 1B DC 0A 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 02 02 02 02 02 02 02 02 00 ",
- "value_name": "SavedLegacySettings"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Wpad",
- "action_type": "key_value_modified",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "none",
- "value_name": "WpadLastNetwork"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableUserModeCallbackFilter"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\SESSION MANAGER",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "CWDIllegalInDLLSearch"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Terminal Server",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "TSAppCompat"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\safer\\codeidentifiers",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "TransparentEnabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableMetaFiles"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\CustomLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "EMPTY"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Language",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "InstallLanguageFallback"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Type"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PreferredUILanguages"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "MachinePreferredUILanguages"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LoadAppInit_DLLs"
}, - {
- "key_name": "unknown",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "invalid handle",
- "value": "",
- "value_name": "DisableUserModeCallbackFilter"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "en-US"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ScrollInset"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\OLE",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PageAllocatorUseSystemHeap"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\crypt32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DebugHeapFlags"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableImprovedZoneCheck"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Security_HKLM_only"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "ComputerName"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\Setup",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "OOBEInProgress"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\SideBySide",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PreferExternalManifest"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "FromCacheTimeout"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "SecureProtocols"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\internet explorer\\main",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Security_HKLM_Only"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\featurecontrol",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Feature_ClientAuthCertFilter"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Feature_ClientAuthCertFilter"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Rpc",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "MaxRpcSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\SQMClient\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "CEIPEnable"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "SessionStartTimeDefaultDeltaSecs"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Signature"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Content",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PerUserItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Content",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "PerUserItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "Cache"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-641585131-227076527-2008308082-1000",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "ProfileImagePath"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Cookies",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PerUserItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Cookies",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "PerUserItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\History",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "PerUserItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\History",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "PerUserItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\explorer\\FolderDescriptions\\{D9DC8A3B-B784-432E-A781-5A1130A75963}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache\\feedplat",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "CacheRepair"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache\\ietld",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "CachePath"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache\\MSHist012024111120241112",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "CachePath"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "ScavengeCacheFileLimit"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_DISABLE_UNICODE_HANDLE_CLOSING_CALLBACK",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "kyyjs.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Lsa\\AccessProviders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "MartaExtension"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\LDAP",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LdapClientIntegrity"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "WinSock_Registry_Version"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Serial_Access_Num"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000001",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000002",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000003",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000004",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000005",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000006",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000007",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000008",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000009",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000010",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "PackedCatalogItem"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "Serial_Access_Num"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000001",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LibraryPath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000002",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LibraryPath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000003",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LibraryPath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000004",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LibraryPath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000005",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LibraryPath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000006",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "LibraryPath"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Wpad",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "WpadOverride"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\PeerDist\\Service",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "Enable"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_MIME_HANDLING",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "kyyjs.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "EnableConsoleTracing"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASAPI32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "EnableFileTracing"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "ProgramData"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\SQMClient\\Windows\\DisabledProcesses",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "91A1D7B8"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\SQMClient\\Windows\\DisabledSessions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "MachineThrottling"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASMANCS",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "EnableFileTracing"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\SQMServiceList",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "SQMServiceList"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Connections",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "SavedLegacySettings"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AutoProxyTypes\\Application/x-internet-signup",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "DllFile"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AutoProxyTypes\\Application/x-ns-proxy-autoconfig",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait",
- "value": "",
- "value_name": "DllFile"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Internet Explorer\\MAIN\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "object name not found",
- "value": "",
- "value_name": "kyyjs.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\Protocol_Catalog9",
- "action_type": "key_monitored",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\services\\WinSock2\\Parameters\\NameSpace_Catalog5",
- "action_type": "key_monitored",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASAPI32",
- "action_type": "key_monitored",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Wow6432Node\\Microsoft\\Tracing\\kyyjs_RASMANCS",
- "action_type": "key_monitored",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\ProtocolDefaults",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AutoProxyTypes",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "pending",
- "value": "",
- "value_name": ""
}
], - "process_actions": [
- {
- "path": "C:\\Users\\user\\AppData\\Local\\Temp\\kyyjs.exe",
- "action_type": "process_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}, - {
- "path": "unknown",
- "action_type": "process_queried",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
], - "status": "success or wait"
}
], - "modules_loaded": [
- {
- "module_name": "\\KnownDlls\\wow64win.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls\\wow64cpu.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\dwmapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\Riched32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\RICHED20.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\profapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:_Users_user_AppData_Local_Microsoft_Windows_Temporary Internet Files_Content.IE5_index.dat_49152",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:_Users_user_AppData_Roaming_Microsoft_Windows_Cookies_index.dat_16384",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:_Users_user_AppData_Local_Microsoft_Windows_History_History.IE5_index.dat_81920",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ntmarta.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\dnsapi.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\iphlpapi.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\WINNSI.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\RASAPI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\rasman.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\rtutils.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\sensapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\SENS Information Cache",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\dhcpcsvc6.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\dhcpcsvc.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\rasadhlp.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CRYPTSP.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\RpcRtRemote.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\VERSION.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:_Users_user_AppData_Roaming_Microsoft_Windows_IETldCache_index.dat_262144",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "NULL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls\\kernel32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\kernel32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls\\user32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\KERNELBASE.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\Windows\\SharedSection",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\MSVCRT.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\USER32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\GDI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\LPK.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\USP10.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ADVAPI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\RPCRT4.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\SspiCli.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CRYPTBASE.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\MSCTF.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "unknown",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ole32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\wininet.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\SHLWAPI.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\urlmon.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\OLEAUT32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CRYPT32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\MSASN1.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\iertutil.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\shell32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\windows_shell_global_counters",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\WLDAP32.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\ws2_32.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\NSI.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\Normaliz.dll",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\__ComCatalogCache__",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\KnownDlls32\\CLBCatQ.DLL",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\UrlZonesSM_user",
- "module_tag": "",
- "analysis_ids": [
- "db711a31-a3db-457a-9b83-65325bfb1ac2"
]
}
]
}, - {
- "process": {
- "name": "cenip0ph2y.exe",
- "parameters": "\"C:\\Users\\user\\Desktop\\cenip0ph2y.exe\"",
- "process_id": 3768,
- "parent_process_id": 4320,
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "process_time": "2024-12-16T15:11:33"
}, - "mutex_actions": [
- {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\SM0:3768:168:WilStaging_02",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\SM0:3768:64:WilError_01",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Global\\SyncRootManager",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesLockedCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name exists"
}
], - "file_actions": [
- {
- "file_path": "C:\\Windows\\AppPatch",
- "file_name": "sysmain.sdb",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "cenip0ph2y.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\Globalization\\Sorting",
- "file_name": "sortdefault.nls",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device\\DeviceApi",
- "file_name": "CMApi",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local",
- "file_name": "Temp",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64\\en-US",
- "file_name": "PROPSYS.dll.mui",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Caches",
- "file_name": "cversions.1.db",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\Caches",
- "file_name": "{AFBF9F1A-8EE8-4C77-AF34-C647E37CA0D9}.1.ver0x000000000000000a.db",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Documents",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Music",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Pictures",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Videos",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Downloads",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\OneDrive",
- "file_name": "desktop.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found"
}, - {
- "file_path": "",
- "file_name": "MountPointManager",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "c:",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Windows",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user",
- "file_name": "Desktop",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "apphelp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ntdll.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "KERNEL32.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "KERNELBASE.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "MSVCRT.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "win32u.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ucrtbase.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "msvcp_win.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "gdi32full.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "GDI32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "USER32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "IMM32.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "uxtheme.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "bcryptPrimitives.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "CRYPTBASE.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "sechost.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "SspiCli.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RPCRT4.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "combase.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "CNG",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "OLEAUT32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "MSCTF.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ole32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dwmapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "Riched32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RICHED20.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "USP10.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "msls31.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ADVAPI32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "kernel.appcore.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "clbcatq.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dataexchange.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "d3d11.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dcomp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dxgi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "SHCORE.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "twinapi.appcore.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RMCLIENT.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "wininet.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "cfgmgr32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "shlwapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "profapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "powrprof.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "FLTLIB.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "windows.storage.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "shell32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "PROPSYS.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "Caches",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "C:",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "STORAGE#Volume#{3ec9d31c-4877-11ef-9f61-806e6f6e6963}#0000000022600000#{53f5630d-b6bf-11d0-94f2-00a0c91efb8b}",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "edputil.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "urlmon.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "STORAGE#Volume#{3ec9d31c-4877-11ef-9f61-806e6f6e6963}#0000000000100000#{53f5630d-b6bf-11d0-94f2-00a0c91efb8b}",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "iertutil.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "SCSI#CdRom&Ven_VBOX&Prod_CD-ROM#4&2617aeae&0&010000#{53f5630d-b6bf-11d0-94f2-00a0c91efb8b}",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "Windows.StateRepositoryPS.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Users",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users",
- "file_name": "user~1",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1",
- "file_name": "AppData",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData",
- "file_name": "Local",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "CLDAPI.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "WinTypes.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "Caches",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_written",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "cenip0ph2y.exe",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Desktop",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Documents",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Music",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Pictures",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Videos",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\Downloads",
- "file_name": "desktop.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}
], - "registry_actions": [
- {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Segment Heap",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Wow64\\x86",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Terminal Server",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\SafeBoot\\Option",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Srp\\GP\\DLL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\FileSystem\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Disable8And16BitMitigation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\NLS\\Language",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages\\PendingDelete",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\MUI\\Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached\\MachineLanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\DllNXOptions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\cenip0ph2y.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\Display",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Lsa\\FipsAlgorithmPolicy",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Lsa",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Policies\\Microsoft\\Cryptography\\Configuration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Ole\\FeatureDevelopmentProperties",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\AppModel\\Lookaside\\Packages",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Ole",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\OLE\\Tracing",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\OLEAUT",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\Sorting\\Ids",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\Setup",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows NT\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppModelUnlock",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AppID\\cenip0ph2y.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\OLE\\AppCompat",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Rpc\\Extensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000160-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000160-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Ole\\Extensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\COM3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\LocalServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\LocalServer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\Elevation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\Dwm",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\ShellCompatibility\\Applications\\cenip0ph2y.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\WOW6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Policies\\NonEnum",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Policies\\NonEnum",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\InProcServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MyComputer\\NameSpace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KindMap",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1F486A52-3CB1-48FD-8F50-B8DC300D9F9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\LocalServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\LocalServer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\Elevation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Policies\\Microsoft\\WindowsStore",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\LanguageOverlay\\OverlayPackages\\en-US",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\exefile",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\CurVer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\CurVer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\SystemFileAssociations\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\SystemFileAssociations\\.exe\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1\\KnownFolders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{75847177-F077-4171-BD2C-A6BB2164FBD0}\\InProcServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KnownFolderSettings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Directory\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Folder",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\AllFilesystemObjects",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\ShellEx\\IconHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Directory",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Directory\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\DocObject",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Directory\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\BrowseInPlace",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\Directory\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Folder\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\AllFilesystemObjects\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects\\Clsid",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F42EE2D3-909F-4907-8871-4C22FC0BF756}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{f42ee2d3-909f-4907-8871-4c22fc0bf756}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-723508380-312941994-2342154681-1001",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A0C69A99-21C8-4671-8703-7934162FCF1D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{a0c69a99-21c8-4671-8703-7934162fcf1d}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0DDD015D-B06C-45D5-8C4C-F59713854639}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0ddd015d-b06c-45d5-8c4c-f59713854639}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{35286A68-3C57-41A1-BBB1-0EAE73D76C95}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{35286a68-3c57-41a1-bbb1-0eae73d76c95}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7D83EE9B-2244-4E70-B1F5-5393042AF1E4}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7d83ee9b-2244-4e70-b1f5-5393042af1e4}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A52BBA46-E9E1-435F-B3D9-28DAA648C0F6}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A52BBA46-E9E1-435f-B3D9-28DAA648C0F6}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0AC0837C-BBF8-452A-850D-79D08E667CA7}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0AC0837C-BBF8-452A-850D-79D08E667CA7}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{e07a3ca1-0000-0000-0000-602200000000}\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40B2-A1FF-9617C1C9AFFE}\\Instance",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40B2-A1FF-9617C1C9AFFE}\\Instance",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40B2-A1FF-9617C1C9AFFE}\\InProcServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SyncRootManager",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\shell\\open",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{1649D1CF-DEAF-4A68-ABE8-5C9F68572FD1}\\InProcServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\shell\\open\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\exefile\\Application",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile\\Application",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{e07a3ca1-0000-0000-0000-100000000000}\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{3ec9d32f-4877-11ef-9f61-806e6f6e6963}\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ALLOW_REVERSE_SOLIDUS_IN_USERINFO_KB932562",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ALLOW_REVERSE_SOLIDUS_IN_USERINFO_KB932562",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_IETLDLIST_FOR_DOMAIN_DETERMINATION",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_IETLDLIST_FOR_DOMAIN_DETERMINATION",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_URI_DISABLECACHE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_URI_DISABLECACHE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{625B53C3-AB48-4EC1-BA1F-A1EF4146FC19}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{625B53C3-AB48-4EC1-BA1F-A1EF4146FC19}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A4115719-D62E-491D-AA7C-E74B8BE3B067}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A4115719-D62E-491D-AA7C-E74B8BE3B067}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{AE50C081-EBD2-438A-8655-8A092E34987A}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{AE50C081-EBD2-438A-8655-8A092E34987A}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F38BF404-1D43-42F2-9305-67DE0B28FC23}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F38BF404-1D43-42F2-9305-67DE0B28FC23}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1AC14E77-02E7-4E5D-B744-2EB1AE5198B7}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{FDD39AD0-238F-46AF-ADB4-6C85480369C7}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{FDD39AD0-238F-46AF-ADB4-6C85480369C7}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{FD228CB7-AE11-4AE3-864C-16F3910AB8FE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{FD228CB7-AE11-4AE3-864C-16F3910AB8FE}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{00000323-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{00000323-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\WindowsRuntime",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\ActivatableClassId",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\ActivatableClassId\\Windows.Internal.StateRepository.FileTypeAssociation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\ActivatableClassId\\Windows.Internal.StateRepository.FileTypeAssociation\\CustomAttributes",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\OLE\\Diagnosis",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\Server",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\Server\\StateRepository",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\DebugInformation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\WindowsRuntime\\Server\\StateRepository\\CustomAttributes",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{0000032A-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{0000032A-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{00000339-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{00000339-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{8645456F-D9A2-4B82-AFEC-58F0E8DF0ACF}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{8645456f-d9a2-4b82-afec-58f0e8df0acf}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{C53E07EC-25F3-4093-AA39-FC67EA22E99D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\LocalServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\LocalServer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{c53e07ec-25f3-4093-aa39-fc67ea22e99d}\\Elevation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{AF86E2E0-B12D-4C6A-9C5A-D7AA65101E90}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{AF86E2E0-B12D-4c6a-9C5A-D7AA65101E90}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{89BC3F49-F8D9-5103-BA13-DE497E609167}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{89bc3f49-f8d9-5103-ba13-de497e609167}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\PropertySystem\\SystemPropertyHandlers",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\PropertySystem\\PropertyHandlers\\.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\WOW6432Node\\CLSID\\{66742402-F9B9-11D1-A202-0000F81FEDEE}\\OverrideFileSystemProperties",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{66742402-F9B9-11D1-A202-0000F81FEDEE}\\OverrideFileSystemProperties",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\WOW6432Node\\CLSID\\{66742402-F9B9-11D1-A202-0000F81FEDEE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\WOW6432Node\\CLSID\\{66742402-F9B9-11D1-A202-0000F81FEDEE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\ExplorerCLSIDFlags\\{66742402-F9B9-11D1-A202-0000F81FEDEE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes\\ExplorerCLSIDFlags\\{66742402-F9B9-11D1-A202-0000F81FEDEE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40B2-A1FF-9617C1C9AFFE}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40b2-A1FF-9617C1C9AFFE}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40b2-A1FF-9617C1C9AFFE}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40b2-A1FF-9617C1C9AFFE}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SyncRootManager\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Session Manager",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "ResourcePolicies"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Wow64\\x86",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "cenip0ph2y.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Terminal Server",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "TSAppCompat"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\safer\\codeidentifiers",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "TransparentEnabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\FileSystem",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "LongPathsEnabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "LogFlags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Cache"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\CustomLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "EMPTY"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Language",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "InstallLanguageFallback"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Type"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "PreferredUILanguages"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "MachinePreferredUILanguages"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableMetaFiles"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Lsa\\FipsAlgorithmPolicy",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Enabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Lsa",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "FipsAlgorithmPolicy"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Ole",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "PageAllocatorUseSystemHeap"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "en-US"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Sorting\\Ids",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "en-US"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "ScrollInset"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Rpc",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "MaxRpcSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "ComputerName"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\Setup",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "OOBEInProgress"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "AllowDevelopmentWithoutDevLicense"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppModelUnlock",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "AllowDevelopmentWithoutDevLicense"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Ole\\AppCompat",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "RaiseDefaultAuthnLevel"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Rpc\\Extensions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NdrOleExtDLL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000160-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Ole\\Extensions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "DragDropExtension"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\COM3",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Com+Enabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "InprocServer32"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\Dwm",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DebugFailFast"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\Explorer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "EnableShellExecuteHooks"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "UseFindFirstFileEnumeration"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Desktop\\NameSpace",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "ValidateRegItems"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\ShellFolder",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "Attributes"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Policies\\NonEnum",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{20D04FE0-3AEA-1069-A2D8-08002B30309D}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MyComputer\\NameSpace",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "ValidateRegItems"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Drive\\shellex\\FolderExtensions\\{fbeb8a05-beee-4442-804e-409d6c4515e9}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "DriveMask"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KindMap",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ".exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\.exe",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Content Type"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1f486a52-3cb1-48fd-8f50-b8dc300d9f9d}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "InprocServer32"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "ShellState"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Hidden"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\exefile",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\SystemFileAssociations\\.exe",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{B4BFCC3A-DB2C-424C-B029-7FE99A87C641}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Desktop"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{75847177-f077-4171-bd2c-a6bb2164fbd0}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_CURRENT_USER_Classes\\Directory",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Directory",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Folder",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AllFilesystemObjects",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DocObject"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{1B3EA5DC-B587-4786-B4EF-BD1DC332AEAE}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{3EB685DB-65F9-4CF6-A03A-E3EF65729F3D}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{f42ee2d3-909f-4907-8871-4c22fc0bf756}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-723508380-312941994-2342154681-1001",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "ProfileImagePath"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{a0c69a99-21c8-4671-8703-7934162fcf1d}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0ddd015d-b06c-45d5-8c4c-f59713854639}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{35286a68-3c57-41a1-bbb1-0eae73d76c95}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{7d83ee9b-2244-4e70-b1f5-5393042af1e4}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A52BBA46-E9E1-435f-B3D9-28DAA648C0F6}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{0AC0837C-BBF8-452A-850D-79D08E667CA7}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{e07a3ca1-0000-0000-0000-602200000000}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "Data"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{F324E4F9-8496-40b2-A1FF-9617C1C9AFFE}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{1649d1cf-deaf-4a68-abe8-5c9f68572fd1}\\InProcServer32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{e07a3ca1-0000-0000-0000-100000000000}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "Data"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\MountPoints2\\CPC\\Volume\\{3ec9d32f-4877-11ef-9f61-806e6f6e6963}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "Data"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "FrameTabWindow"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "FrameTabWindow"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "RunBinaryControlHostProcessInSeparateAppContainer"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "RunBinaryControlHostProcessInSeparateAppContainer"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\internet explorer\\main",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "TabProcGrowth"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\internet explorer\\main",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "TabProcGrowth"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "CreateUriCacheSize"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "CreateUriCacheSize"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "CreateUriCacheSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "CreateUriCacheSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{625B53C3-AB48-4EC1-BA1F-A1EF4146FC19}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{A4115719-D62E-491D-AA7C-E74B8BE3B067}",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Category"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Ole",
- "action_type": "key_monitored",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SyncRootManager",
- "action_type": "key_monitored",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_value_enumerated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\Drive\\shellex\\FolderExtensions",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones",
- "action_type": "key_enumerated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "pending",
- "value": "",
- "value_name": ""
}
], - "process_actions": [
- {
- "path": "C:\\Users\\user\\Desktop\\cenip0ph2y.exe",
- "action_type": "process_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "path": "C:\\Users\\user\\AppData\\Local\\Temp\\kyyjs.exe",
- "action_type": "process_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "path": "C:\\Users\\user\\AppData\\Local\\Temp\\kyyjs.exe",
- "action_type": "process_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "path": "C:\\Users\\user\\Desktop\\cenip0ph2y.exe",
- "action_type": "process_terminated",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}
], - "modules_loaded": [
- {
- "module_name": "\\KnownDlls\\wow64log.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\apphelp.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\uxtheme.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\dwmapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\Riched32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\RICHED20.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\USP10.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\msls31.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\dataexchange.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\d3d11.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\dcomp.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\dxgi.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\twinapi.appcore.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\RMCLIENT.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\HWNDInterface:1044c",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\wininet.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\PROPSYS.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*cversions.2",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*ProgramData*Microsoft*Windows*Caches*cversions.2",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*Users*user*AppData*Local*Microsoft*Windows*Caches*cversions.1",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*Users*user*AppData*Local*Microsoft*Windows*Caches*cversions.1.ro",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\C:*Users*user*AppData*Local*Microsoft*Windows*Caches*{AFBF9F1A-8EE8-4C77-AF34-C647E37CA0D9}.1.ver0x000000000000000a.db",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\edputil.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\urlmon.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\iertutil.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\Windows.StateRepositoryPS.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\CLDAPI.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\WinTypes.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls\\wow64.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls\\wow64win.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "unknown",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\kernel32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls\\wow64cpu.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\KERNEL32.DLL",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\KERNELBASE.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\Windows\\SharedSection",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "NULL",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\MSVCRT.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\USER32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\win32u.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\GDI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\gdi32full.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\msvcp_win.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\ucrtbase.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\IMM32.DLL",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\combase.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\RPCRT4.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\SspiCli.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\CRYPTBASE.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\bcryptPrimitives.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\sechost.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\MSCTF.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\OLEAUT32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\Windows\\ThemeSection",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Windows\\Theme3648067237",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\Windows\\Theme1642721904",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\ADVAPI32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\ole32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\kernel.appcore.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\__ComCatalogCache__",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\clbcatq.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\SHCORE.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\shell32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\cfgmgr32.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\windows.storage.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\shlwapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\profapi.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\powrprof.dll",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\KnownDlls32\\FLTLIB.DLL",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\windows_shell_global_counters",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*cversions.2.ro",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*{6AF0698E-D558-4F6E-9B3C-3716689AF493}.2.ver0x0000000000000002.db",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\C:*ProgramData*Microsoft*Windows*Caches*{DDF571F2-BE98-426D-8288-1A9A39C3FDA2}.2.ver0x0000000000000001.db",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Global\\windows_shell_global_counters",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}, - {
- "module_name": "\\Sessions\\1\\BaseNamedObjects\\Local\\UrlZonesSM_user",
- "module_tag": "",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
]
}
]
}, - {
- "process": {
- "name": "kyyjs.exe",
- "parameters": "\"C:\\Users\\user~1\\AppData\\Local\\Temp\\kyyjs.exe\" ",
- "process_id": 1112,
- "parent_process_id": 3768,
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "process_time": "2024-12-16T15:11:34"
}, - "mutex_actions": [
- {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\SM0:1112:168:WilStaging_02",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\ZonesLockedCacheCounterMutex",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name exists"
}, - {
- "name": "\\Sessions\\1\\BaseNamedObjects\\Local\\SM0:1112:64:WilError_01",
- "action_type": "mutex_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}
], - "file_actions": [
- {
- "file_path": "C:\\Windows\\AppPatch",
- "file_name": "sysmain.sdb",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\Globalization\\Sorting",
- "file_name": "sortdefault.nls",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device\\DeviceApi",
- "file_name": "CMApi",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device\\Afd",
- "file_name": "Endpoint",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "Nsi",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64\\en-US",
- "file_name": "mswsock.dll.mui",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "wshqos.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64\\en-US",
- "file_name": "wshqos.dll.mui",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "RasAcd",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found"
}, - {
- "file_path": "\\DEVICE",
- "file_name": "NETBT_TCPIP_{7A9DD774-F871-4885-A061-6795D88B5FF8}",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\DEVICE",
- "file_name": "NETBT_TCPIP_{3EC9D319-4877-11EF-9F61-806E6F6E6963}",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found"
}, - {
- "file_path": "C:\\Windows\\system32\\drivers\\etc",
- "file_name": "hosts",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Windows",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData\\Local",
- "file_name": "Temp",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "apphelp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ntdll.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "KERNEL32.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "KERNELBASE.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "",
- "file_name": "C:",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:",
- "file_name": "Users",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users",
- "file_name": "user~1",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1",
- "file_name": "AppData",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user~1\\AppData",
- "file_name": "Local",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "MSVCRT.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "win32u.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ucrtbase.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "msvcp_win.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "gdi32full.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "GDI32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "USER32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "IMM32.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "uxtheme.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "bcryptPrimitives.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "CRYPTBASE.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "sechost.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "SspiCli.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RPCRT4.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "combase.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "CNG",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "OLEAUT32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "MSCTF.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ole32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dwmapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "Riched32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RICHED20.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "USP10.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "msls31.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ADVAPI32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "kernel.appcore.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "clbcatq.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dataexchange.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "d3d11.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dcomp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dxgi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "SHCORE.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "twinapi.appcore.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "RMCLIENT.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "wininet.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "cfgmgr32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "shlwapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "profapi.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "powrprof.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "FLTLIB.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "windows.storage.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "shell32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "1f9a3eb5f0d09d97979b90b8f17f1939e7cb6.exe",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "iertutil.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "WS2_32.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "ondemandconnroutehelper.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "IPHLPAPI.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "winhttp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "mswsock.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "WINNSI.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "NSI.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "urlmon.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "DNSAPI.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "rasadhlp.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dhcpcsvc6.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "dhcpcsvc.DLL",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "fwpuclnt.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\SysWOW64",
- "file_name": "bcrypt.dll",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "\\Device",
- "file_name": "KsecDD",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE",
- "file_name": "1AFL0DSY",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE",
- "file_name": "CCSD3KIS",
- "action_type": "file_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users",
- "file_name": "user",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData",
- "file_name": "Local",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "INetCache",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "INetCookies",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows",
- "file_name": "History",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name collision"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE",
- "file_name": "1AFL0DSY",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\1AFL0DSY",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE",
- "file_name": "CCSD3KIS",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\CCSD3KIS",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_created",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\1AFL0DSY",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_written",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Microsoft\\Windows\\INetCache\\IE\\CCSD3KIS",
- "file_name": "1509uk1[1].htm",
- "action_type": "file_written",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows",
- "file_name": "win.ini",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Users\\user\\AppData\\Local\\Temp",
- "file_name": "kyyjs.exe",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}, - {
- "file_path": "C:\\Windows\\System32\\drivers\\etc",
- "file_name": "hosts",
- "action_type": "file_read",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait"
}
], - "registry_actions": [
- {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Segment Heap",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session Manager",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Wow64\\x86",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Terminal Server",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\SafeBoot\\Option",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Srp\\GP\\DLL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Safer\\CodeIdentifiers",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\FileSystem\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags\\Disable8And16BitMitigation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\NLS\\Language",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\UILanguages\\PendingDelete",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\MUI\\Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached\\MachineLanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\MUI\\Settings\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\LanguageConfiguration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\DllNXOptions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\Image File Execution Options\\kyyjs.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\Display",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Lsa\\FipsAlgorithmPolicy",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Lsa",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Policies\\Microsoft\\Cryptography\\Configuration",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\NULL",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Ole\\FeatureDevelopmentProperties",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\AppModel\\Lookaside\\Packages",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Ole",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\OLE\\Tracing",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\OLEAUT",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\CustomLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Session Manager",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Nls\\Sorting\\Ids",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\Setup",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows NT\\Rpc",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppModelUnlock",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Classes",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\AppID\\kyyjs.exe",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\OLE\\AppCompat",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Rpc\\Extensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000160-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000160-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Ole\\Extensions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\COM3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\OLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\LocalServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\LocalServer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{9FC8E510-A27C-4B3B-B9A3-BF65F00256A8}\\Elevation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\Dwm",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\Hvsi",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{352481E8-33BE-4251-BA85-6007CAEDCF9D}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\SessionInfo\\1\\KnownFolders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "\\REGISTRY\\USER",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_USERS.DEFAULT",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_USERS.DEFAULT\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\User Shell Folders",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{F1B32785-6FBA-4FCF-9D55-7B8E7F157091}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{00000323-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\CLSID\\{00000323-0000-0000-C000-000000000046}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{A168AADC-1674-49DA-AD4F-4F27DF8760D0}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{a168aadc-1674-49da-ad4f-4f27df8760d0}\\ProxyStubClsid32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\TreatAs",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\InprocServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\InprocHandler32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\InprocHandler",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\LocalServer32",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\LocalServer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\CLSID\\{057EEE47-2572-4AA1-88D7-60CE2149E33C}\\Elevation",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_HTTP_USERNAME_PASSWORD_DISABLE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\RETRY_HEADERONLYPOST_ONCONNECTIONRESET",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\RETRY_HEADERONLYPOST_ONCONNECTIONRESET",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_MIME_HANDLING",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_MIME_HANDLING",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BYPASS_CACHE_FOR_CREDPOLICY_KB936611",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BYPASS_CACHE_FOR_CREDPOLICY_KB936611",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_IGNORE_MAPPINGS_FOR_CREDPOLICY",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_IGNORE_MAPPINGS_FOR_CREDPOLICY",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_INCLUDE_PORT_IN_SPN_KB908209",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_INCLUDE_PORT_IN_SPN_KB908209",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BUFFERBREAKING_818408",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_BUFFERBREAKING_818408",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SKIP_POST_RETRY_ON_INTERNETWRITEFILE_KB895954",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SKIP_POST_RETRY_ON_INTERNETWRITEFILE_KB895954",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_FIX_CHUNKED_PROXY_SCRIPT_DOWNLOAD_KB843289",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_FIX_CHUNKED_PROXY_SCRIPT_DOWNLOAD_KB843289",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_CNAME_FOR_SPN_KB911149",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_CNAME_FOR_SPN_KB911149",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ALWAYS_USE_DNS_FOR_SPN_KB3022771",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ALWAYS_USE_DNS_FOR_SPN_KB3022771",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_PERMIT_CACHE_FOR_AUTHENTICATED_FTP_KB910274",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_PERMIT_CACHE_FOR_AUTHENTICATED_FTP_KB910274",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_UNICODE_HANDLE_CLOSING_CALLBACK",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_UNICODE_HANDLE_CLOSING_CALLBACK",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISALLOW_NULL_IN_RESPONSE_HEADERS",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISALLOW_NULL_IN_RESPONSE_HEADERS",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DIGEST_NO_EXTRAS_IN_URI",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DIGEST_NO_EXTRAS_IN_URI",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ENABLE_PASSPORT_SESSION_STORE_KB948608",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_EXCLUDE_INVALID_CLIENT_CERT_KB929477",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_EXCLUDE_INVALID_CLIENT_CERT_KB929477",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_UTF8_FOR_BASIC_AUTH_KB967545",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_UTF8_FOR_BASIC_AUTH_KB967545",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_RETURN_FAILED_CONNECT_CONTENT_KB942615",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_RETURN_FAILED_CONNECT_CONTENT_KB942615",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_PRESERVE_SPACES_IN_FILENAMES_KB952730",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_PRESERVE_SPACES_IN_FILENAMES_KB952730",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\SOFTWARE\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Internet Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_NOTIFY_UNVERIFIED_SPN_KB2385266",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_DISABLE_NOTIFY_UNVERIFIED_SPN_KB2385266",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_COMPAT_USE_CONNECTION_BASED_NEGOTIATE_AUTH_KB2151543",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_COMPAT_USE_CONNECTION_BASED_NEGOTIATE_AUTH_KB2151543",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SCH_SEND_AUX_RECORD_KB_2618444",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_SCH_SEND_AUX_RECORD_KB_2618444",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Dnscache\\Parameters\\dnscache",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Download",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ENABLE_TOKEN_BINDING",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ENABLE_TOKEN_BINDING",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\WinSock2\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\AppId_Catalog",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\AppId_Catalog\\12528D89",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\00000007",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000001",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000002",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000003",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000004",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000005",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000006",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000007",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000008",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000009",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000010",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000011",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000012",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\Protocol_Catalog9\\Catalog_Entries\\000000000013",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\00000014",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000001",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000002",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000003",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000004",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000005",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\WinSock2\\Parameters\\NameSpace_Catalog5\\Catalog_Entries\\000000000006",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Winsock2\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Main",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Policies\\Microsoft\\PeerDist\\Service",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\Microsoft\\Windows NT\\CurrentVersion\\PeerDist\\Service",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\WinHttp",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Winsock\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\afunix\\Parameters\\Winsock",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Winsock",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip6\\Parameters\\Winsock",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Winsock\\Setup Migration\\Providers",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\Winsock\\Setup Migration\\Providers\\Tcpip6",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\SQMServiceList",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\WinHttpAutoProxySvc\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\windows\\CurrentVersion\\Internet Settings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_IGNORE_POLICIES_ZONEMAP_IF_ESC_ENABLED_KB918915",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_IGNORE_POLICIES_ZONEMAP_IF_ESC_ENABLED_KB918915",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\ZoneMap\\Ranges\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\ZoneMap\\Ranges\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ZONES_CHECK_ZONEMAP_POLICY_KB941001",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ZONES_CHECK_ZONEMAP_POLICY_KB941001",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Internet Explorer\\Security",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_LOCALMACHINE_LOCKDOWN",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_LOCALMACHINE_LOCKDOWN",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\0",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\1",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\2",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Lockdown_Zones\\4",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ALLOW_REVERSE_SOLIDUS_IN_USERINFO_KB932562",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_ALLOW_REVERSE_SOLIDUS_IN_USERINFO_KB932562",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_IETLDLIST_FOR_DOMAIN_DETERMINATION",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_USE_IETLDLIST_FOR_DOMAIN_DETERMINATION",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_URI_DISABLECACHE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Internet Explorer\\Main\\FeatureControl\\FEATURE_URI_DISABLECACHE",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Ranges\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\Domains\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\ZoneMap\\ProtocolDefaults\\",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\Zones\\3",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Extensible Cache",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Policies\\Microsoft\\Windows\\Explorer",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{5E6C858F-0E22-4760-9AFE-EA3317B67173}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-21-723508380-312941994-2342154681-1001",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\KnownFolderSettings",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows\\CurrentVersion\\Explorer\\FolderDescriptions\\{2B0F765D-C0E9-4171-908E-08A611B84FF6}\\PropertyBag",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\Winsock\\Setup Migration\\Providers\\Tcpip",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Policies\\Microsoft\\WindowsStore",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Microsoft\\LanguageOverlay\\OverlayPackages\\en-US",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Control\\StateSeparation\\RedirectionMap\\Keys",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Dnscache\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\Windows NT\\DnsClient",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\Software\\WOW6432Node\\Policies\\Microsoft\\System\\DNSClient",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\DNS",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Policies\\Microsoft\\Windows NT\\DNSClient\\DnsPolicyConfig",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\DnsCache\\Parameters\\DnsPolicyConfig",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters\\Interfaces\\{7A9DD774-F871-4885-A061-6795D88B5FF8}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters\\Interfaces\\{3EC9D319-4877-11EF-9F61-806E6F6E6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\Tcpip\\Parameters\\Interfaces\\{3ec9d319-4877-11ef-9f61-806e6f6e6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{7A9DD774-F871-4885-A061-6795D88B5FF8}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{3EC9D319-4877-11EF-9F61-806E6F6E6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{7A9DD774-F871-4885-A061-6795D88B5FF8}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\Dnscache\\InterfaceSpecificParameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Services\\Dnscache\\InterfaceSpecificParameters\\{7A9DD774-F871-4885-A061-6795D88B5FF8}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters\\Interfaces\\{3EC9D319-4877-11EF-9F61-806E6F6E6963}",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Internet Settings\\5.0\\Cache\\Content",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\System\\CurrentControlSet\\Services\\Tcpip\\Parameters",
- "action_type": "key_opened",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": ""
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Session Manager",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "ResourcePolicies"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Wow64\\x86",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "kyyjs.exe"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Terminal Server",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "TSAppCompat"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\safer\\codeidentifiers",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "TransparentEnabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\FileSystem",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "LongPathsEnabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\WOW6432Node\\Microsoft\\Windows NT\\CurrentVersion\\AppCompatFlags",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "LogFlags"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Shell Folders",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Cache"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\CustomLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "EMPTY"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Language",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "InstallLanguageFallback"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\MUI\\UILanguages\\en-US",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Type"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "PreferredUILanguages"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Control Panel\\Desktop\\MuiCached",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "buffer overflow",
- "value": "",
- "value_name": "MachinePreferredUILanguages"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Sorting\\Versions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\GRE_Initialize",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "DisableMetaFiles"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Lsa\\FipsAlgorithmPolicy",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "Enabled"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Lsa",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "FipsAlgorithmPolicy"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Ole",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "PageAllocatorUseSystemHeap"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\ExtendedLocale",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "en-US"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Nls\\Sorting\\Ids",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "en-US"
}, - {
- "key_name": "HKEY_CURRENT_USER\\Software\\Microsoft\\Windows NT\\CurrentVersion\\Windows",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "ScrollInset"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Rpc",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "MaxRpcSize"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\ComputerName\\ActiveComputerName",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "ComputerName"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SYSTEM\\Setup",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "OOBEInProgress"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Policies\\Microsoft\\Windows\\Appx",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "AllowDevelopmentWithoutDevLicense"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\AppModelUnlock",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "AllowDevelopmentWithoutDevLicense"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Ole\\AppCompat",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "object name not found",
- "value": "",
- "value_name": "RaiseDefaultAuthnLevel"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000134-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NULL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Rpc\\Extensions",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
], - "status": "success or wait",
- "value": "",
- "value_name": "NdrOleExtDLL"
}, - {
- "key_name": "HKEY_LOCAL_MACHINE\\SOFTWARE\\Classes\\WOW6432Node\\Interface\\{00000160-0000-0000-C000-000000000046}\\ProxyStubClsid32",
- "action_type": "key_value_queried",
- "analysis_ids": [
- "ebed9363-3bfc-488a-83f9-529db7564a9f"
],