respondersGY

Results 8 comments of respondersGY

The PR does not include the log file `/sysvol/Users//AppData/Roaming/TeamViewer/Connections.txt`

The solution provided by [ruamel](https://yaml.dev/doc/ruamel.yaml/api/#Duplicate_keys) is not sufficient because its discards the second key. > It is an error for two [equal](https://yaml.org/spec/1.1/#equality/) keys to appear in the same mapping node....

Ruamel is not sufficient enough and I guess writing our own yaml parser is not intended. Nonetheless, Ruamel can't be blamed because the valid Netplan configuration does not adhere the...

I currently don't have time to work on this in the upcoming weeks, but I quickly looked into it. I don't understand where the fix should be implemented in the...

Is there other information that you need? ```python In [17]: r = fs.ntfs.mft.get("/WINDOWS/system32/winevt/logs/Microsoft-Windows-Store%4Operational.evtx") In [18]: r.attributes Out[18]: {16: [], 32: [], 48: [, ], 128: [, , , ]} In...

The `CompressedRunlistStream.size` is not the same as the actual size of the record therefore decompression fails. ```python In [16]: fh = r.open() In [17]: len(fh.runlist) Out[17]: 619 In [18]: fh.size...

It occurs on a standard Ubuntu Dekstop image: `target-query -t ubuntu-22-04-arm.vmdk -f etc.etc`.

Workaround that requires two executions of `terraform apply`. ```terraform resource "null_resource" "remove_data_stream" { triggers = { kibana_https_url = ec_elasticsearch_project.main.endpoints.kibana kibana_username = ec_elasticsearch_project.main.credentials.username kibana_password = sensitive(ec_elasticsearch_project.main.credentials.password) elasticsearch_data_stream_name = "test" } provisioner...