<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:googleplay="http://www.google.com/schemas/play-podcasts/1.0"><channel><title><![CDATA[0x55aa]]></title><description><![CDATA[Computer forensics and malware analysis blog.]]></description><link>https://www.ilyakobzar.com</link><image><url>https://substackcdn.com/image/fetch/$s_!wBgC!,w_256,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F7c487d9d-50d5-4295-ad92-966ae46de43e_1182x1182.png</url><title>0x55aa</title><link>https://www.ilyakobzar.com</link></image><generator>Substack</generator><lastBuildDate>Fri, 10 Apr 2026 19:13:24 GMT</lastBuildDate><atom:link href="https://www.ilyakobzar.com/feed" rel="self" type="application/rss+xml"/><copyright><![CDATA[Ilya Kobzar]]></copyright><language><![CDATA[en]]></language><webMaster><![CDATA[ilyakobzar@substack.com]]></webMaster><itunes:owner><itunes:email><![CDATA[ilyakobzar@substack.com]]></itunes:email><itunes:name><![CDATA[Ilya Kobzar]]></itunes:name></itunes:owner><itunes:author><![CDATA[Ilya Kobzar]]></itunes:author><googleplay:owner><![CDATA[ilyakobzar@substack.com]]></googleplay:owner><googleplay:email><![CDATA[ilyakobzar@substack.com]]></googleplay:email><googleplay:author><![CDATA[Ilya Kobzar]]></googleplay:author><itunes:block><![CDATA[Yes]]></itunes:block><item><title><![CDATA[EC2 IAM role STS credentials compromise via IMDS]]></title><description><![CDATA[Exploring how temporary credentials obtained through AWS Instance Metadata Service can be extracted and used both inside and outside EC2 instances, and analyzing their visibility in CloudTrail logs.]]></description><link>https://www.ilyakobzar.com/p/ec2-iam-role-sts-credentials-compromise</link><guid isPermaLink="false">https://www.ilyakobzar.com/p/ec2-iam-role-sts-credentials-compromise</guid><dc:creator><![CDATA[Ilya Kobzar]]></dc:creator><pubDate>Sat, 22 Feb 2025 00:30:55 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/2798935e-ae3a-4958-85e4-a3cc811b1d1a_1212x992.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h3>Background</h3><p>AWS Identity and Access Management (IAM) roles are a key security feature in AWS that allow services, applications, or users to assume temporary permissions to interact with AWS resources. IAM roles are commonly used to grant access without hardcoding credentials. </p><p>AWS Elastic Compute Cloud (EC2) is a web service that let&#8217;s AWS customers to create and manage virtual machines, also called instances. </p><p>To leverage a IAM role within an EC2 instance, the role needs to be first attached to the instance. When the instance is launched, it will <em>assume</em> that role and obtain temporary security credentials without the necessity of leveraging static credentials. These credentials are generated by AWS STS (security token service), and going forward I will be refering to these as &#8220;STS credentials&#8221;.</p><p>IAM role operation within EC2 is supported by Instance Metadata Service (IMDS). IMDS is an interface that is leveraged by EC2 workloads to retrieve metadata of the instance, including, for example, instance ID, AMI ID, and networking information. IMDS also allows to retrieve STS credentials for the IAM role attached to the EC2 instance. STS credentials can be retrieved in 2 ways:</p><ul><li><p>IMDSv1, a legacy version that accepts simple HTTP GET requests. This version was lacking security controls, so Amazon introduced IMDSv2.</p></li><li><p>IMDSv2, the updated version of IMDS, which leverages session-based authentication and reduces risks of certain abuse techniques, e.g. server-side request forgery (SSRF) that existed in IMDSv1.</p></li></ul><p>In an event of threat actor gaining access to an EC2 instance, they can compromise the currently active STS credentials of the attached IAM role, and leverage that with a malicious intent.</p><h3>Lab setup and overview</h3><p>To conduct tests, I used AWS free tier to configure the testing environment. This setup involved:</p><ul><li><p>Creating a VPC and enabling VPC flow logs.</p></li><li><p>Configuring CloudTrail to log events and write them into an S3 bucket.</p></li><li><p>Creating an IAM role that will be compromised.</p></li><li><p>Setting up an EC2 instance with the IAM role attached, while configuring IMDSv2 as <em>optional</em> to allow testing both IMDSv1 and IMDSv2 versions.</p></li></ul><p>Once the environment was ready, I SSH&#8217;ed into the EC2 instance and performed the following experiments:</p><ul><li><p>Extracted STS credentials:</p><ul><li><p>Used IMDSv1 and IMDSv2 to retrieve the STS credentials for the attached IAM role.</p></li></ul></li><li><p>Tested AWS CLI access:</p><ul><li><p>Configured AWS CLI on the EC2 instance to use the extracted STS credentials and ran various test scenarios.</p></li><li><p>Configured AWS CLI on my local system with the same credentials to replicate the test scenarios outside the instance.</p></li></ul></li></ul><p>With the compromised STS credentials, I executed the following actions:</p><ul><li><p>Enumerated S3 bucket with CloudTrail logs using &#8220;s3 ls&#8221; command.</p></li><li><p>Enumerated EC2 Instances using &#8220;describe-instances&#8221; command.</p></li><li><p>Verified identity for the STS credentials using &#8220;get-caller-identity&#8221; command.</p></li></ul><h3>Summary of findings</h3><ul><li><p>In my tests, when both IMDSv1 and IMDSv2 are available on an EC2 instance, there will be one set of credentials created for each of them. This is interesting behavior, however there would not be any way to distinguish which one was generated for IMDSv1 and which one for IMDSv2, without actually querying them on the EC2 instance while credentials are still active.</p></li><li><p>STS credential extraction via IMDS would not be visible in CloudTrail or VPC logs. Host-based forensics of the EC2 instance would be required to detect the initial credential extraction.</p></li><li><p>All API actions that leveraged extracted credentials were logged with the same identity (including instance ID from where the STS credentials were extracted) regardless of location. The fact of instance ID presence within the role session name, demonstrates that AWS maintains the original context of where the credentials were initially issued, even when those credentials are used from completely different environments. This is significant because it means that while the credentials can be used anywhere, the logging still ties all actions back to the original EC2 instance from which they were obtained.</p></li></ul><ul><li><p>While identity details will remain consistent, both source IP addresses and user agents can be used to distinguish between actions that happened within the EC2 instance and from an external IP.</p></li><li><p>CloudTrail comprehensively logs all API calls with these credentials, including successes, failures, and identity verification attempts.</p></li></ul><h3>Experiments deep dive</h3><h4>STS credentials extraction</h4><h5>IMDSv1</h5><p>The IP address 169.254.169.254 is important in relation to IMDS because it serves as the dedicated link-local address through which EC2 instances can query metadata, including retrieving STS credentials. This means EC2 instance does not require Internet connection in order to query instance metadata, including STS credentials of the attached IAM role. </p><p>Easiest way to query IMDSv1 and extract the STS credentials generated for attached IAM role is to run a curl command pointing to 169.254.169.254. Code snippet presented below does just that, retrieves the STS credentials for &#8220;iam-role-blog-research-20250217&#8221; IAM role.</p><pre><code>curl http://169.254.169.254/latest/meta-data/iam/security-credentials/iam-role-blog-research-20250217</code></pre><p>The STS credentials were returned in a form of JSON:</p><pre><code>{
  "Code" : "Success",
  "LastUpdated" : "2025-02-17T17:57:35Z",
  "Type" : "AWS-HMAC",
  "AccessKeyId" : "ASIA2UC3DTBG65TLTQAU",
  "SecretAccessKey" : "6aS1bKIcB...Ocz3FJP+/",
  "Token" : "IQoJb3JpZ2luX2VjEFEYCIQ...8FOFSoiYkSWOnc5Nw==",
  "Expiration" : "2025-02-18T00:31:41Z"
}</code></pre><h5>IMDSv2</h5><p>IMDSv2 works little differently, and STS credentials can be retrieved with the following sequence of commands:</p><ul><li><p>Retrieve IMDS session token. This should not be confused with STS credentials. IMDS session token is what differentiates IMDSv2 from IMDSv1. This security measure was specifically introduced to prevent SSRF (server-side request forgery) attacks. The token is retrieved via PUT request towards "http://169.254.169.254/latest/api/token". The command would look like this, where we set environmental variable TOKEN to the output of PUT request:</p><pre><code>TOKEN=`curl -X PUT "http://169.254.169.254/latest/api/token" -H "X-aws-ec2-metadata-token-ttl-seconds: 21600"`</code></pre></li><li><p>TOKEN variable now can be leveraged to query IMDS and export the STS credentials via curl command:</p><pre><code>curl -H "X-aws-ec2-metadata-token: $TOKEN" http://169.254.169.254/latest/meta-data/iam/security-credentials/iam-role-blog-research-20250217</code></pre></li><li><p>The STS credentials retrieved via IMDSv2 will be presented in exactly the same JSON format as what we saw in IMDSv1 example, however the actual credentials will be different:</p><pre><code>{
  "Code" : "Success",
  "LastUpdated" : "2025-02-17T17:56:52Z",
  "Type" : "AWS-HMAC",
  "AccessKeyId" : "ASIA2UC3DTBGQTU3AUTM",
  "SecretAccessKey" : "gPznXQzVxajv6...BMyMslV",
  "Token" : "IQoJb3JpZ2luX2VjEFIaCXVzLWVhc3Qt...DGsgN9CmeRzA==",
  "Expiration" : "2025-02-18T00:31:41Z"
}</code></pre></li></ul><h5>Analysis</h5><p>Now when we extracted the STS credentials of the attached IAM role, I would like to understand if any of the events related to STS credentials extraction would appear in AWS logs. I leveraged <a href="https://github.com/ilyakobzar/dfir-tools/blob/main/cloudtrail_vpc_log_collector.py">this tool</a> to extract CloudTrail and VPC logs that were captured for my lab environment. In the tool I leveraged the STS credentials I previously extracted from the EC2 instance via IMDSv1. Analysis results:</p><ul><li><p>The VPC logs would not be helpful here, which is expected since there were no network connections established with dedicated link-local IP address 169.254.169.254.</p></li><li><p>The ClourTrail logs will not show the events of threat actor retrieving STS credentials with neither IMDSv1 nor IMDSv2. However, we will see the AssumeRole events that are triggered either at EC2 instance startup or after the STS credentials were expired. One interesting discovery I made is STS will generate two separate sets of credentials - one for IMDSv1 and another for IMDSv2. The AssumeRole events will be generated for both credentials simultaneously (in my case the recorded timestamp was &#8220;2025-02-17T17:56:41Z&#8221;, the time when I launched the instance). </p></li><li><p>In order to investigate the STS credentials extraction via IMDS, you would need to leverage host-based forensic artifacts of the affected EC2 instance.</p></li></ul><h4>Leveraging compromised STS credentials</h4><p>For both experiments I leveraged the STS credentials that I extracted before, specifically the ones with the AccessKeyID &#8220;ASIA2UC3DTBG65TLTQAU&#8221; produced via IMDSv1.</p><h5>Testing STS credentials within an AWS EC2 instance</h5><p>First I configured the AWS CLI within an EC2 instance to utilize the extracted STS credentials:</p><pre><code>aws configure set aws_access_key_id "ASIA2UC3DTBG65TLTQAU"
aws configure set aws_secret_access_key "6aS1bKIcBGKkxm..."
aws configure set aws_session_token "IQoJb3JpZ2luX2VjEFIaCXVzLW..."
aws configure set region us-east-1</code></pre><p>Then I launched the test commands, that would (1) list S3 bucket with CloudTrail logs, (2) enumerate EC2 Instances, and (3) verify identity for the STS credentials.</p><pre><code>aws s3 ls
aws ec2 describe-instances
aws sts get-caller-identity</code></pre><p>I observed that with the STS credentials I previously extracted via IMDSv1:</p><ul><li><p>I could successfully list S3 buckets.</p></li><li><p>I received an "UnauthorizedOperation" error when attempting to list EC2 instances for the account (this is expected as my IAM role did not have the necessary permissions to perform the ec2:DescribeInstances action).</p></li><li><p>I could retrieve the identity information showing I was using the assumed IAM role.</p></li></ul><h5>Testing the same credentials outside of AWS</h5><p>I exported the exact same temporary credentials obtained via IMDSv1, and created a &#8220;stolen-creds-research&#8221; profile on my local machine in AWS CLI:</p><pre><code>aws configure --profile stolen-creds-research
AWS Access Key ID: ASIA2UC3DTBG65TLTQAU
AWS Secret Access Key: 6aS1bKIcBGKkxmsrJYe/
Default region name: us-east-1
Default output format: json
aws configure set aws_session_token "IQoJb3JpZ2luX2VjEF..." --profile stolen-creds-research</code></pre><p>Then, using the created profile, I repeated the same operations as in the previous test:</p><pre><code>aws s3 ls --profile stolen-creds-research
aws ec2 describe-instances --profile stolen-creds-research
aws sts get-caller-identity --profile stolen-creds-research</code></pre><p>The results were identical to those from within the EC2 instance, demonstrating that temporary credentials maintain the same permissions regardless of where they're used.</p><h5>CloudTrail logs analysis</h5><p>I extracted and analyzed the CloudTrail logs to find evidence of my testing operations.</p><ul><li><p>All actions, whether performed within AWS or externally, were recorded in logs with the compromised AccessKeyId (ASIA2UC3DTBG65TLTQAU). In addition to that, the actions were recorded with the same identity, including the instance ID from where the credentials were extracted!</p></li></ul><pre><code>arn:aws:sts::730335516749:assumed-role/iam-role-blog-research-20250217/i-0242db56002b56caf</code></pre><ul><li><p>While the principal remains the same, the source IP address changes depending on where the credentials are used:</p><ul><li><p>EC2 Instance: 18.204.198.227 (AWS IP)</p></li><li><p>External Machine: 74.64.xx.xx (my local IP)</p></li></ul></li><li><p>The logs include the AWS CLI version and operating system, which differ between environments:</p><ul><li><p>EC2: aws-cli/2.17.18 md/awscrt#0.19.19 ua/2.0 os/linux#6.1.127-135.201.amzn2023.x86_64</p></li><li><p>External: aws-cli/2.24.5 md/awscrt#0.23.8 ua/2.0 os/macos#22.6.0 md/arch#x86_64</p></li></ul></li><li><p>AWS CloudTrail thoroughly logs all API calls, including:</p><ul><li><p>Successful operations (S3 bucket listing)</p></li><li><p>Failed operations with detailed error messages (the error I got after running &#8220;aws ec2 describe-instances&#8221;)</p></li><li><p>Identity verification actions (GetCallerIdentity)</p></li></ul></li></ul><h3>References</h3><ul><li><p>&#8220;AWS Instance Metadata Service: A Quick Refresher&#8221; by Syed Hasan (<a href="https://syedhasan010.medium.com/aws-instance-metadata-service-a-quick-refresher-4b61ed9af23a">https://syedhasan010.medium.com/aws-instance-metadata-service-a-quick-refresher-4b61ed9af23a</a>)</p></li><li><p>AWS documentation: &#8220;Access instance metadata for an EC2 instance&#8221; (<a href="https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html">https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/instancedata-data-retrieval.html</a>)</p></li><li><p>&#8220;Daily Blog #751: Sunday Funday 2/16/25&#8221; by David Cowen (<a href="https://www.hecfblog.com/2025/02/daily-blog-751-sunday-funday-21625.html">https://www.hecfblog.com/2025/02/daily-blog-751-sunday-funday-21625.html</a>)</p></li></ul><h3>Tools used</h3><ul><li><p>CloudTrail and VPC flow log collector (<a href="https://github.com/ilyakobzar/dfir-tools/blob/main/cloudtrail_vpc_log_collector.py">https://github.com/ilyakobzar/dfir-tools/blob/main/cloudtrail_vpc_log_collector.py</a>)</p></li></ul>]]></content:encoded></item><item><title><![CDATA[Revisiting ShellBags in Windows 11]]></title><description><![CDATA[Does Windows 11 treat ShellBags differently?]]></description><link>https://www.ilyakobzar.com/p/revisiting-shellbags-in-windows-11</link><guid isPermaLink="false">https://www.ilyakobzar.com/p/revisiting-shellbags-in-windows-11</guid><dc:creator><![CDATA[Ilya Kobzar]]></dc:creator><pubDate>Sat, 15 Feb 2025 17:37:22 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/$s_!4-j2!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h3>Background</h3><p>ShellBags were introduced in Microsoft Windows to provide a consistent and personalized interface to users when interacting with directories through the Windows Explorer application. This includes, but is not limited to:</p><ul><li><p>Icon size, position, view mode (e.g., list, details, tiles).</p></li><li><p>Window size, and location.</p></li><li><p>Recording information for local drives, network shares, and removable devices.</p></li></ul><p>ShellBags are a well-known and well-documented registry-based forensic artifact that is highly valuable in forensic analysis, as they allow investigators to determine which directories a user accessed via Windows Explorer and when. Another key advantage of ShellBags is that they retain data for accessed directories even after those directories have been deleted from the file system.</p><p>In this post, I want to explore if there are any specifics in how Windows 11 records ShellBags for common user operations within Windows Explorer, with a specific focus on timestamps that indicate user interactions with directories, i.e. &#8220;FirstInteracted&#8221; and &#8220;LastInteracted&#8221; fields.</p><h3>Limitations</h3><ul><li><p>The experiments were performed on Windows 11 Pro, version 24H2, OS build 26100.3194.</p></li><li><p>There were no ShellBag entries for any of the directories covered in the experiments prior to me beginning the tests. </p></li></ul><h3>Executive summary</h3><p>ShellBags entries were updated only when the user actively navigated to a directory in Windows Explorer. Edge cases, such as directory creation via the command line, copying or moving directories and files, or merely clicking on directories, did not trigger ShellBag updates. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!4-j2!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!4-j2!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 424w, https://substackcdn.com/image/fetch/$s_!4-j2!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 848w, https://substackcdn.com/image/fetch/$s_!4-j2!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 1272w, https://substackcdn.com/image/fetch/$s_!4-j2!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!4-j2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png" width="1310" height="504" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:504,&quot;width&quot;:1310,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:118653,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!4-j2!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 424w, https://substackcdn.com/image/fetch/$s_!4-j2!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 848w, https://substackcdn.com/image/fetch/$s_!4-j2!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 1272w, https://substackcdn.com/image/fetch/$s_!4-j2!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F799721ef-309a-4df8-8257-1ef7a050ab24_1310x504.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 1 - analysis summary</figcaption></figure></div><p>Please refer to the section &#8220;Experiments&#8221; for the detailed documentation on the performed tests and results.</p><h3>Experiments</h3><p>I performed a series of tests covering some common operations users perform on a daily basis:</p><ul><li><p>Test #1: A directory created in the command line. </p></li><li><p>Test #2: A file being copy and pasted. </p></li><li><p>Test #3: A directory being copy and pasted. </p></li><li><p>Test #4: A file being cut and pasted. </p></li><li><p>Test #5: A directory being cut and pasted. </p></li><li><p>Test #6: A directory being opened from file explorer. </p></li><li><p>Test #7: A directory being opened from the desktop. </p></li><li><p>Test #8: A directory being clicked on from file explorer. </p></li><li><p>Test #9: A directory being clicked on from the desktop. </p></li></ul><h4>Test #1</h4><p>The main investigative question I want to answer with this experiment - in an event of a directory created in the command line, would a ShellBag entry be created for the directory?</p><p>In this test I leveraged &#8220;mkdir&#8221; command to create a directory &#8220;C:\_Data\Tests\01_dir_created_in_cmd_line\&#8221;. I manually recorded the following time stamp when the directory was created &#8220;2025-02-15T00:50:24Z&#8221;. There was no ShellBag entry created for the directory &#8220;C:\_Data\Tests\01_dir_created_in_cmd_line\&#8221;.</p><blockquote><p>With that said, the ShellBag entry was not created in an event of a directory created in the command line.</p></blockquote><h4>Test #2</h4><p>The main investigative question I want to answer with this experiment - in an event of file copy and paste, would a ShellBag entry be updated for the directory where the file was copied to?</p><p>In this test I leveraged Windows Explorer copy and paste functionality for the file that was copied to a directory &#8220;C:\_Data\Tests\2_file_copy_paste\&#8221;. I manually recorded the following time stamps during the experiment: </p><ul><li><p>Opened the target directory: &#9;2025-02-15T00:52:46Z</p></li><li><p>Pasted the file: &#9;&#9;&#9;&#9;2025-02-15T00:56:31Z</p></li><li><p>Closed the target directory: &#9;2025-02-15T00:59:05Z</p></li></ul><p>The time stamp &#8220;2025-02-15T00:52:44Z&#8221; was recorded for the target directory, which corresponds with the time when I opened the directory (recorded within the &#8220;FirstInteracted&#8221; field of the ShellBag entry). There was no time stamp recorded within the &#8220;LastInteracted&#8221; field. </p><blockquote><p>With that said, the operation of copying a file did not update the ShellBag entry for the target directory.</p></blockquote><h4>Test #3</h4><p>The main investigative question I want to answer with this experiment - in an event of directory being copy and pasted, would ShellBag entries be updated for both the target directory and the copied directory? To answer the question, I explored two scenarios covered below. I leveraged Windows Explorer copy and paste functionality to copy test folders. </p><p>The first scenario is when a directory &#8220;3_folder_copy_paste&#8221; was copied from the desktop to a directory &#8220;C:\_Data\Tests\&#8221;. I manually recorded the following time stamp when the directory was pasted: &#8220;2025-02-15T01:00:56Z&#8221;. I did not observe ShellBag entry created neither for the source directory &#8220;3_folder_copy_paste&#8221; neither located on the desktop, nor for the copied directory &#8220;C:\_Data\Tests\3_folder_copy_paste\&#8221;.</p><p>The second scenario is when a directory &#8220;3.1_folder&#8220; was copied from the desktop to &#8220;C:\_Data\Tests\3.1_folder_copy_paste\&#8221;. I manually recorded the following time stamps during the experiment: </p><ul><li><p>Target directory created: &#9;&#9;2025-02-15T01:33:33Z</p></li><li><p>Opened the target directory: &#9;2025-02-15T01:35:20Z</p></li><li><p>Pasted the directory: &#9;&#9;&#9;2025-02-15T01:37:46Z</p></li><li><p>Closed the target directory: &#9;2025-02-15T01:38:47Z</p></li></ul><p>The time stamp &#8220;2025-02-15T01:35:20Z&#8221; was recorded for the target directory &#8220;C:\_Data\Tests\3.1_folder_copy_paste\&#8221;, which corresponds with the time when I opened the directory (recorded within the &#8220;FirstInteracted&#8221; field of the ShellBag entry). There was no time stamp recorded within the &#8220;LastInteracted&#8221; field. </p><blockquote><p>With that said, the operation of copying a directory did not update ShellBag entries neither for the directory that was copied nor for the target directory where directory was copied to.</p></blockquote><h4>Test #4</h4><p>The main investigative question I want to answer with this experiment - in an event of file being cut and pasted, would a ShellBag entry be updated for the directory where the file was pasted to?</p><p>In this test I leveraged Windows Explorer cut and paste functionality for the file that was moved to a directory &#8220;C:\_Data\Tests\4_file_cut_paste\&#8221;. I manually recorded the following time stamps during the experiment: </p><ul><li><p>Opened the target directory: &#9;2025-02-15T01:03:30Z</p></li><li><p>Pasted the file: &#9;&#9;&#9;&#9;2025-02-15T01:04:47Z</p></li><li><p>Closed the target directory: &#9;2025-02-15T01:06:31Z</p></li></ul><p>The time stamp &#8220;2025-02-15T01:03:30Z&#8221; was recorded for the target directory &#8220;C:\_Data\Tests\4_file_cut_paste\&#8221;, which corresponds with the time when I opened the directory (recorded within the &#8220;FirstInteracted&#8221; field of the ShellBag entry). There was no time stamp recorded within the &#8220;LastInteracted&#8221; field. </p><blockquote><p>With that said, the operation of moving a file did not update the ShellBag entry for the directory where the file was pasted to.</p></blockquote><h4>Test #5</h4><p>The main investigative question I want to answer with this experiment - in an event of directory being cut and pasted, would ShellBag entries be updated for both the target directory and the moved directory? To answer the question, I explored two scenarios covered below. I leveraged Windows Explorer cut and paste functionality to move test folders. </p><p>The first scenario is when a directory &#8220;5_folder_cut_paste&#8221; was copied from the desktop to a directory &#8220;C:\_Data\Tests\&#8221;. I manually recorded the following time stamp when the directory was pasted: &#8220;2025-02-15T01:11:46Z&#8221;. I did not observe ShellBag entry created neither for the source directory &#8220;5_folder_cut_paste&#8221; neither located on the desktop, nor for the target directory &#8220;C:\_Data\Tests\5_folder_cut_paste\&#8221;.</p><p>The second scenario is when a directory &#8220;5.1_folder&#8220; was copied from the desktop to &#8220;C:\_Data\Tests\5.1_folder_cut_paste\&#8221;. I manually recorded the following time stamps during the experiment: </p><ul><li><p>Target directory created: &#9;&#9;2025-02-15T01:40:23Z</p></li><li><p>Opened the target directory: &#9;2025-02-15T01:41:40Z</p></li><li><p>Pasted the directory: &#9;&#9;&#9;2025-02-15T01:43:03Z</p></li><li><p>Closed the target directory: &#9;2025-02-15T01:44:01Z</p></li></ul><p>The time stamp &#8220;2025-02-15T01:41:40Z&#8221; was recorded for the target directory &#8220;C:\_Data\Tests\5.1_folder_cut_paste\&#8221;, which corresponds with the time when I opened the directory (recorded within the &#8220;FirstInteracted&#8221; field of the ShellBag entry). &#8220;LastInteracted&#8221; ShellBag field also recorded the same time stamp - &#8220;2025-02-15T01:41:40Z&#8221;.</p><blockquote><p>With that said, the operation of moving a directory via cut and paste did not update ShellBag entries neither for the directory that was copied nor for the target directory where directory was copied to.</p></blockquote><h4>Test #6</h4><p>The main investigative question I want to answer with this experiment - in an event of directory being opened via Windows Explorer from a non-desktop location, would a ShellBag entry be updated for the directory?</p><p>In this test I leveraged Windows Explorer double click operation to open the target directory &#8220;C:\_Data\Tests\6_dir_opened_from_file_explorer\&#8221;. I manually recorded the following time stamps during the experiment: </p><ul><li><p>Opened the target directory:&#9;2025-02-15T01:13:16Z</p></li><li><p>Closed the target directory:&#9;2025-02-15T01:15:14Z</p></li></ul><p>The time stamp &#8220;2025-02-15T01:13:16Z&#8221; was recorded for the target directory &#8220;C:\_Data\Tests\6_dir_opened_from_file_explorer\&#8221;, which corresponds with the time when I opened the directory (recorded within the &#8220;FirstInteracted&#8221; field of the ShellBag entry). There was no time stamp recorded within the &#8220;LastInteracted&#8221; field.</p><blockquote><p>With that said, the operation of opening a directory via Windows Explorer from a non-Desktop location does update the ShellBag entry. This behavior is expected and was present in prior versions of Windows.</p></blockquote><h4>Test #7</h4><p>The main investigative question I want to answer with this experiment - in an event of directory opened from the Desktop, would ShellBag entries be updated for the directory? </p><p>In this test I leveraged Windows Explorer double click operation to open the target directory &#8220;%USERPROFILE%\Desktop\7_dir_opened_from_desktop\&#8221;. I manually recorded the following time stamps during the experiment:</p><ul><li><p>Opened the target directory:&#9;2025-02-15T01:22:10Z</p></li><li><p>Closed the target directory:&#9;2025-02-15T01:24:42Z</p></li></ul><p>The time stamp &#8220;2025-02-15T01:22:10Z&#8221; was recorded for the target directory &#8220;%USERPROFILE%\Desktop\7_dir_opened_from_desktop\&#8221;, which corresponds with the time when I opened the directory (recorded within the &#8220;FirstInteracted&#8221; field of the ShellBag entry). There was no time stamp recorded within the &#8220;LastInteracted&#8221; field. Interestingly enough, the flag &#8220;HasExplored&#8221; was set to FALSE in the ShellBag entry.</p><blockquote><p>With that said, the operation of opening a directory via Windows Explorer from a Desktop location does update the ShellBag entry. This behavior is expected and was present in prior versions of Windows. However, &#8220;HasExplored&#8221; was set to FALSE.</p></blockquote><h4>Test #8</h4><p>The main investigative question I want to answer with this experiment - in an event of directory being clicked on (one time click to select the directory, without navigating to the directory) within Windows Explorer from a non-desktop location, would ShellBag entries be updated for the directory?</p><p>In this test I leveraged Windows Explorer single click operation to select the target directory &#8220;C:\_Data\Tests\8_dir_clicked_from_file_explorer&#8221;. I manually recorded the following time stamps during the experiment:</p><ul><li><p>Clicked the target directory:&#9;&#9;2025-02-15T01:26:55Z</p></li><li><p>Un-clicked the target directory:&#9;&#9;2025-02-15T01:28:05Z</p></li></ul><p>ShellBag entry for &#8220;C:\_Data\Tests\8_dir_clicked_from_file_explorer\&#8221; was not created.</p><blockquote><p>With that said, the operation of single click on a directory within Windows Explorer from a non-desktop location, did not update the ShellBag entry for the target directory will not be updated.</p></blockquote><h4>Test #9</h4><p>The main investigative question I want to answer with this experiment - in an event of directory being clicked on (one time click to select the directory, without navigating to the directory) within Windows Explorer from the Desktop location, would ShellBag entries be updated for the directory?</p><p>In this test I leveraged Windows Explorer single click operation to select the target directory &#8220;%USERPROFILE%\Desktop\9_dir_clicked_from_desktop\&#8221;. I manually recorded the following time stamps during the experiment:</p><ul><li><p>Clicked the target directory:&#9;&#9;2025-02-15T01:30:27Z</p></li><li><p>Un-clicked the target directory:&#9;&#9;2025-02-15T01:31:25Z</p></li></ul><p>ShellBag entry for &#8220;%USERPROFILE%\Desktop\9_dir_clicked_from_desktop\&#8221; was not created.</p><blockquote><p>With that said, the operation of single click on a directory within Windows Explorer from the Desktop location, did not update the ShellBag entry for the target directory will not be updated.</p></blockquote><h3>References</h3><ul><li><p>The theme for this post was inspired by David Cowen&#8217;s Sunday Funday challenge! (<a href="https://www.hecfblog.com/2025/02/daily-blog-744-sunday-funday-2925.html">https://www.hecfblog.com/2025/02/daily-blog-744-sunday-funday-2925.html</a>)</p></li><li><p>&#8220;Windows ShellBag Forensics in Depth&#8221; by Vincent Lo (<a href="https://www.giac.org/paper/gcfa/9576/windows-shellbag-forensics-in-depth/128522">https://www.giac.org/paper/gcfa/9576/windows-shellbag-forensics-in-depth/128522</a>)</p></li></ul><h3>Tools used</h3><ul><li><p>ShellBags Explorer and SBECmd by Eric Zimmerman (<a href="https://ericzimmerman.github.io/#!index.md">https://ericzimmerman.github.io/#!index.md</a>)</p></li></ul>]]></content:encoded></item><item><title><![CDATA[LevelDB WAL log - extracting ChatGPT conversations]]></title><description><![CDATA[Write-ahead log analysis]]></description><link>https://www.ilyakobzar.com/p/leveldb-wal-log-extracting-chatgpt</link><guid isPermaLink="false">https://www.ilyakobzar.com/p/leveldb-wal-log-extracting-chatgpt</guid><dc:creator><![CDATA[Ilya Kobzar]]></dc:creator><pubDate>Fri, 31 Jan 2025 03:47:59 GMT</pubDate><enclosure url="https://substackcdn.com/image/fetch/f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h3>Background</h3><p>ChatGPT desktop app uses LevelDB's write-ahead logging (WAL) mechanism to temporarily store the cache of conversation history. </p><p>The WAL log is written to disk after ChatGPT application (i.e. associated process tree) is terminated, which may happen either at system shutdown/reboot or if the user exits the application. The exact location of the binary: &#8220;%UserProfile%\AppData\Local\Packages\OpenAI.ChatGPT-Desktop_2p2nqsd0c76g0\LocalCache\Roaming\ChatGPT\IndexedDB\https_chatgpt.com_0.indexeddb.leveldb\######.log&#8221; (&#8220;000003.log&#8221; in my case).</p><p>The log will stay on disk until the user loggs off from the ChatGPT account within the app. When that happens, the contents of &#8220;https_chatgpt.com_0.indexeddb.leveldb\&#8221; will be erased.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!2wQj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!2wQj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 424w, https://substackcdn.com/image/fetch/$s_!2wQj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 848w, https://substackcdn.com/image/fetch/$s_!2wQj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 1272w, https://substackcdn.com/image/fetch/$s_!2wQj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!2wQj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png" width="1456" height="880" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:880,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:367242,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!2wQj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 424w, https://substackcdn.com/image/fetch/$s_!2wQj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 848w, https://substackcdn.com/image/fetch/$s_!2wQj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 1272w, https://substackcdn.com/image/fetch/$s_!2wQj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F6d71c001-d6b2-4e99-bf45-f164e518a33c_1874x1132.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 1 - &#8220;000003.log&#8221; WAL log</figcaption></figure></div><p>When the user logs back into the app, the contents of &#8220;https_chatgpt.com_0.indexeddb.leveldb\&#8221; will be re-created, however, no conversation log will be present in &#8220;000003.log&#8221;. If you select any of the historical conversations within the ChatGPT app, their contents will be written in a structured way into &#8220;000003.log&#8221;. Thus, we can potentially distinguish between conversations that were entered directly into the app and historical conversations that the user accessed.</p><h3>Limitations</h3><ul><li><p>ChatGPT desktop app version 1.2025.021. </p></li><li><p>Lab operating system: Windows 10 Pro, version 21H2, OS build &#8220;19044.1766&#8221;.</p></li><li><p>Tests were performed on a freshly installed ChatGPT desktop application. That means if there was a heavy usage of the app, some behaviors may change. LevelDB is known for utilizing WAL as a temporary storage. When the log file reaches 4MB in size, the contents of the WAL binary will be written to a LevelDB database binary (.ldb), as referenced in the article by Alex Caithness (please refer to References section for the article link).</p></li></ul><h3>WAL binary structure</h3><h4>Initial processing</h4><p>To streamline the analysis of the WAL log I leveraged &#8220;leveldbutil&#8221; application&#8217;s &#8220;dump&#8221; option. This helps to parse the log and present it in more structured format, that we can leverage in both manual and automated analysis.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!XL-b!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!XL-b!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 424w, https://substackcdn.com/image/fetch/$s_!XL-b!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 848w, https://substackcdn.com/image/fetch/$s_!XL-b!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 1272w, https://substackcdn.com/image/fetch/$s_!XL-b!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!XL-b!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png" width="1456" height="876" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/cbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:876,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:781879,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!XL-b!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 424w, https://substackcdn.com/image/fetch/$s_!XL-b!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 848w, https://substackcdn.com/image/fetch/$s_!XL-b!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 1272w, https://substackcdn.com/image/fetch/$s_!XL-b!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcbccfb3b-0f58-4224-92c8-f3751cdbd956_2102x1264.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 2 - leveldbutil processed WAL log</figcaption></figure></div><p>Here are some of the patterns that can be immediately spotted:</p><ul><li><p>The data is written in chunks divided by &#8220;--- offset #; sequence #&#8221; separator. Each chunk contains a set of operations that are executed simultaneously. For example, at offset 0 we only have one operation, however at offset 308 we can see that 20 operations were executed.</p></li><li><p>&#8220;offset #&#8221; - indicates the byte position in the file where each database record starts.</p></li><li><p>&#8220;sequence #&#8221; - a monotonically increasing number that preserves the order of operations, and each operation gets a unique sequence number. The operations can be &#8220;put&#8221; and &#8220;del&#8221;.</p></li><li><p>&#8220;put&#8221; - database operation that adds or updates a key-value pair in the database, with the format is typically being "put 'key' 'value'&#8220;, e.g. &#8220;put '\x00\x00\x00\x002\x00' '\x08\x01'&#8220; from the Figure 2 screenshot.</p></li><li><p>&#8220;del&#8221; - database operation that removes a key-value pair from the database, with the format is typically being &#8220;del 'key'&#8220;, e.g. &#8220;del '\x00\x00\x00\x002\x01\x0c'&#8220; from Figure 3 screenshot.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!iBrM!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!iBrM!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 424w, https://substackcdn.com/image/fetch/$s_!iBrM!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 848w, https://substackcdn.com/image/fetch/$s_!iBrM!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 1272w, https://substackcdn.com/image/fetch/$s_!iBrM!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!iBrM!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png" width="1456" height="185" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:185,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:222584,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!iBrM!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 424w, https://substackcdn.com/image/fetch/$s_!iBrM!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 848w, https://substackcdn.com/image/fetch/$s_!iBrM!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 1272w, https://substackcdn.com/image/fetch/$s_!iBrM!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F93f5d7d5-1162-4d08-82f0-e000a5566d4b_1790x228.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 3 - &#8220;del&#8221; operations recorded in the WAL log</figcaption></figure></div><h4>Initial conversation record</h4><p>The WAL log shows that ChatGPT begins writing conversations at offset 1816 (please refer to Figure 4 down below), assuming no cached offline conversation records are present (as explained in the "LevelDB WAL" section of this post). Looking at the set of operations, analyst can extract the following valuable information:</p><ul><li><p>Conversation ID has a pattern that can be matched with the following regex: &#8220;$[a-z0-9]{8}\-([a-z0-9]{4}\-){3}[a-z0-9]{12}&#8221; (e.g. $6797fd67-a208-800e-ae5c-5bbd51abf7ad). Conversation ID can be used in automation to correlate all messages from the same conversation.</p></li><li><p>Authenticated user ID has a pattern that can be matched with the following regex: &#8220;\x0aauthUserId"\x1d(user-[^"]+)&#8221; (e.g. authUserId"\x1duser-DprP7QKdmuYYyxFV20428vJK). I noticed two patterns in the log - &#8220;authUserId&#8221; and &#8220;accountUserId&#8221;. The value in &#8220;authUserId&#8221; would also be present within &#8220;accountUserId&#8221; field. In the parser script I export the value of &#8220;authUserId&#8221;. Each chunk of WAL log (i.e. the set of operations prefixed by &#8220;--- offset #; sequence #&#8221; separator) that contains conversations, would also store both user auth ID and conversation ID. This comes in handy when we want to parse the log and reconstruct the conversation sequence automatically.</p></li><li><p>Title, which is empty for now. That&#8217;s consistent with the application behavior, the title will only be generated after the initial assistant response.</p></li><li><p>The conversation start time is recorded in the &#8220;updateTime&#8221; field. Looking at the structure we can see the time stamp is recorded with the following values: &#8220;\xa0\x1a\x87W\xff\xe5\xd9A&#8221;. The timestamp format is IEEE 754 double-precision floating point number in little-endian format and can be decoded into &#8220;2025-01-27T21:40:46.111000 UTC&#8221;. In my tests, this time stamp remained intact even after I continued the same conversation after ChatGPT application restarted on the following day. This timestamp represents the date and time when the conversation started. Timestamps will be preserved per conversation, meaning if a single WAL log has multiple conversations, each will have its time stamp. The following regex will match the time stamp pattern: &#8220;updateTimeN((?:\x[0-9a-f]{2}|[\x20-\x7E]){8})&#8221;.</p></li><li><p>The very first user prompt is distinguished from follow-up prompts, and it can be matched with the following regex: &#8220;root-nextPrompt"\x04text"([^{]+)&#8221; (e.g. root"root-nextPrompt"\x04text"\x13Hello, how are you?&#8221;). I want to point out an interesting pattern that is perceived by all messages in the log - they would be ending with opening curly brackets &#8220;{&#8220;. This pattern can be used to match the end of each message within a conversation. Hereinafter, I will be referring to the human that enters prompts as &#8220;user&#8221;, and the ChatGPT application responses will be called &#8220;assistant&#8221; responses. </p></li><li><p>The very first assistant response. This is also one of our first pain points when we talk about automation. The responses can be either ASCII (when the assistant responds just with text), or either UTF-8 or UTF-16 (when the assistant adds non-ASCII characters, like emojis, for example). Please refer to Figure 4 as an example, where the response was encoded in UTF-16. Note that assistant responses contain message ID, we will revisit this behavior later.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!YSAX!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!YSAX!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 424w, https://substackcdn.com/image/fetch/$s_!YSAX!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 848w, https://substackcdn.com/image/fetch/$s_!YSAX!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 1272w, https://substackcdn.com/image/fetch/$s_!YSAX!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!YSAX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png" width="1456" height="691" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:691,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1075333,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!YSAX!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 424w, https://substackcdn.com/image/fetch/$s_!YSAX!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 848w, https://substackcdn.com/image/fetch/$s_!YSAX!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 1272w, https://substackcdn.com/image/fetch/$s_!YSAX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F56067aa4-ad80-4b08-8b3f-916e93d58c0f_2208x1048.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 4 - analysis of the offset 1816</figcaption></figure></div><h4>Conversation title</h4><p>Let&#8217;s look at the WAL log offset 3915, where the application recorded the very first occurrence of the conversation title:</p><ul><li><p>We can see the previously observed fields, including conversation ID, timestamp, first user prompt, and first assistant response. Generally speaking, within the WAL log there will be many duplicative entries for the messages, so I added deduplication logic to my script.</p></li><li><p>However, now the &#8220;title&#8221; field is not empty and shows the actual title of the conversation. The regex we can use here is &#8220;(?&lt;=\x05title"\)(.*?)(?=\x0aisArchivedF")&#8221;, thus we avoid situations when the word &#8220;title&#8221; could appear within either user&#8217;s or assistant&#8217;s messages.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Vbso!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Vbso!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 424w, https://substackcdn.com/image/fetch/$s_!Vbso!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 848w, https://substackcdn.com/image/fetch/$s_!Vbso!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 1272w, https://substackcdn.com/image/fetch/$s_!Vbso!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Vbso!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png" width="1456" height="786" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:786,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1493699,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Vbso!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 424w, https://substackcdn.com/image/fetch/$s_!Vbso!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 848w, https://substackcdn.com/image/fetch/$s_!Vbso!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 1272w, https://substackcdn.com/image/fetch/$s_!Vbso!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F513afaa4-6e9b-4612-9e08-55ec888ceb3d_2208x1192.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 5 - analysis of the offset 3915</figcaption></figure></div><h4>Follow-up user prompts</h4><p>The non-initial prompts that were entered by the user, have similar structure as initial prompt:</p><ul><li><p>The prompts start with &#8220;nextPrompt&#8221; followed by the message that ends with &#8220;{&#8220;. However, unlike the initial message that has &#8220;root-&#8221; prefix, the follow-up messages would contain an ID prefix in GUID format. </p></li><li><p>In some cases, there will be a numeric indicator between the GUID and the message (please refer to Figure 6). </p></li><li><p>The follow-up prompts can be captured with the following regex: &#8220;(?&lt;!root-)nextPrompt"\x04text"([^{]+)(?={)&#8221;.</p></li><li><p>Note the GUID ID pattern prior to the messages! We&#8217;ll revisit this later.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Cs56!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Cs56!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 424w, https://substackcdn.com/image/fetch/$s_!Cs56!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 848w, https://substackcdn.com/image/fetch/$s_!Cs56!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 1272w, https://substackcdn.com/image/fetch/$s_!Cs56!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Cs56!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png" width="1456" height="364" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:364,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:323539,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Cs56!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 424w, https://substackcdn.com/image/fetch/$s_!Cs56!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 848w, https://substackcdn.com/image/fetch/$s_!Cs56!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 1272w, https://substackcdn.com/image/fetch/$s_!Cs56!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa352cf3d-2ba8-4d1a-bd9e-368f8cb21426_1746x436.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 6 - user prompts patterns</figcaption></figure></div><h4>Follow-up assistant responses</h4><p>The non-initial assistant responses also have a similar pattern to the initial response:</p><ul><li><p>The messages start with &#8220;request-WEB&#8221; followed by GUID ID. Assistant messages can sometimes be encoded with UTF-16, UTF-8, or have extra hex characters. I had to create a list of regex patterns that I observed through my tests. This may result in situations when assistant responses would not be properly captured by my script. </p></li><li><p>In some cases, there will be a numeric indicator that shows the position of response (please refer to Figure 7). </p></li><li><p>Again note the GUID ID pattern here too! </p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!T6u6!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!T6u6!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 424w, https://substackcdn.com/image/fetch/$s_!T6u6!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 848w, https://substackcdn.com/image/fetch/$s_!T6u6!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 1272w, https://substackcdn.com/image/fetch/$s_!T6u6!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!T6u6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png" width="1456" height="301" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/dd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:301,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:518909,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!T6u6!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 424w, https://substackcdn.com/image/fetch/$s_!T6u6!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 848w, https://substackcdn.com/image/fetch/$s_!T6u6!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 1272w, https://substackcdn.com/image/fetch/$s_!T6u6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fdd3486c1-f104-4bdb-ad0f-590991717694_2506x518.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 7 - assistant responses patterns</figcaption></figure></div><h4>Conversation thread ID</h4><p>Remember those GUIDs we saw in the &#8220;Follow-up user prompts&#8220; and &#8220;Follow-up assistant responses&#8220; sections above?</p><p>The conversation thread ID is a theoretical term that I came up with. Thread IDs can be used by ChatGPT desktop application to keep track of various conversation threads within the parent conversation. Please refer to Figure 8 for the complete set of messages shared between the user and assistant, showing conversation thread IDs.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!wiWE!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!wiWE!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 424w, https://substackcdn.com/image/fetch/$s_!wiWE!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 848w, https://substackcdn.com/image/fetch/$s_!wiWE!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 1272w, https://substackcdn.com/image/fetch/$s_!wiWE!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!wiWE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png" width="1456" height="568" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/a544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:568,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:846732,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!wiWE!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 424w, https://substackcdn.com/image/fetch/$s_!wiWE!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 848w, https://substackcdn.com/image/fetch/$s_!wiWE!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 1272w, https://substackcdn.com/image/fetch/$s_!wiWE!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fa544304b-446d-4b26-9c04-7dd724488b5b_2488x970.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 8 - conversation thread ID</figcaption></figure></div><p>I did another test where I changed the topic in the middle of our conversation with ChatGPT. Please refer to Figure 9, where you can see how the conversation thread ID changes when ChatGPT determines the user changing the topic. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!RU5C!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!RU5C!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 424w, https://substackcdn.com/image/fetch/$s_!RU5C!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 848w, https://substackcdn.com/image/fetch/$s_!RU5C!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 1272w, https://substackcdn.com/image/fetch/$s_!RU5C!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!RU5C!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png" width="1456" height="642" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/fa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:642,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1268298,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!RU5C!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 424w, https://substackcdn.com/image/fetch/$s_!RU5C!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 848w, https://substackcdn.com/image/fetch/$s_!RU5C!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 1272w, https://substackcdn.com/image/fetch/$s_!RU5C!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Ffa89a92e-4287-4955-a115-6d9d026e20c0_2706x1194.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 9 - conversation thread ID change; here you can see ChatGPT responses were again encoded with UTF-16, so it&#8217;s hard to read them; I also truncated some messages due to their length.</figcaption></figure></div><h3>Proof-of-concept code</h3><p>I wrote a PoC script designed to parse and analyze LevelDB WAL file generated by the ChatGPT application. The script will extract conversations, reconstructing the chat history and metadata, including time stamps. The script is leveraging &#8220;leveldbutil&#8221; application to dump the WAL contents. With that said, you should install &#8220;leveldbutil&#8221; application in order for the script to work.</p><p>The script leverages a series of regex patterns to extract conversation components, user/assistant messages, timestamps, and other metadata by matching specific byte patterns in the WAL entries. The script maintains message ordering and prevents duplicates by tracking message positions and using a deduplication mechanism with normalized message content.</p><p>WAL log is complex and may encode data in ASCII, UTF-8, and UTF-16, depending on the chat contents, in addition to that, the format of messages may change and have special characters. The parsed data is organized into a structured format, with each conversation containing a title, user ID, timestamp, and a chronological sequence of messages. The output can be dumped into the &#8220;conversations.json&#8221; file.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!-gEI!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!-gEI!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 424w, https://substackcdn.com/image/fetch/$s_!-gEI!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 848w, https://substackcdn.com/image/fetch/$s_!-gEI!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 1272w, https://substackcdn.com/image/fetch/$s_!-gEI!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!-gEI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png" width="1456" height="669" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:669,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:816103,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!-gEI!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 424w, https://substackcdn.com/image/fetch/$s_!-gEI!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 848w, https://substackcdn.com/image/fetch/$s_!-gEI!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 1272w, https://substackcdn.com/image/fetch/$s_!-gEI!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F859a0fc2-b875-4122-9c78-81cc907410f9_2556x1174.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 10 - chat_gpt_wal_parser.py extracting conversations from WAL log</figcaption></figure></div><p>Please note the script is still a PoC and work-in-progress, it will require additional improvements and enhancements. One of the potential improvements is leveraging conversation thread IDs for reconstructing and orderin.</p><h3>References</h3><ul><li><p>The theme for this post was inspired by David Cowen&#8217;s Sunday Funday challenge! Join the cult and submit your posts too! (<a href="https://www.hecfblog.com/2025/01/daily-blog-730-sunday-funday-12625.html">https://www.hecfblog.com/2025/01/daily-blog-730-sunday-funday-12625.html</a>)</p></li><li><p>&#8220;Hang on! That&#8217;s not SQLite! Chrome, Electron and LevelDB&#8221; by Alex Caithness (<a href="https://www.cclsolutionsgroup.com/post/hang-on-thats-not-sqlite-chrome-electron-and-leveldb">https://www.cclsolutionsgroup.com/post/hang-on-thats-not-sqlite-chrome-electron-and-leveldb</a>)</p></li><li><p>&#8220;LevelDB&#8221; by Ju Chen (<a href="https://chenju2k6.github.io/blog/2018/11/leveldb">https://chenju2k6.github.io/blog/2018/11/leveldb</a>)</p></li></ul><h3>Tools used</h3><ul><li><p>chat_gpt_wal_parser (<a href="https://github.com/ilyakobzar/dfir-tools/blob/main/chat_gpt_wal_parser.py">https://github.com/ilyakobzar/dfir-tools/blob/main/chat_gpt_wal_parser.py</a>)</p></li><li><p>leveldbutil (<a href="https://github.com/google/leveldb">https://github.com/google/leveldb</a>)</p></li><li><p>X-Ways Forensics (<a href="https://www.x-ways.net/forensics/index-m.html">https://www.x-ways.net/forensics/index-m.html</a>)</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.ilyakobzar.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"></p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p>]]></content:encoded></item><item><title><![CDATA[Diving into Master Boot Record]]></title><description><![CDATA[Parsing the sector 0]]></description><link>https://www.ilyakobzar.com/p/diving-into-master-boot-record</link><guid isPermaLink="false">https://www.ilyakobzar.com/p/diving-into-master-boot-record</guid><dc:creator><![CDATA[Ilya Kobzar]]></dc:creator><pubDate>Sun, 26 Jan 2025 02:51:57 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/1d2c843c-1187-461e-bd75-c27186722704_1000x414.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>Partitioning scheme is a data structure that is set on a storage device during disk initialization. The scheme describes how a storage device is divided into logical sections, i.e. disk partitions. Partitioning scheme is required to be present on storage device in order for operating system to boot from that device. </p><p>Two primary partitioning schemes that are most commonly used by operating systems are Master Boot Record (MBR) and GUID Partition Table (GPT). MBR is a legacy scheme that supports up to 4 partitions per disk with a storage limit of 8TB. GPT is a modern scheme that supports up to 128 partitions, with maximum theoretical storage limitation of 9.4 ZB (9.4 billion TB).</p><p>This blog post will be specifically focusing on automated analysis of MBR, which is located at the sector 0 of a physical storage device. </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ZLFj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ZLFj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 424w, https://substackcdn.com/image/fetch/$s_!ZLFj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 848w, https://substackcdn.com/image/fetch/$s_!ZLFj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 1272w, https://substackcdn.com/image/fetch/$s_!ZLFj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ZLFj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png" width="1456" height="423" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/634fd22a-6124-4642-8704-8645bbf93875_1686x490.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:423,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:289352,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ZLFj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 424w, https://substackcdn.com/image/fetch/$s_!ZLFj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 848w, https://substackcdn.com/image/fetch/$s_!ZLFj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 1272w, https://substackcdn.com/image/fetch/$s_!ZLFj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F634fd22a-6124-4642-8704-8645bbf93875_1686x490.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 1 - MBR record sample</figcaption></figure></div><p>MBR has a length of 512 bytes and has the following structure:</p><ul><li><p>Bytes 0-445: bootstrap code</p></li><li><p>Bytes 446-461: partition table entry 1</p></li><li><p>Bytes 462-477: partition table entry 2</p></li><li><p>Bytes 478-493: partition table entry 3</p></li><li><p>Bytes 494-509: partition table entry 4</p></li><li><p>Bytes 510-511: MBR signature (0x55AA)</p></li></ul><p>Each of the 4 partitions defined in MBR has a dedicated table with the length of 15 bytes:</p><ul><li><p>Byte 0: Bootable flag</p></li><li><p>Bytes 1-3: Starting Cylinder-Head-Sector (CHS) address (legacy system, that specifies physical location of the partition on the disk; CHS maps to the disk's physical geometry, where the cylinder represents concentric tracks on the disk platter, the head indicates which disk surface to read from, and the sector specifies the exact segment within that track)</p></li><li><p>Bytes 4-4: Partition type</p></li><li><p>Bytes 5-7: Ending CHS address</p></li><li><p>Bytes 8-11: Starting Logical Block Addressing address (a.k.a. LBA, indicates the first logical sector of the partition)</p></li><li><p>Bytes 12-15: Size in sectors</p></li></ul><p>MBR can be targeted by sophisticated malware in several ways. Malicious boot loaders and rootkits can infect the bootstrap code to maintain persistence. Destructive malware like WhisperGate, HermeticWiper can modify the MBR to prevent system boot. I wrote a tool for MBR analysis that performs the following actions:</p><ul><li><p>Exports MBR</p></li><li><p>Parses partition tables</p></li><li><p>Hashes both, full MBR, and the bootstrap code section</p></li><li><p>Disassembles the bootstrap code, assuming it is written in 16-bit x86 assembly, and adds explanatory comments to clarify some basic code's functionality</p></li></ul><p>The tool (<a href="https://github.com/ilyakobzar/dfir-tools/blob/main/mbr_parser.py">link</a>) can be used for triage and can extract MBR from either system partition or mounted disk image. See example analysis report output on the screenshot below. Try it out and let me know how it works!</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!2wQx!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!2wQx!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 424w, https://substackcdn.com/image/fetch/$s_!2wQx!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 848w, https://substackcdn.com/image/fetch/$s_!2wQx!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 1272w, https://substackcdn.com/image/fetch/$s_!2wQx!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!2wQx!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png" width="1456" height="1445" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/c824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:1445,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:815182,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!2wQx!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 424w, https://substackcdn.com/image/fetch/$s_!2wQx!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 848w, https://substackcdn.com/image/fetch/$s_!2wQx!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 1272w, https://substackcdn.com/image/fetch/$s_!2wQx!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fc824b3d4-fbc9-4fbe-a022-7cdadbc6b2ca_1652x1640.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 2 - mbr_parser.py</figcaption></figure></div><h3>References</h3><ul><li><p>Windows support for hard disks that are larger than 2 TB (<a href="https://learn.microsoft.com/en-us/troubleshoot/windows-server/backup-and-storage/support-for-hard-disks-exceeding-2-tb">https://learn.microsoft.com/en-us/troubleshoot/windows-server/backup-and-storage/support-for-hard-disks-exceeding-2-tb</a>)</p></li><li><p>File System Forensic Analysis (Fourteenth Printing), by Brian Carrier (<a href="https://www.sans.org/profiles/brian-carrier/">https://www.sans.org/profiles/brian-carrier/</a>)</p></li></ul><h3>Tools used</h3><ul><li><p>X-Ways Forensics (<a href="https://www.x-ways.net/forensics/index-m.html">https://www.x-ways.net/forensics/index-m.html</a>)</p></li><li><p>MBR parser (<a href="https://github.com/ilyakobzar/dfir-tools/blob/main/mbr_parser.py">https://github.com/ilyakobzar/dfir-tools/blob/main/mbr_parser.py</a>)</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.ilyakobzar.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"></p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div><p></p>]]></content:encoded></item><item><title><![CDATA[Behavioral analysis of user file operations with SRUM]]></title><description><![CDATA[Unveiling forensic insights and pitfalls of SRUM data]]></description><link>https://www.ilyakobzar.com/p/behavioral-analysis-of-user-file</link><guid isPermaLink="false">https://www.ilyakobzar.com/p/behavioral-analysis-of-user-file</guid><dc:creator><![CDATA[Ilya Kobzar]]></dc:creator><pubDate>Thu, 16 Jan 2025 01:56:00 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/65f65d40-9174-4b1d-9609-ffa7d88f5765_770x462.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p></p><h3>Background</h3><p>SRUM stands for System Resource Usage Monitor, a technology introduced in Windows 8 and Windows Server 2019 to track the utilization of various system resources such as CPU usage, network activity, and battery consumption. SRUM data is stored in an ESE database located at &#8220;%SYSTEMROOT%\System32\sru\SRUDB.dat&#8221;.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!PYIa!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!PYIa!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 424w, https://substackcdn.com/image/fetch/$s_!PYIa!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 848w, https://substackcdn.com/image/fetch/$s_!PYIa!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 1272w, https://substackcdn.com/image/fetch/$s_!PYIa!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!PYIa!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png" width="1456" height="827" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:827,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:233367,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!PYIa!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 424w, https://substackcdn.com/image/fetch/$s_!PYIa!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 848w, https://substackcdn.com/image/fetch/$s_!PYIa!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 1272w, https://substackcdn.com/image/fetch/$s_!PYIa!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F524eb2a1-be54-448a-817e-f462912ba7a3_1778x1010.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 1 - &#8220;%SYSTEMROOT%\System32\sru\SRUDB.dat&#8221; location and signature</figcaption></figure></div><p>This post was inspired by the <a href="https://www.hecfblog.com/2025/01/daily-blog-716-sunday-funday-11225.html">Sunday Funday</a> challenge from my friend and mentor David Cowen. In this post, I will be performing a behavioral analysis of Windows operating system activity recorded in SRUM for the following use cases:</p><ul><li><p>Uploading data to an online service of your choice.</p></li><li><p>Wiping files.</p></li><li><p>Copying data between two drives using copy and paste.</p></li></ul><h3>Assumptions and limitations</h3><ul><li><p>Lab virtual machine was set up in Parallels Desktop.</p></li><li><p>An external USB drive was plugged into the host operating system and attached to the virtual machine as a physical drive.</p></li><li><p>Lab virtual machine operating system specifications: Windows 10 Pro, version 21H2, OS build &#8220;19044.1766&#8221;.</p></li><li><p>SRUM database will not be updated with the new data immediately after the process execution. SRUM temporarily stores its records in the SOFTWARE registry hive, which are then written to the actual "SRUDB.dat" database at predefined time intervals.  To ensure data was written to the database, I shut down and rebooted the VM after each experiment.</p></li></ul><h3>Summary of findings</h3><p>SRUM database can be useful during forensic investigations, however, if approached without proper testing, analysts may produce misleading and even inaccurate results. Here is a summary of findings (applicable with the limitations outlined above) concerning the 3 use cases mentioned in the Background:</p><ul><li><p>SRUM can give the most useful insights when you investigate network data transfer. Specifically, bytes sent/received accurately represent the amount of data transferred from the local system. SRUM will also show user SID who launched the process. However, time stamps are not reliable and have a margin of error of approximately 1 hour, which is the case for all SRUM records. </p></li><li><p>SRUM would not help investigate wiping operations, especially on relatively small files. Even for major wiping activity, SRUM does not provide valuable evidence that would help to determine the size of wiped data. However, similarly with other operations, SRUM can show the user SID that launched the process.</p></li><li><p>SRUM would not help investigate data transfer using Windows Explorer's &#8220;copy&#8221; and &#8220;paste&#8221; operation between two physical drives - at least for files with relatively small sizes of ~200Mb.</p></li></ul><p>Writing this blog post has once again reminded me of the ease with which one can accidentally draw misleading conclusions without proper testing and validation. </p><h3>Detailed analysis</h3><p>This section outlines the detailed analysis for each of the three scenarios covered in the background and summary of findings sections of this post.</p><h4><strong>Uploading data to MEGAsync</strong></h4><p>Time stamps were manually recorded during the experiment with the test file &#8220;TEST_FILE_megasync.zip&#8221;, size approximately 228 MB:</p><ul><li><p>&#8220;2025-01-13T21:30:00Z&#8221; - installed and launched MEGAsync app.</p></li><li><p>&#8220;2025-01-13T21:34:43Z&#8221; - started file upload via &#8220;megasync.exe&#8221;.</p></li><li><p>&#8220;2025-01-13T21:36:12Z&#8221; - the file was successfully uploaded.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!cPLq!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!cPLq!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 424w, https://substackcdn.com/image/fetch/$s_!cPLq!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 848w, https://substackcdn.com/image/fetch/$s_!cPLq!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 1272w, https://substackcdn.com/image/fetch/$s_!cPLq!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!cPLq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png" width="1456" height="784" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:784,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:229576,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!cPLq!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 424w, https://substackcdn.com/image/fetch/$s_!cPLq!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 848w, https://substackcdn.com/image/fetch/$s_!cPLq!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 1272w, https://substackcdn.com/image/fetch/$s_!cPLq!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F521af109-d850-488c-b9ff-7e725c50a1b5_1968x1060.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 2 - the test file was uploaded to MEGAsync</figcaption></figure></div><p>For this analysis, I used the &#8220;Network Data Usage&#8221; SRUM table with ID &#8220;973F5D5C-1D90-4944-BE8E-24B94231A174&#8221;.</p><p>The below figure shows that there were 2 SRUM records recorded for binary &#8220;megasync.exe&#8221; with time stamps &#8220;2025-01-13T21:36:00Z&#8221; and &#8220;2025-01-13T21:42:00Z&#8221;, with total data transferred 243,057,369 bytes (231.8MB). The test file used in the experiments had a size of 240,070,132 bytes (228.9 MB), which corresponds with the amount of transferred data. In addition to that, the field &#8220;UserSid&#8221; records the SID (&#8220;S-1-5-21-3008292710-2223882278-1454273465-1001&#8221; belongs to my user account) of the user who launched the process, which can be valuable during investigations.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!RR45!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!RR45!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 424w, https://substackcdn.com/image/fetch/$s_!RR45!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 848w, https://substackcdn.com/image/fetch/$s_!RR45!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 1272w, https://substackcdn.com/image/fetch/$s_!RR45!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!RR45!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png" width="1456" height="68" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/d7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:68,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:44057,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:&quot;&quot;,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!RR45!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 424w, https://substackcdn.com/image/fetch/$s_!RR45!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 848w, https://substackcdn.com/image/fetch/$s_!RR45!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 1272w, https://substackcdn.com/image/fetch/$s_!RR45!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fd7b4d712-f08a-4888-8d53-de79729fa943_2092x98.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 3 - network data transfer records</figcaption></figure></div><p>However, there were several issues with how the data was recorded in the SRUM database, which may mislead analysts:</p><ul><li><p>Time stamps recorded within the field &#8220;TimeStamp&#8221; for the &#8220;Network Data Usage&#8221; table do not reflect the accurate time of the tested file upload operation. SRUM records are written in batches (every 1 hour, or at system shutdown), and therefore time stamps do not accurately represent when a process was executed:</p><ul><li><p>As of &#8220;2025-01-13T21:36:00Z&#8221; (SRUMid &#8220;1589&#8221;), the file upload was already completed. However the bytes transferred for that record only show 112,225,071 bytes transferred, which is approximately half of the transferred data.</p></li><li><p>If we zoom out to see neighboring events (see the below screenshot), we can see there were many different events not connected to each other that were recorded with the same time stamps.</p></li></ul></li><li><p>Some of the records in the table do not have any information regarding the application or corresponding user, however do have a significant amount of data transferred (refer to the SRUMid record 1595 on the screenshot below).</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!KMkT!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!KMkT!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 424w, https://substackcdn.com/image/fetch/$s_!KMkT!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 848w, https://substackcdn.com/image/fetch/$s_!KMkT!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 1272w, https://substackcdn.com/image/fetch/$s_!KMkT!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!KMkT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png" width="1456" height="647" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/867f93d2-d66c-416f-be6c-de813d709031_2092x930.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:647,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:360523,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!KMkT!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 424w, https://substackcdn.com/image/fetch/$s_!KMkT!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 848w, https://substackcdn.com/image/fetch/$s_!KMkT!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 1272w, https://substackcdn.com/image/fetch/$s_!KMkT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F867f93d2-d66c-416f-be6c-de813d709031_2092x930.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 4 - overview of SRUM records from &#8220;Network Data Usage&#8221; table</figcaption></figure></div><p>To conclude the analysis, SRUM can be partially effective when investigating network data transfer, especially if a threat actor utilized an application that was uncommon for the operating system usage (e.g. a malware executable, or data transfer application like MEGAsync or rclone). In addition to that, user SID recorded in SRUM can help determining who launched the process. However, we cannot rely on time stamps recorded in the database, and keep in mind that SRUM record timestamps have a margin of error of approximately 1 hour.</p><h4>Wiping files - Python script and CCleaner</h4><p>Time stamps were manually recorded during the experiment with the test file &#8220;TEST_FILE_wiped.zip&#8221;, size approximately 228 MB:</p><ul><li><p>&#8220;2025-01-13T21:40:50&#8220; - executed a Python script (<a href="https://github.com/ilyakobzar/wiper/blob/main/wiper.py">link</a>) designed to securely wipe a file. The script was launched using Python from Windows Command Prompt (please refer to parent-child process relationships on the screenshot below). I set the script to execute 5 passes, using the following patterns:</p><ul><li><p>Pass 1 and 4: b'\x00'.</p></li><li><p>Pass 2 and 5: b'\xff'.</p></li><li><p>Pass 3: random string of bytes.</p></li></ul></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!I0bW!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!I0bW!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 424w, https://substackcdn.com/image/fetch/$s_!I0bW!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 848w, https://substackcdn.com/image/fetch/$s_!I0bW!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 1272w, https://substackcdn.com/image/fetch/$s_!I0bW!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!I0bW!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png" width="1456" height="650" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:650,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:1004496,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!I0bW!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 424w, https://substackcdn.com/image/fetch/$s_!I0bW!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 848w, https://substackcdn.com/image/fetch/$s_!I0bW!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 1272w, https://substackcdn.com/image/fetch/$s_!I0bW!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F2bd8920c-441d-484c-b23a-e27768ef3b3c_2114x944.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 5 - &#8220;python.exe&#8221; process wiping the test file</figcaption></figure></div><p>For this analysis, I used the &#8220;Application Resource Usage&#8221; SRUM table with ID &#8220;D10CA2FE-6FCF-4F6D-848E-B2E99266FA89&#8221;.</p><p>There was only one record in the SRUM database that was written after the wiper execution, and that record was for &#8220;cmd.exe&#8221;, and not for &#8220;python.exe&#8221;, as we would expect. Number of bytes written and read do not accurately represent the 5 passes of the wiping operation that was performed on the test file.</p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Car-!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Car-!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 424w, https://substackcdn.com/image/fetch/$s_!Car-!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 848w, https://substackcdn.com/image/fetch/$s_!Car-!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 1272w, https://substackcdn.com/image/fetch/$s_!Car-!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Car-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png" width="1456" height="62" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:62,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:48672,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Car-!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 424w, https://substackcdn.com/image/fetch/$s_!Car-!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 848w, https://substackcdn.com/image/fetch/$s_!Car-!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 1272w, https://substackcdn.com/image/fetch/$s_!Car-!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F914393d3-042d-4fca-99f7-eaaa76f00237_2442x104.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 6 - &#8220;cmd.exe&#8221; SRUM records</figcaption></figure></div><p>Due to insufficient evidence, I decided to change the approach and utilize CCleaner application, and wipe open space of my VM&#8217;s volume C: (9,635,389,440 bytes or 8.97 Gb). </p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ZvGj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ZvGj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 424w, https://substackcdn.com/image/fetch/$s_!ZvGj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 848w, https://substackcdn.com/image/fetch/$s_!ZvGj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 1272w, https://substackcdn.com/image/fetch/$s_!ZvGj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ZvGj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png" width="1456" height="508" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/e2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:508,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:124815,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ZvGj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 424w, https://substackcdn.com/image/fetch/$s_!ZvGj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 848w, https://substackcdn.com/image/fetch/$s_!ZvGj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 1272w, https://substackcdn.com/image/fetch/$s_!ZvGj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fe2e33e46-d577-4070-8c6f-ad56c2cbf426_1896x662.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 7 - details for the C: volume in Disk Management </figcaption></figure></div><p>Here are the time stamps I recorded during the CCleaner experiment:</p><ul><li><p>&#8220;2025-01-15T02:04:45Z&#8220; - installed CCleaner.</p></li><li><p>&#8220;2025-01-15T02:18:03Z&#8220; - launched CCleaner program.</p></li><li><p>&#8220;2025-01-15T02:26:15Z&#8220; - started wiping of the C: volume free space.</p></li><li><p>&#8220;2025-01-15T02:31:55Z&#8221; - finished wiping.</p></li></ul><p>CCleaner performed the empty space wiping with 1 pass. For this analysis, I used the &#8220;Application Resource Usage&#8221; SRUM table with ID &#8220;D10CA2FE-6FCF-4F6D-848E-B2E99266FA89&#8221;:</p><ul><li><p>The timestamp was again not reliable and does not show accurate execution time.</p></li><li><p>There were 84,585,984 bytes (80.7 MB) read and 76,390,400 bytes (72.9 MB) written, which clearly does not correlate with the amount of empty space wiped (9,635,389,440 bytes or 8.97 Gb).</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!lM5F!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!lM5F!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 424w, https://substackcdn.com/image/fetch/$s_!lM5F!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 848w, https://substackcdn.com/image/fetch/$s_!lM5F!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 1272w, https://substackcdn.com/image/fetch/$s_!lM5F!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!lM5F!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png" width="1456" height="38" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:38,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:39707,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!lM5F!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 424w, https://substackcdn.com/image/fetch/$s_!lM5F!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 848w, https://substackcdn.com/image/fetch/$s_!lM5F!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 1272w, https://substackcdn.com/image/fetch/$s_!lM5F!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F369f26e5-fcf3-45e9-870c-8847c8c7f12d_2824x74.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 8 - &#8220;CCleaner64.exe&#8221; SRUM records</figcaption></figure></div><ul><li><p>Comparing the number of write operations performed by CCleaner with other programs, we can see, for example, &#8220;ccsetup631.exe&#8221; (CCleaner installer) had more write operations than the actual process that wiped the volume (&#8220;CCleaner64.exe&#8220;). &#8220;TrustedInstaller.exe&#8221; and &#8220;WmiPrvSE.exe&#8221; had a similar number of write operations as CCleaner. </p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!vgGH!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!vgGH!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 424w, https://substackcdn.com/image/fetch/$s_!vgGH!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 848w, https://substackcdn.com/image/fetch/$s_!vgGH!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 1272w, https://substackcdn.com/image/fetch/$s_!vgGH!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!vgGH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png" width="1456" height="311" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/caf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:311,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:306784,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!vgGH!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 424w, https://substackcdn.com/image/fetch/$s_!vgGH!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 848w, https://substackcdn.com/image/fetch/$s_!vgGH!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 1272w, https://substackcdn.com/image/fetch/$s_!vgGH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2Fcaf30fe3-c54c-4fe7-af41-3360da710aef_2834x606.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 9 - SRUM records sorted by &#8220;ForegroundNumWriteOperations&#8221;</figcaption></figure></div><ul><li><p>However, the process &#8220;CCleaner64.exe&#8221; was executed by the user account with SID &#8220;S-1-5-21-3008292710-2223882278-1454273465-1001&#8221;, and that can be valuable during investigations.</p></li></ul><p>To conclude the analysis, SRUM does not accurately represent the amount of bytes written during the wiping operation, and therefore cannot be used to estimate the amount of wiped data. In addition to that, the number of write operations may also be inconclusive and potentially misleading. However user SID recorded in SRUM can help determining who launched the process.</p><h4>Copying data between two drives</h4><p>Time stamps were manually recorded during the experiment with the test file &#8220;TEST_FILE_hdd_transfer.zip&#8221;, size approximately 228 MB:</p><ul><li><p>&#8220;2025-01-13T22:01:27Z&#8221; - USB drive was attached to lab VM.</p></li><li><p>&#8220;2025-01-13T22:02:30Z&#8220; - started file transfer from C:\ (NTFS) into E:\ (FAT32).</p></li><li><p>&#8220;2025-01-13T22:03:25Z&#8221; - finished file transfer from C:\ (NTFS) into E:\ (FAT32).</p></li></ul><p>Copy operation was performed by Windows Explorer &#8220;copy&#8221; (CTRL+C) and &#8220;paste&#8221; (CTRL+V) operation.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!pRmU!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!pRmU!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 424w, https://substackcdn.com/image/fetch/$s_!pRmU!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 848w, https://substackcdn.com/image/fetch/$s_!pRmU!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 1272w, https://substackcdn.com/image/fetch/$s_!pRmU!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!pRmU!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png" width="1456" height="750" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:750,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:137869,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!pRmU!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 424w, https://substackcdn.com/image/fetch/$s_!pRmU!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 848w, https://substackcdn.com/image/fetch/$s_!pRmU!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 1272w, https://substackcdn.com/image/fetch/$s_!pRmU!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F23ea1ca8-7ea9-4cf6-a364-7f69480a77e8_1696x874.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 10 - details for the C: and E: volumes in Disk Management</figcaption></figure></div><p>For this analysis, I used the &#8220;Application Resource Usage&#8221; SRUM table with ID &#8220;D10CA2FE-6FCF-4F6D-848E-B2E99266FA89&#8221;.</p><p>File copy operations on Windows are performed by the process &#8220;explorer.exe&#8221;. The process acts as both a file browser and an interface that provides user experience within the Windows operating system (Desktop, Start Menu, Taskbar, Control Panel, etc).</p><p>Given the nature of the process, we can immediately conclude that file read and write operations are constantly performed by &#8220;explorer.exe&#8221;, as part of the Windows OS operation. It would be complicated to distinguish between the specific file copy unless the size of that file was large relative to other read and writes operations made by &#8220;explorer.exe&#8221; on disk.</p><p>With that said, here are the results of the SRUM analysis performed after the experiment:</p><ul><li><p>The time stamps recorded within the field &#8220;TimeStamp&#8221; for the &#8220;Application Resource Usage&#8221; table do not reflect the accurate time of the tested file copy and paste operation. This is expected since &#8220;explorer.exe&#8221; had been running since I logged in to the lab operating system.</p></li><li><p>Two SRUM records were written to the database after the file transfer operation started, as shown in the screenshot below, highlighted in yellow. If you compare the records logged earlier that day with those recorded after the file copy operation, you will see that neither the bytes read/written nor the read/write operations show any anomalies. This could be because the test file had a relatively small size (228 MB). </p></li><li><p>The sum of bytes read recorded in the SRUM database record after the copy operation has started (yellow rows) is 107,814,168 bytes (102.8 MB), which is half of the size of the transferred file. The sum of bytes written was 4,427,776 bytes (4.2 MB), which is significantly lower to the transferred file size.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!_tp9!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!_tp9!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 424w, https://substackcdn.com/image/fetch/$s_!_tp9!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 848w, https://substackcdn.com/image/fetch/$s_!_tp9!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 1272w, https://substackcdn.com/image/fetch/$s_!_tp9!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!_tp9!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png" width="1456" height="137" data-attrs="{&quot;src&quot;:&quot;https://substack-post-media.s3.amazonaws.com/public/images/564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:137,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:90310,&quot;alt&quot;:&quot;&quot;,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" title="" srcset="https://substackcdn.com/image/fetch/$s_!_tp9!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 424w, https://substackcdn.com/image/fetch/$s_!_tp9!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 848w, https://substackcdn.com/image/fetch/$s_!_tp9!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 1272w, https://substackcdn.com/image/fetch/$s_!_tp9!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fsubstack-post-media.s3.amazonaws.com%2Fpublic%2Fimages%2F564c058b-fe96-494a-ae5c-64b803da45e2_2190x206.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 11 - SRUM records for &#8220;explorer.exe&#8221;</figcaption></figure></div><p>To conclude the analysis, I do not think SRUM database can be effectively utilized when dealing with investigations involving data transfer between disk volumes using Windows Explorer.</p><h3>References</h3><ul><li><p>Microsoft security - guide for incident responders (<a href="https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/microsoft/final/en-us/microsoft-brand/documents/IR-Guidebook-Final.pdf">https://cdn-dynmedia-1.microsoft.com/is/content/microsoftcorp/microsoft/final/en-us/microsoft-brand/documents/IR-Guidebook-Final.pdf</a>)</p></li><li><p>Forensic implications of System Resource Usage Monitor (SRUM) data in Windows 8 by Yogesh Khatri (<a href="https://www.sciencedirect.com/science/article/abs/pii/S1742287615000031">https://www.sciencedirect.com/science/article/abs/pii/S1742287615000031</a>)</p></li><li><p>Digging Into The System Resource Usage Monitor (SRUM) by Mike Cohen (<a href="https://docs.velociraptor.app/blog/2019/2019-12-31_digging-into-the-system-resource-usage-monitor-srum-afbadb1a375/">https://docs.velociraptor.app/blog/2019/2019-12-31_digging-into-the-system-resource-usage-monitor-srum-afbadb1a375/</a>)</p></li></ul><h3>Tools used</h3><ul><li><p>CCleaner (<a href="https://www.ccleaner.com/ccleaner/download">https://www.ccleaner.com/ccleaner/download</a>)</p></li><li><p>ESEDatabaseView v1.76 (<a href="https://www.nirsoft.net/utils/ese_database_view.html">https://www.nirsoft.net/utils/ese_database_view.html</a>)</p></li><li><p>FTK Imager v4.7.3.81 (<a href="https://www.exterro.com/ftk-product-downloads/ftk-imager-4-7-3-81">https://www.exterro.com/ftk-product-downloads/ftk-imager-4-7-3-81</a>)</p></li><li><p>SRUM-DUMP by Mark Baggett (<a href="https://github.com/MarkBaggett/srum-dump">https://github.com/MarkBaggett/srum-dump</a>)</p></li><li><p>Velociraptor (<a href="https://docs.velociraptor.app/downloads/">https://docs.velociraptor.app/downloads</a>)</p></li></ul><div class="subscription-widget-wrap-editor" data-attrs="{&quot;url&quot;:&quot;https://www.ilyakobzar.com/subscribe?&quot;,&quot;text&quot;:&quot;Subscribe&quot;,&quot;language&quot;:&quot;en&quot;}" data-component-name="SubscribeWidgetToDOM"><div class="subscription-widget show-subscribe"><div class="preamble"><p class="cta-caption"></p></div><form class="subscription-widget-subscribe"><input type="email" class="email-input" name="email" placeholder="Type your email&#8230;" tabindex="-1"><input type="submit" class="button primary" value="Subscribe"><div class="fake-input-wrapper"><div class="fake-input"></div><div class="fake-button"></div></div></form></div></div>]]></content:encoded></item><item><title><![CDATA[Windows updates and anti-forensics (part 1, USB devices)]]></title><description><![CDATA[In these series of posts I will be talking about feature pack updates for Windows 10 operating system and how they affect computer forensic examinations. First part covers USB forensic artifacts affected by the update.]]></description><link>https://www.ilyakobzar.com/p/windows-updates-and-anti-forensics</link><guid isPermaLink="false">https://www.ilyakobzar.com/p/windows-updates-and-anti-forensics</guid><dc:creator><![CDATA[Ilya Kobzar]]></dc:creator><pubDate>Thu, 09 Sep 2021 02:07:16 GMT</pubDate><enclosure url="https://substack-post-media.s3.amazonaws.com/public/images/098a7c64-dadf-46f3-985c-a0c2447c3298_912x662.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h4>Background</h4><p>In this post I will be talking about feature pack updates for Windows 10 operating system and how they affect computer forensic examinations. First part covers USB forensic artifacts affected by the update.</p><p>Feature updates for Windows 10 are released by Microsoft twice a year and can be considered major updates since they include new functionality, enhancements, visualization updates and many more. Each feature update for Windows 10 has a unique version number that corresponds with month and year of planned release (for example, version 1909 had a planned release date September 2019).</p><p>From the forensic standpoint I can define three states of a system that undergoes feature update:</p><ul><li><p>Pre-update &#8211; original system that had the old Windows 10.</p></li></ul><ul><li><p>Initial post-update &#8211; system that just underwent update with the new feature pack. After the update operating system keeps a snapshot of its original state under &#8220;C:\Windows.old\&#8221; directory. With this feature Microsoft gives users a chance to revert back to previous version of Windows 10 in case the new configuration and settings were not compatible with the applications used prior to the update. From the forensic standpoint contents of &#8220;C:\Windows.old\&#8221; would preserve all original operating system artifacts required to perform forensic examination. Referring to USB analysis those artifacts would include HKCU, HKLM\SYSTEM, HKLM\SOFTWARE, setupapi.dev.log, event logs.</p></li></ul><ul><li><p>Post-update &#8211; system that cleared all temporary files created during the update, and therefore fully transitioned to the new feature version. The cleanup process can either be triggered by operating system 10 days after the update, or can be manually started by user in Windows 10 storage settings. The process would apply several changes to the system, including removing &#8220;C:\Windows.old\&#8221; directory. </p></li></ul><p>One way to determine the system underwent a feature update is to find a subkey under &#8220;HKLM\SYSTEM\Setup&#8221; registry key, that would have a format &#8220;Source OS (Updated on MM/DD/YYYY HH:MM:SS)&#8221;, where &#8220;MM/DD/YYYY HH:MM:SS&#8221; is the date and time of the feature update.</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!JqYK!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!JqYK!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 424w, https://substackcdn.com/image/fetch/$s_!JqYK!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 848w, https://substackcdn.com/image/fetch/$s_!JqYK!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 1272w, https://substackcdn.com/image/fetch/$s_!JqYK!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!JqYK!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png" width="977" height="775" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:775,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:311760,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:false,&quot;topImage&quot;:true,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!JqYK!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 424w, https://substackcdn.com/image/fetch/$s_!JqYK!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 848w, https://substackcdn.com/image/fetch/$s_!JqYK!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 1272w, https://substackcdn.com/image/fetch/$s_!JqYK!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F266de7d4-4c95-4024-a658-6ec4b4d56112_977x775.png 1456w" sizes="100vw" fetchpriority="high"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 1 &#8211; &#8220;HKLM\SYSTEM\Setup&#8221; subkey shows system feature update was performed on 9/3/2021 (highlighted key name - local time zone, last write time stamp - UTC)</figcaption></figure></div><h4>Assumptions and limitations</h4><ul><li><p>Experiments were performed on Windows 10 feature pack versions 1809 and 1903 (plus version 2004 in the bonus content at the end of this post). It is possible other feature update versions may behave slightly differently.</p></li></ul><ul><li><p>The experiments were focused on artifacts that could reveal time stamp information of when USB drives were plugged in to the system (first / last connected, last disconnected and historical connection events), and were not focused on other artifacts, such as for example correlation between device serial number (S/N) and volume names / labels, drive letters for mapped volumes, volume S/N and users interacted with the USB device.&nbsp;</p></li></ul><ul><li><p>Analysis of &#8220;initial post-update&#8221; (as defined in the background section of this post) <strong>was not</strong> performed, because &#8220;C:\Windows.old\&#8221; directory maintained a copy of all artifacts of the operating system prior to the update.</p></li></ul><h4>Summary of findings</h4><p>Experiments showed Windows 10 feature update significantly impacted event logs, registries and other operating system artifacts required for forensic analysis of USB devices that were plugged in to the system prior to the update. </p><p>Initial feature pack update cleared majority of the operating system artifacts necessary to perform forensic analysis. </p><p>After the update Windows 10 created a new registry key &#8220;HKLM\SYSTEM\Setup\Upgrade\&#8221;, which will be useful for forensic examinations. Specifically, last disconnect time stamps for USB drives plugged in prior to the update can be determined based on value in &#8220;LastPresentDate&#8221; for several subkeys under:  &#8220;HKLM\SYSTEM\Setup\Upgrade\Pnp\CurrentControlSet\Control\DeviceMigration\Devices\&#8221;. </p><p>Additional tests revealed if there were two feature pack updates installed, it would not be possible to determine time stamps associated with USB devices connected to the system prior to the <strong>first</strong> update. Only minimal artifacts would remain in registry that in best-case scenario would allow to determine the fact of USB device plugged in to the system at <strong>some point</strong>.</p><h4>Detailed analysis</h4><p>In order to demonstrate how forensic artifacts were altered by the update, I will compare &#8220;pre-update&#8221; and &#8220;post-update&#8221; states of the Windows 10 operating system, as defined in the background section of this post. </p><p>To begin with, I will show the results of forensic analysis for a system that was updated from Windows 10 version 1809 to version 1903. For the demonstration I used USB drive with device S/N 070A8314CE182019 that was attached to pre-update system on 9/3/2021 at approximately 14:49 local time / 18:49 UTC. Update to version 1903 was started on 9/3/2021 at approximately 15:33 local time / 19:33 UTC.</p><p>For each artifact described I will be providing screenshots showing before (pre-update) and after (post-update) states.</p><ul><li><p>Before the update &#8220;Setupapi.dev.log&#8221; contained a record of drivers installation for USB drive S/N 070A8314CE182019. The installation started on 9/3/2021 at approximately 14:49:51 local time. After the update &#8220;Setupapi.dev.log&#8221; was re-created with the first record dated as of 9/3/2021 15:46:25 local time.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!EZPt!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!EZPt!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 424w, https://substackcdn.com/image/fetch/$s_!EZPt!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 848w, https://substackcdn.com/image/fetch/$s_!EZPt!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 1272w, https://substackcdn.com/image/fetch/$s_!EZPt!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!EZPt!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png" width="977" height="241" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:241,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:184800,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!EZPt!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 424w, https://substackcdn.com/image/fetch/$s_!EZPt!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 848w, https://substackcdn.com/image/fetch/$s_!EZPt!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 1272w, https://substackcdn.com/image/fetch/$s_!EZPt!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F347a41e7-9f45-463b-ac01-145f2f0f71d0_977x241.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 2 &#8211; before (local time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Cf_M!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Cf_M!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 424w, https://substackcdn.com/image/fetch/$s_!Cf_M!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 848w, https://substackcdn.com/image/fetch/$s_!Cf_M!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 1272w, https://substackcdn.com/image/fetch/$s_!Cf_M!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Cf_M!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png" width="785" height="204" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:204,&quot;width&quot;:785,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:54644,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Cf_M!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 424w, https://substackcdn.com/image/fetch/$s_!Cf_M!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 848w, https://substackcdn.com/image/fetch/$s_!Cf_M!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 1272w, https://substackcdn.com/image/fetch/$s_!Cf_M!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50eb3877-075b-49c6-936b-1e2dda852b92_785x204.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 3 &#8211; after (local time zone)</figcaption></figure></div><p></p><ul><li><p>&#8220;HKLM\SYSTEM\ControlSet001\Enum\USBSTOR&#8221; registry key was removed after the update.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ob-5!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ob-5!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 424w, https://substackcdn.com/image/fetch/$s_!ob-5!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 848w, https://substackcdn.com/image/fetch/$s_!ob-5!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 1272w, https://substackcdn.com/image/fetch/$s_!ob-5!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ob-5!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png" width="977" height="604" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/2b5e76da-32a7-4772-9537-17f514cac689_977x604.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:604,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:207727,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ob-5!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 424w, https://substackcdn.com/image/fetch/$s_!ob-5!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 848w, https://substackcdn.com/image/fetch/$s_!ob-5!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 1272w, https://substackcdn.com/image/fetch/$s_!ob-5!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F2b5e76da-32a7-4772-9537-17f514cac689_977x604.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 4 &#8211; before (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!F3yT!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!F3yT!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 424w, https://substackcdn.com/image/fetch/$s_!F3yT!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 848w, https://substackcdn.com/image/fetch/$s_!F3yT!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 1272w, https://substackcdn.com/image/fetch/$s_!F3yT!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!F3yT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png" width="977" height="470" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/f2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:470,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:149527,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!F3yT!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 424w, https://substackcdn.com/image/fetch/$s_!F3yT!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 848w, https://substackcdn.com/image/fetch/$s_!F3yT!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 1272w, https://substackcdn.com/image/fetch/$s_!F3yT!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Ff2fbccff-5c64-4aec-b3c8-0c64a54c535b_977x470.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 5 &#8211; after (UTC time zone)</figcaption></figure></div><p></p><ul><li><p>&#8220;HKLM\SYSTEM\ControlSet001\Enum\USB\VID_13FE&amp;PID_5500\%S/N%&#8221; &#8211; record for USB drive S/N 070A8314CE182019 was removed after the update.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!FMS6!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!FMS6!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 424w, https://substackcdn.com/image/fetch/$s_!FMS6!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 848w, https://substackcdn.com/image/fetch/$s_!FMS6!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 1272w, https://substackcdn.com/image/fetch/$s_!FMS6!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!FMS6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png" width="977" height="493" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:493,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:178047,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!FMS6!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 424w, https://substackcdn.com/image/fetch/$s_!FMS6!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 848w, https://substackcdn.com/image/fetch/$s_!FMS6!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 1272w, https://substackcdn.com/image/fetch/$s_!FMS6!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F180ea444-0d48-45c0-bea0-9a5ba9f9fd3b_977x493.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 6 &#8211; before (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!4bTX!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!4bTX!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 424w, https://substackcdn.com/image/fetch/$s_!4bTX!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 848w, https://substackcdn.com/image/fetch/$s_!4bTX!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 1272w, https://substackcdn.com/image/fetch/$s_!4bTX!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!4bTX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png" width="977" height="470" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:470,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:145288,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!4bTX!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 424w, https://substackcdn.com/image/fetch/$s_!4bTX!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 848w, https://substackcdn.com/image/fetch/$s_!4bTX!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 1272w, https://substackcdn.com/image/fetch/$s_!4bTX!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8f9edd7d-f0f5-4297-bc98-6299d9514fe3_977x470.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 7 &#8211; after (UTC time zone)</figcaption></figure></div><ul><li><p>&#8220;HKLM\SYSTEM\ControlSet001\Enum\STORAGE\Volume\%S/N%&#8221; &#8211; record for USB drive S/N 070A8314CE182019 was removed after the update.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ZrnB!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ZrnB!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 424w, https://substackcdn.com/image/fetch/$s_!ZrnB!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 848w, https://substackcdn.com/image/fetch/$s_!ZrnB!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 1272w, https://substackcdn.com/image/fetch/$s_!ZrnB!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ZrnB!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png" width="977" height="481" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:481,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:210655,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ZrnB!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 424w, https://substackcdn.com/image/fetch/$s_!ZrnB!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 848w, https://substackcdn.com/image/fetch/$s_!ZrnB!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 1272w, https://substackcdn.com/image/fetch/$s_!ZrnB!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F3b0a8d9e-edb1-4bb9-906a-0c8f3bbe84a7_977x481.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 8 &#8211; before (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!11Du!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!11Du!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 424w, https://substackcdn.com/image/fetch/$s_!11Du!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 848w, https://substackcdn.com/image/fetch/$s_!11Du!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 1272w, https://substackcdn.com/image/fetch/$s_!11Du!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!11Du!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png" width="977" height="472" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/b2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:472,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:186692,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!11Du!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 424w, https://substackcdn.com/image/fetch/$s_!11Du!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 848w, https://substackcdn.com/image/fetch/$s_!11Du!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 1272w, https://substackcdn.com/image/fetch/$s_!11Du!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb2d1e85d-0dd4-4b94-b211-a86cb27f5e2d_977x472.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 9 &#8211; after (UTC time zone)</figcaption></figure></div><ul><li><p>&#8220;HKLM\SYSTEM\ControlSet001\Enum\SWD\WPDBUSENUM\%S/N%&#8221; &#8211; registry key WPDBUSENUM (portable device enumerator service) containing record of USB drive S/N 070A8314CE182019 was removed after the update.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!mHpj!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!mHpj!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 424w, https://substackcdn.com/image/fetch/$s_!mHpj!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 848w, https://substackcdn.com/image/fetch/$s_!mHpj!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 1272w, https://substackcdn.com/image/fetch/$s_!mHpj!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!mHpj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png" width="977" height="483" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:483,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:195019,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!mHpj!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 424w, https://substackcdn.com/image/fetch/$s_!mHpj!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 848w, https://substackcdn.com/image/fetch/$s_!mHpj!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 1272w, https://substackcdn.com/image/fetch/$s_!mHpj!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F4b7b937e-ff8c-40dc-a088-beb6bff1577a_977x483.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 10 &#8211; before (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!VmNz!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!VmNz!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 424w, https://substackcdn.com/image/fetch/$s_!VmNz!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 848w, https://substackcdn.com/image/fetch/$s_!VmNz!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!VmNz!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!VmNz!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png" width="1456" height="950" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:950,&quot;width&quot;:1456,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:139238,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!VmNz!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 424w, https://substackcdn.com/image/fetch/$s_!VmNz!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 848w, https://substackcdn.com/image/fetch/$s_!VmNz!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 1272w, https://substackcdn.com/image/fetch/$s_!VmNz!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F99152a75-df1b-4228-8151-ec3ff0e557a2_1570x1024.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 11 &#8211; after (UTC time zone)</figcaption></figure></div><ul><li><p>&#8220;HKLM\SYSTEM\ControlSet001\Control\DeviceClasses\{53f56307-b6bf-11d0-94f2-00a0c91efb8b}\%S/N%&#8221; &#8211; showed storage device drivers installed for USB drive S/N 070A8314CE182019. After the update this key was removed.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!hYQv!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!hYQv!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 424w, https://substackcdn.com/image/fetch/$s_!hYQv!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 848w, https://substackcdn.com/image/fetch/$s_!hYQv!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 1272w, https://substackcdn.com/image/fetch/$s_!hYQv!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!hYQv!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png" width="977" height="499" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/a8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:499,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:292215,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!hYQv!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 424w, https://substackcdn.com/image/fetch/$s_!hYQv!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 848w, https://substackcdn.com/image/fetch/$s_!hYQv!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 1272w, https://substackcdn.com/image/fetch/$s_!hYQv!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fa8e811b8-ed0b-4fdb-9ad7-384c93454ad7_977x499.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 12 &#8211; before (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!h0xt!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!h0xt!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 424w, https://substackcdn.com/image/fetch/$s_!h0xt!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 848w, https://substackcdn.com/image/fetch/$s_!h0xt!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 1272w, https://substackcdn.com/image/fetch/$s_!h0xt!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!h0xt!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png" width="977" height="466" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:466,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:244094,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!h0xt!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 424w, https://substackcdn.com/image/fetch/$s_!h0xt!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 848w, https://substackcdn.com/image/fetch/$s_!h0xt!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 1272w, https://substackcdn.com/image/fetch/$s_!h0xt!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F55b11df1-9125-4ffa-8a6b-7fd552f5b252_977x466.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 13 &#8211; after (UTC time zone)</figcaption></figure></div><ul><li><p>&#8220;System.evtx&#8221; event ID 20001 showed drivers were installed for USB drive S/N 070A8314CE182019 at approximately 14:49:54 local time. After the update event log &#8220;System.evtx&#8221; was cleared and the earliest record was at approximately 15:45:01 local time.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Zghe!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Zghe!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 424w, https://substackcdn.com/image/fetch/$s_!Zghe!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 848w, https://substackcdn.com/image/fetch/$s_!Zghe!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 1272w, https://substackcdn.com/image/fetch/$s_!Zghe!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Zghe!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png" width="735" height="556" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/b0724791-4168-412a-971e-83f67086d49d_735x556.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:556,&quot;width&quot;:735,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:211633,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Zghe!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 424w, https://substackcdn.com/image/fetch/$s_!Zghe!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 848w, https://substackcdn.com/image/fetch/$s_!Zghe!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 1272w, https://substackcdn.com/image/fetch/$s_!Zghe!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fb0724791-4168-412a-971e-83f67086d49d_735x556.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 14 &#8211; before (local time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!G1Q1!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!G1Q1!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 424w, https://substackcdn.com/image/fetch/$s_!G1Q1!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 848w, https://substackcdn.com/image/fetch/$s_!G1Q1!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 1272w, https://substackcdn.com/image/fetch/$s_!G1Q1!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!G1Q1!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png" width="733" height="547" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:547,&quot;width&quot;:733,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:148878,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!G1Q1!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 424w, https://substackcdn.com/image/fetch/$s_!G1Q1!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 848w, https://substackcdn.com/image/fetch/$s_!G1Q1!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 1272w, https://substackcdn.com/image/fetch/$s_!G1Q1!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F50d5b871-ff36-43a8-a47a-31b3a02d8ca6_733x547.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 15 &#8211; after (local time zone)</figcaption></figure></div><p></p><ul><li><p>&#8220;Microsoft-Windows-Kernel-PnP%4Configuration.evtx&#8221; series of event IDs 400, 410, 430 referenced drivers installation for USB drive S/N 070A8314CE182019. After the update event log &#8220;Microsoft-Windows-Kernel-PnP%4Configuration.evtx&#8221; was cleared and the earliest record was at approximately 15:45:01 local time.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!YO6e!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!YO6e!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 424w, https://substackcdn.com/image/fetch/$s_!YO6e!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 848w, https://substackcdn.com/image/fetch/$s_!YO6e!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 1272w, https://substackcdn.com/image/fetch/$s_!YO6e!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!YO6e!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png" width="700" height="468" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:468,&quot;width&quot;:700,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:141854,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!YO6e!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 424w, https://substackcdn.com/image/fetch/$s_!YO6e!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 848w, https://substackcdn.com/image/fetch/$s_!YO6e!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 1272w, https://substackcdn.com/image/fetch/$s_!YO6e!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F425ce07b-ea23-4fae-93c2-06c631ac9012_700x468.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 16 &#8211; before (local time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!bRcZ!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!bRcZ!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 424w, https://substackcdn.com/image/fetch/$s_!bRcZ!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 848w, https://substackcdn.com/image/fetch/$s_!bRcZ!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 1272w, https://substackcdn.com/image/fetch/$s_!bRcZ!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!bRcZ!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png" width="700" height="550" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/bab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:550,&quot;width&quot;:700,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:139233,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!bRcZ!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 424w, https://substackcdn.com/image/fetch/$s_!bRcZ!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 848w, https://substackcdn.com/image/fetch/$s_!bRcZ!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 1272w, https://substackcdn.com/image/fetch/$s_!bRcZ!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fbab7d6e4-aa72-424c-9708-924d80d383a7_700x550.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 17 &#8211; after (local time zone)</figcaption></figure></div><p></p><ul><li><p>&#8220;Microsoft-Windows-Partition%4Diagnostic.evtx&#8221;, event ID 1006 showed a record for USB drive S/N 070A8314CE182019 at approximately 14:49:51 local time. After the update the event log &#8220;Microsoft-Windows-Partition%4Diagnostic.evtx&#8221; was cleared and the earliest record was at approximately 15:45:07 local time.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!g8vS!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!g8vS!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 424w, https://substackcdn.com/image/fetch/$s_!g8vS!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 848w, https://substackcdn.com/image/fetch/$s_!g8vS!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 1272w, https://substackcdn.com/image/fetch/$s_!g8vS!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!g8vS!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png" width="977" height="797" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:797,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:151083,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!g8vS!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 424w, https://substackcdn.com/image/fetch/$s_!g8vS!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 848w, https://substackcdn.com/image/fetch/$s_!g8vS!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 1272w, https://substackcdn.com/image/fetch/$s_!g8vS!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F235bbc5a-d3dd-4324-af7d-7e7c1b1ff6f5_977x797.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 18 &#8211; before (local time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!vso_!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!vso_!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 424w, https://substackcdn.com/image/fetch/$s_!vso_!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 848w, https://substackcdn.com/image/fetch/$s_!vso_!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 1272w, https://substackcdn.com/image/fetch/$s_!vso_!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!vso_!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png" width="977" height="800" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:800,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:153480,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!vso_!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 424w, https://substackcdn.com/image/fetch/$s_!vso_!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 848w, https://substackcdn.com/image/fetch/$s_!vso_!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 1272w, https://substackcdn.com/image/fetch/$s_!vso_!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F8e4680a9-caf5-43ab-b07d-6ea004da2548_977x800.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 19 - after (local time zone)</figcaption></figure></div><p></p><ul><li><p>&#8220;HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MountPoints2\&#8221; registry key contained volume GUID {50404ddb-0ce7-11ec-b752-000c29fb8cf1} that can be cross-correlated to USB drive S/N 070A8314CE182019. After the update the volume GUID entry was removed.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!aGnH!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!aGnH!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 424w, https://substackcdn.com/image/fetch/$s_!aGnH!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 848w, https://substackcdn.com/image/fetch/$s_!aGnH!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 1272w, https://substackcdn.com/image/fetch/$s_!aGnH!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!aGnH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png" width="783" height="481" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:481,&quot;width&quot;:783,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:183865,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!aGnH!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 424w, https://substackcdn.com/image/fetch/$s_!aGnH!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 848w, https://substackcdn.com/image/fetch/$s_!aGnH!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 1272w, https://substackcdn.com/image/fetch/$s_!aGnH!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F705c478e-06f0-4a0b-a15b-7418faa9e233_783x481.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 20 &#8211; before (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!aIxx!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!aIxx!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 424w, https://substackcdn.com/image/fetch/$s_!aIxx!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 848w, https://substackcdn.com/image/fetch/$s_!aIxx!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 1272w, https://substackcdn.com/image/fetch/$s_!aIxx!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!aIxx!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png" width="783" height="566" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:566,&quot;width&quot;:783,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:218804,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!aIxx!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 424w, https://substackcdn.com/image/fetch/$s_!aIxx!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 848w, https://substackcdn.com/image/fetch/$s_!aIxx!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 1272w, https://substackcdn.com/image/fetch/$s_!aIxx!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F146cc1c2-0a71-4e01-97f5-dc709c7626d2_783x566.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 21 &#8211; after (UTC time zone)</figcaption></figure></div><p></p><p>Based on the experiment results, majority of the operating system artifacts containing evidence of USB devices plugged in to the system were cleared after the update. In the next section I am going to show few artifacts that did not exist before the update and could still contain some information regarding historical USB devices plugged in to the system prior to the update.</p><ul><li><p>&#8220;Setupapi.upgrade.log&#8221; log file was created after the update.&nbsp;&nbsp;In my tests this log contained PnP drivers migration records for the previously initiated USB drives (including USB drive S/N 070A8314CE182019). &nbsp;</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!Js1J!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!Js1J!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 424w, https://substackcdn.com/image/fetch/$s_!Js1J!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 848w, https://substackcdn.com/image/fetch/$s_!Js1J!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 1272w, https://substackcdn.com/image/fetch/$s_!Js1J!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!Js1J!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png" width="977" height="195" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:195,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:114098,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!Js1J!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 424w, https://substackcdn.com/image/fetch/$s_!Js1J!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 848w, https://substackcdn.com/image/fetch/$s_!Js1J!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 1272w, https://substackcdn.com/image/fetch/$s_!Js1J!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F88dde528-ce06-4522-b1d7-8b985f73f257_977x195.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 22 &#8211; search results for historical serial number in &#8220;Setupapi.upgrade.log&#8221; (local time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2" target="_blank" href="https://substackcdn.com/image/fetch/$s_!8lHF!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!8lHF!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 424w, https://substackcdn.com/image/fetch/$s_!8lHF!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 848w, https://substackcdn.com/image/fetch/$s_!8lHF!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 1272w, https://substackcdn.com/image/fetch/$s_!8lHF!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!8lHF!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png" width="800" height="191" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/cf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:191,&quot;width&quot;:800,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:96495,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!8lHF!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 424w, https://substackcdn.com/image/fetch/$s_!8lHF!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 848w, https://substackcdn.com/image/fetch/$s_!8lHF!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 1272w, https://substackcdn.com/image/fetch/$s_!8lHF!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fcf4766a6-cdf0-4048-a80a-aa5346aaacb4_800x191.png 1456w" sizes="100vw" loading="lazy"></picture><div></div></div></a><figcaption class="image-caption">Figure 23 &#8211; Setup PnP Migration started at some point during the Windows 10 feature update process (local time zone)</figcaption></figure></div><ul><li><p>&#8220;HKLM\SYSTEM\Setup\Upgrade\&#8221; registry key was created after the update. The following subkeys would be of interest for USB forensics, and in our case will have records for the USB drive that was plugged in prior to the update: &#8220;Pnp\CurrentControlSet\Control\DeviceMigration\Devices\SWD\WPDBUSENUM\%S/N%&#8221;, &#8220;Pnp\CurrentControlSet\Control\DeviceMigration\Devices\USB\%S/N%&#8221;, &#8220;Pnp\CurrentControlSet\Control\DeviceMigration\Devices\USBSTOR\%S/N%&#8221;. As you can notice, &#8220;last write&#8221; time stamp was updated after the system update, and therefore cannot be relied on during forensic examinations. Value under &#8220;LastPresentDate&#8221; in the above subkeys could reveal the last time a drive was disconnected from the system.</p></li></ul><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!X-nh!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!X-nh!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 424w, https://substackcdn.com/image/fetch/$s_!X-nh!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 848w, https://substackcdn.com/image/fetch/$s_!X-nh!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 1272w, https://substackcdn.com/image/fetch/$s_!X-nh!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!X-nh!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png" width="812" height="614" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:614,&quot;width&quot;:812,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:197051,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!X-nh!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 424w, https://substackcdn.com/image/fetch/$s_!X-nh!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 848w, https://substackcdn.com/image/fetch/$s_!X-nh!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 1272w, https://substackcdn.com/image/fetch/$s_!X-nh!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7cc9e2c7-2667-4255-847c-8f47519ff4cb_812x614.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 24 &#8211; &#8220;HKLM\SYSTEM\Setup\Upgrade\&#8221; key was not present prior to update (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!dytN!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!dytN!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 424w, https://substackcdn.com/image/fetch/$s_!dytN!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 848w, https://substackcdn.com/image/fetch/$s_!dytN!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 1272w, https://substackcdn.com/image/fetch/$s_!dytN!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!dytN!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png" width="912" height="612" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:612,&quot;width&quot;:912,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:289451,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!dytN!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 424w, https://substackcdn.com/image/fetch/$s_!dytN!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 848w, https://substackcdn.com/image/fetch/$s_!dytN!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 1272w, https://substackcdn.com/image/fetch/$s_!dytN!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F7ca45256-db3e-4306-8a78-73fd612e9032_912x612.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 25 &#8211; &#8220;HKLM\SYSTEM\Setup\Upgrade\Pnp\CurrentControlSet\Control\DeviceMigration\Devices\SWD\WPDBUSENUM\%S/N%&#8221; present after update and contains record for USB drive S/N 070A8314CE182019 (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!ZD0A!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!ZD0A!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 424w, https://substackcdn.com/image/fetch/$s_!ZD0A!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 848w, https://substackcdn.com/image/fetch/$s_!ZD0A!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 1272w, https://substackcdn.com/image/fetch/$s_!ZD0A!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!ZD0A!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png" width="839" height="706" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/d367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:706,&quot;width&quot;:839,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:244994,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!ZD0A!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 424w, https://substackcdn.com/image/fetch/$s_!ZD0A!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 848w, https://substackcdn.com/image/fetch/$s_!ZD0A!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 1272w, https://substackcdn.com/image/fetch/$s_!ZD0A!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2Fd367e80c-6d45-40f2-87f4-c35ca4f8b649_839x706.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 26 &#8211; &#8220;HKLM\SYSTEM\Setup\Upgrade\Pnp\CurrentControlSet\Control\DeviceMigration\Devices\USB\%S/N%&#8221; present after update and contains record for USB drive S/N 070A8314CE182019 (UTC time zone)</figcaption></figure></div><p></p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!cIUw!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!cIUw!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 424w, https://substackcdn.com/image/fetch/$s_!cIUw!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 848w, https://substackcdn.com/image/fetch/$s_!cIUw!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 1272w, https://substackcdn.com/image/fetch/$s_!cIUw!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!cIUw!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png" width="902" height="660" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:660,&quot;width&quot;:902,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:224424,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!cIUw!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 424w, https://substackcdn.com/image/fetch/$s_!cIUw!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 848w, https://substackcdn.com/image/fetch/$s_!cIUw!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 1272w, https://substackcdn.com/image/fetch/$s_!cIUw!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F069aa0b2-48d9-416f-9c6f-54fae99025b8_902x660.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 27 - &#8220;HKLM\SYSTEM\Setup\Upgrade\Pnp\Pnp\CurrentControlSet\Control\DeviceMigration\Devices\USBSTOR\%S/N%&#8221; present after update and contains record for USB drive S/N 070A8314CE182019 (UTC time zone)</figcaption></figure></div><p></p><h4>Bonus content!</h4><p>Now the question is &#8211; would any evidence of the USB drive remain if we perform another update? For these purposes on the newly updated system (version 1903) I installed additional feature update (version 2004). The &#8220;HKLM\SYSTEM\Setup\&#8221; registry key showed installation for second feature update was started on 9/6/2021 at approximately 16:41:40 local time:</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!_blx!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!_blx!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 424w, https://substackcdn.com/image/fetch/$s_!_blx!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 848w, https://substackcdn.com/image/fetch/$s_!_blx!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 1272w, https://substackcdn.com/image/fetch/$s_!_blx!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!_blx!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png" width="977" height="862" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:862,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:368562,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!_blx!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 424w, https://substackcdn.com/image/fetch/$s_!_blx!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 848w, https://substackcdn.com/image/fetch/$s_!_blx!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 1272w, https://substackcdn.com/image/fetch/$s_!_blx!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F121c0e79-0408-4a90-b7a4-633322d86e88_977x862.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 28 &#8211; &#8220;HKLM\SYSTEM\Setup&#8221; subkeys after the second update (highlighted key name - local time zone, last write time stamp - UTC)</figcaption></figure></div><p></p><p>Similar to previous experiments temporary installation files were cleared after the update via Windows 10 storage settings. I compared state of pre-install (version 1903) to post-install (version 2004). The experiment showed that after second update it will not be possible to determine <strong>when</strong> USB drive in question (S/N 070A8314CE182019) was plugged in. However, we would still be able to determine <strong>the fact</strong> that USB drive was plugged in at some point &#8211; based on registry key value in &#8220;HKLM\SYSTEM\MountedDevices\&#8221;</p><div class="captioned-image-container"><figure><a class="image-link image2 is-viewable-img" target="_blank" href="https://substackcdn.com/image/fetch/$s_!7TAm!,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png" data-component-name="Image2ToDOM"><div class="image2-inset"><picture><source type="image/webp" srcset="https://substackcdn.com/image/fetch/$s_!7TAm!,w_424,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 424w, https://substackcdn.com/image/fetch/$s_!7TAm!,w_848,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 848w, https://substackcdn.com/image/fetch/$s_!7TAm!,w_1272,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 1272w, https://substackcdn.com/image/fetch/$s_!7TAm!,w_1456,c_limit,f_webp,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 1456w" sizes="100vw"><img src="https://substackcdn.com/image/fetch/$s_!7TAm!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png" width="977" height="464" data-attrs="{&quot;src&quot;:&quot;https://bucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com/public/images/59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png&quot;,&quot;srcNoWatermark&quot;:null,&quot;fullscreen&quot;:null,&quot;imageSize&quot;:null,&quot;height&quot;:464,&quot;width&quot;:977,&quot;resizeWidth&quot;:null,&quot;bytes&quot;:363943,&quot;alt&quot;:null,&quot;title&quot;:null,&quot;type&quot;:&quot;image/png&quot;,&quot;href&quot;:null,&quot;belowTheFold&quot;:true,&quot;topImage&quot;:false,&quot;internalRedirect&quot;:null,&quot;isProcessing&quot;:false,&quot;align&quot;:null,&quot;offset&quot;:false}" class="sizing-normal" alt="" srcset="https://substackcdn.com/image/fetch/$s_!7TAm!,w_424,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 424w, https://substackcdn.com/image/fetch/$s_!7TAm!,w_848,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 848w, https://substackcdn.com/image/fetch/$s_!7TAm!,w_1272,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 1272w, https://substackcdn.com/image/fetch/$s_!7TAm!,w_1456,c_limit,f_auto,q_auto:good,fl_progressive:steep/https%3A%2F%2Fbucketeer-e05bbc84-baa3-437e-9518-adb32be77984.s3.amazonaws.com%2Fpublic%2Fimages%2F59a125c4-61cf-4275-9848-e9e9c1694226_977x464.png 1456w" sizes="100vw" loading="lazy"></picture><div class="image-link-expand"><div class="pencraft pc-display-flex pc-gap-8 pc-reset"><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container restack-image"><svg role="img" width="20" height="20" viewBox="0 0 20 20" fill="none" stroke-width="1.5" stroke="var(--color-fg-primary)" stroke-linecap="round" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg"><g><title></title><path d="M2.53001 7.81595C3.49179 4.73911 6.43281 2.5 9.91173 2.5C13.1684 2.5 15.9537 4.46214 17.0852 7.23684L17.6179 8.67647M17.6179 8.67647L18.5002 4.26471M17.6179 8.67647L13.6473 6.91176M17.4995 12.1841C16.5378 15.2609 13.5967 17.5 10.1178 17.5C6.86118 17.5 4.07589 15.5379 2.94432 12.7632L2.41165 11.3235M2.41165 11.3235L1.5293 15.7353M2.41165 11.3235L6.38224 13.0882"></path></g></svg></button><button tabindex="0" type="button" class="pencraft pc-reset pencraft icon-container view-image"><svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-maximize2 lucide-maximize-2"><polyline points="15 3 21 3 21 9"></polyline><polyline points="9 21 3 21 3 15"></polyline><line x1="21" x2="14" y1="3" y2="10"></line><line x1="3" x2="10" y1="21" y2="14"></line></svg></button></div></div></div></a><figcaption class="image-caption">Figure 29 &#8211; &#8220;HKLM\SYSTEM\MountedDevices\&#8221; stored record for USB drive S/N 070A8314CE182019 (UTC time zone)</figcaption></figure></div><p></p><h4>References</h4><ul><li><p>Windows 10 versions history&nbsp;(<a href="https://docs.microsoft.com/en-us/windows/release-health/release-information">https://docs.microsoft.com/en-us/windows/release-health/release-information</a>)</p></li><li><p>Microsoft updates terminology&nbsp;(<a href="https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates">https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates</a>)</p></li></ul><h4>Tools used</h4><ul><li><p>Registry Explorer/RECmd&nbsp;(<a href="https://ericzimmerman.github.io/#!index.md">https://ericzimmerman.github.io/#!index.md</a>)</p></li><li><p>USB Detective&nbsp;(<a href="https://usbdetective.com">https://usbdetective.com</a>)</p></li></ul><p></p><p></p>]]></content:encoded></item></channel></rss>