Windows Analysis Report
http://curbengh.github.io

Overview

General Information

Sample URL: http://curbengh.github.io
Analysis ID: 1428962
Infos:

Detection

Score: 20
Range: 0 - 100
Whitelisted: false
Confidence: 80%

Signatures

Found Tor onion address

Classification

Source: unknown HTTPS traffic detected: 23.63.206.91:443 -> 192.168.2.4:49752 version: TLS 1.2
Source: unknown HTTPS traffic detected: 23.63.206.91:443 -> 192.168.2.4:49753 version: TLS 1.2

Networking

barindex
Source: chromecache_125.2.dr String found in binary or memory: <span class="hljs-punctuation">&#125;</span></code><button class="copy-button">Copy</button></pre><pre><div class="caption"><span>Converted</span></div><code class="hljs plain">UriPath=ENDSWITH(.conf)</code><button class="copy-button">Copy</button></pre></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Last Updated:</span> <time class="dt-updated" datetime="2021-09-01T00:00:00.000Z" itemprop="dateModified">1 Sep 2021</time></li><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2021-06-27T00:00:00.000Z" itemprop="datePublished">27 <a href="/blog/2021/06/" title="See June 2021's posts">Jun</a> <a href="/blog/2021/" title="See 2021's posts">2021</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/aws/" rel="tag">Aws</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/security/" rel="tag">Security</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/aws-waf.md" rel="noopener external nofollow noreferrer">aws-waf.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2021/07/02/custom-package-nixos-module/"><div class="article-nav-title">Using custom package in a NixOS module</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2021/06/15/cloudflare-argo-nixos/"><div class="article-nav-title">Setup Cloudflare Argo Tunnel in NixOS</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></s
Source: chromecache_162.2.dr String found in binary or memory: <content type="html"><![CDATA[<p>While reading through Tor blog, there was <a href="https://blog.torproject.org/tls-certificate-for-onion-site">a post</a> back in March 2021 to announce HARICA, a root CA operator, has started selling <code>.onion</code> TLS certificate. The cert is of domain validation (DV) type, significantly easier to purchase and cheaper than Digicert
Source: chromecache_162.2.dr String found in binary or memory: s extended validation (EV) cert, which was previously the only CA that supports .onion.</p><p>The post links to an <a href="https://kushaldas.in/posts/get-a-tls-certificate-for-your-onion-service.html">excellent tutorial</a>. Different from the tutorial, I prefer to use ECDSA cert than RSA, just like Cloudflare
Source: chromecache_162.2.dr String found in binary or memory: as the validation option. This option enables you to get wildcard (*.onion.com) cert, necessary if you have subdomain(s) under your onion service.</li><li>Instead of uploading a file to web server, I use <a href="https://caddyserver.com/docs/caddyfile/directives/respond"><code>respond</code></a> instead.</li></ol><pre><code class="hljs Caddyfile">http://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion:8080 &#123; bind ::1 # Harica CA domain validation<mark> @harica path /.well-known/pki-validation/xxx</mark><mark> respond @harica &quot;yyy&quot;</mark>&#125;</code></pre><ol start="8"><li><p>Restart Caddy and check the path has correct response. &#96;curl <a href="http://localhost:8080/.well-known/pki-validation/xxx">http://localhost:8080/.well-known/pki-validation/xxx</a> -H
Source: chromecache_162.2.dr String found in binary or memory: to the server. <code>chown</code> it to the Caddy system user and <code>chmod 600</code>.</p></li><li><p>Install the cert in Caddy. Site address has to be separated to HTTP and HTTPS blocks due to the use of custom port. When custom port is not used, Caddy listens on port 80 and 443 by default.</p></li></ol><pre><code class="hljs Caddyfile"># HTTPhttp://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion:8080 &#123; bind ::1 # Redirect to HTTPS redir https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion&#123;uri&#125; permanent # HSTS (optional) header Strict-Transport-Security &quot;max-age=31536000; includeSubDomains; preload&quot;&#125;# HTTPSxw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion:8079 &#123; bind ::1 tls /var/lib/caddy/myonion.pem /var/lib/caddy/myonion.key header Strict-Transport-Security &quot;max-age=31536000; includeSubDomains; preload&quot; @harica path /.well-known/pki-validation/xxx respond @harica &quot;yyy&quot;&#125;</code></pre><ol start="13"><li>Finally, update the Tor config. I configured it via NixOS global config.</li></ol><pre><div class="caption"><span>configuration.nix</span></div><code class="hljs nix">services.<span class="hljs-attr">tor</span> = &#123; <span class="hljs-attr">enable</span> = <span class="hljs-literal">true</span>; relay.<span class="hljs-attr">onionServices</span> = &#123; <span class="hljs-attr">myonion</span> = &#123; <span class="hljs-attr">version</span> = <span class="hljs-number">3</span>; <span class="hljs-attr">map</span> = [&#123; <span class="hljs-attr">port</span> = <span class="hljs-number">80</span>; <span class="hljs-attr">target</span> = &#123; <span class="hljs-attr">addr</span> = <span class="hljs-string">&quot;[::1]&quot;</span>; <span class="hljs-attr">port</span> = <span class="hljs-number">8080</span>; &#125;; &#125; &#123;<mark> <span class="hljs-attr">port</span> = <span class="hljs-number">443</span>;</mark><mark> <span class="hljs-attr">target</span> = &#123;</mark><mark> <span class="hljs-attr">addr</span> = <span class="hljs-string">&quot;[::1]&quot;</span>;</mark><mark> <span class="hljs-attr">port</span> = <span class="hljs-number">8079</span>;</mark><mark> &#125;;</mark> &#125;]; &#125;; &#125;;&#125;;</code></pre>]]></content>
Source: chromecache_161.2.dr String found in binary or memory: if(document.getElementById("search-click").addEventListener("click",(()=>{searchForm.submit()}),!1),document.getElementById("search-click-mobile").addEventListener("click",(()=>{searchFormMob.submit()}),!1),document.addEventListener("click",(e=>{const t=window.getComputedStyle(document.getElementsByClassName("main-nav")[0]).getPropertyValue("display"),n=document.getElementById("mobile-nav-link"),o=document.getElementById("mobile-menu-toggle"),a=!n.contains(e.target);"none"===t&&"menu-button"!==e.target.id&&"mobile-menu-toggle"!==e.target.id&&!1!==o.checked&&a&&(o.checked=!1)}),!1),navigator.share&&"https:"===document.location.protocol){const e=document.getElementById("btnshare");e.style.display="inline-block",e.addEventListener("click",(async()=>{const e=e=>document.querySelector(e),t=e('meta[property="og:title"]')?e('meta[property="og:title"]').content:"",n=e('meta[property="og:description"]')?e('meta[property="og:description"]').content:"",o=e('link[rel="canonical"]')?e('link[rel="canonical"]').href:document.location.href;await navigator.share({title:t,text:n,url:o})}),!1)}if(document.location.hostname.endsWith(".onion")){document.querySelectorAll("form#searchForm, form#searchFormMob").forEach((e=>{e.setAttribute("action","https://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion/")}))}const navLink=document.querySelectorAll("a.main-nav-link, a.mobile-nav-link-a");navLink.forEach((e=>{const t=new URL(e.href),n=document.location.pathname;if("/"!==t.pathname&&t.pathname===n){const t=document.createElement("span");t.className=e.className,t.textContent=e.textContent,e.outerHTML=t.outerHTML}}));
Source: chromecache_196.2.dr String found in binary or memory: s object) also applies to dashboards. However, there is no way to delete a dashboard xml in Splunk Cloud, so updating a dashboard through app update always require app uninstallation beforehand.</p></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2024-02-24T00:00:00.000Z" itemprop="datePublished">24 <a href="/blog/2024/02/" title="See February 2024's posts">Feb</a> <a href="/blog/2024/" title="See 2024's posts">2024</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/splunk/" rel="tag">Splunk</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/splunk-app-acl.md" rel="noopener external nofollow noreferrer">splunk-app-acl.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"></span> <span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2023/10/01/splunk-ldapsearch-useraccountcontrol/"><div class="article-nav-title">Query LOCKOUT and PASSWORD_EXPIRED flags on Splunk SA-ldapsearch</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></script></body></html>
Source: chromecache_127.2.dr String found in binary or memory: </a></h2><p><code>ssh-keygen -L -f ~/.cloudflared/test.yourdomain.com-cf_key-cert.pub</code></p></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Last Updated:</span> <time class="dt-updated" datetime="2023-02-21T00:00:00.000Z" itemprop="dateModified">21 Feb 2023</time></li><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2023-02-13T00:00:00.000Z" itemprop="datePublished">13 <a href="/blog/2023/02/" title="See February 2023's posts">Feb</a> <a href="/blog/2023/" title="See 2023's posts">2023</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/cloudflare/" rel="tag">Cloudflare</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/ssh-certificate-cloudflare-tunnel.md" rel="noopener external nofollow noreferrer">ssh-certificate-cloudflare-tunnel.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2023/04/16/splunk-lookup-malware-filter/"><div class="article-nav-title">Malicious website detection on Splunk using malware-filter</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2022/11/27/grub-luks2-argon2/"><div class="article-nav-title">Enable LUKS2 and Argon2 support for Grub in Manjaro/Arch</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></script></body></html>
Source: chromecache_182.2.dr String found in binary or memory: , <em>Trustcom&#x2F;BigDataSE&#x2F;ISPA</em>, IEEE, pp. 1059-66, doi: <a href="https://doi.org/10.1109/Trustcom.2015.483" rel="noopener external nofollow noreferrer">10.1109&#x2F;Trustcom.2015.483</a>. <a href="/files/publications/Forensic-collection-and-analysis-of-thumbnails-in-Android_postprint.pdf">Postprint</a></li></ul></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Last Updated:</span> <time class="dt-updated" datetime="2022-08-01T00:00:00.000Z" itemprop="dateModified">1 Aug 2022</time></li><li><span class="label">Published Date:</span> <time datetime="2019-09-20T00:00:00.000Z" itemprop="datePublished">20 <a href="/blog/2019/09/" title="See September 2019's posts">Sep</a> <a href="/blog/2019/" title="See 2019's posts">2019</a></time></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/about/index.md" rel="noopener external nofollow noreferrer">about&#x2F;index.md</a></li><hr></ul></footer></div></article></div><footer id="footer" class="archive-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/js/chameleon.js"></script></body></html>
Source: chromecache_130.2.dr String found in binary or memory: </code><button class="copy-button">Copy</button></pre></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2023-10-01T00:00:00.000Z" itemprop="datePublished">1 <a href="/blog/2023/10/" title="See October 2023's posts">Oct</a> <a href="/blog/2023/" title="See 2023's posts">2023</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/splunk/" rel="tag">Splunk</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/splunk-ldapsearch-useraccountcontrol.md" rel="noopener external nofollow noreferrer">splunk-ldapsearch-useraccountcontrol.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2024/02/24/splunk-app-acl/"><div class="article-nav-title">Applying default-deny ACL in Splunk app</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2023/08/27/saml-scim/"><div class="article-nav-title">Azure AD SSO integration with ServiceNow</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></script></body></html>
Source: chromecache_123.2.dr String found in binary or memory: | lookup opendbl_ip cidr_range AS dst OUTPUT name AS threat</code><button class="copy-button">Copy</button></pre><table><thead><tr><th>src</th><th>src_port</th><th>dst</th><th>action</th><th>threat</th></tr></thead><tbody><tr><td>192.168.1.5</td><td>45454</td><td>187.190.252.167</td><td>allowed</td><td>Emerging Threats: Known Compromised Hosts</td></tr><tr><td>192.168.1.3</td><td>45452</td><td>7.6.5.4</td><td>allowed</td><td></td></tr><tr><td>192.168.1.4</td><td>45457</td><td>4.3.2.1</td><td>allowed</td><td></td></tr><tr><td>192.168.1.6</td><td>45451</td><td>89.248.163.100</td><td>allowed</td><td>Dshield</td></tr></tbody></table></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2023-04-16T00:00:00.000Z" itemprop="datePublished">16 <a href="/blog/2023/04/" title="See April 2023's posts">Apr</a> <a href="/blog/2023/" title="See 2023's posts">2023</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/splunk/" rel="tag">Splunk</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/splunk-lookup-malware-filter.md" rel="noopener external nofollow noreferrer">splunk-lookup-malware-filter.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2023/06/17/json-splunk-uf/"><div class="article-nav-title">Configure Splunk Universal Forwarder to ingest JSON files</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2023/02/13/ssh-certificate-cloudflare-tunnel/"><div class="article-nav-title">SSH certificate using Cloudflare Tunnel</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener externa
Source: chromecache_216.2.dr String found in binary or memory: </a></h2><table><thead><tr><th>Project</th><th>Before</th><th>After</th><th>Runtime</th></tr></thead><tbody><tr><td><a href="https://gitlab.com/malware-filter/malware-filter" rel="noopener external nofollow noreferrer">malware-filter</a> (project)</td><td>15.12 GB</td><td>6.3 GB</td><td>46m 15s</td></tr><tr><td><a href="https://gitlab.com/malware-filter/phishing-filter" rel="noopener external nofollow noreferrer">phishing-filter</a></td><td>6.02 GB</td><td>949 MB</td><td>1h 35m 17s</td></tr><tr><td><a href="https://gitlab.com/malware-filter/pup-filter" rel="noopener external nofollow noreferrer">pup-filter</a></td><td>1.16 GB</td><td>480.4 MB</td><td>57m 45s</td></tr><tr><td><a href="https://gitlab.com/malware-filter/tracking-filter" rel="noopener external nofollow noreferrer">tracking-filter</a></td><td>106.68 MB</td><td>105.3 MB</td><td>4m 38s</td></tr><tr><td><a href="https://gitlab.com/malware-filter/urlhaus-filter" rel="noopener external nofollow noreferrer">urlhaus-filter</a></td><td>2.64 GB</td><td>908 MB</td><td>1h 50m 19s</td></tr><tr><td><a href="https://gitlab.com/malware-filter/vn-badsite-filter" rel="noopener external nofollow noreferrer">vn-badsite-filter</a></td><td>283.12 MB</td><td>114.8 MB</td><td>19m 52s</td></tr></tbody></table></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2022-08-09T00:00:00.000Z" itemprop="datePublished">9 <a href="/blog/2022/08/" title="See August 2022's posts">Aug</a> <a href="/blog/2022/" title="See 2022's posts">2022</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/gitlab/" rel="tag">Gitlab</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/remove-gitlab-artifacts.md" rel="noopener external nofollow noreferrer">remove-gitlab-artifacts.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2022/11/27/grub-luks2-argon2/"><div class="article-nav-title">Enable LUKS2 and Argon2 support for Grub in Manjaro/Arch</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2021/12/27/caddy-plugins-nixos/"><div class="article-nav-title">Installing Caddy plugins in NixOS</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="http
Source: chromecache_174.2.dr String found in binary or memory: </a></h2><ul><li><a href="https://wiki.archlinux.org/title/Dm-crypt/Encrypting_an_entire_system" rel="noopener external nofollow noreferrer">Dm-crypt&#x2F;Encrypting_an_entire_system</a></li><li><a href="https://leo3418.github.io/collections/gentoo-config-luks2-grub-systemd.html" rel="noopener external nofollow noreferrer">Gentoo Configuration Guide</a></li><li><a href="https://wiki.manjaro.org/index.php/GRUB/Restore_the_GRUB_Bootloader" rel="noopener external nofollow noreferrer">Restore the GRUB Bootloader</a></li></ul></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2022-11-27T00:00:00.000Z" itemprop="datePublished">27 <a href="/blog/2022/11/" title="See November 2022's posts">Nov</a> <a href="/blog/2022/" title="See 2022's posts">2022</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/arch/" rel="tag">Arch</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/linux/" rel="tag">Linux</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/luks/" rel="tag">Luks</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/manjaro/" rel="tag">Manjaro</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/grub-luks2-argon2.md" rel="noopener external nofollow noreferrer">grub-luks2-argon2.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2023/02/13/ssh-certificate-cloudflare-tunnel/"><div class="article-nav-title">SSH certificate using Cloudflare Tunnel</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2022/08/09/remove-gitlab-artifacts/"><div class="article-nav-title">Bulk remove old GitLab CI job artifacts</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4
Source: chromecache_221.2.dr String found in binary or memory: works too.</p></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2023-08-27T00:00:00.000Z" itemprop="datePublished">27 <a href="/blog/2023/08/" title="See August 2023's posts">Aug</a> <a href="/blog/2023/" title="See 2023's posts">2023</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/azure-ad/" rel="tag">Azure-ad</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/servicenow/" rel="tag">Servicenow</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/sso/" rel="tag">Sso</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/saml-scim.md" rel="noopener external nofollow noreferrer">saml-scim.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2023/10/01/splunk-ldapsearch-useraccountcontrol/"><div class="article-nav-title">Query LOCKOUT and PASSWORD_EXPIRED flags on Splunk SA-ldapsearch</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2023/07/17/ctrl-h-backspace/"><div class="article-nav-title">Mapping Ctrl+H to Backspace in terminal emulator</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></script></body></html>
Source: chromecache_128.2.dr String found in binary or memory: AUTO_KV_JSON = 1</code><button class="copy-button">Copy</button></pre></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Last Updated:</span> <time class="dt-updated" datetime="2024-01-05T00:00:00.000Z" itemprop="dateModified">5 Jan 2024</time></li><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2023-06-17T00:00:00.000Z" itemprop="datePublished">17 <a href="/blog/2023/06/" title="See June 2023's posts">Jun</a> <a href="/blog/2023/" title="See 2023's posts">2023</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/splunk/" rel="tag">Splunk</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/json-splunk-uf.md" rel="noopener external nofollow noreferrer">json-splunk-uf.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2023/07/17/ctrl-h-backspace/"><div class="article-nav-title">Mapping Ctrl+H to Backspace in terminal emulator</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2023/04/16/splunk-lookup-malware-filter/"><div class="article-nav-title">Malicious website detection on Splunk using malware-filter</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></script></body></html>
Source: chromecache_194.2.dr String found in binary or memory: $&#123;xcaddy&#125;/bin/xcaddy build <span class="hljs-string">&quot;v<span class="hljs-subst">$&#123;version&#125;</span>&quot;</span> $&#123;pluginArgs&#125;</code><button class="copy-button">Copy</button></pre><p>To install the above package, use the same config shown in the <a href="#Install-custom-package">Install custom package</a> but remove the <code>vendorSha256</code> line. Remember to <code>nixos-rebuild</code> again.</p></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Last Updated:</span> <time class="dt-updated" datetime="2023-02-26T00:00:00.000Z" itemprop="dateModified">26 Feb 2023</time></li><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2021-12-27T00:00:00.000Z" itemprop="datePublished">27 <a href="/blog/2021/12/" title="See December 2021's posts">Dec</a> <a href="/blog/2021/" title="See 2021's posts">2021</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/caddy/" rel="tag">Caddy</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/nixos/" rel="tag">Nixos</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/caddy-plugins-nixos.md" rel="noopener external nofollow noreferrer">caddy-plugins-nixos.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2022/08/09/remove-gitlab-artifacts/"><div class="article-nav-title">Bulk remove old GitLab CI job artifacts</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2021/12/25/nginx-splunk-field-extractor/"><div class="article-nav-title">Parsing NGINX log in Splunk</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" r
Source: chromecache_157.2.dr String found in binary or memory: </a></h4><pre><div class="caption"><span>$HOME/.bashrc</span></div><code class="hljs sh"><span class="hljs-built_in">bind</span> <span class="hljs-string">&#x27;&quot;\uE888&quot;:backward-kill-word&#x27;</span></code><button class="copy-button">Copy</button></pre></div><footer class="article-footer"><ul class="article-meta"><li><span class="label">Published Date:</span> <time class="dt-published" datetime="2023-07-17T00:00:00.000Z" itemprop="datePublished">17 <a href="/blog/2023/07/" title="See July 2023's posts">Jul</a> <a href="/blog/2023/" title="See 2023's posts">2023</a></time></li><li><span class="label">Tag:</span><ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/linux/" rel="tag">Linux</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/powershell/" rel="tag">Powershell</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/zsh/" rel="tag">Zsh</a></li></ul></li><li><span class="label">Source:</span> <a href="https://gitlab.com/curben/blog/-/blob/master/source/_posts/ctrl-h-backspace.md" rel="noopener external nofollow noreferrer">ctrl-h-backspace.md</a></li><hr></ul></footer></div><nav id="article-nav" class="article-nav"><span class="article-nav-link-wrap newer"><strong>Newer</strong> <a href="/blog/2023/08/27/saml-scim/"><div class="article-nav-title">Azure AD SSO integration with ServiceNow</div></a></span><span class="article-nav-link-wrap older"><strong>Older</strong> <a href="/blog/2023/06/17/json-splunk-uf/"><div class="article-nav-title">Configure Splunk Universal Forwarder to ingest JSON files</div></a></span></nav></article></div><footer id="footer" class="post-footer footer"><hr><div id="copyright" class="copyright">&copy; 2018-2024 Ming Di Leom. <a href="https://gitlab.com/curben/blog" rel="noopener external nofollow noreferrer">Powered by </a><a href="https://hexo.io/" rel="noopener external nofollow noreferrer">Hexo</a> with <a href="https://gitlab.com/curben/blog/tree/master/themes/chameleon" rel="noopener external nofollow noreferrer">Chameleon</a> theme.<br>Content is available under <a href="https://creativecommons.org/licenses/by-sa/4.0/" rel="noopener external nofollow noreferrer license" itemprop="license">CC-BY-SA 4.0</a>, unless indicated otherwise.<br><a class="main-nav-link" href="/disclaimer/">Disclaimer</a> <a class="main-nav-link" href="https://stats.uptimerobot.com/1394zup2LQ" rel="noopener external nofollow noreferrer">Status</a> <a class="main-nav-link" href="https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/" rel="noopener external nofollow noreferrer">Onion</a> <a class="main-nav-link" href="https://gitlab.com/curben/blog#mirrors" rel="noopener external nofollow noreferrer">Eepsite</a></div></footer><script src="/libs/clipboard-2.0.6.min.js" defer></script><script src="/js/copy-button.js"></script><script src="/js/chameleon.js"></script></bod
Source: unknown TCP traffic detected without corresponding DNS query: 104.46.162.224
Source: unknown TCP traffic detected without corresponding DNS query: 173.222.162.32
Source: unknown TCP traffic detected without corresponding DNS query: 173.222.162.32
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 23.63.206.91
Source: unknown TCP traffic detected without corresponding DNS query: 173.222.162.32
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: unknown UDP traffic detected without corresponding DNS query: 1.1.1.1
Source: global traffic HTTP traffic detected: GET / HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUpgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-User: ?1Sec-Fetch-Dest: documentsec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /css/chameleon.css HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://curbengh.github.io/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /js/chameleon.js HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://curbengh.github.io/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/search.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /site.webmanifest HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: manifestReferer: https://curbengh.github.io/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/favicon.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/search.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/favicon.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /favicon.ico HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /favicon.ico HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /fs/windows/config.json HTTP/1.1Connection: Keep-AliveAccept: */*Accept-Encoding: identityIf-Unmodified-Since: Tue, 16 May 2017 22:58:00 GMTRange: bytes=0-2147483646User-Agent: Microsoft BITS/7.8Host: fs.microsoft.com
Source: global traffic HTTP traffic detected: GET /blog/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /about/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/share.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/linkedin.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/github.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/gitlab.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/npm.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/codeberg.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /img/about/website-architecture.png?f=auto HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/about/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/share.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/github.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/gitlab.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/linkedin.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/npm.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /svg/codeberg.svg HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /atom.xml HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /curben/blog HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/application-3fe694fc0cc07b0a8452af907b303dccdea37ab1d9cf92e3532f65cbac0b9058.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/page_bundles/project-9264738885a02be386176dc85c96b550fae5ce8d174fba9508a843966d6c4213.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/page_bundles/tree-4d25647d03722854e14fe89644330ef783d9e6e79f75ae79c5755c11825ddfc8.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/page_bundles/commit_description-b1dab9b10010cbb9c3738689b18ce46a4f58b98a8d483226fdff8a776a45caf0.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/page_bundles/projects-97864a07bdb44dc7694b22d96267284ba18244aa259b388fb339eebb2e4d7d07.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /907d6ee1a1a879097bc7de0f23a205830cc2f23d/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f61616637333635392d646238342d346334312d613730302d6465333932363032323637342f6465706c6f792d737461747573 HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: cross-siteSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/application_utilities-4ce46b0d1744a75b5e0b7104e935413dc41b09b34002dc2832a687dd8e7f0569.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/tailwind-08a966b417598961bfa7f3d415798663be5af2fc110805a1aca32e3def69e6ef.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/fonts-fae5d3f79948bd85f18b6513a025f863b19636e85b09a1492907eb4b1bb0557b.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/highlight/themes/white-e08c45a78f4446ec6c4226adb581d4482911bd7c85b47b7e7c003112b0c26274.css HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: text/css,*/*;q=0.1Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: styleReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /api/graphql HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /curben/blog/-/refs/master/logs_tree/?format=json&offset=0&ref_type=heads HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"X-Requested-With: XMLHttpRequestsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /curben/blog/-/blob/master/README.md?format=json&viewer=rich HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"X-Requested-With: XMLHttpRequestsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /7dc22bdd9872d7a3b62e95f959117004d58058df/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6865786f2d6865786f6a732f6865786f2d627269676874677265656e2e737667 HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: cross-siteSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/gitlab-sans/GitLabSans-1e0a5107ea3bbd4be93e8ad2c503467e43166cd37e4293570b490e0812ede98b.woff2 HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"Origin: https://gitlab.comsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: fontReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/gitlab-sans/GitLabSans-Italic-38eaf1a569a54ab28c58b92a4a8de3afb96b6ebc250cf372003a7b38151848cc.woff2 HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"Origin: https://gitlab.comsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: fontReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/gitlab-mono/GitLabMono-08d2c5e8ff8fd3d2d6ec55bc7713380f8981c35f9d2df14e12b835464d6e8f23.woff2 HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"Origin: https://gitlab.comsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: fontReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/gitlab-mono/GitLabMono-Italic-38e58d8df29485a20c550da1d0111e2c2169f6dcbcf894f2cd3afbdd97bcc588.woff2 HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"Origin: https://gitlab.comsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: fontReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /907d6ee1a1a879097bc7de0f23a205830cc2f23d/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f61616637333635392d646238342d346334312d613730302d6465333932363032323637342f6465706c6f792d737461747573 HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /curben/blog/badges/master/pipeline.svg HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /curben/blog/-/refs/master/logs_tree/?format=json&offset=0&ref_type=heads HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/runtime.f91f7286.bundle.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/main.b4fc2473.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/tracker.5a1653d5.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /curben/blog/-/blob/master/README.md?format=json&viewer=rich HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/analytics.01b6170a.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /c62b6b8b94f3a5d67f6ff98d9f1ddfd7c5aba49f/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f75726c3d68747470732533412532462532466d646c656f6d2e636f6d HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: cross-siteSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/webpack/sentry.24e97836.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /7dc22bdd9872d7a3b62e95f959117004d58058df/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6865786f2d6865786f6a732f6865786f2d627269676874677265656e2e737667 HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.groups.new-pages.import.gitlab_projects.new-pages.import.manifest.new-pages.projects.n-44c6c18e.edf2159b.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.search.show-super_sidebar.5e3352a8.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/super_sidebar.704cb49d.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.groups-pages.groups.achievements-pages.groups.activity-pages.groups.analytics.ci_cd_an-0bdbc1f2.188d53fe.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.admin.runners.show-pages.clusters.agents.dashboard-pages.explore.catalog-pages.groups.-7d37a164.65d4090f.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.groups.security.policies.edit-pages.groups.security.policies.new-pages.projects.blob.s-c8e0a3ae.7c50d548.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.groups.show-pages.projects.blob.show-pages.projects.show-pages.projects.snippets.show--90d3b3a3.73c50378.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.projects.blob.show-pages.projects.show-pages.projects.snippets.show-pages.projects.tre-c684fcf6.d09a87ee.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.projects.blame.show-pages.projects.blame.streaming-pages.projects.blob.show-pages.proj-9f3d272f.5362c588.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.projects.blob.show-pages.projects.show-pages.projects.tree.show.67c0a05c.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.projects.home_panel-pages.projects.show.80326704.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/commons-pages.projects.show-pages.projects.tree.show.f9e30faa.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/pages.projects.show.a16e4485.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/icons-0b41337f52be73f7bbf9d59b841eb98a6e790dfa1a844644f120a80ce3cc18ba.svg HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: same-originSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /c62b6b8b94f3a5d67f6ff98d9f1ddfd7c5aba49f/68747470733a2f2f696d672e736869656c64732e696f2f776562736974653f75726c3d68747470732533412532462532466d646c656f6d2e636f6d HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/webpack/38.21890e17.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /api/4/envelope/?sentry_key=f5573e26de8f4293b285e556c35dfd6e&sentry_version=7&sentry_client=sentry.javascript.browser%2F7.102.0 HTTP/1.1Host: new-sentry.gitlab.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/webpack/vendors-global_search_modal.a4701856.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/global_search_modal.adefb40e.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/shortcutsBundle.3cbddd19.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/hello.a3f2e8b3.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0
Source: global traffic HTTP traffic detected: GET /assets/icons-0b41337f52be73f7bbf9d59b841eb98a6e790dfa1a844644f120a80ce3cc18ba.svg HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/vendors-treeList.c157a866.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/109.0b418aa7.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560157..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a....0; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb....0
Source: global traffic HTTP traffic detected: GET /assets/webpack/134.1bba91bc.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/webpack/treeList.d36afb1d.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/webpack/initInviteMembersTrigger.9a40ea1b.chunk.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /com.snowplowanalytics.snowplow/tp2 HTTP/1.1Host: snowplow.trx.gitlab.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /api/v4/projects/8306723/repository/branches?search=&per_page=20&sort=updated_desc HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"X-CSRF-Token: u3s0yOejnP1b-2BBrhF6xH0p4hV0062Fsj7HFUTFKt0K4cbH37TlnAZCovQNDftELa5ynR66lQu60ydxo1GyHwsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: application/json, text/plain, */*X-Requested-With: XMLHttpRequestbaggage: sentry-environment=gprd,sentry-release=178defa31a4,sentry-public_key=f5573e26de8f4293b285e556c35dfd6e,sentry-trace_id=5b17300332a54dbdbd36ad0848491250sentry-trace: 5b17300332a54dbdbd36ad0848491250-b9e3f78ff05fd9e8sec-ch-ua-platform: "Windows"Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /api/v4/projects/8306723/repository/tags?search=&per_page=20 HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"X-CSRF-Token: u3s0yOejnP1b-2BBrhF6xH0p4hV0062Fsj7HFUTFKt0K4cbH37TlnAZCovQNDftELa5ynR66lQu60ydxo1GyHwsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: application/json, text/plain, */*X-Requested-With: XMLHttpRequestbaggage: sentry-environment=gprd,sentry-release=178defa31a4,sentry-public_key=f5573e26de8f4293b285e556c35dfd6e,sentry-trace_id=5b17300332a54dbdbd36ad0848491250sentry-trace: 5b17300332a54dbdbd36ad0848491250-b9e3f78ff05fd9e8sec-ch-ua-platform: "Windows"Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/webpack/highlight_worker.cc58fda2.worker.js HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: same-originSec-Fetch-Dest: workerReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /com.snowplowanalytics.snowplow/tp2 HTTP/1.1Host: collector.prd-278964.gl-product-analytics.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: sp=7bfc0a18-468c-4356-8124-d5a9bd3ae559
Source: global traffic HTTP traffic detected: GET /assets/favicon-72a2cad5025aa931d6ea56c3201d1f18e68a8cd39788c7c80d5b2b82aa5143ef.png HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /api/graphql HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1If-None-Match: W/"74e09428865e59b63e900c498e47efa4"
Source: global traffic HTTP traffic detected: GET /-/manifest.json HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: manifestReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /curben/blog/-/blob/master/README.md?ref_type=heads&format=json&viewer=rich HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"X-CSRF-Token: u3s0yOejnP1b-2BBrhF6xH0p4hV0062Fsj7HFUTFKt0K4cbH37TlnAZCovQNDftELa5ynR66lQu60ydxo1GyHwsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: application/json, text/plain, */*X-Requested-With: XMLHttpRequestbaggage: sentry-environment=gprd,sentry-release=178defa31a4,sentry-public_key=f5573e26de8f4293b285e556c35dfd6e,sentry-trace_id=5b17300332a54dbdbd36ad0848491250sentry-trace: 5b17300332a54dbdbd36ad0848491250-b9e3f78ff05fd9e8sec-ch-ua-platform: "Windows"Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /curben/blog/-/refs/master/logs_tree/?format=json&offset=0&ref_type=HEADS HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"X-CSRF-Token: u3s0yOejnP1b-2BBrhF6xH0p4hV0062Fsj7HFUTFKt0K4cbH37TlnAZCovQNDftELa5ynR66lQu60ydxo1GyHwsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: application/json, text/plain, */*X-Requested-With: XMLHttpRequestbaggage: sentry-environment=gprd,sentry-release=178defa31a4,sentry-public_key=f5573e26de8f4293b285e556c35dfd6e,sentry-trace_id=5b17300332a54dbdbd36ad0848491250sentry-trace: 5b17300332a54dbdbd36ad0848491250-b9e3f78ff05fd9e8sec-ch-ua-platform: "Windows"Sec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /api/v4/projects/8306723/repository/tags?search=&per_page=20 HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /api/v4/projects/8306723/repository/branches?search=&per_page=20&sort=updated_desc HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/file_icons/file_icons-7cd3d6c3b29a6d972895f36472978a4b5adb4b37f9b5d0716a380e82389f7e0e.svg HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: same-originSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /uploads/-/system/user/avatar/2809763/avatar.png?width=64 HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/favicon-72a2cad5025aa931d6ea56c3201d1f18e68a8cd39788c7c80d5b2b82aa5143ef.png HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /api/graphql HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1If-None-Match: W/"74e09428865e59b63e900c498e47efa4"
Source: global traffic HTTP traffic detected: GET /-/pwa-icons/logo-192.png HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/icon_anchor-297aa9b0225eff3d6d0da74ce042a0ed5575b92aa66b7109a5e060a795b42e36.svg HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/assets/application-3fe694fc0cc07b0a8452af907b303dccdea37ab1d9cf92e3532f65cbac0b9058.cssAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /curben/blog/-/refs/master/logs_tree/?format=json&offset=0&ref_type=HEADS HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /curben/blog/badges/master/pipeline.svg HTTP/1.1Host: gitlab.comConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /curben/blog/-/blob/master/README.md?ref_type=heads&format=json&viewer=rich HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /77d58941190b3e5620dc3aa286b3564e06bed0ff/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f33663462393730612d633235382d343534632d393764362d3361383136346636333236322f6465706c6f792d737461747573 HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: cross-siteSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://gitlab.com/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /uploads/-/system/user/avatar/2809763/avatar.png?width=64 HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /assets/file_icons/file_icons-7cd3d6c3b29a6d972895f36472978a4b5adb4b37f9b5d0716a380e82389f7e0e.svg HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /api/graphql HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1If-None-Match: W/"74e09428865e59b63e900c498e47efa4"
Source: global traffic HTTP traffic detected: GET /-/pwa-icons/logo-192.png HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /blog/2024/02/24/splunk-app-acl/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /js/copy-button.js HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://curbengh.github.io/blog/2024/02/24/splunk-app-acl/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /assets/icon_anchor-297aa9b0225eff3d6d0da74ce042a0ed5575b92aa66b7109a5e060a795b42e36.svg HTTP/1.1Host: gitlab.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000; _sp_ses.e54d=*; _sp_ses.6b85=*; _sp_id.6b85=ad70c6c2-8be2-43e0-a734-62f048300e62.1713560162.1.1713560162..b45c0ad8-c1ce-4414-b740-9f52b3cd1ccb..1337e2cf-2554-42e8-a1a2-8cb890f7692a.1713560161867.1; _sp_id.e54d=205ff6a8-f560-4071-ab53-d762bd1701b3.1713560157.1.1713560162..9fe65c46-31ad-4c49-8b20-5f39d8e7d27a..dac7e60f-b65a-486d-92d2-436706e59911.1713560161874.1
Source: global traffic HTTP traffic detected: GET /libs/clipboard-2.0.6.min.js HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: scriptReferer: https://curbengh.github.io/blog/2024/02/24/splunk-app-acl/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /77d58941190b3e5620dc3aa286b3564e06bed0ff/68747470733a2f2f6170692e6e65746c6966792e636f6d2f6170692f76312f6261646765732f33663462393730612d633235382d343534632d393764362d3361383136346636333236322f6465706c6f792d737461747573 HTTP/1.1Host: user-content.gitlab-static.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2023/10/01/splunk-ldapsearch-useraccountcontrol/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2023/08/27/saml-scim/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /com.snowplowanalytics.snowplow/tp2 HTTP/1.1Host: collector.prd-278964.gl-product-analytics.comConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: sp=7bfc0a18-468c-4356-8124-d5a9bd3ae559
Source: global traffic HTTP traffic detected: GET /blog/2023/07/17/ctrl-h-backspace/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /img/20230717/readline-shortcuts.png?f=auto HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: image/avif,image/webp,image/apng,image/svg+xml,image/*,*/*;q=0.8Sec-Fetch-Site: same-originSec-Fetch-Mode: no-corsSec-Fetch-Dest: imageReferer: https://curbengh.github.io/blog/2023/07/17/ctrl-h-backspace/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2023/06/17/json-splunk-uf/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2023/04/16/splunk-lookup-malware-filter/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2023/02/13/ssh-certificate-cloudflare-tunnel/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2022/11/27/grub-luks2-argon2/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2022/08/09/remove-gitlab-artifacts/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2021/12/27/caddy-plugins-nixos/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /tags/alpine/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /tags/android/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /tags/arch/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /com.snowplowanalytics.snowplow/tp2 HTTP/1.1Host: snowplow.trx.gitlab.netConnection: keep-aliveUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: */*Sec-Fetch-Site: noneSec-Fetch-Mode: corsSec-Fetch-Dest: emptyAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /tags/aws/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /blog/2021/06/27/aws-waf/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: same-originSec-Fetch-Mode: navigateSec-Fetch-User: ?1Sec-Fetch-Dest: documentReferer: https://curbengh.github.io/tags/aws/Accept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET /tags/aws-config/ HTTP/1.1Host: curbengh.github.ioConnection: keep-alivesec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"sec-ch-ua-mobile: ?0sec-ch-ua-platform: "Windows"Upgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Sec-Fetch-Site: noneSec-Fetch-Mode: navigateSec-Fetch-Dest: documentAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9
Source: global traffic HTTP traffic detected: GET / HTTP/1.1Host: curbengh.github.ioConnection: keep-aliveUpgrade-Insecure-Requests: 1User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7Accept-Encoding: gzip, deflateAccept-Language: en-US,en;q=0.9
Source: chromecache_182.2.dr String found in binary or memory: </a></h2><p><a href="https://www.linkedin.com/in/mdleom/" rel="noopener external nofollow noreferrer"><img class="svg" src="/svg/linkedin.svg" alt="LinkedIn handle" title="LinkedIn handle"></a></p><h2 id="Projects">Projects <a href="#Projects" class="headerlink" title="Projects"> equals www.linkedin.com (Linkedin)
Source: unknown DNS traffic detected: queries for: curbengh.github.io
Source: unknown HTTP traffic detected: POST /api/graphql HTTP/1.1Host: gitlab.comConnection: keep-aliveContent-Length: 2068x-gitlab-feature-category: groups_and_projectssec-ch-ua: "Google Chrome";v="117", "Not;A=Brand";v="8", "Chromium";v="117"Content-Type: application/jsonX-CSRF-Token: -h7WNHYbdMNXx56Uab0we65rte8ME86-7Syk1qEO66VLhCQ7TgwNogp-XCHKobH7_uwlZ2Z69jDlwUSyRppzZwsec-ch-ua-mobile: ?0User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36sec-ch-ua-platform: "Windows"Accept: */*Origin: https://gitlab.comSec-Fetch-Site: same-originSec-Fetch-Mode: corsSec-Fetch-Dest: emptyReferer: https://gitlab.com/curben/blogAccept-Encoding: gzip, deflate, brAccept-Language: en-US,en;q=0.9Cookie: event_filter=all; _gitlab_session=cc8c16f85a8eee5e5cd20b914a09b76b; _cfuvid=ZZKry_3DWQPr3AdZIPELXWmFClDWRTrooSU02F0PFKw-1713560150365-0.0.1.1-604800000
Source: global traffic HTTP traffic detected: HTTP/1.1 404 Not FoundConnection: closeContent-Length: 5561Server: GitHub.comContent-Type: text/html; charset=utf-8permissions-policy: interest-cohort=()Access-Control-Allow-Origin: *Strict-Transport-Security: max-age=31556952ETag: "6608e6e7-15b9"x-proxy-cache: MISSX-GitHub-Request-Id: 1E88:1353DF:B6E0E9:D6CB20:6622DA4EAccept-Ranges: bytesAge: 0Date: Fri, 19 Apr 2024 20:55:42 GMTVia: 1.1 varnishX-Served-By: cache-pdk-kfty2130071-PDKX-Cache: MISSX-Cache-Hits: 0X-Timer: S1713560143.912966,VS0,VE27Vary: Accept-EncodingX-Fastly-Request-ID: 7be5ac5958d6a82a12b742c6569adf6d76f9024d
Source: global traffic HTTP traffic detected: HTTP/1.1 404 Not FoundDate: Fri, 19 Apr 2024 20:55:52 GMTContent-Type: text/html; charset=utf-8Content-Length: 3190Connection: closecache-control: no-cache, no-store, max-age=0, must-revalidate
Source: global traffic HTTP traffic detected: HTTP/1.1 404 Not FoundDate: Fri, 19 Apr 2024 20:56:05 GMTContent-Type: text/html; charset=utf-8Content-Length: 3190Connection: closecache-control: no-cache, no-store, max-age=0, must-revalidate
Source: global traffic HTTP traffic detected: HTTP/1.1 404 Not FoundConnection: closeContent-Length: 5561Server: GitHub.comContent-Type: text/html; charset=utf-8permissions-policy: interest-cohort=()x-origin-cache: HITAccess-Control-Allow-Origin: *Strict-Transport-Security: max-age=31556952ETag: "6608e6e7-15b9"x-proxy-cache: MISSX-GitHub-Request-Id: 258A:16C4F4:B0C89A:CF44B1:6622DA6DAccept-Ranges: bytesAge: 0Date: Fri, 19 Apr 2024 20:56:13 GMTVia: 1.1 varnishX-Served-By: cache-pdk-kfty2130061-PDKX-Cache: MISSX-Cache-Hits: 0X-Timer: S1713560174.941962,VS0,VE25Vary: Accept-EncodingX-Fastly-Request-ID: 9b04aa6f816ab9d058fb32542d3af27cbcaa8b6e
Source: chromecache_162.2.dr String found in binary or memory: http://192.168.1.2/page.html
Source: chromecache_162.2.dr String found in binary or memory: http://192.168.1.2/page.html&quot;
Source: chromecache_162.2.dr String found in binary or memory: http://192.168.1.2:8080/api/path
Source: chromecache_162.2.dr String found in binary or memory: http://192.168.1.2:8080/api/path&quot;
Source: chromecache_162.2.dr String found in binary or memory: http://192.168.1.2:8080/page.html
Source: chromecache_162.2.dr String found in binary or memory: http://192.168.1.2:8080/page.html&quot;
Source: chromecache_195.2.dr String found in binary or memory: http://bit.ly/sp-js)
Source: chromecache_138.2.dr, chromecache_195.2.dr String found in binary or memory: http://feross.org
Source: chromecache_162.2.dr String found in binary or memory: http://localhost:8080/.well-known/pki-validation/xxx
Source: chromecache_185.2.dr String found in binary or memory: http://ogp.me/ns#
Source: chromecache_185.2.dr String found in binary or memory: http://schema.org/SoftwareSourceCode
Source: chromecache_216.2.dr String found in binary or memory: http://www.apache.org/licenses/LICENSE-2.0
Source: chromecache_162.2.dr String found in binary or memory: http://www.dnslog.cn/
Source: chromecache_162.2.dr String found in binary or memory: http://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion:8080
Source: chromecache_185.2.dr String found in binary or memory: https://about.gitlab.com/pricing
Source: chromecache_185.2.dr String found in binary or memory: https://about.gitlab.com/sales
Source: chromecache_162.2.dr String found in binary or memory: https://about.gitlab.com/solutions/open-source/join/
Source: chromecache_185.2.dr String found in binary or memory: https://about.gitlab.com/why-gitlab
Source: chromecache_185.2.dr String found in binary or memory: https://app.netlify.com/sites/curben/deploys
Source: chromecache_162.2.dr String found in binary or memory: https://arstechnica.com/information-technology/2021/12/minecraft-and-other-apps-face-serious-threat-
Source: chromecache_174.2.dr String found in binary or memory: https://aur.archlinux.org/packages/grub-improved-luks2-git
Source: chromecache_162.2.dr String found in binary or memory: https://aws.amazon.com/blogs/aws/announcing-aws-cloud-control-api/
Source: chromecache_162.2.dr String found in binary or memory: https://aws.amazon.com/systems-manager/
Source: chromecache_162.2.dr String found in binary or memory: https://aws.amazon.com/waf/
Source: chromecache_162.2.dr String found in binary or memory: https://blog.cloudflare.com/argo-tunnels-that-live-forever/
Source: chromecache_162.2.dr String found in binary or memory: https://blog.cloudflare.com/inside-the-log4j2-vulnerability-cve-2021-44228/
Source: chromecache_162.2.dr String found in binary or memory: https://blog.cloudflare.com/public-keys-are-not-enough-for-ssh-security/
Source: chromecache_162.2.dr String found in binary or memory: https://blog.torproject.org/tls-certificate-for-onion-site
Source: chromecache_162.2.dr String found in binary or memory: https://blogs.apache.org/foundation/entry/apache-log4j-cves
Source: chromecache_182.2.dr String found in binary or memory: https://caddyserver.com/
Source: chromecache_162.2.dr String found in binary or memory: https://caddyserver.com/docs/caddyfile/directives/respond
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://caddyserver.com;
Source: chromecache_162.2.dr String found in binary or memory: https://chris.partridge.tech/2022/untrusted-harica-onion-certificates/
Source: chromecache_162.2.dr String found in binary or memory: https://clementc.github.io/blog/2018/01/25/moving_cli/
Source: chromecache_165.2.dr, chromecache_203.2.dr String found in binary or memory: https://clipboardjs.com/
Source: chromecache_162.2.dr String found in binary or memory: https://cm.harica.gr/
Source: chromecache_182.2.dr String found in binary or memory: https://codeberg.org/curben/
Source: chromecache_185.2.dr String found in binary or memory: https://collector.prd-278964.gl-product-analytics.com
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://community.splunk.com/t5/Getting-Data-In/SEDCMD-not-actually-replacing-data-during-indexing/m
Source: chromecache_125.2.dr, chromecache_196.2.dr, chromecache_127.2.dr, chromecache_182.2.dr, chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://creativecommons.org/licenses/by-sa/4.0/
Source: chromecache_182.2.dr String found in binary or memory: https://curben.gitlab.io/
Source: chromecache_185.2.dr String found in binary or memory: https://curben.gitlab.io/blog
Source: chromecache_182.2.dr String found in binary or memory: https://curben.netlify.app/
Source: chromecache_182.2.dr String found in binary or memory: https://curben.pages.dev/
Source: chromecache_182.2.dr String found in binary or memory: https://curbengh.github.io/
Source: chromecache_185.2.dr String found in binary or memory: https://customers.gitlab.com
Source: chromecache_185.2.dr String found in binary or memory: https://customers.gitlab.com/billing_accounts
Source: chromecache_185.2.dr String found in binary or memory: https://customers.gitlab.com/customers/sign_in?legacy=true
Source: chromecache_185.2.dr String found in binary or memory: https://customers.gitlab.com/payment_forms/cc_validation
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://dash.cloudflare.com/
Source: chromecache_162.2.dr String found in binary or memory: https://dash.cloudflare.com/argotunnel
Source: chromecache_126.2.dr String found in binary or memory: https://dbushell.com/
Source: chromecache_162.2.dr String found in binary or memory: https://dev.splunk.com/enterprise/docs/developapps/addsupport/logging/loggingbestpractices/#Use-deve
Source: chromecache_182.2.dr String found in binary or memory: https://developer.mozilla.org/en-US/docs/Web/HTML/Link_types
Source: chromecache_162.2.dr, chromecache_221.2.dr String found in binary or memory: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trim
Source: chromecache_162.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/applications/configure-apps/self-hosted-apps/
Source: chromecache_182.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/deploy-c
Source: chromecache_162.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installa
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/use_cases/ssh/
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/identity/idp-integration/
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/identity/one-time-pin/
Source: chromecache_127.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/identity/users/short-lived-certificates/
Source: chromecache_162.2.dr String found in binary or memory: https://developers.cloudflare.com/cloudflare-one/tutorials/ssh-cert-bastion/
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://discourse.nixos.org/t/build-caddy-with-modules-in-devenv-shell/25125/4
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/cli/latest/reference/wafv2/check-capacity.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/cloudcontrolapi/latest/APIReference/API_ListResources.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/cloudcontrolapi/latest/userguide/supported-resources.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/config/latest/developerguide/aggregate-data.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/config/latest/developerguide/conformancepack-sample-templates.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/config/latest/developerguide/evaluate-config_develop-rules.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/config/latest/developerguide/querying-AWS-resources.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/config/latest/developerguide/querying-AWS-resources.html#query-limitatio
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://docs.aws.amazon.com/systems-manager/latest/userguide/session-manager.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/waf/latest/APIReference/API_CheckCapacity.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/waf/latest/developerguide/limits.html
Source: chromecache_125.2.dr, chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-action.html
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statement-fields.html#waf-rule-statem
Source: chromecache_162.2.dr String found in binary or memory: https://docs.aws.amazon.com/waf/latest/developerguide/waf-rule-statements-list.html
Source: chromecache_162.2.dr, chromecache_216.2.dr String found in binary or memory: https://docs.gitlab.com/ee/user/gitlab_com/index.html#gitlab-cicd
Source: chromecache_162.2.dr String found in binary or memory: https://docs.gitlab.com/ee/user/usage_quotas.html#namespace-storage-limit-enforcement-schedule
Source: chromecache_162.2.dr String found in binary or memory: https://docs.python.org/3/tutorial/datastructures.html#sets
Source: chromecache_162.2.dr, chromecache_221.2.dr String found in binary or memory: https://docs.servicenow.com/en-US/bundle/vancouver-platform-security/page/integrate/single-sign-on/t
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/AddOns/latest/NGINX
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/SCS/current/Search/Wildcards
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/SCS/current/Search/Wildcards#When_to_avoid_wildcard_characters
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/8.2.3/Data/Listofpretrainedsourcetypes
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/8.2.3/Knowledge/AboutSplunkregularexpressions
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/8.2.3/Knowledge/Aboutfields
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/8.2.3/Knowledge/ExtractfieldsinteractivelywithIFX
Source: chromecache_162.2.dr, chromecache_196.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Admin/Defaultmetaconf
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Admin/Inputsconf#MONITOR:
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Admin/Transformsconf
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Admin/Wheretofindtheconfigurationfiles
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Data/Extractfieldsfromfileswithstructureddata#Fi
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Knowledge/Aboutlookupsandfieldactions
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/Knowledge/Usefieldlookupstoaddinformationtoyoure
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Commontimeformatvariables
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Inputlookup
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/Table
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/Splunk/latest/SearchReference/stats
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/SplunkCloud/latest/Data/Managesourcetypes
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Documentation/SplunkCloud/latest/SearchTutorial/Useasubsearch
Source: chromecache_162.2.dr String found in binary or memory: https://docs.splunk.com/Splexicon:Event
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://docs.splunk.com/Splexicon:Generatingcommand
Source: chromecache_182.2.dr String found in binary or memory: https://doi.org/10.1109/Trustcom.2015.483
Source: chromecache_182.2.dr String found in binary or memory: https://doi.org/10.1111/1556-4029.13203
Source: chromecache_130.2.dr String found in binary or memory: https://duckduckgo.com/
Source: chromecache_161.2.dr String found in binary or memory: https://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion/
Source: chromecache_185.2.dr String found in binary or memory: https://embed.diagrams.net
Source: chromecache_182.2.dr String found in binary or memory: https://feodotracker.abuse.ch/
Source: chromecache_182.2.dr String found in binary or memory: https://feodotracker.abuse.ch/blocklist/
Source: chromecache_138.2.dr, chromecache_195.2.dr String found in binary or memory: https://feross.org/opensource
Source: chromecache_216.2.dr String found in binary or memory: https://forum.gitlab.com/t/remove-all-artifact-no-expire-options/9274/12
Source: chromecache_216.2.dr String found in binary or memory: https://forum.gitlab.com/u/adam.boseley/summary)
Source: chromecache_216.2.dr String found in binary or memory: https://forum.gitlab.com/u/bennyp/summary)
Source: chromecache_203.2.dr String found in binary or memory: https://getbootstrap.com/)
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs/blob/master/nixos/modules/services/networking/i2pd.nix
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs/blob/master/pkgs/applications/networking/cloudflared/default.nix
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs/blob/master/pkgs/tools/networking/i2pd/default.nix
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs/blob/nixos-21.11/pkgs/servers/caddy/default.nix
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs/issues/113520
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/NixOS/nixpkgs/issues/89268#issuecomment-636529668
Source: chromecache_203.2.dr String found in binary or memory: https://github.com/SlexAxton/Jed
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/caddyserver/caddy/blob/master/cmd/main.go
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/caddyserver/caddy/releases/latest
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/caddyserver/forwardproxy
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/caddyserver/ntlm-transport
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/caddyserver/xcaddy
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/christophetd/log4shell-vulnerable-app
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/cloudflare/cloudflared
Source: chromecache_162.2.dr String found in binary or memory: https://github.com/cloudflare/cloudflared/issues/401
Source: chromecache_182.2.dr String found in binary or memory: https://github.com/curbengh
Source: chromecache_182.2.dr String found in binary or memory: https://github.com/curbengh/hexo-nofollow
Source: chromecache_182.2.dr String found in binary or memory: https://github.com/curbengh/hexo-yam
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://github.com/diamondburned
Source: chromecache_185.2.dr, chromecache_182.2.dr String found in binary or memory: https://github.com/hexojs/hexo
Source: chromecache_129.2.dr, chromecache_202.2.dr String found in binary or memory: https://github.com/linusborg/portal-vue
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://github.com/manjaro-architect/download/releases
Source: chromecache_182.2.dr String found in binary or memory: https://github.com/mitchellkrogza/Phishing.Database
Source: chromecache_203.2.dr String found in binary or memory: https://github.com/twbs/bootstrap/blob/main/LICENSE)
Source: chromecache_203.2.dr String found in binary or memory: https://github.com/twbs/bootstrap/graphs/contributors)
Source: chromecache_185.2.dr String found in binary or memory: https://github.com/whatwg/fetch/pull/585
Source: chromecache_182.2.dr String found in binary or memory: https://github.com/zhouhanc/malware-discoverer
Source: chromecache_162.2.dr String found in binary or memory: https://github.community/t/github-on-the-ipv6-internet/2794/14
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/api/graphql
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/assets/no_avatar-849f9c04a3a0d0cea2424ae97b27447dc64a7dbfae83c036c45b403392f0e8ba
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/assets/twitter_card-570ddb06edf56a2312253c5872489847a0f385112ddbcd71ccfa1570febab
Source: chromecache_185.2.dr, chromecache_182.2.dr String found in binary or memory: https://gitlab.com/curben
Source: chromecache_182.2.dr String found in binary or memory: https://gitlab.com/curben/aws-scripts
Source: chromecache_162.2.dr String found in binary or memory: https://gitlab.com/curben/aws-scripts/-/blob/main/aws-config-rules.py
Source: chromecache_162.2.dr String found in binary or memory: https://gitlab.com/curben/aws-scripts/-/blob/main/aws-config.py
Source: chromecache_162.2.dr String found in binary or memory: https://gitlab.com/curben/aws-scripts/-/blob/main/waf-acl.py
Source: chromecache_162.2.dr String found in binary or memory: https://gitlab.com/curben/aws-scripts/-/tree/main/log4shell-stack
Source: chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://gitlab.com/curben/blog
Source: chromecache_125.2.dr, chromecache_196.2.dr, chromecache_127.2.dr, chromecache_182.2.dr, chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://gitlab.com/curben/blog#mirrors
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/curben/blog.git
Source: chromecache_125.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/aws-waf.md
Source: chromecache_194.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/caddy-plugins-nixos.md
Source: chromecache_157.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/ctrl-h-backspace.md
Source: chromecache_174.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/grub-luks2-argon2.md
Source: chromecache_128.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/json-splunk-uf.md
Source: chromecache_216.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/remove-gitlab-artifacts.md
Source: chromecache_221.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/saml-scim.md
Source: chromecache_196.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/splunk-app-acl.md
Source: chromecache_130.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/splunk-ldapsearch-useraccountcontrol.md
Source: chromecache_123.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/splunk-lookup-malware-filter.md
Source: chromecache_127.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/_posts/ssh-certificate-cloudflare-tunnel.md
Source: chromecache_182.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/blob/master/source/about/index.md
Source: chromecache_156.2.dr, chromecache_201.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/commit/380b40b548e7d0e681ec7973916f55e2ec4cc942
Source: chromecache_156.2.dr, chromecache_201.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/commit/97363c38b1fac46ce993737555a9a2ffa08634ba
Source: chromecache_156.2.dr, chromecache_201.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/commit/a81e34a62e03ee2563ba8241f23f47493c0af1e4
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/pipelines
Source: chromecache_156.2.dr, chromecache_201.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/tree/bun
Source: chromecache_156.2.dr, chromecache_201.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/tree/master
Source: chromecache_156.2.dr, chromecache_201.2.dr, chromecache_182.2.dr String found in binary or memory: https://gitlab.com/curben/blog/-/tree/site
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/curben/blog/badges/master/pipeline.svg
Source: chromecache_125.2.dr, chromecache_196.2.dr, chromecache_127.2.dr, chromecache_182.2.dr, chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://gitlab.com/curben/blog/tree/master/themes/chameleon
Source: chromecache_182.2.dr String found in binary or memory: https://gitlab.com/curben/splunk-scripts
Source: chromecache_162.2.dr, chromecache_130.2.dr String found in binary or memory: https://gitlab.com/curben/splunk-scripts/-/tree/main/SA-ldapsearch?ref_type=heads
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://gitlab.com/curben/splunk-scripts/-/tree/main/TA-librenms-data-poller?ref_type=heads
Source: chromecache_113.2.dr String found in binary or memory: https://gitlab.com/gitlab-org/gitlab/-/issues/new
Source: chromecache_162.2.dr, chromecache_182.2.dr String found in binary or memory: https://gitlab.com/malware-filter
Source: chromecache_182.2.dr String found in binary or memory: https://gitlab.com/malware-filter/botnet-filter
Source: chromecache_162.2.dr, chromecache_216.2.dr String found in binary or memory: https://gitlab.com/malware-filter/malware-filter
Source: chromecache_162.2.dr, chromecache_182.2.dr, chromecache_216.2.dr String found in binary or memory: https://gitlab.com/malware-filter/phishing-filter
Source: chromecache_162.2.dr, chromecache_182.2.dr, chromecache_216.2.dr String found in binary or memory: https://gitlab.com/malware-filter/pup-filter
Source: chromecache_162.2.dr, chromecache_182.2.dr String found in binary or memory: https://gitlab.com/malware-filter/splunk-malware-filter
Source: chromecache_162.2.dr, chromecache_123.2.dr String found in binary or memory: https://gitlab.com/malware-filter/splunk-malware-filter#geturlhausfilter
Source: chromecache_162.2.dr, chromecache_182.2.dr, chromecache_216.2.dr String found in binary or memory: https://gitlab.com/malware-filter/tracking-filter
Source: chromecache_162.2.dr, chromecache_182.2.dr, chromecache_216.2.dr String found in binary or memory: https://gitlab.com/malware-filter/urlhaus-filter
Source: chromecache_162.2.dr, chromecache_216.2.dr String found in binary or memory: https://gitlab.com/malware-filter/vn-badsite-filter
Source: chromecache_185.2.dr String found in binary or memory: https://gitlab.com/namespace3581595/project8306723
Source: chromecache_185.2.dr String found in binary or memory: https://gitpod.io/#https://gitlab.com/curben/blog/-/tree/master/&quot;
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://goteleport.com/blog/how-to-ssh-properly/
Source: chromecache_182.2.dr, chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://hexo.io/
Source: chromecache_182.2.dr String found in binary or memory: https://hicss.hawaii.edu/
Source: chromecache_203.2.dr String found in binary or memory: https://jquery.com/
Source: chromecache_203.2.dr String found in binary or memory: https://jquery.org/license
Source: chromecache_203.2.dr String found in binary or memory: https://js.foundation/
Source: chromecache_162.2.dr String found in binary or memory: https://kushaldas.in/posts/get-a-tls-certificate-for-your-onion-service.html
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://leo3418.github.io/collections/gentoo-config-luks2-grub-systemd.html
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://leo3418.github.io/collections/gentoo-config-luks2-grub-systemd/auto-unlock.html
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://leo3418.github.io/collections/gentoo-config-luks2-grub-systemd/tune-parameters.html#change-t
Source: chromecache_162.2.dr, chromecache_143.2.dr String found in binary or memory: https://mdleom.com/
Source: chromecache_182.2.dr String found in binary or memory: https://mdleom.com/about/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/atom.xml
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/06/13/upgrade-note-nixos-21-05/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/06/15/cloudflare-argo-nixos/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/06/27/aws-waf/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/07/02/custom-package-nixos-module/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/07/04/ecdsa-tls-tor-caddy/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/07/23/aws-waf-wcu/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/09/17/aws-config/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/10/08/cloud-control-config/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/12/17/log4shell-log4j-unbound-dns/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/12/25/nginx-splunk-field-extractor/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2021/12/27/caddy-plugins-nixos/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2022/08/09/remove-gitlab-artifacts/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2022/11/27/grub-luks2-argon2/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2023/02/13/ssh-certificate-cloudflare-tunnel/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2023/04/16/splunk-lookup-malware-filter/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2023/06/17/json-splunk-uf/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2023/07/17/ctrl-h-backspace/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/blog/2023/08/27/saml-scim/
Source: chromecache_130.2.dr String found in binary or memory: https://mdleom.com/blog/2023/10/01/splunk-ldapsearch-useraccountcontrol/
Source: chromecache_196.2.dr String found in binary or memory: https://mdleom.com/blog/2024/02/24/splunk-app-acl/
Source: chromecache_182.2.dr String found in binary or memory: https://mdleom.com/screenshot/about/
Source: chromecache_130.2.dr String found in binary or memory: https://mdleom.com/screenshot/blog/2023/10/01/splunk-ldapsearch-useraccountcontrol/
Source: chromecache_196.2.dr String found in binary or memory: https://mdleom.com/screenshot/blog/2024/02/24/splunk-app-acl/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/svg/favicon.svg
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/arch/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/aws-config/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/aws/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/azure-ad/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/caddy/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/cloudflare/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/gitlab/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/linux/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/luks/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/manjaro/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/nginx/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/nixos/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/powershell/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/security/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/server/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/servicenow/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/splunk/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/sso/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/tor/
Source: chromecache_162.2.dr String found in binary or memory: https://mdleom.com/tags/zsh/
Source: chromecache_162.2.dr String found in binary or memory: https://news.harica.gr/article/2021_harica_tls_roots/
Source: chromecache_182.2.dr String found in binary or memory: https://nixos.org/
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://nixos.org/guides/nix-pills/callpackage-design-pattern.html
Source: chromecache_162.2.dr String found in binary or memory: https://nixos.org/manual/nixpkgs/stable/#sec-language-go
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://nixos.wiki/wiki/Nix_package_manager#Sandboxing
Source: chromecache_182.2.dr String found in binary or memory: https://openphish.com/
Source: chromecache_182.2.dr String found in binary or memory: https://phishunt.io/
Source: chromecache_162.2.dr String found in binary or memory: https://repo.harica.gr/rep_dyn.php
Source: chromecache_185.2.dr String found in binary or memory: https://schema.org
Source: chromecache_196.2.dr, chromecache_182.2.dr, chromecache_130.2.dr String found in binary or memory: https://schema.org/BlogPosting
Source: chromecache_162.2.dr String found in binary or memory: https://search.nixos.org/options?channel=21.05&show=users.users.%3Cname%3E.isNormalUser&from=0&size=
Source: chromecache_162.2.dr, chromecache_194.2.dr String found in binary or memory: https://search.nixos.org/options?channel=21.11&show=services.caddy.package&from=0&size=50&sort=relev
Source: chromecache_162.2.dr String found in binary or memory: https://search.nixos.org/packages?channel=21.11&from=0&size=50&sort=relevance&type=packages&query=cl
Source: chromecache_203.2.dr String found in binary or memory: https://sizzlejs.com/
Source: chromecache_162.2.dr, chromecache_127.2.dr String found in binary or memory: https://smallstep.com/blog/use-ssh-certificates/
Source: chromecache_185.2.dr String found in binary or memory: https://snowplow.trx.gitlab.net
Source: chromecache_130.2.dr String found in binary or memory: https://splunkbase.splunk.com/app/1151
Source: chromecache_182.2.dr String found in binary or memory: https://statically.io/
Source: chromecache_185.2.dr, chromecache_125.2.dr, chromecache_196.2.dr, chromecache_127.2.dr, chromecache_182.2.dr, chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://stats.uptimerobot.com/1394zup2LQ
Source: chromecache_208.2.dr String found in binary or memory: https://tailwindcss.com/docs/adding-custom-styles#adding-component-classes
Source: chromecache_208.2.dr String found in binary or memory: https://tailwindcss.com/docs/adding-custom-styles#adding-custom-utilities
Source: chromecache_162.2.dr String found in binary or memory: https://teddit.net/r/linux/comments/osah05/ysk_do_not_use_sudo_vimnanoemacs_to_edit_a_file/
Source: chromecache_182.2.dr String found in binary or memory: https://urlhaus.abuse.ch/
Source: chromecache_185.2.dr String found in binary or memory: https://user-content.gitlab-static.net/7dc22bdd9872d7a3b62e95f959117004d58058df/68747470733a2f2f696d
Source: chromecache_185.2.dr String found in binary or memory: https://user-content.gitlab-static.net/907d6ee1a1a879097bc7de0f23a205830cc2f23d/68747470733a2f2f6170
Source: chromecache_185.2.dr String found in binary or memory: https://user-content.gitlab-static.net/c62b6b8b94f3a5d67f6ff98d9f1ddfd7c5aba49f/68747470733a2f2f696d
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://wiki.archlinux.org/title/Dm-crypt/Encrypting_an_entire_system
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://wiki.archlinux.org/title/Dm-crypt/Specialties#Disable_workqueue_for_increased_solid_state_dr
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://wiki.archlinux.org/title/Dm-crypt/Specialties#Discard/TRIM_support_for_solid_state_drives_(S
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://wiki.archlinux.org/title/btrfs#Subvolumes
Source: chromecache_162.2.dr, chromecache_174.2.dr String found in binary or memory: https://wiki.manjaro.org/index.php/GRUB/Restore_the_GRUB_Bootloader
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://wiki.splunk.com/Community:HowIndexingWorks
Source: chromecache_162.2.dr, chromecache_128.2.dr String found in binary or memory: https://www.aplura.com/assets/pdf/props_conf_order.pdf
Source: chromecache_162.2.dr String found in binary or memory: https://www.huntress.com/blog/rapid-response-critical-rce-vulnerability-is-affecting-java
Source: chromecache_182.2.dr String found in binary or memory: https://www.linkedin.com/in/mdleom/
Source: chromecache_162.2.dr String found in binary or memory: https://www.linuxbabe.com/ubuntu/set-up-unbound-dns-resolver-on-ubuntu-20-04-server
Source: chromecache_162.2.dr String found in binary or memory: https://www.lunasec.io/docs/blog/log4j-zero-day/
Source: chromecache_162.2.dr String found in binary or memory: https://www.masteringemacs.org/article/keyboard-shortcuts-every-command-line-hacker-should-know-abou
Source: chromecache_182.2.dr String found in binary or memory: https://www.npmjs.com/~curben
Source: chromecache_182.2.dr String found in binary or memory: https://www.phishtank.com/
Source: chromecache_185.2.dr String found in binary or memory: https://www.recaptcha.net/recaptcha/api.js
Source: chromecache_162.2.dr, chromecache_157.2.dr String found in binary or memory: https://www.vinc17.net/unix/ctrl-backspace.en.html
Source: chromecache_162.2.dr String found in binary or memory: https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion&#123;uri&#125;
Source: chromecache_125.2.dr, chromecache_196.2.dr, chromecache_127.2.dr, chromecache_182.2.dr, chromecache_130.2.dr, chromecache_123.2.dr, chromecache_216.2.dr, chromecache_174.2.dr, chromecache_221.2.dr, chromecache_128.2.dr, chromecache_194.2.dr, chromecache_157.2.dr String found in binary or memory: https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/
Source: chromecache_182.2.dr String found in binary or memory: https://zhouhanc.com/
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49744
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49865
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49743
Source: unknown Network traffic detected: HTTP traffic on port 49817 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49864
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49863
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49862
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49740
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49861
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49860
Source: unknown Network traffic detected: HTTP traffic on port 49789 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49800 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49766 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49898 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49743 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49875 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49852 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49795 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49739
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49738
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49859
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49737
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49858
Source: unknown Network traffic detected: HTTP traffic on port 49881 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49857
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49856
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49855
Source: unknown Network traffic detected: HTTP traffic on port 49841 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49675 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49853
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49852
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49851
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49850
Source: unknown Network traffic detected: HTTP traffic on port 49812 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49858 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49784 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49749 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49806 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49823 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49849
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49848
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49847
Source: unknown Network traffic detected: HTTP traffic on port 49886 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49846
Source: unknown Network traffic detected: HTTP traffic on port 49790 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49845
Source: unknown Network traffic detected: HTTP traffic on port 49869 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49844
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49843
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49842
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49841
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49840
Source: unknown Network traffic detected: HTTP traffic on port 49834 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49748 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49760 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49828 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49805 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49839
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49838
Source: unknown Network traffic detected: HTTP traffic on port 49904 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49837
Source: unknown Network traffic detected: HTTP traffic on port 49847 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49836
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49835
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49834
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49833
Source: unknown Network traffic detected: HTTP traffic on port 49887 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49832
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49831
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49830
Source: unknown Network traffic detected: HTTP traffic on port 49839 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49864 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49822 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49870 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49853 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49796 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49829
Source: unknown Network traffic detected: HTTP traffic on port 49811 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49828
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49827
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49826
Source: unknown Network traffic detected: HTTP traffic on port 49754 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49825
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49824
Source: unknown Network traffic detected: HTTP traffic on port 49737 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49823
Source: unknown Network traffic detected: HTTP traffic on port 49771 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49822
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49788
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49787
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49786
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49785
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49784
Source: unknown Network traffic detected: HTTP traffic on port 49813 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49783
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49782
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49781
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49780
Source: unknown Network traffic detected: HTTP traffic on port 49836 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49785 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49807 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49845 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49791 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49868 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49759 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49779
Source: unknown Network traffic detected: HTTP traffic on port 49753 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49885 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49899
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49898
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49897
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49896
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49895
Source: unknown Network traffic detected: HTTP traffic on port 49862 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49894
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49771
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49770
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49891
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49890
Source: unknown Network traffic detected: HTTP traffic on port 49897 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49780 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49879 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49802 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49851 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49830 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49769
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49768
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49889
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49767
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49888
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49766
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49887
Source: unknown Network traffic detected: HTTP traffic on port 49758 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49886
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49885
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49763
Source: unknown Network traffic detected: HTTP traffic on port 49863 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49884
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49762
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49883
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49761
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49882
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49760
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49881
Source: unknown Network traffic detected: HTTP traffic on port 49840 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49880
Source: unknown Network traffic detected: HTTP traffic on port 49857 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49896 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49770 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49797 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49801 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49824 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49759
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49758
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49879
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49757
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49878
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49877
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49755
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49876
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49754
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49875
Source: unknown Network traffic detected: HTTP traffic on port 49891 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49753
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49874
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49752
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49873
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49751
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49872
Source: unknown Network traffic detected: HTTP traffic on port 49818 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49871
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49870
Source: unknown Network traffic detected: HTTP traffic on port 49835 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49786 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49874 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49747 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49829 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49880 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49749
Source: unknown Network traffic detected: HTTP traffic on port 49846 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49748
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49869
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49747
Source: unknown Network traffic detected: HTTP traffic on port 49792 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49868
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49867
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49745
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49866
Source: unknown Network traffic detected: HTTP traffic on port 49890 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49672 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49781 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49878 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49769 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49803 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49826 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49849 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49889 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49900 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49866 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49820 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49837 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49872 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49763 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49855 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49752 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49798 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49861 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49901 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49819 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49844 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49873 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49787 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49745 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49793 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49850 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49831 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49751 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49799
Source: unknown Network traffic detected: HTTP traffic on port 49782 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49757 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49798
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49797
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49796
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49795
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49794
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49672
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49793
Source: unknown Network traffic detected: HTTP traffic on port 49814 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49792
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49791
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49790
Source: unknown Network traffic detected: HTTP traffic on port 49740 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49856 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49895 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49768 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49825 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49808 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49884 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49867 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49789
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49821
Source: unknown Network traffic detected: HTTP traffic on port 49865 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49820
Source: unknown Network traffic detected: HTTP traffic on port 49842 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49779 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49859 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49871 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49762 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49894 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49833 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49819
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49818
Source: unknown Network traffic detected: HTTP traffic on port 49799 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49810 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49817
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49816
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49815
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49814
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49813
Source: unknown Network traffic detected: HTTP traffic on port 49902 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49812
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49811
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49810
Source: unknown Network traffic detected: HTTP traffic on port 49816 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49788 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49767 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49794 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49827 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49876 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49809
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49808
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49807
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49806
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49805
Source: unknown Network traffic detected: HTTP traffic on port 49848 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49882 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49804
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49803
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49802
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49801
Source: unknown Network traffic detected: HTTP traffic on port 49739 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49800
Source: unknown Network traffic detected: HTTP traffic on port 49783 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49838 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49678 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49821 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49815 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49877 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49809 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49860 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49883 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49738 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49755 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49843 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49761 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49899 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49804 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49744 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 49832 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49904
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49903
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49902
Source: unknown Network traffic detected: HTTP traffic on port 49903 -> 443
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49901
Source: unknown Network traffic detected: HTTP traffic on port 443 -> 49900
Source: unknown Network traffic detected: HTTP traffic on port 49888 -> 443
Source: unknown HTTPS traffic detected: 23.63.206.91:443 -> 192.168.2.4:49752 version: TLS 1.2
Source: unknown HTTPS traffic detected: 23.63.206.91:443 -> 192.168.2.4:49753 version: TLS 1.2
Source: classification engine Classification label: sus20.evad.win@36/219@30/12
Source: unknown Process created: C:\Program Files\Google\Chrome\Application\chrome.exe "C:\Program Files\Google\Chrome\Application\chrome.exe" --start-maximized "about:blank"
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: C:\Program Files\Google\Chrome\Application\chrome.exe "C:\Program Files\Google\Chrome\Application\chrome.exe" --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --mojo-platform-channel-handle=2052 --field-trial-handle=1756,i,13357440529980894533,13399501441401331727,262144 --disable-features=OptimizationGuideModelDownloading,OptimizationHints,OptimizationHintsFetching,OptimizationTargetPrediction /prefetch:8
Source: unknown Process created: C:\Program Files\Google\Chrome\Application\chrome.exe "C:\Program Files\Google\Chrome\Application\chrome.exe" "http://curbengh.github.io"
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: C:\Program Files\Google\Chrome\Application\chrome.exe "C:\Program Files\Google\Chrome\Application\chrome.exe" --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --mojo-platform-channel-handle=2052 --field-trial-handle=1756,i,13357440529980894533,13399501441401331727,262144 --disable-features=OptimizationGuideModelDownloading,OptimizationHints,OptimizationHintsFetching,OptimizationTargetPrediction /prefetch:8 Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: C:\Program Files\Google\Chrome\Application\chrome.exe Process created: unknown unknown Jump to behavior
Source: Window Recorder Window detected: More than 3 window changes detected
  • No. of IPs < 25%
  • 25% < No. of IPs < 50%
  • 50% < No. of IPs < 75%
  • 75% < No. of IPs