Domain x99252.com
Japan
CTG Server Limited
Software information

nginx nginx 1.12.2

tcp/443

  • MacOS file listing through .DS_Store file
    First seen 2024-08-27 18:15
    Last seen 2024-11-12 19:38
    Open for 77 days
    • Severity: low
      Fingerprint: 5f32cf5d6962f09c0f8dcf020f8dcf02a719fba7d37be0068b26822bb30d7d0b

      Found 24 files trough .DS_Store spidering:
      
      /.git
      /888
      /app-download
      /app-download/images
      /app-download/js
      /m
      /qphtml
      /static
      /static-fhcp
      /ts-download
      /ts-download/css
      /ts-download/images
      /ts-download/js
      /ts-download/muse-ui
      /ts2-download
      /ts2-download/css
      /ts2-download/images
      /ts2-download/js
      /ts2-download/muse-ui
      /tsnew-download
      /tsnew-download/css
      /tsnew-download/images
      /tsnew-download/js
      /tsnew-download/muse-ui
      Found on 2024-11-12 19:38
    • Severity: low
      Fingerprint: 5f32cf5d6962f09c3838040e3838040e7ad6bcebe57a3e4283bf9527c9ab9e14

      Found 20 files trough .DS_Store spidering:
      
      /.git
      /888
      /app-download
      /app-download/images
      /app-download/js
      /m
      /qphtml
      /static
      /static-fhcp
      /ts-download
      /ts-download/css
      /ts-download/images
      /ts-download/js
      /ts-download/muse-ui
      /ts2-download
      /ts2-download/css
      /ts2-download/images
      /ts2-download/js
      /ts2-download/muse-ui
      /tsnew-download
      Found on 2024-11-06 17:23
    • Severity: low
      Fingerprint: 5f32cf5d6962f09c11d3744d11d3744d9930cc46f98a81177e8ab1181ea42699

      Found 12 files trough .DS_Store spidering:
      
      /.git
      /888
      /app-download
      /app-download/images
      /app-download/js
      /m
      /qphtml
      /static
      /static-fhcp
      /ts-download
      /ts2-download
      /tsnew-download
      Found on 2024-10-28 12:17
    • Severity: low
      Fingerprint: 5f32cf5d6962f09c47dfe71947dfe719155d132a71296f03309f7ec436134f36

      Found 16 files trough .DS_Store spidering:
      
      /.git
      /888
      /app-download
      /app-download/images
      /app-download/js
      /m
      /qphtml
      /static
      /static-fhcp
      /ts-download
      /ts-download/css
      /ts-download/images
      /ts-download/js
      /ts-download/muse-ui
      /ts2-download
      /tsnew-download
      Found on 2024-10-25 19:40
  • Git configuration and history exposed
    First seen 2024-08-27 18:15
    Last seen 2024-11-12 19:38
    Open for 77 days
    • Severity: medium
      Fingerprint: 2580fa947178c88602b1737db148c044b81b03713d63bb82370a65222fa98ae1

      [core]
      	repositoryformatversion = 0
      	filemode = true
      	bare = false
      	logallrefupdates = true
      [remote "origin"]
      	url = root@6669786.com:lottery-site/lottery-repo-fhcp
      	fetch = +refs/heads/*:refs/remotes/origin/*
      [branch "master"]
      	remote = origin
      	merge = refs/heads/master
      
      Found on 2024-11-12 19:38
      272 Bytes
  • Open service 137.220.146.140:443 · x99252.com

    2024-11-02 15:37

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Sat, 02 Nov 2024 15:37:42 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-11-02 by HttpPlugin
    Create report
  • Open service 27.124.47.243:443 · www.x99252.com

    2024-11-02 13:22

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Sat, 02 Nov 2024 13:22:27 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-11-02 by HttpPlugin
    Create report
  • Open service 27.124.47.243:443 · www.x99252.com

    2024-11-01 05:02

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Fri, 01 Nov 2024 05:02:14 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-11-01 by HttpPlugin
    Create report
  • Open service 27.124.47.243:443 · www.x99252.com

    2024-10-30 05:27

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Wed, 30 Oct 2024 05:27:58 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-30 by HttpPlugin
    Create report
  • Open service 137.220.146.140:443 · x99252.com

    2024-10-28 12:17

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Mon, 28 Oct 2024 12:17:23 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-28 by HttpPlugin
    Create report
  • Open service 137.220.146.140:443 · x99252.com

    2024-10-22 04:34

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Tue, 22 Oct 2024 04:34:39 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-22 by HttpPlugin
    Create report
  • Open service 137.220.225.105:443 · x99252.com

    2024-10-18 06:37

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Fri, 18 Oct 2024 06:38:02 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-18 by HttpPlugin
    Create report
  • Open service 137.220.146.140:443 · x99252.com

    2024-10-17 01:18

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Thu, 17 Oct 2024 01:18:10 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-17 by HttpPlugin
    Create report
  • Open service 137.220.225.105:443 · x99252.com

    2024-10-16 03:12

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Wed, 16 Oct 2024 03:12:33 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-16 by HttpPlugin
    Create report
  • Open service 137.220.225.105:443 · x99252.com

    2024-10-14 20:07

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Mon, 14 Oct 2024 20:07:20 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-14 by HttpPlugin
    Create report
  • Open service 137.220.146.140:443 · x99252.com

    2024-10-14 15:44

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Mon, 14 Oct 2024 15:44:29 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-10-14 by HttpPlugin
    Create report
  • Open service 137.220.225.105:443 · x99252.com

    2024-09-30 12:09

    HTTP/1.1 200 OK
    Content-Type: text/html
    Date: Mon, 30 Sep 2024 12:09:33 GMT
    Etag: W/"6635ec42-ee5"
    Last-Modified: Sat, 04 May 2024 08:05:22 GMT
    Server: nginx/1.12.2
    X-Cache: BYPASS
    Connection: close
    Transfer-Encoding: chunked
    
    Page title: Welcome
    
    <!DOCTYPE html>
    <html>
    
    <head>
      <meta charset="utf-8" />
      <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
      <title>Welcome</title>
      <style>
        html{
          height: 100%;
        }
        body{
          height: 100%;
        }
      </style>
      <script>
        function isMobile() {
          return !!(navigator.userAgent.match(
            /(phone|pad|pod|iPhone|iPod|ios|iPad|android|Mobile|BlackBerry|IEMobile|MQQBrowser|JUC|Fennec|wOSBrowser|BrowserNG|WebOS|Symbian|Windows Phone)/i
            ))
        }
        if (isMobile() !== false) {
          if (location.href.indexOf('#') > -1) {
            location.href = location.origin + '/m/#/home?' + (location.href.split('#')[1].split('?')[1] || '')
          } else {
            location.href = location.origin + '/m/#/home' + location.search
          }
        }
        (function () {
          var url = window.location.href,
            obj = {},
            keyvalue = [],
            key = '',
            value = '',
            parseString = url.substring(url.indexOf('?') + 1, url.length).split('&')
          for (var i in parseString) {
            keyvalue = parseString[i].split('=')
            key = keyvalue[0]
            value = keyvalue[1] && keyvalue[1].includes('#/') ? keyvalue[1].split('#/')[0] : keyvalue[1]
            obj[key] = value
          }
    
          if (obj.agent) {
            localStorage.setItem('agent', obj.agent)
          }
          if(obj.register){
              if(!localStorage.token){
                  localStorage.setItem('register', obj.register)
              }
          }
        })()
        window.vis = true
        window.onblur = function () {
          window.vis = false
        }
        window.onfocus = function () {
          window.vis = true
          if (typeof window.balanceTask === 'function') {
            window.balanceTask()
          }
        }
        if(!isMobile()) {
          function loadJS( url, callback ) {
            var script = document.createElement('script'),
            fn = callback || function(){};
            script.type = 'text/javascript';
    
            //IE
            if(script.readyState){
              script.onreadystatechange = function(){
                if( script.readyState == 'loaded' || script.readyState == 'complete' ){
                    script.onreadystatechange = null;
                    fn()
                }
              }
            }else{
              // 其他浏览器
              script.onload = function(){
                fn()
              }
            }
            script.src = url;
            document.getElementsByTagName('head')[0].appendChild(script);
          }
    
          let loadTable = ['/static/public/js/stomp.js', '/static/public/js/qrcode.js'
          , `https://cstaticdun.126.net/load.min.js?t=1714127562550`,
          `https://acstatic-dun.126.net/tool.min.js?t=1714127562550`
          ]
          // 用法
          loadTable.forEach( (url) => {
            loadJS(url,function(e){
              // console.log("🚀 ~ file: index.html ~ line 85 ~ loadJS ~ url loaded success", url)
            })
          })
    
        }
      </script>
      <link rel="shortcut icon" href="/static/fhcp/img/favicon.ico" type="image/x-icon">
      <!-- <script src="/static/public/js/stomp.js"></script>
      <script src="/static/public/js/qrcode.js"></script>
     
      <script src="https://cstaticdun.126.net/load.min.js?t=1714127562550"></script>
      <script type="text/javascript" src="https://acstatic-dun.126.net/tool.min.js?t=1714127562550"></script> -->
    <link href="/static-fhcp/style.css" rel="stylesheet"><link href="/static-fhcp/css/pages/fhcp/index.dbede065ddb6404625f77c58f03c08ab.css" rel="stylesheet"></head>
    
    <body>
      <div id="fhcpApp">
    
      </div>
    <script type="text/javascript" src="/static-fhcp/js/manifest.abb0827e0ad2a686caf0.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/vendor.d0547c573b401e6a7a68.js?v=2024-4-26-18:31:51"></script><script type="text/javascript" src="/static-fhcp/js/pages/fhcp/index.516f9cc173fa6a5260ee.js?v=2024-4-26-18:31:51"></script></body>
    
    </html>
    
    Found 2024-09-30 by HttpPlugin
    Create report
www.x11889.comwww.x13188.comwww.x15995.comwww.x16177.comwww.x16775.comwww.x17725.comwww.x17731.comwww.x17732.comwww.x17761.comwww.x17795.comwww.x18827.comwww.x18861.comwww.x18865.comwww.x18991.comwww.x19951.comwww.x19973.comwww.x19987.comwww.x27599.comwww.x27738.comwww.x28827.comwww.x28871.comwww.x28993.comwww.x29775.comwww.x29928.comwww.x29929.comwww.x99127.comwww.x99197.comwww.x99252.comwww.x99253.comwww.x99265.comwww.x99293.comwww.x99312.comwww.x99335.comwww.x99339.comwww.x99356.comwww.x99516.comwww.x99566.comwww.x99587.comwww.x99597.comwww.x99637.comx11889.comx13188.comx15995.comx16177.comx16775.comx17725.comx17731.comx17732.comx17761.comx17795.comx18827.comx18861.comx18865.comx18991.comx19951.comx19973.comx19987.comx27599.comx27738.comx28827.comx28871.comx28993.comx29775.comx29928.comx29929.comx99127.comx99197.comx99252.comx99253.comx99265.comx99293.comx99312.comx99335.comx99339.comx99356.comx99516.comx99566.comx99587.comx99597.comx99637.com
CN:
x11889.com
Key:
RSA-2048
Issuer:
R10
Not before:
2024-10-25 18:40
Not after:
2025-01-23 18:40
www.x11889.comwww.x13188.comwww.x15995.comwww.x16177.comwww.x16775.comwww.x17725.comwww.x17731.comwww.x17732.comwww.x17761.comwww.x17795.comwww.x18827.comwww.x18861.comwww.x18865.comwww.x18991.comwww.x19951.comwww.x19973.comwww.x19987.comwww.x27599.comwww.x27738.comwww.x28827.comwww.x28871.comwww.x28993.comwww.x29775.comwww.x29928.comwww.x29929.comwww.x99127.comwww.x99197.comwww.x99252.comwww.x99253.comwww.x99265.comwww.x99293.comwww.x99312.comwww.x99335.comwww.x99339.comwww.x99356.comwww.x99516.comwww.x99566.comwww.x99587.comwww.x99597.comwww.x99637.comx11889.comx13188.comx15995.comx16177.comx16775.comx17725.comx17731.comx17732.comx17761.comx17795.comx18827.comx18861.comx18865.comx18991.comx19951.comx19973.comx19987.comx27599.comx27738.comx28827.comx28871.comx28993.comx29775.comx29928.comx29929.comx99127.comx99197.comx99252.comx99253.comx99265.comx99293.comx99312.comx99335.comx99339.comx99356.comx99516.comx99566.comx99587.comx99597.comx99637.com
CN:
x11889.com
Key:
RSA-2048
Issuer:
R10
Not before:
2024-08-27 17:16
Not after:
2024-11-25 17:16
Domain summary