diff --git a/.DS_Store b/.DS_Store index 1861b9ad..fc3f285c 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 00000000..94a25f7f --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml index f3a1d021..91e30af4 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,13 +1,124 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + @@ -70,6 +280,10 @@ @@ -77,24 +291,68 @@ - - + + + + + + + + + + - - + + + + - - + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + \ No newline at end of file diff --git a/DBopt/__pycache__/service2db.cpython-37.pyc b/DBopt/__pycache__/service2db.cpython-37.pyc index 6b832b8f..dbff1cff 100644 Binary files a/DBopt/__pycache__/service2db.cpython-37.pyc and b/DBopt/__pycache__/service2db.cpython-37.pyc differ diff --git a/Infra_analyzer/__pycache__/caLookup.cpython-37.pyc b/Infra_analyzer/__pycache__/caLookup.cpython-37.pyc index 38a9b4f9..08664258 100644 Binary files a/Infra_analyzer/__pycache__/caLookup.cpython-37.pyc and b/Infra_analyzer/__pycache__/caLookup.cpython-37.pyc differ diff --git a/Infra_analyzer/__pycache__/dnsLookup.cpython-37.pyc b/Infra_analyzer/__pycache__/dnsLookup.cpython-37.pyc index d803dad5..df43dfb1 100644 Binary files a/Infra_analyzer/__pycache__/dnsLookup.cpython-37.pyc and b/Infra_analyzer/__pycache__/dnsLookup.cpython-37.pyc differ diff --git a/Tools/__pycache__/domain_extract.cpython-37.pyc b/Tools/__pycache__/domain_extract.cpython-37.pyc index a640c951..abca4015 100644 Binary files a/Tools/__pycache__/domain_extract.cpython-37.pyc and b/Tools/__pycache__/domain_extract.cpython-37.pyc differ diff --git a/Tools/adt/ATFilter.py b/Tools/adt/ATFilter.py index 67a739e5..02f4dd2f 100644 --- a/Tools/adt/ATFilter.py +++ b/Tools/adt/ATFilter.py @@ -1,5 +1,6 @@ import os +import requests from adblockparser import AdblockRules @@ -7,12 +8,16 @@ class AdFilter: """ Usage: ad.blocker.should_block(url) """ - def __init__(self): + def __init__(self, new): + if new: + self.latest() self.ad_rules = [] self.pp = os.path.dirname(__file__) self.load_ad() self.blocker = AdblockRules(self.ad_rules) + def latest(self): + os.system("git clone https://github.com/easylist/easylist.git") def load_ad(self): # adserver @@ -54,12 +59,17 @@ class TrackerFilter: """ Usage: tr.blocker.should_block(url) """ - def __init__(self): + def __init__(self, new): + if new: + self.latest() self.tracker_filter = [] self.pp = os.path.dirname(__file__) self.load_tracker() self.blocker = AdblockRules(self.tracker_filter) + def latest(self): + os.system("git clone https://github.com/easylist/easylist.git") + def load_tracker(self): # general f = open(self.pp + "/easylist-master/easyprivacy/easyprivacy_general.txt", "r") @@ -90,8 +100,9 @@ class TrackerFilter: if __name__ == "__main__": - ad = AdFilter() + ad = AdFilter(0) tr = TrackerFilter() print(ad.pp) print(ad.blocker.should_block("https://www.baidu.com")) + diff --git a/Tools/adt/__pycache__/ATFilter.cpython-37.pyc b/Tools/adt/__pycache__/ATFilter.cpython-37.pyc index 70fcafa8..6b378b41 100644 Binary files a/Tools/adt/__pycache__/ATFilter.cpython-37.pyc and b/Tools/adt/__pycache__/ATFilter.cpython-37.pyc differ diff --git a/WebHopper.py b/WebHopper.py index e583285e..019200a8 100644 --- a/WebHopper.py +++ b/WebHopper.py @@ -3,10 +3,10 @@ import os import pandas as pd import threading import requests -import builtwith import whois import argparse import collections +import tqdm from collector.Peeper import Peeper from analyzer.get_chain import GetService from Infra_analyzer.caLookup import CertResolver @@ -14,7 +14,6 @@ from Infra_analyzer.dnsLookup import DNSResolver from concurrent.futures import ThreadPoolExecutor from Tools.adt.ATFilter import AdFilter, TrackerFilter - lock = threading.Lock() @@ -22,20 +21,23 @@ class ToCSV: def __init__(self): self.df = pd.DataFrame(columns=["resource_url", "isThirdParty", "resource_type", - "CA_url", "Issuer", "OCSP", "CDP", "NS", "isAd", "isTracker"]) + "CA_url", "Issuer", "OCSP", "CDP", "NS", "isAd", "isTracker", "score"]) self.crtlook = CertResolver() self.dnslook = DNSResolver() - self.ad = AdFilter() - self.tr = TrackerFilter() + self.ad = AdFilter(0) # 要更新里面就填1,建议一周更一次 + self.tr = TrackerFilter(0) # 同上 def lookUp(self, value): ca_url, issuer, ocsp, crl = self.crtlook.get_CRL_OSCP(value["resource_url"]) ns = self.dnslook.get_NS(value["resource_url"]) + """ + 判断是否为广告/跟踪器,没啥必要就注掉,慢得很,浪费时间 + """ # is_ad = self.ad.blocker.should_block(value["resource_url"]) # is_tr = self.tr.blocker.should_block(value["resource_url"]) lock.acquire() self.df.loc[self.df.shape[0]] = [value["resource_url"], value["isThirdParty"], value["resource_type"], - ca_url, issuer, ocsp, str(crl), str(ns), False, False] + ca_url, issuer, ocsp, str(crl), str(ns), False, False, round(value["score"], 4)] lock.release() @@ -65,7 +67,7 @@ def chainAna(results): def page_resource(path, dirname, sp): dumper = ToCSV() ana = GetService() - results = ana.run(path) + results = ana.run(path, 0) # 0代表不打印评分过程,1代表打印评分过程,只是做个除法而已,打印出来也没什么信息量,好看一点罢了 js_rank = [] pool = ThreadPoolExecutor(max_workers=7) seen = set() @@ -78,9 +80,9 @@ def page_resource(path, dirname, sp): pool.submit(dumper.lookUp, value) pool.shutdown() js_rank.sort(key=lambda x: x[1], reverse=True) - print("-----------------js排名情况------------------") + print("-----------------js排名情况(评分保留4为小数)-----------------") for js, _ in js_rank: - print(js) + print("score is:", round(_, 4), "js:", js) dumper.df.to_csv(sp + dirname + ".csv", index=False) print("-----------------引用链------------------") @@ -115,20 +117,12 @@ def run(domain): "headers": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) " "Version/14.1.2 Safari/605.1.15" } - req = requests.get(url, headers=header) - for key, value in req.headers.items(): - print(key, value) - f = open(sp + "header", "w") - f.write(str(req.headers)) - f.close() - - print("-----------------组件使用情况------------------") - components = builtwith.parse(url) - for key, value in components.items(): - print(key, value) - f = open(sp + "component", "w") - f.write(str(components)) - f.close() + # req = requests.get(url, headers=header) + # for key, value in req.headers.items(): + # print(key, value) + # f = open(sp + "header", "w") + # f.write(str(req.headers)) + # f.close() # page_resource("/Users/mazeyu/rendering_stream/www.shandong-energy.com/log_www.shandong-energy.com_1649208675.692799.json", "www.shandong-energy.com") @@ -143,8 +137,8 @@ if __name__ == "__main__": easylist更新 域名 """ - # run("www.baidu.com") - run("wanfangdata.com.cn") - # run("csdn.net") + # run("wanfangdata.com.cn") + # run("wanfangdata.com.cn") + run("csdn.net") # run("www.bilibili.com") # run("www.piaoliang.com") diff --git a/analyzer/__pycache__/file_loader.cpython-37.pyc b/analyzer/__pycache__/file_loader.cpython-37.pyc index 5ccbf9fc..74c4358e 100644 Binary files a/analyzer/__pycache__/file_loader.cpython-37.pyc and b/analyzer/__pycache__/file_loader.cpython-37.pyc differ diff --git a/analyzer/__pycache__/get_chain.cpython-37.pyc b/analyzer/__pycache__/get_chain.cpython-37.pyc index 0203d4f5..c7ab9059 100644 Binary files a/analyzer/__pycache__/get_chain.cpython-37.pyc and b/analyzer/__pycache__/get_chain.cpython-37.pyc differ diff --git a/analyzer/get_chain.py b/analyzer/get_chain.py index d598086d..9e3226ed 100644 --- a/analyzer/get_chain.py +++ b/analyzer/get_chain.py @@ -1,6 +1,8 @@ import collections import pandas as pd import numpy as np +import tqdm +import time import threading from Tools.domain_extract import Extracter from DBopt.service2db import Service2DB @@ -120,7 +122,7 @@ class GetService: return denominator @staticmethod - def calScore(service, denominator): + def calScore(service, denominator, showProcess): """ calculate the score for each resource: for javascript: we use events' 14-dimention vector divide denominator and add them together @@ -134,23 +136,51 @@ class GetService: b's score = b's score + c'score c's score = c's score """ - for key, prop in service.items(): - # other resource - if key.startswith("r"): - offset = prop["resource_type"] - prop["score"] = 1 / denominator[offset - 7] - continue + if showProcess: + print("计算js评分:") + print("计算资源渲染行为比重:NodeCreation, NodeInsertion, " + "NodeRemoval, NodeAttachLater, AttrAddition, AttrModification, AttrRemoval, " + "AttrStyleTextAddition, NetworkScriptRequest, NetworkImageRequest, " + "NetworkIframeRequest, NetworkXMLHTTPRequest, NetworkLinkRequest, NetworkVideoRequest") + if showProcess: + for key, prop in tqdm.tqdm(service.items()): + time.sleep(0.05) + # other resource + if key.startswith("r"): + offset = prop["resource_type"] + prop["score"] = 1 / denominator[offset - 7] + continue - # script resource - event_vec = np.array(list(prop["events"].values())) - prop["score"] = sum(np.divide(event_vec, denominator)) + # script resource + event_vec = np.array(list(prop["events"].values())) + # print(event_vec) + prop["score"] = sum(np.divide(event_vec, denominator)) - # the chain solution - parent = prop["parent"] - if parent not in service: - continue - if parent != "0": - service[parent]["score"] += prop["score"] + # the chain solution + parent = prop["parent"] + if parent not in service: + continue + if parent != "0": + service[parent]["score"] += prop["score"] + else: + for key, prop in service.items(): + # other resource + if key.startswith("r"): + offset = prop["resource_type"] + prop["score"] = 1 / denominator[offset - 7] + continue + + # script resource + event_vec = np.array(list(prop["events"].values())) + # print(event_vec) + prop["score"] = sum(np.divide(event_vec, denominator)) + + # the chain solution + parent = prop["parent"] + if parent not in service: + continue + if parent != "0": + service[parent]["score"] += prop["score"] @staticmethod def event2Num(event_type): @@ -169,7 +199,7 @@ class GetService: } return e2n.get(event_type, 0) - def run(self, filename): + def run(self, filename, showProcess): print(threading.current_thread().name + ':' + filename) service = dict() # to find a script's parent, we need to map script_url to script_id @@ -243,7 +273,7 @@ class GetService: denominator = self.calEventsNum(data["timeline"]) - self.calScore(service, denominator) + self.calScore(service, denominator, showProcess) """ save to mysql diff --git a/collector/Peeper.py b/collector/Peeper.py index 402557dd..abaaad8a 100644 --- a/collector/Peeper.py +++ b/collector/Peeper.py @@ -9,6 +9,7 @@ from Tools.domain_extract import Extracter class Peeper: def __init__(self): + # self.driver_path = '/Users/mazeyu/Downloads/chromedriver' self.driver_path = os.path.dirname(__file__) + '/chromedriver' # tested with ChromeDriver version 2.42 self.binary_path = os.path.dirname(__file__) + '/adg-osx/Chromium.app/Contents/MacOS/Chromium' @@ -87,7 +88,7 @@ class Peeper: driver = self.driverInit(proxy_enable=False) except Exception as e: print("error:", e, url) - return 0 + return try: driver.get(url) driver.maximize_window() diff --git a/collector/__pycache__/Peeper.cpython-37.pyc b/collector/__pycache__/Peeper.cpython-37.pyc index ac0a4028..3acf81f7 100644 Binary files a/collector/__pycache__/Peeper.cpython-37.pyc and b/collector/__pycache__/Peeper.cpython-37.pyc differ diff --git a/comp.py b/comp.py new file mode 100644 index 00000000..6f8359a5 --- /dev/null +++ b/comp.py @@ -0,0 +1,9 @@ + +from Wappalyzer import Wappalyzer, WebPage +import builtwith + +webpage = WebPage.new_from_url("http://iqiyi.com") +wappalyzer = Wappalyzer.latest() +print(wappalyzer.analyze(webpage)) + + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 00000000..3248f34f --- /dev/null +++ b/requirements.txt @@ -0,0 +1,18 @@ +adblockparser==0.7 +builtwith==1.3.4 +cryptography==3.4.6 +eventlet==0.33.0 +Infrastructure==3.5.5 +numpy==1.19.4 +ordereddict==1.1 +pandas==1.2.4 +PyMySQL==1.0.2 +pyOpenSSL==22.0.0 +python_whois==0.7.3 +requests==2.25.1 +rsa==4.7.2 +selenium==3.141.0 +SQLAlchemy==1.4.26 +tldextract==3.1.0 +unittest2==1.1.0 +whois==0.9.15 diff --git a/result/.DS_Store b/result/.DS_Store deleted file mode 100644 index 3266a925..00000000 Binary files a/result/.DS_Store and /dev/null differ diff --git a/result/mail.cstnet.cn22-04-24/chain.txt b/result/mail.cstnet.cn22-04-24/chain.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/result/mail.cstnet.cn22-04-24/component b/result/mail.cstnet.cn22-04-24/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/mail.cstnet.cn22-04-24/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/mail.cstnet.cn22-04-24/header b/result/mail.cstnet.cn22-04-24/header deleted file mode 100644 index fc29c7ca..00000000 --- a/result/mail.cstnet.cn22-04-24/header +++ /dev/null @@ -1 +0,0 @@ -{'Server': 'nginx', 'Date': 'Sun, 24 Apr 2022 03:30:24 GMT', 'Content-Type': 'text/html;charset=UTF-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Vary': 'Accept-Encoding', 'Pragma': 'No-cache', 'Cache-Control': 'no-cache', 'Expires': 'Thu, 01 Jan 1970 00:00:00 GMT', 'Content-Language': 'zh-CN', 'Content-Encoding': 'gzip'} \ No newline at end of file diff --git a/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.csv b/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.csv deleted file mode 100644 index 0dcc81cd..00000000 --- a/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.csv +++ /dev/null @@ -1,13 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://mail.cstnet.cn/coremail/bundle/loginCommon.27576.js,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns3.cstnet.cn.', 'ns4.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/common/assets/7806ccd7/css/iconfont/iconfont.css,0,5,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns3.cstnet.cn.', 'ns4.cstnet.cn.']",False,False -https://mail.cstnet.cn/,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns3.cstnet.cn.', 'ns4.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/bundle/login.27576.js,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns4.cstnet.cn.', 'ns3.cstnet.cn.']",False,False -"https://mail.cstnet.cn/coremail/s/json/?func=loadLang&lc=zh_CN&category=main,error,message,common,login",0,4,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns4.cstnet.cn.', 'ns3.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/bundle/$login.27576.js,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns3.cstnet.cn.', 'ns4.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/common/assets/7806ccd7/css/dist/main.css,0,5,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns4.cstnet.cn.', 'ns3.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/common/assets/index_cmxt50/img/logo.png,0,2,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns3.cstnet.cn.', 'ns4.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/common/assets/index_cmxt50/img/welcome.png,0,2,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns4.cstnet.cn.', 'ns3.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/common/index_cmxt50.jsp,0,2,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns3.cstnet.cn.', 'ns4.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/common/assets/index_cmxt50/img/webadmin_icon.png,0,2,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns4.cstnet.cn.', 'ns3.cstnet.cn.']",False,False -https://mail.cstnet.cn/coremail/XT5/jsp/mail.jsp?func=getWeather,0,4,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns4.cstnet.cn.', 'ns3.cstnet.cn.']",False,False diff --git a/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.html b/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.html deleted file mode 100644 index 27cdd718..00000000 --- a/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.html +++ /dev/null @@ -1,927 +0,0 @@ - - 中国科学院邮件系统 - - - - - - - - - - - - -
-
-
- - -
-
- -
-
-
- - -
-
-
- Language: - - - 简体中文 - - -
-
- - - - - - -
-
- - - - -
- -
- - - - -
-
- - - -
- - -
-
- - - - -
- - - - - - - -
-
- - -
- -
- - -
- -
- - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.png b/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.png deleted file mode 100644 index 6f47451b..00000000 Binary files a/result/mail.cstnet.cn22-04-24/mail.cstnet.cn.png and /dev/null differ diff --git a/result/mail.cstnet.cn22-04-24/whois b/result/mail.cstnet.cn22-04-24/whois deleted file mode 100644 index 01d7a29d..00000000 --- a/result/mail.cstnet.cn22-04-24/whois +++ /dev/null @@ -1,14 +0,0 @@ -{ - "domain_name": "cstnet.cn", - "registrar": "\u5317\u4eac\u4e2d\u79d1\u4e09\u65b9\u7f51\u7edc\u6280\u672f\u6709\u9650\u516c\u53f8", - "creation_date": "2003-03-17 12:20:05", - "expiration_date": "2024-03-17 12:48:36", - "name_servers": [ - "ns3.cstnet.cn", - "ns4.cstnet.cn" - ], - "status": "ok", - "emails": "dongchao@cnic.cn", - "dnssec": "unsigned", - "name": "\u4e2d\u56fd\u79d1\u5b66\u9662\u8ba1\u7b97\u673a\u7f51\u7edc\u4fe1\u606f\u4e2d\u5fc3" -} \ No newline at end of file diff --git a/result/wanfangdata.com.cn22-04-25/chain.txt b/result/wanfangdata.com.cn22-04-25/chain.txt deleted file mode 100644 index 907b1ea1..00000000 --- a/result/wanfangdata.com.cn22-04-25/chain.txt +++ /dev/null @@ -1 +0,0 @@ -['https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=979433803&si=838fbc4154ad87515435bf1e10023fab&v=1.2.92&lv=1&sn=65147&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fwanfangdata.com.cn%2Findex.html&tt=%E4%B8%87%E6%96%B9%E6%95%B0%E6%8D%AE%E7%9F%A5%E8%AF%86%E6%9C%8D%E5%8A%A1%E5%B9%B3%E5%8F%B0', 'https://hm.baidu.com/hm.js?838fbc4154ad87515435bf1e10023fab'] diff --git a/result/wanfangdata.com.cn22-04-25/component b/result/wanfangdata.com.cn22-04-25/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/wanfangdata.com.cn22-04-25/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/wanfangdata.com.cn22-04-25/header b/result/wanfangdata.com.cn22-04-25/header deleted file mode 100644 index c81beaa1..00000000 --- a/result/wanfangdata.com.cn22-04-25/header +++ /dev/null @@ -1 +0,0 @@ -{'Server': 'nginx/1.12.1', 'Date': 'Mon, 25 Apr 2022 13:03:33 GMT', 'Content-Type': 'text/html;charset=UTF-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Set-Cookie': 'CASTGC=TGT-38249301-cLUG5Ra0HRRwGEFf9KcrCzgXlik9kPRd1fp5Rqc2atobtiElIi-my.wanfangdata.com.cn; Domain=wanfangdata.com.cn; Expires=Mon, 25-Apr-2022 15:03:32 GMT; Path=/, WFKS.Auth=%7B%22Context%22%3A%7B%22AccountIds%22%3A%5B%22Group.g_zkyxxgc%22%2C%22Enterprise%22%2C%22trical.GTimeLimit%22%2C%22Shibboleth.g_zkyxxgc%22%2C%22GTimeLimit.g_zkyxxgc%22%5D%2C%22Data%22%3A%5B%7B%22Key%22%3A%22Group.g_zkyxxgc.DisplayName%22%2C%22Value%22%3A%22%E4%B8%AD%E5%9B%BD%E7%A7%91%E5%AD%A6%E9%99%A2%E4%BF%A1%E6%81%AF%E5%B7%A5%E7%A8%8B%E7%A0%94%E7%A9%B6%E6%89%80%22%7D%5D%2C%22SessionId%22%3A%228b6ff8af-cf0e-464a-a2dc-8f7e0fdce44b%22%2C%22Sign%22%3A%22kHu%2BQNuo1ho2LEH2WP0HVNdTsCRpF4e6YIhjbbWGxe8NYeHrebxm3FX3ZzCNkYh%5C%2F%22%7D%2C%22LastUpdate%22%3A%222022-04-25T13%3A03%3A32Z%22%2C%22TicketSign%22%3A%22WQwvKXX%2BhHRQcrg2EmBeHQ%3D%3D%22%2C%22UserIp%22%3Anull%7D; Domain=wanfangdata.com.cn; Expires=Mon, 25-Apr-2022 15:03:32 GMT; Path=/', 'Content-Language': 'en-US', 'Content-Encoding': 'gzip'} \ No newline at end of file diff --git a/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.csv b/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.csv deleted file mode 100644 index 95a05202..00000000 --- a/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.csv +++ /dev/null @@ -1,40 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://wanfangdata.com.cn/index.html,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://apps.wanfangdata.com.cn/jsbuilder/wfpub.js,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/js/lib/layer-2.4.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://cdn.wanfangdata.com.cn/js/min/jquery-1.9.1.min.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://com.wf.pub/thin.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://com.wf.pub/jsbuilder/wf.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://com.wf.pub/dialog/dialog.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://cdn.wanfangdata.com.cn/page/common/min/jquery.cookie.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://cdn.wanfangdata.com.cn/page/common/min/list.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://com.wf.pub/jsbuilder/appstore.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://wanfangdata.com.cn/page/common/js/topsearch-new.js,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://com.wf.pub/swiper/swiper-bundle.min.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns18.hichina.com.', 'dns17.hichina.com.']",False,False -https://wanfangdata.com.cn/page/common/js/swiper.min.js,0,1,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://hm.baidu.com/hm.js?838fbc4154ad87515435bf1e10023fab,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://cdn.wanfangdata.com.cn/page/index/index/js/compatibilities-tips.js?version=1.2022.37-20220425142155,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://cdn.wanfangdata.com.cn/js/min/echo.min.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://cdn.wanfangdata.com.cn/page/common/js/index.js?version=1.2022.37-20220425142155,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/js/lang.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://com.wf.pub/qrcode/jquery.qrcode.min.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://com.wf.pub/wf.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-logo_sns.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://com.wf.pub/dialog/dialog.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/js/lib/skin/layer.css,0,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://apps.wanfangdata.com.cn/css/appmenu.css,0,5,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/src/img/anxs-loding-wx.gif,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://cdn.wanfangdata.com.cn/page/common/js/swiper.css,0,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/images/bind_right_icon.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://com.wf.pub/swiper/swiper-bundle.min.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns18.hichina.com.', 'dns17.hichina.com.']",False,False -https://com.wf.pub/thin.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://wanfangdata.com.cn/page/images/new.gif,0,2,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=979433803&si=838fbc4154ad87515435bf1e10023fab&v=1.2.92&lv=1&sn=65147&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fwanfangdata.com.cn%2Findex.html&tt=%E4%B8%87%E6%96%B9%E6%95%B0%E6%8D%AE%E7%9F%A5%E8%AF%86%E6%9C%8D%E5%8A%A1%E5%B9%B3%E5%8F%B0,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_03.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_09.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_07.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.wanfangdata.com.cn.', 'ns1.wanfangdata.com.cn.']",False,False -https://advert.wanfangdata.com.cn/advertmanager/advert/showAdvert?positionId=3,0,3,http://crl.digicert-cn.com/SecureSiteCAG2.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/SecureSiteCAG2.crl', 'http://crl4.digicert.com/SecureSiteCAG2.crl']","['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://cdn.login.wanfangdata.com.cn/Content/src/img/code-img_13.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.wanfangdata.com.cn.', 'ns2.wanfangdata.com.cn.']",False,False -https://com.wf.pub/img/g-star.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://api.wf.pub/apps/app_tag_online_list,1,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False -https://api.wf.pub/apps/appstore_query,1,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['dns17.hichina.com.', 'dns18.hichina.com.']",False,False diff --git a/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.html b/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.html deleted file mode 100644 index 262822ba..00000000 --- a/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.html +++ /dev/null @@ -1,1727 +0,0 @@ - - 万方数据知识服务平台 - - - - - - - - - - - - - - - -
-
- - - - - - - - - - - -
- - -
- 中国科学院信息工程研究所 - -
- -
- - - - -
-
- - -
-
- - - -
-
- - - - - - - - - - - - - - - - - - - - - -
-
-
-
-
-
-
- -

全部

- -
- -
-
- - 检索 -
-
- 搜期刊 -
-
-
- -
-
    -
    -
    -
    -
    -
      -
    • 全部
    • -
    • 期刊
    • -
    • 学位
    • -
    • 会议
    • -
    • 专利
    • -
    • 科技报告
    • -
    • 成果
    • -
    • 标准
    • -
    • 法规
    • -
    • 地方志
    • -
    • 视频
    • -
    -
    -
    -
    -
    -
    -
    - -
    - -
    -
    - - - - - - - - - - - - - - 热门应用全部毕业论文写作HOT论文查重包月版HOT考研选题HOT基础教育自营期刊热销开放平台@万方数据(165)
    期刊专题@万方数据(497)
    11030人已购买
    学位专题@万方数据(75)
    719人已购买
    万方检测@万方数据(425)
    1057人已购买
    重庆图书馆民国特色文献库@成都子公司(53)
    1人已购买
    大百科全书数据库@中国大百科全书出版社(96)
    12人已购买
    中小学数字图书馆服务中小学的数字图书馆@基础教育知识服务平台(58)
    科技纵览@小阿牛(132)
    264人已购买
    《临床神经外科杂志》JCN新媒体栏目@神外编辑部(12)
    万方中小学课题论文管理平台@上海万方数据有限公司(5)
    万方大讲堂@万方数据股份有限公司(64)
    辞海权威、可信的知识检索平台@上海辞书出版社有限公司(48)
    中国社会科学文库中国社会科学文库@任彦虎(29)
    文泉书局@3个W(23)
    专业知识聚合站内应用平台V1.0-专家编审@郑佳(4)
    新蕾出版社@新蕾出版社(7)
    1/9
    - -
    -

    科研赋能

    -

    关注各类科研场景,提供便捷、高效的科研工具,打造科研全流程解决方案

    -
    -
    -
    < 科研选题 >
    - 万方选题 - 科慧 -
    -
    -
    < 脉络分析 >
    - 关键词知识脉络 - 主题分析 -
    -
    -
    < 诚信规范 >
    - 万方检测 - 科研诚信学习系统 -
    -
    -
    < 投稿推荐 >
    - 期刊分析 - 投稿助手 -
    -
    -
    < 学术交流 >
    - 学术圈 - 学者知识脉络 -
    -
    -
    < 成果跟踪 >
    - 科技成果共享管理系统 - 专利工具 -
    -
    -
    - -
    -

    阅读推荐

    -
    -
    -
    -
    精品文献
    - 更多 -
    -
    - -
    - 《 农业环境科学学报 2022年1期
    为研究碳酸钙和温度对土壤有机碳矿化的影响,以贵州典型黄壤为对象,通过60 d室内矿化培养试验,研究15、25℃和35℃下13C标记碳酸钙(30 g·kg-1)对土壤有机碳矿化及其温度敏感性的影响.结果 表明:不同处理的土壤CO2释放速率均在第1 d达到峰值,随后迅速减小,在15~60 d时趋于稳定.碳酸钙抑制了土壤原有有机碳的矿化(P<0.01),在培养前期(1~10 d)表现为强负激发效应,其负激发效应在不同温度下最强可达-81.0%(25℃)、-69.3%(35℃)和-54.0%(15℃).土壤总CO2累积释放量在35℃下高于15℃和25℃,温度可增强土壤有机碳的矿化(P<0.05).13CO2释放量在25℃和35℃下显著高于15℃(P<0.05),对土壤总CO2释放量的贡献率为25℃(27.33%)>35℃(19.36%)>15℃(13.81%).黄壤有机碳矿化温度敏感性(Q10)变化范围在0.90~1.69.添加碳酸钙对Q10值无显著影响,但温度对Q10值有显著影响,25~35℃体系下Q10值高于15~25℃.研究表明,在15~35℃范围内,外源碳酸钙抑制了黄壤有机碳的矿化,且外源碳酸钙对黄壤有机碳矿化的影响效果显著强于温度的影响.
    -
    -
    - 《 华东经济管理 2022年3期
    文章选取2009—2018年深市A股上市公司连续且有效的数据,以地方财政分权对企业全要素生产率的影响为切入点进行深入研究.研究发现:财政分权对企业全要素生产率产生了正向影响.从微观宏观角度研究,其直接改善了地方企业内外部的经济环境,间接促进了企业全要素生产率的增长;从企业区域、企业类型角度研究,中西部地区企业全要素生产率受到财政分权的影响较其他地区更为明显;非国企及高科技企业受到的影响较其他企业更为明显.根据以上结论,就深入财政分权改革等问题提出了相应建议:深入调整地方财政资源分配,改善当地企业内外部环境;完善财政分权制度,驱动区域发展协调;完善相关法律法规,改善立法的滞后性.
    - 《 中国塑料 2022年2期
    以聚丙烯(PP)和高纯氮气为原料,采用高压短时和低压长时两种注气方式进行了微发泡注塑实验,并在以低压长时为注气方式的实验中,在不同熔体温度、注气压差和储料长度下,研究了冷却时间与制品表面出现大气泡概率之间的关系.结果表明,通过高压短时注气方式得到的制品表面出现大气泡的概率较高,严重影响制品质量;采用低压长时注气方式,制品表面出现大气泡的概率显著降低;延长冷却时间可以完全消除制品表面的大气泡,且在一定范围内,熔体温度越高、注气压差越大、储料长度越大,消除大气泡所需要的最佳冷却时间越长.
    -
    - -
    - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    - -

    手机版

    -
    -
    -
    -
    - -

    - 万方数据知识服务平台 - 扫码关注微信公众号 -

    -
    - -
    -
    -
    -
    - - - - -
    - - - - -
    - - - - \ No newline at end of file diff --git a/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.png b/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.png deleted file mode 100644 index 0a05c42d..00000000 Binary files a/result/wanfangdata.com.cn22-04-25/wanfangdata.com.cn.png and /dev/null differ diff --git a/result/wanfangdata.com.cn22-04-25/whois b/result/wanfangdata.com.cn22-04-25/whois deleted file mode 100644 index 98001680..00000000 --- a/result/wanfangdata.com.cn22-04-25/whois +++ /dev/null @@ -1,18 +0,0 @@ -{ - "domain_name": "wanfangdata.com.cn", - "registrar": "\u5317\u4eac\u4e2d\u79d1\u4e09\u65b9\u7f51\u7edc\u6280\u672f\u6709\u9650\u516c\u53f8", - "creation_date": "1999-01-06 00:00:00", - "expiration_date": "2031-01-06 00:00:00", - "name_servers": [ - "ns1.wanfangdata.com.cn", - "ns2.wanfangdata.com.cn" - ], - "status": [ - "serverDeleteProhibited", - "serverUpdateProhibited", - "serverTransferProhibited" - ], - "emails": "dns@wanfangdata.com.cn", - "dnssec": "unsigned", - "name": "\u5317\u4eac\u4e07\u65b9\u6570\u636e\u80a1\u4efd\u6709\u9650\u516c\u53f8" -} \ No newline at end of file diff --git a/result/www.baidu.com22-04-21/chain.txt b/result/www.baidu.com22-04-21/chain.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/result/www.baidu.com22-04-21/component b/result/www.baidu.com22-04-21/component deleted file mode 100644 index c09bbc95..00000000 --- a/result/www.baidu.com22-04-21/component +++ /dev/null @@ -1 +0,0 @@ -{'javascript-frameworks': ['RequireJS', 'jQuery']} \ No newline at end of file diff --git a/result/www.baidu.com22-04-21/header b/result/www.baidu.com22-04-21/header deleted file mode 100644 index b836bd56..00000000 --- a/result/www.baidu.com22-04-21/header +++ /dev/null @@ -1 +0,0 @@ -{'Cache-Control': 'private, no-cache, no-store, proxy-revalidate, no-transform', 'Connection': 'keep-alive', 'Content-Encoding': 'gzip', 'Content-Type': 'text/html', 'Date': 'Thu, 21 Apr 2022 08:08:25 GMT', 'Last-Modified': 'Mon, 23 Jan 2017 13:27:36 GMT', 'Pragma': 'no-cache', 'Server': 'bfe/1.0.8.18', 'Set-Cookie': 'BDORZ=27315; max-age=86400; domain=.baidu.com; path=/', 'Transfer-Encoding': 'chunked'} \ No newline at end of file diff --git a/result/www.baidu.com22-04-21/whois b/result/www.baidu.com22-04-21/whois deleted file mode 100644 index 811e0543..00000000 --- a/result/www.baidu.com22-04-21/whois +++ /dev/null @@ -1,56 +0,0 @@ -{ - "domain_name": [ - "BAIDU.COM", - "baidu.com" - ], - "registrar": "MarkMonitor, Inc.", - "whois_server": "whois.markmonitor.com", - "referral_url": null, - "updated_date": [ - "2022-01-25 09:00:46", - "2022-01-25 09:23:56" - ], - "creation_date": "1999-10-11 11:05:17", - "expiration_date": [ - "2026-10-11 11:05:17", - "2026-10-11 07:00:00" - ], - "name_servers": [ - "NS1.BAIDU.COM", - "NS2.BAIDU.COM", - "NS3.BAIDU.COM", - "NS4.BAIDU.COM", - "NS7.BAIDU.COM", - "ns4.baidu.com", - "ns3.baidu.com", - "ns7.baidu.com", - "ns1.baidu.com", - "ns2.baidu.com" - ], - "status": [ - "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", - "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", - "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", - "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited", - "clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)", - "clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)", - "clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)", - "serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited)", - "serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited)", - "serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)" - ], - "emails": [ - "abusecomplaints@markmonitor.com", - "whoisrequest@markmonitor.com" - ], - "dnssec": "unsigned", - "name": null, - "org": "Beijing Baidu Netcom Science Technology Co., Ltd.", - "address": null, - "city": null, - "state": "Beijing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.baidu.com22-04-21/www.baidu.com.csv b/result/www.baidu.com22-04-21/www.baidu.com.csv deleted file mode 100644 index b22303ba..00000000 --- a/result/www.baidu.com22-04-21/www.baidu.com.csv +++ /dev/null @@ -1,52 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://pss.bdstatic.com/r/www/cache/static/protocol/https/global/js/all_async_search_d717576.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/lib/esl-d776bfb1aa.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/s_super_index-3fffae8d60.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/lib/jquery-1-edb203c114.10.2.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/bundles/polyfill_9354efa.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/sbase-647f83a3dd.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://www.baidu.com/,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/hotsearch-a66606178c.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/home/js/nu_instant_search_679a837.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/swfobject_0178953.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/every_cookie_mac_82990d4.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/soutu/js/tu_ce72dbc.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/voice/js/voice_c422a67.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/min_super-7ddd157405.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/bzPopper_7bc4f0e.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/tips-e2ceadd14d.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://hectorstatic.baidu.com/cd37ed75a9387c5b.js,0,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns7.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/amd_modules/@baidu/search-sug_05232f9.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/qrcode-0e4b67354f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/aging-tools-c67ce70d27.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/login_guide-4fba3971ce.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/video-meet-7833028d86.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/super_load-eb15f1e5a8.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superui/js/ubase_5a7b0933.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/guide_tips-d9e617f782.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/amd_modules/san/dist/san_5017f11.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/amd_modules/@baidu/aging-tools-pc-1e5afe8bdf.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://passport.baidu.com/passApi/js/wrapper.js?cdnversion=1650523678673&_=1650523678261,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns7.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newfanyi-da0cea8f7e.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/amd_modules/@baidu/video-meeting-1be7f62dac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newxueshuicon-a5314d5c83.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newwenku-d8c9b7b0fb.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newzhibo-a6a0831ecd.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newzhidao-da1cf444b0.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newjiankang-f03b804b4b.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/yingxiaoicon-612169cc36.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newbaike-889054f349.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newyinyue-03ecd1e9b9.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/result.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'ns7.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/peak-result.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/result@2.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns7.baidu.com.']",False,False -https://www.baidu.com/img/PCfb_5bf082d29588c07f842ccde3f97243ea.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns7.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/qrcode/qrcode@2x-daf987ad02.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/footer/aria-3006e33cce.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://sp1.baidu.com/-L-Xsjip0QIZ8tyhnq/v.gif?logactid=1234567890&showTab=10000&opType=showpv&mod=superman%3Alib&submod=index&superver=supernewplus&glogid=3214719949&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=3214720111&sid=35835_31254_36020_34813_35915_36167_34584_36120_36126_35801_36233_26350_36303_36312_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.04533132934789852,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.']",False,True -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/qrcode/qrcode-hover@2x-f9b106a848.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://sp2.baidu.com/-L-Ysjip0QIZ8tyhnq/v.gif?mod=superman%3Acomponents&submod=hotsearch&utype=undefined&superver=supernewplus&portrait=undefined&glogid=3214719949&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=3214720111&sid=35835_31254_36020_34813_35915_36167_34584_36120_36126_35801_36233_26350_36303_36312_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.07577480210261234&m=superman%3Acomponents_hotsearchShow&showType=hotword&words=%5B%22%E4%B8%8A%E6%B5%B7%E5%8D%B0%E5%8F%91%E4%BF%9D%E4%BE%9B%E7%89%A9%E8%B5%84%E9%A3%9F%E5%AE%89%E7%AE%A1%E7%90%86%E6%84%8F%E8%A7%81%22%2C%22%E4%B8%80%E6%96%87%E8%AF%BB%E6%87%82%E4%B8%AA%E4%BA%BA%E5%85%BB%E8%80%81%E9%87%91%E5%88%B6%E5%BA%A6%22%2C%22%E6%99%AE%E4%BA%AC%EF%BC%9A%E6%95%8C%E4%BA%BA%E5%A8%81%E8%83%81%E4%BF%84%E7%BD%97%E6%96%AF%E5%89%8D%E8%A6%81%E4%B8%89%E6%80%9D%E4%BA%86%22%2C%22%E5%A5%B3%E7%94%9F%E8%8A%B15%E4%B8%87%E4%B9%B0%E5%B7%A7%E5%85%8B%E5%8A%9B%E9%80%81%E6%A0%A1%E5%8F%8B%E8%A2%AB%E7%BD%91%E6%9A%B4%22%2C%221%E4%BA%BA%E6%84%9F%E6%9F%93%E6%96%B0%E5%86%A0%E5%B0%86%E6%8C%81%E7%BB%AD%E6%8E%92%E6%AF%927%E5%88%B012%E5%A4%A9%22%2C%22%E9%99%B6%E8%99%B9%E8%B5%84%E6%9C%AC%E7%89%88%E5%9B%BE%E6%9B%9D%E5%85%89%EF%BC%9A%E5%90%8D%E4%B8%8B16%E5%AE%B6%E5%85%AC%E5%8F%B8%22%5D&pagenum=0,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.']",False,True -https://pss.bdstatic.com/r/www/cache/static/protocol/https/soutu/css/soutu_new2_dd3a84f.css,1,5,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://www.baidu.com/sugrec?prod=pc_his&from=pc_web&json=1&sid=36020_34813_35915_36165_34584_36120_35979_36126_36257_26350_36301_36314_36061&hisdata=&_t=1650523678562&req=2&csor=0,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superui/css/ubase_9376fdcf.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False diff --git a/result/www.baidu.com22-04-21/www.baidu.com.html b/result/www.baidu.com22-04-21/www.baidu.com.html deleted file mode 100644 index 6a0671a9..00000000 --- a/result/www.baidu.com22-04-21/www.baidu.com.html +++ /dev/null @@ -1,3349 +0,0 @@ -百度一下,你就知道
    辅助模式
    \ No newline at end of file diff --git a/result/www.baidu.com22-04-21/www.baidu.com.png b/result/www.baidu.com22-04-21/www.baidu.com.png deleted file mode 100644 index d86c806e..00000000 Binary files a/result/www.baidu.com22-04-21/www.baidu.com.png and /dev/null differ diff --git a/result/www.baidu.com22-04-22/chain.txt b/result/www.baidu.com22-04-22/chain.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/result/www.baidu.com22-04-22/component b/result/www.baidu.com22-04-22/component deleted file mode 100644 index c09bbc95..00000000 --- a/result/www.baidu.com22-04-22/component +++ /dev/null @@ -1 +0,0 @@ -{'javascript-frameworks': ['RequireJS', 'jQuery']} \ No newline at end of file diff --git a/result/www.baidu.com22-04-22/header b/result/www.baidu.com22-04-22/header deleted file mode 100644 index 9be0a27f..00000000 --- a/result/www.baidu.com22-04-22/header +++ /dev/null @@ -1 +0,0 @@ -{'Cache-Control': 'private, no-cache, no-store, proxy-revalidate, no-transform', 'Connection': 'keep-alive', 'Content-Encoding': 'gzip', 'Content-Type': 'text/html', 'Date': 'Fri, 22 Apr 2022 02:15:38 GMT', 'Last-Modified': 'Mon, 23 Jan 2017 13:27:36 GMT', 'Pragma': 'no-cache', 'Server': 'bfe/1.0.8.18', 'Set-Cookie': 'BDORZ=27315; max-age=86400; domain=.baidu.com; path=/', 'Transfer-Encoding': 'chunked'} \ No newline at end of file diff --git a/result/www.baidu.com22-04-22/whois b/result/www.baidu.com22-04-22/whois deleted file mode 100644 index 559e37e8..00000000 --- a/result/www.baidu.com22-04-22/whois +++ /dev/null @@ -1,56 +0,0 @@ -{ - "domain_name": [ - "BAIDU.COM", - "baidu.com" - ], - "registrar": "MarkMonitor, Inc.", - "whois_server": "whois.markmonitor.com", - "referral_url": null, - "updated_date": [ - "2022-01-25 09:00:46", - "2022-01-25 09:23:56" - ], - "creation_date": "1999-10-11 11:05:17", - "expiration_date": [ - "2026-10-11 11:05:17", - "2026-10-11 07:00:00" - ], - "name_servers": [ - "NS1.BAIDU.COM", - "NS2.BAIDU.COM", - "NS3.BAIDU.COM", - "NS4.BAIDU.COM", - "NS7.BAIDU.COM", - "ns4.baidu.com", - "ns2.baidu.com", - "ns1.baidu.com", - "ns3.baidu.com", - "ns7.baidu.com" - ], - "status": [ - "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", - "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", - "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", - "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited", - "clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)", - "clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)", - "clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)", - "serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited)", - "serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited)", - "serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)" - ], - "emails": [ - "abusecomplaints@markmonitor.com", - "whoisrequest@markmonitor.com" - ], - "dnssec": "unsigned", - "name": null, - "org": "Beijing Baidu Netcom Science Technology Co., Ltd.", - "address": null, - "city": null, - "state": "Beijing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.baidu.com22-04-22/www.baidu.com.csv b/result/www.baidu.com22-04-22/www.baidu.com.csv deleted file mode 100644 index 9f4ae006..00000000 --- a/result/www.baidu.com22-04-22/www.baidu.com.csv +++ /dev/null @@ -1,53 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/lib/esl-d776bfb1aa.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/global/js/all_async_search_d717576.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/lib/jquery-1-edb203c114.10.2.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/sbase-99a349e4bf.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://www.baidu.com/,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/s_super_index-e023ca4660.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/bundles/polyfill_9354efa.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/home/js/nu_instant_search_679a837.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/soutu/js/tu_ce72dbc.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/min_super-cbb0c7898f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/hotsearch-186ffe4ac3.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://hectorstatic.baidu.com/cd37ed75a9387c5b.js,0,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/amd_modules/@baidu/search-sug_05232f9.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/swfobject_0178953.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/voice/js/voice_c422a67.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/advert-064271ed9b.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/super_load-eb15f1e5a8.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/every_cookie_mac_82990d4.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/login_guide-4fba3971ce.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/bzPopper_7bc4f0e.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/qrcode-0e4b67354f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superui/js/ubase.js?v=md5,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/tips-e2ceadd14d.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/aging-tools-e41786b1c3.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/amd_modules/@baidu/aging-tools-pc-9e81c30fcb.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/video-meet-7833028d86.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/amd_modules/@baidu/video-meeting-1be7f62dac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/amd_modules/san/dist/san_5017f11.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/guide_tips-d9e617f782.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://passport.baidu.com/passApi/js/wrapper.js?cdnversion=1650593718290&_=1650593717825,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newfanyi-da0cea8f7e.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newxueshuicon-a5314d5c83.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/yingxiaoicon-612169cc36.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newwenku-d8c9b7b0fb.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newyinyue-03ecd1e9b9.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newbaike-889054f349.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newjiankang-f03b804b4b.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newzhidao-da1cf444b0.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newzhibo-a6a0831ecd.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://www.baidu.com/img/PCfb_5bf082d29588c07f842ccde3f97243ea.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns7.baidu.com.', 'dns.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/result@2.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/footer/aria-3006e33cce.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/result.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns7.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/qrcode/qrcode-hover@2x-f9b106a848.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/peak-result.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/qrcode/qrcode@2x-daf987ad02.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/soutu/css/soutu_new2_dd3a84f.css,1,5,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://sp2.baidu.com/-L-Ysjip0QIZ8tyhnq/v.gif?mod=superman%3Acomponents&submod=hotsearch&utype=undefined&superver=supernewplus&portrait=undefined&glogid=3740506961&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=3740685080&sid=31254_36019_36165_34584_36120_35979_36126_36296_36236_26350_36300_36315_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.034794814267957275&m=superman%3Acomponents_hotsearchShow&showType=hotword&words=%5B%22%E5%8D%9A%E9%B3%8C%E6%97%B6%E9%97%B4%E6%9D%A5%E4%BA%86%22%2C%22%E4%B8%8A%E6%B5%B7%E5%BC%80%E5%B1%95%E7%A4%BE%E4%BC%9A%E9%9D%A2%E6%B8%85%E9%9B%B6%E6%94%BB%E5%9D%9A%E4%B9%9D%E5%A4%A7%E8%A1%8C%E5%8A%A8%22%2C%22%E4%B8%8A%E6%B5%B7%E6%98%A8%E5%A2%9E%E6%9C%AC%E5%9C%9F1931%2B15698%20%E6%AD%BB%E4%BA%A111%E4%BE%8B%22%2C%22%E4%BF%84%E5%AF%A1%E5%A4%B4%E8%B1%AA%E5%AE%85%E5%86%85%E8%87%AA%E7%BC%A2%20%E5%A6%BB%E5%A5%B3%E6%AD%BB%E5%9B%A0%E6%88%90%E8%B0%9C%22%2C%22%E8%88%AA%E6%AF%8D%E5%AE%A3%E4%BC%A0%E7%89%87%E5%BD%A9%E8%9B%8B%E9%80%8F%E9%9C%B2%E8%A6%81%E5%AE%89%E6%8E%92%E4%B8%89%E8%83%8E%22%2C%22%E5%8E%BF%E5%A7%94%E4%B9%A6%E8%AE%B0%E4%BC%99%E5%90%8C%E6%83%85%E5%A6%87%E6%95%9B%E8%B4%A26000%E4%B8%87%22%5D&pagenum=0,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'ns7.baidu.com.', 'ns4.baidu.com.']",False,False -https://sp1.baidu.com/-L-Xsjip0QIZ8tyhnq/v.gif?logactid=1234567890&showTab=10000&opType=showpv&mod=superman%3Alib&submod=index&superver=supernewplus&glogid=3740506961&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=3740685080&sid=31254_36019_36165_34584_36120_35979_36126_36296_36236_26350_36300_36315_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.8041057016107624,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns7.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://sp1.baidu.com/-L-Xsjip0QIZ8tyhnq/v.gif?logactid=1234567890&showTab=10000&opType=nodepv&mod=superman%3Alib&submod=index&superver=supernewplus&glogid=3740506961&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=3740685080&sid=31254_36019_36165_34584_36120_35979_36126_36296_36236_26350_36300_36315_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.6388459019091619,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.']",False,False -https://www.baidu.com/sugrec?prod=pc_his&from=pc_web&json=1&sid=35839_36309_31660_36019_34812_36166_34584_36120_36074_36125_26350_36300_36311_36061&hisdata=&_t=1650593718126&req=2&csor=0,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns7.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False diff --git a/result/www.baidu.com22-04-22/www.baidu.com.html b/result/www.baidu.com22-04-22/www.baidu.com.html deleted file mode 100644 index 828e7392..00000000 --- a/result/www.baidu.com22-04-22/www.baidu.com.html +++ /dev/null @@ -1,3349 +0,0 @@ -百度一下,你就知道
    辅助模式
    \ No newline at end of file diff --git a/result/www.baidu.com22-04-22/www.baidu.com.png b/result/www.baidu.com22-04-22/www.baidu.com.png deleted file mode 100644 index bfda75d2..00000000 Binary files a/result/www.baidu.com22-04-22/www.baidu.com.png and /dev/null differ diff --git a/result/www.baidu.com22-04-24/chain.txt b/result/www.baidu.com22-04-24/chain.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/result/www.baidu.com22-04-24/component b/result/www.baidu.com22-04-24/component deleted file mode 100644 index c09bbc95..00000000 --- a/result/www.baidu.com22-04-24/component +++ /dev/null @@ -1 +0,0 @@ -{'javascript-frameworks': ['RequireJS', 'jQuery']} \ No newline at end of file diff --git a/result/www.baidu.com22-04-24/header b/result/www.baidu.com22-04-24/header deleted file mode 100644 index 19092d17..00000000 --- a/result/www.baidu.com22-04-24/header +++ /dev/null @@ -1 +0,0 @@ -{'Cache-Control': 'private, no-cache, no-store, proxy-revalidate, no-transform', 'Connection': 'keep-alive', 'Content-Encoding': 'gzip', 'Content-Type': 'text/html', 'Date': 'Sun, 24 Apr 2022 02:48:52 GMT', 'Last-Modified': 'Mon, 23 Jan 2017 13:27:36 GMT', 'Pragma': 'no-cache', 'Server': 'bfe/1.0.8.18', 'Set-Cookie': 'BDORZ=27315; max-age=86400; domain=.baidu.com; path=/', 'Transfer-Encoding': 'chunked'} \ No newline at end of file diff --git a/result/www.baidu.com22-04-24/whois b/result/www.baidu.com22-04-24/whois deleted file mode 100644 index 2e6e8e89..00000000 --- a/result/www.baidu.com22-04-24/whois +++ /dev/null @@ -1,56 +0,0 @@ -{ - "domain_name": [ - "BAIDU.COM", - "baidu.com" - ], - "registrar": "MarkMonitor, Inc.", - "whois_server": "whois.markmonitor.com", - "referral_url": null, - "updated_date": [ - "2022-01-25 09:00:46", - "2022-01-25 09:23:56" - ], - "creation_date": "1999-10-11 11:05:17", - "expiration_date": [ - "2026-10-11 11:05:17", - "2026-10-11 07:00:00" - ], - "name_servers": [ - "NS1.BAIDU.COM", - "NS2.BAIDU.COM", - "NS3.BAIDU.COM", - "NS4.BAIDU.COM", - "NS7.BAIDU.COM", - "ns2.baidu.com", - "ns7.baidu.com", - "ns3.baidu.com", - "ns4.baidu.com", - "ns1.baidu.com" - ], - "status": [ - "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", - "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", - "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", - "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited", - "clientUpdateProhibited (https://www.icann.org/epp#clientUpdateProhibited)", - "clientTransferProhibited (https://www.icann.org/epp#clientTransferProhibited)", - "clientDeleteProhibited (https://www.icann.org/epp#clientDeleteProhibited)", - "serverUpdateProhibited (https://www.icann.org/epp#serverUpdateProhibited)", - "serverTransferProhibited (https://www.icann.org/epp#serverTransferProhibited)", - "serverDeleteProhibited (https://www.icann.org/epp#serverDeleteProhibited)" - ], - "emails": [ - "abusecomplaints@markmonitor.com", - "whoisrequest@markmonitor.com" - ], - "dnssec": "unsigned", - "name": null, - "org": "Beijing Baidu Netcom Science Technology Co., Ltd.", - "address": null, - "city": null, - "state": "Beijing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.baidu.com22-04-24/www.baidu.com.csv b/result/www.baidu.com22-04-24/www.baidu.com.csv deleted file mode 100644 index aa33efe5..00000000 --- a/result/www.baidu.com22-04-24/www.baidu.com.csv +++ /dev/null @@ -1,51 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://pss.bdstatic.com/r/www/cache/static/protocol/https/bundles/polyfill_9354efa.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/global/js/all_async_search_d717576.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/s_super_index-3fffae8d60.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/lib/esl-d776bfb1aa.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/sbase-647f83a3dd.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/lib/jquery-1-edb203c114.10.2.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://www.baidu.com/,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'ns7.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/min_super-7ddd157405.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/hotsearch-a66606178c.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://hectorstatic.baidu.com/cd37ed75a9387c5b.js,0,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/home/js/nu_instant_search_679a837.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/swfobject_0178953.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/voice/js/voice_c422a67.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/soutu/js/tu_ce72dbc.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/amd_modules/@baidu/search-sug_05232f9.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/bzPopper_7bc4f0e.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/plugins/every_cookie_mac_82990d4.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/tips-e2ceadd14d.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/qrcode-0e4b67354f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/super_load-eb15f1e5a8.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/video-meet-7833028d86.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/login_guide-4fba3971ce.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/aging-tools-c67ce70d27.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/js/components/guide_tips-d9e617f782.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superui/js/ubase_5a7b0933.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://passport.baidu.com/passApi/js/wrapper.js?cdnversion=1650768515398&_=1650768515044,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/amd_modules/@baidu/aging-tools-pc-1e5afe8bdf.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/amd_modules/@baidu/video-meeting-1be7f62dac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/amd_modules/san/dist/san_5017f11.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newfanyi-da0cea8f7e.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newwenku-d8c9b7b0fb.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newxueshuicon-a5314d5c83.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newbaike-889054f349.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newjiankang-f03b804b4b.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newzhidao-da1cf444b0.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.', 'ns4.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/yingxiaoicon-612169cc36.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newzhibo-a6a0831ecd.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/topnav/newyinyue-03ecd1e9b9.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/result@2.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'dns.baidu.com.', 'ns3.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/result.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.']",False,False -https://www.baidu.com/img/PC_f45c771c06afa6cb4ec918f0d233bfcf.gif,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://www.baidu.com/img/flexible/logo/pc/peak-result.png,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/footer/aria-3006e33cce.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/qrcode/qrcode@2x-daf987ad02.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns3.baidu.com.', 'ns4.baidu.com.', 'ns2.baidu.com.']",False,False -https://sp1.baidu.com/-L-Xsjip0QIZ8tyhnq/v.gif?logactid=1234567890&showTab=10000&opType=showpv&mod=superman%3Alib&submod=index&superver=supernewplus&glogid=4078404719&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=4078404940&sid=36309_31254_36020_34812_36165_34584_36120_36073_26350_36302_36313_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.17948307587755563,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superman/img/qrcode/qrcode-hover@2x-f9b106a848.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://sp2.baidu.com/-L-Ysjip0QIZ8tyhnq/v.gif?mod=superman%3Acomponents&submod=hotsearch&utype=undefined&superver=supernewplus&portrait=undefined&glogid=4078404719&type=2011&pid=315&isLogin=0&version=PCHome&terminal=PC&qid=4078404940&sid=36309_31254_36020_34812_36165_34584_36120_36073_26350_36302_36313_36061&super_frm=&from_login=&from_reg=&query=&curcard=2&curcardtab=&_r=0.49330118266198886&m=superman%3Acomponents_hotsearchShow&showType=hotword&words=%5B%22%E4%B8%AD%E5%9B%BD%E8%88%AA%E5%A4%A9%E6%97%A5%22%2C%22%E4%B8%8A%E6%B5%B7%EF%BC%9A%E5%AF%B9%E4%BF%9D%E4%BE%9B%E7%A4%BC%E5%8C%85%E5%AE%9E%E8%A1%8C%E6%8F%90%E7%BA%A7%E7%AE%A1%E7%90%86%22%2C%2231%E7%9C%81%E5%8C%BA%E5%B8%82%E6%98%A8%E5%A2%9E%E6%9C%AC%E5%9C%9F%E2%80%9C1566%2B20230%E2%80%9D%22%2C%22%E7%B4%AF%E8%AE%A187%E4%BE%8B%E6%AD%BB%E4%BA%A1%20%E9%87%8D%E7%97%87%E5%85%AB%E4%BB%99%E6%9C%893%E4%BD%8D%E8%B5%B4%E4%B8%8A%E6%B5%B7%22%2C%22%E4%B8%8A%E6%B5%B7%E6%96%B0%E5%A2%9E%E6%9C%AC%E5%9C%9F1401%2B19657%20%E6%AD%BB%E4%BA%A139%E4%BE%8B%22%2C%22%E5%BA%9E%E5%AE%BD%E5%9C%A8%E7%AE%B1%E5%AD%90%E4%B8%8A%E7%9B%B4%E6%92%AD14%E5%A4%A9%E5%90%83%E5%96%9D%E6%8B%89%E6%92%92%22%5D&pagenum=0,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'ns7.baidu.com.', 'dns.baidu.com.']",False,False -https://pss.bdstatic.com/r/www/cache/static/protocol/https/soutu/css/soutu_new2_dd3a84f.css,1,5,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns2.baidu.com.', 'ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://www.baidu.com/sugrec?prod=pc_his&from=pc_web&json=1&sid=36309_31254_36020_34812_36165_34584_36120_36073_26350_36302_36313_36061&hisdata=&_t=1650768515330&req=2&csor=0,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://dss0.bdstatic.com/5aV1bjqh_Q23odCf/static/superui/css/ubase_9376fdcf.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns.baidu.com.', 'ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.']",False,False diff --git a/result/www.baidu.com22-04-24/www.baidu.com.html b/result/www.baidu.com22-04-24/www.baidu.com.html deleted file mode 100644 index c52bf370..00000000 --- a/result/www.baidu.com22-04-24/www.baidu.com.html +++ /dev/null @@ -1,2131 +0,0 @@ -百度一下,你就知道 - - - - - - - - - - - - - - -
    -
    辅助模式
    -
    -
    - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    \ No newline at end of file diff --git a/result/www.baidu.com22-04-24/www.baidu.com.png b/result/www.baidu.com22-04-24/www.baidu.com.png deleted file mode 100644 index c3eb1e6b..00000000 Binary files a/result/www.baidu.com22-04-24/www.baidu.com.png and /dev/null differ diff --git a/result/www.bilibili.com22-04-24/chain.txt b/result/www.bilibili.com22-04-24/chain.txt deleted file mode 100644 index e69de29b..00000000 diff --git a/result/www.bilibili.com22-04-24/component b/result/www.bilibili.com22-04-24/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/www.bilibili.com22-04-24/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/www.bilibili.com22-04-24/header b/result/www.bilibili.com22-04-24/header deleted file mode 100644 index 0be56501..00000000 --- a/result/www.bilibili.com22-04-24/header +++ /dev/null @@ -1 +0,0 @@ -{'Date': 'Sun, 24 Apr 2022 02:11:13 GMT', 'Content-Type': 'text/html; charset=utf-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'support': 'nantianmen', 'Set-Cookie': 'innersign=0; path=/; domain=.bilibili.com, buvid3=F8EAE991-F7CC-7DF7-6772-5DA91A8E2D2A73868infoc; path=/; expires=Mon, 24 Apr 2023 02:11:13 GMT; domain=.bilibili.com', 'cache-control': 'no-cache', 'gear': '1', 'Vary': 'Origin,Accept-Encoding', 'IDC': 'shjd', 'Content-Encoding': 'gzip', 'Expires': 'Sun, 24 Apr 2022 02:11:12 GMT', 'X-Cache-Webcdn': 'MISS from blzone02', 'X-Cache-Time': '0', 'X-Origin-Time': 'no-cache, must-revalidate, max-age=0, no-store', 'X-Save-Date': 'Sun, 24 Apr 2022 02:11:13 GMT'} \ No newline at end of file diff --git a/result/www.bilibili.com22-04-24/whois b/result/www.bilibili.com22-04-24/whois deleted file mode 100644 index 992a2f2e..00000000 --- a/result/www.bilibili.com22-04-24/whois +++ /dev/null @@ -1,32 +0,0 @@ -{ - "domain_name": [ - "BILIBILI.COM", - "bilibili.com" - ], - "registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.", - "whois_server": "grs-whois.hichina.com", - "referral_url": null, - "updated_date": "2021-12-29 02:09:35", - "creation_date": "2004-10-21 11:37:37", - "expiration_date": "2031-10-21 11:37:37", - "name_servers": [ - "NS3.DNSV5.COM", - "NS4.DNSV5.COM" - ], - "status": [ - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited", - "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", - "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", - "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited" - ], - "emails": "DomainAbuse@service.aliyun.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "shang hai", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.bilibili.com22-04-24/www.bilibili.com.csv b/result/www.bilibili.com22-04-24/www.bilibili.com.csv deleted file mode 100644 index d4e3cab1..00000000 --- a/result/www.bilibili.com22-04-24/www.bilibili.com.csv +++ /dev/null @@ -1,72 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://s1.hdslb.com/bfs/static/laputa-home/client/assets/svgfont.eebd749a.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/cm/cm-sdk/static/js/pc.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/seed/log/report/log-reporter.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/js/sentry/sentry-5.15.0.min.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/seed/log/report/5.3017e.function.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/js/sentry/sentry-5.15.0.vue.min.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/seed/log/report/3.7e97d.function.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/font/medium.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/laputa-css/light_u.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/font/regular.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/laputa-home/client/assets/vendor.cefda3b1.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/laputa-css/map.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/laputa-home/client/assets/index.0437f2a6.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/e6a445044980bd4a8a6deab428e52e166a72e025.png,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/laputa-css/light.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/cec08108de627d610800b5719238e56dd2fb033e.png@3840w_360h_1c_90q,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/8ff4d72c0fa3e23536290b6f5cdafa9c264f32eb.png@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/ce1544b1301acc508699bb991bb4096c5b25e2b9.jpg@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/a9823bdacd43db817d1b38e381031a7622483bf1.png@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/3418d0a8d1cedc084edd7b1949f8529dbbafe8f6.png@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/c9e82b3bbc27ffed4a37fdccd71acfd3d97e71bb.jpg@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/86c98bdc4408ea34ef7775933bd0af2a99f24cce.png@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/aadd4a37243776d8e994a0221352b11407c78dd0.png@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/feed-admin/e916796a6d3e1a328866aed3fcd2a4aa05f994df.png@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/banner/54ffbc4880eb6edf28f3efd02b31ef44581da60b.jpg@976w_550h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/c9612cb0354604eeb03967b0fbcc56bc150e05d8.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i1.hdslb.com/bfs/archive/7dfafcfd38b8177ef2b967eb9d17a615827ca0f4.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i1.hdslb.com/bfs/archive/abbcaf875e739ab0260ee8c3b93240531b283ef4.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/5fd406f55487db1752bd24ffa37295cd5126543e.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i1.hdslb.com/bfs/archive/65a2f6522fade11e79c0e7c79e65dbd49bd737fb.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/d56985762626bb6e065448ed5f5b56396053d53a.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i1.hdslb.com/bfs/archive/59b11c17f6eec6d7043cc07cd9e252728f8bd443.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i1.hdslb.com/bfs/archive/f7517a0513ebf81bdb47ca4c102a941ee7e4c667.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i1.hdslb.com/bfs/archive/6172a440cc78327363edefdfdde887ed7697ca63.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/3e664b4eb6df874cb27f1387c36d0849ef958add.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/sycp/mng/202111/47b7b814a3dce30769bf0fba4252f281.png,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/sycp/creative_img/202012/0693ce46bc66d4171f4e37487fdab266.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/1b845bfec666469debf0563bd73c7376291ef995.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/4a169d66f6f4e34f2ecec865f7100688b4c6bb36.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/31996a11fb5ba5e6c822cb913375aca71b45fcce.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/b9a3c11d80b6be395fc8e443923349a2cea27b98.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/seed/jinkela/short/cols/iframe.html,1,3,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/bili-home/roll-guide.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/images/eva.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/cec08108de627d610800b5719238e56dd2fb033e.png@3840w_360h_1c_90q.webp,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/sycp/creative_img/202203/736325708582afd271643d224ad16072.jpg@2900w_240h_100q,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/sycp/creative_img/202204/fe96af1b8533afcccbc2c1b1f5a4fd9b.jpg@2900w_240h_100q,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/sycp/creative_img/202108/f0d525a0496e2d789caeb2d3437604f6.jpg@2900w_240h_100q,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/sycp/creative_img/202103/9fd6b6ccb35350005968c9c5286b04ac.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/activity-plat/static/20210729/df3e2ff90b315fca2f8d24a29cb68a47/Dm9M9DZArS.png,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://s1.hdslb.com/bfs/static/jinkela/long/images/live.gif,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/443788affb33844c0187cada1e37352021d40752.png@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/activity-plat/static/20210729/df3e2ff90b315fca2f8d24a29cb68a47/2xfuvJItn3.png,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/activity-plat/static/20210729/df3e2ff90b315fca2f8d24a29cb68a47/iUlvDrrAnu.png,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/04b7e2c0d39e9150311f32174df3a9ae395cce5f.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/d41f2f6df4c3a4686bf270926dc08e8977835367.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/fdce9ca8d8ce8633fc5a959356e30d9a76cfa16e.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/616e2df60fc83fc5ed0034012212566c1f594a97.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/8436f019be5ac804a36c7ddfc648eb98265aab74.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/d5ff69d0d66adca2171e0c2ecef994494552d878.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/archive/2bea49a36302bc00e70b3ffddab48f4d53e84489.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/9b01ba74d78f6a22cd8a9f6ba152a51abbc62f1b.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/52060079360823891c0005a69b93861c8be6a0c0.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/80582a14eb198f4b4e4ad39514d9f19b43eb6471.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/3a8b1bd5bd67c30c1d4b86701c27948024946741.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/d52bf517be937a97a010f4a316cfee67050624ec.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/67e5933bef0862df8aa2178e4049e86b6b69cb50.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/e86f510d5822d1f1567c607df0a67b948037708d.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/b21d40b166aa6b09eccb4eaf9e6a8b320bc42116.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/5b426d996be803518132f9c54031688a2984f40a.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://i0.hdslb.com/bfs/live/new_room_cover/ed3726239878c734611388885c2dcab2ce4e46a9.jpg@672w_378h_1c,1,2,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False diff --git a/result/www.bilibili.com22-04-24/www.bilibili.com.html b/result/www.bilibili.com22-04-24/www.bilibili.com.html deleted file mode 100644 index c80071d0..00000000 --- a/result/www.bilibili.com22-04-24/www.bilibili.com.html +++ /dev/null @@ -1,403 +0,0 @@ - - - 哔哩哔哩 (゜-゜)つロ 干杯~-bilibili - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    - -
    换一换引导
    番剧

    国创

    漫画
    查看更多

    分区
    客服
    - - - - - - - - - - - \ No newline at end of file diff --git a/result/www.bilibili.com22-04-24/www.bilibili.com.png b/result/www.bilibili.com22-04-24/www.bilibili.com.png deleted file mode 100644 index 4fff7a78..00000000 Binary files a/result/www.bilibili.com22-04-24/www.bilibili.com.png and /dev/null differ diff --git a/result/www.csdn.net22-04-21/chain.txt b/result/www.csdn.net22-04-21/chain.txt deleted file mode 100644 index 3c065fb9..00000000 --- a/result/www.csdn.net22-04-21/chain.txt +++ /dev/null @@ -1,8 +0,0 @@ -['https://kunyu.csdn.net/1.png?p=583&adId=5949&a=5949&c=9143&k=&spm=3001.5902&articleId=0&d=1&t=3&u=ba766436f8024263a23032d3d6881876', 'https://g.csdnimg.cn/asdf/1.1.3/trackad.js'] -['https://kunyu.csdn.net/1.png?p=589&adId=5978&a=5978&c=9167&k=&spm=3001.5908&articleId=0&d=1&t=3&u=b5258e37cd3c4fc48e7a75b2fc457f1c', 'https://g.csdnimg.cn/asdf/1.1.3/trackad.js'] -['https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=1463178090&si=6bcd52f51e9b3dce32bec4a3997715ac&v=1.2.92&lv=1&api=1_0&sn=29685&r=0&ww=1200&p=islogin*0*1!isonline*0*1!isvip*0*1&ct=6525*1*10_33918537570-1650528658033-762419!!&u=https%3A%2F%2Fwww.csdn.net%2F&tt=CSDN%20-%20%E4%B8%93%E4%B8%9A%E5%BC%80%E5%8F%91%E8%80%85%E7%A4%BE%E5%8C%BA', 'https://hm.baidu.com/hm.js?6bcd52f51e9b3dce32bec4a3997715ac'] -['https://g.csdnimg.cn/side-toolbar/3.0/images/qr.png', 'https://g.csdnimg.cn/side-toolbar/3.0/side-toolbar.js'] -['https://g.csdnimg.cn/side-toolbar/3.0/images/qr_wechat.png', 'https://g.csdnimg.cn/side-toolbar/3.0/side-toolbar.js'] -['https://g.csdnimg.cn/side-toolbar/3.0/images/qr_app.png', 'https://g.csdnimg.cn/side-toolbar/3.0/side-toolbar.js'] -['https://g.csdnimg.cn/side-toolbar/3.0/images/kefu.png', 'https://g.csdnimg.cn/side-toolbar/3.0/side-toolbar.js'] -['https://g.csdnimg.cn/side-toolbar/3.0/images/fanhuidingbucopy.png', 'https://g.csdnimg.cn/side-toolbar/3.0/side-toolbar.js'] diff --git a/result/www.csdn.net22-04-21/component b/result/www.csdn.net22-04-21/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/www.csdn.net22-04-21/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/www.csdn.net22-04-21/header b/result/www.csdn.net22-04-21/header deleted file mode 100644 index 322110da..00000000 --- a/result/www.csdn.net22-04-21/header +++ /dev/null @@ -1 +0,0 @@ -{'Server': 'openresty', 'Date': 'Thu, 21 Apr 2022 08:12:30 GMT', 'Content-Type': 'text/html; charset=utf-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'Keep-Alive': 'timeout=20', 'Vary': 'Accept-Encoding', 'Set-Cookie': 'uuid_tt_dd=10_33918537570-1650528750657-921030; Expires=Thu, 01 Jan 2025 00:00:00 GMT; Path=/; Domain=.csdn.net;, dc_session_id=10_1650528750657.381248; Expires=Thu, 01 Jan 2025 00:00:00 GMT; Path=/; Domain=.csdn.net;, csrfToken=eJpbB550jx4GtNljqJuwACu5; path=/', 'X-Response-Time': '332', 'x-xss-protection': '1; mode=block', 'x-content-type-options': 'nosniff', 'x-download-options': 'noopen', 'x-readtime': '333', 'Strict-Transport-Security': 'max-age=31536000', 'Content-Encoding': 'gzip'} \ No newline at end of file diff --git a/result/www.csdn.net22-04-21/whois b/result/www.csdn.net22-04-21/whois deleted file mode 100644 index 3feb0255..00000000 --- a/result/www.csdn.net22-04-21/whois +++ /dev/null @@ -1,29 +0,0 @@ -{ - "domain_name": [ - "CSDN.NET", - "csdn.net" - ], - "registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.", - "whois_server": "grs-whois.hichina.com", - "referral_url": null, - "updated_date": "2021-12-02 08:57:35", - "creation_date": "1999-03-11 05:00:00", - "expiration_date": "2023-03-11 04:00:00", - "name_servers": [ - "VIP3.ALIDNS.COM", - "VIP4.ALIDNS.COM" - ], - "status": [ - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited" - ], - "emails": "DomainAbuse@service.aliyun.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "bei jing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.csdn.net22-04-21/www.csdn.net.csv b/result/www.csdn.net22-04-21/www.csdn.net.csv deleted file mode 100644 index bc64070a..00000000 --- a/result/www.csdn.net22-04-21/www.csdn.net.csv +++ /dev/null @@ -1,14 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://www.csdn.net/,0,1,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip3.alidns.com.', 'vip4.alidns.com.']",False,False -https://event.csdn.net/logstores/csdn-pc-tracking-pageview/track_ua.gif?APIVersion=0.6.0&cid=10_33918537570-1650528658033-762419&sid=10_1650528658033.712664&pid=www&uid=&did=10_33918537570-1650528658033-762419&dc_sid=&ref=&curl=https%3A%2F%2Fwww.csdn.net%2F&utm=&spm=1000.2115&tos=-86463193230435&adb=0&cCookie=c_session_id%3D10_1650528658033.712664%3Bc_pref%3Ddefault%3Bc_ref%3Ddefault%3Bc_first_ref%3Ddefault%3Bc_first_page%3Dhttps%253A%2F%2Fwww.csdn.net%2F%3Bc_segment%3D3%3Bc_page_id%3Ddefault%3B&t=1650528659&screen=2560*1440&un=&urn=1650528658611-2901cb88-97fe-4be6-9d25-280f5db365ee&vType=&log_id=1,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['vip3.alidns.com.', 'vip4.alidns.com.']",False,False -https://hm.baidu.com/hm.js?6bcd52f51e9b3dce32bec4a3997715ac,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns7.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,True -https://silkroad.csdn.net/api/v2/assemble/list/channel/search_hot_word?channel_name=pc_hot_word&size=10&platform=pc&imei=10_33918537570-1650528658033-762419,0,4,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip4.alidns.com.', 'vip3.alidns.com.']",False,False -https://blog.csdn.net/phoenix/web/v1/home/information?page=1&pageSize=20,0,4,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip4.alidns.com.', 'vip3.alidns.com.']",False,False -https://kunyu.csdn.net/1.png?p=583&adId=5949&a=5949&c=9143&k=&spm=3001.5902&articleId=0&d=1&t=3&u=ba766436f8024263a23032d3d6881876,0,2,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip4.alidns.com.', 'vip3.alidns.com.']",False,False -https://cms-api.csdn.net/v1/web_home/select_content?componentIds=www-recomend-community,0,4,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip3.alidns.com.', 'vip4.alidns.com.']",False,False -https://kunyu.csdn.net/1.png?p=592&adId=4444&a=4444&c=7681&k=&spm=3001.5911&articleId=0&d=1&t=3&u=873e24872b1b46baa4e98bc4b0d157cd,0,2,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip3.alidns.com.', 'vip4.alidns.com.']",False,False -https://event.csdn.net/logstores/csdn-pc-tracking-page-exposure/track,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['vip4.alidns.com.', 'vip3.alidns.com.']",False,False -https://kunyu.csdn.net/1.png?p=591&adId=5944&a=5944&c=9139&k=&spm=3001.5910&articleId=0&d=1&t=3&u=7159ebf4d6b24c40a203848cdd9a9bbf,0,2,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip4.alidns.com.', 'vip3.alidns.com.']",False,False -https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=1463178090&si=6bcd52f51e9b3dce32bec4a3997715ac&v=1.2.92&lv=1&api=1_0&sn=29685&r=0&ww=1200&p=islogin*0*1!isonline*0*1!isvip*0*1&ct=6525*1*10_33918537570-1650528658033-762419!!&u=https%3A%2F%2Fwww.csdn.net%2F&tt=CSDN%20-%20%E4%B8%93%E4%B8%9A%E5%BC%80%E5%8F%91%E8%80%85%E7%A4%BE%E5%8C%BA,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.']",False,True -https://wkbrs1.tingyun.com/action?url=https%3A%2F%2Fwww.csdn.net%2F&pvid=6f2126c4bba546b6a94804323da0224d&ref=https%3A%2F%2Fwww.csdn.net%2F&referrer=&v=3.3.1-saas.2&av=3.3.1-saas.2&did=10_33918537570-1650528658033-762419&sid=560d5ecf987343d693752d6b1cc5367c&__s=1650528658622&id=hWg-u0rE5b8&key=Z1Tu5hoKbGw&token=568934913a6343de840a781ca5eaba4b&sh=1050&sw=1680&ps=1&__r=1650528665928,1,4,http://secure.globalsign.com/cacert/gsrsaovsslca2018.crt,"",http://ocsp.globalsign.com/gsrsaovsslca2018,['http://crl.globalsign.com/gsrsaovsslca2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://kunyu.csdn.net/1.png?p=589&adId=5978&a=5978&c=9167&k=&spm=3001.5908&articleId=0&d=1&t=3&u=b5258e37cd3c4fc48e7a75b2fc457f1c,0,2,http://crl.digicert-cn.com/GeoTrustCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/GeoTrustCNRSACAG1.crl', 'http://crl4.digicert.com/GeoTrustCNRSACAG1.crl']","['vip4.alidns.com.', 'vip3.alidns.com.']",False,False diff --git a/result/www.csdn.net22-04-21/www.csdn.net.html b/result/www.csdn.net22-04-21/www.csdn.net.html deleted file mode 100644 index 0df705de..00000000 --- a/result/www.csdn.net22-04-21/www.csdn.net.html +++ /dev/null @@ -1,226 +0,0 @@ -CSDN - 专业开发者社区 - - - - - - - - - - - - - - - -
    -
    -
    - -
    -
    -
    -
    - -
    - 足迹 -
    - - -
    -
    -
    -
    -
    -
    • 推荐

    • 资讯

    • 热榜

    • 专家推荐

    • 更多
    CSDN 技能树
    CSDN 指数
    每日一练

    社区推荐

    NVDIA
    原创 173粉丝 33
    .NET社区
    原创 66.8w+粉丝 5.9w+
    Gauss松鼠会
    原创 324粉丝 1.2w+
    CSDN学习社区
    原创 274粉丝 350
    大咖说
    原创 35粉丝 109
    低代码社区
    原创 103粉丝 67
    您愿意向朋友推荐“CSDN首页”吗?
    • 很不推荐
    • 不推荐
    • 一般
    • 推荐
    • 强烈推荐
    \ No newline at end of file diff --git a/result/www.csdn.net22-04-21/www.csdn.net.png b/result/www.csdn.net22-04-21/www.csdn.net.png deleted file mode 100644 index a750917a..00000000 Binary files a/result/www.csdn.net22-04-21/www.csdn.net.png and /dev/null differ diff --git a/result/www.mi.com22-04-25/chain.txt b/result/www.mi.com22-04-25/chain.txt deleted file mode 100644 index e4f4edd7..00000000 --- a/result/www.mi.com22-04-25/chain.txt +++ /dev/null @@ -1,6 +0,0 @@ -['https://a.stat.xiaomi.com/js/mstr.js?type=&curl=https%3A%2F%2Fwww.mi.com%2F&mstpid=&pageid=81190ccc4d52f577&mid=&device_id=&phpsessid=&mstuid=1650890150901_885&muuid=&mucid=&sessionId=607655137&step=2&new_visitor=0&mstprevpid=&mstprev_pid_loc=&prevtarget=&lastsource=×tamp=1650890150905&ref=&domain=.mi.com&screen=2560*1440&language=zh-CN&vendor=Google%20Inc.&platform=MacIntel&gu=&pu=&cps=&xmv=1650890150901_885_1650890150908&domain_id=100&client_id=&masid=&edm_task=&miwd=&muwd=&v=2.0.0&vuuid=86L8AG093EL9VRAA&rf=&mutid=', 'https://s1.mi.com/stat/20/xmst.js'] -['https://a.stat.xiaomi.com/js/mstr.js?type=sp&count=15&log_codes=31pchomeother001000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476792.1%3B31pchomeother002000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476793.1%3B31pchomeother003000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476794.1%3B31pchomeother004000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476795.1%3B31pchomeother005000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476796.1%3B31pchomeother006000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476797.1%3B31pchomeother007000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476798.1%3B31pchomeother008000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476799.1%3B31pchomeother009000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3478351.1%3B31pchomeother010000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476801.1%3B31pchomeother001000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476901.1%3B31pchomeother002000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476902.1%3B31pchomeother003000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476903.1%3B31pchomeother004000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476904.1%3B31pchomeother005000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3916936.1&mid=&device_id=&phpsessid=&mstuid=1650890150901_885&muuid=&mucid=&sessionId=607655137&step=2&new_visitor=0&mstprevpid=&mstprev_pid_loc=&prevtarget=&lastsource=×tamp=1650890150905&ref=&domain=.mi.com&screen=2560*1440&language=zh-CN&vendor=Google%20Inc.&platform=MacIntel&gu=&pu=&cps=&xmv=1650890150901_885_1650890150908&domain_id=100&client_id=&masid=&edm_task=&miwd=&muwd=&v=2.0.0&vuuid=86L8AG093EL9VRAA&rf=&mutid=', 'https://s1.mi.com/stat/20/xmst.js'] -['https://a.stat.xiaomi.com/js/mstr.js?type=sp&count=15&log_codes=31pchomeother006000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476896.1%3B31pchomeother007000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476897.1%3B31pchomeother008000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476899.1%3B31pchomeother009000%23t%3Dnormal%26act%3Dother%26page%3Dhome%26page_id%3D10530%26bid%3D3476900.1%3Bbpm%3D28.265.3682762.1%26cdm%3D0.0.0.0%3Bbpm%3D28.265.3682763.1%26cdm%3D0.0.0.0%26next%3D28.265%26query%3D%3B31pchomepagegallery000001%23t%3Dad%26act%3Dproduct%26page%3Dhomepage%26pid%3D15872%26page_id%3D10530%26bid%3D3480927.6%26adp%3D5494%26adm%3D32764%3B31pchomepagegallery000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480927.1%26adp%3D4025%26adm%3D32825%3B31pchomepagegallery000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480927.2%26adp%3D3135%26adm%3D32731%3B31pchomepagegallery000001%23t%3Dad%26act%3Dother%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480927.3%26adp%3D5349%26adm%3D32869%3B31pchomepagegallery000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480927.4%26adp%3D5192%26adm%3D32788%3B31pchomepagegallery000001%23t%3Dad%26act%3Dother%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480927.5%26adp%3D4567%26adm%3D32778%3B31pchomepagefeatures_entrance001001%23t%3Dnormal%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480970.1%3B31pchomepagefeatures_entrance002001%23t%3Dnormal%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480970.2%3B31pchomepagefeatures_entrance003001%23t%3Dnormal%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480970.3&mid=&device_id=&phpsessid=&mstuid=1650890150901_885&muuid=&mucid=&sessionId=607655137&step=2&new_visitor=0&mstprevpid=&mstprev_pid_loc=&prevtarget=&lastsource=×tamp=1650890150905&ref=&domain=.mi.com&screen=2560*1440&language=zh-CN&vendor=Google%20Inc.&platform=MacIntel&gu=&pu=&cps=&xmv=1650890150901_885_1650890150908&domain_id=100&client_id=&masid=&edm_task=&miwd=&muwd=&v=2.0.0&vuuid=86L8AG093EL9VRAA&rf=&mutid=', 'https://s1.mi.com/stat/20/xmst.js'] -['https://a.stat.xiaomi.com/js/mstr.js?type=sp&count=15&log_codes=31pchomepagefeatures_entrance004001%23t%3Dnormal%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480970.4%3B31pchomepagefeatures_entrance005001%23t%3Dnormal%26act%3Dother%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480970.5%3B31pchomepagefeatures_entrance006001%23t%3Dnormal%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480970.6%3B31pchomepagecells_auto_fill000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480925.1%26adp%3D3117%26adm%3D32285%3B31pchomepagecells_auto_fill000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480925.2%26adp%3D3118%26adm%3D32286%3B31pchomepagecells_auto_fill000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480925.3%26adp%3D3119%26adm%3D32277%3B31pchomepagecells_auto_fill001010%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480940.1%26adp%3D3136%26adm%3D32287%3B31pchomepagelist_eight_product000001%23t%3Dad%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480926.1%26adp%3D3120%26adm%3D32282%3B31pchomepagelist_eight_product000001%23t%3Dproduct%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480926.3%26pid%3D15821%3B31pchomepagelist_eight_product001001%23t%3Dproduct%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480926.4%26pid%3D15769%3B31pchomepagelist_eight_product002001%23t%3Dproduct%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480926.5%26pid%3D15693%3B31pchomepagelist_eight_product003001%23t%3Dproduct%26act%3Dwebview%26page%3Dhomepage%26page_id%3D10530%26bid%3D3480926.6%26pid%3D15694%3Bbid%3D3343648%3Bbid%3D3213221%3Bbid%3D3213225&mid=&device_id=&phpsessid=&mstuid=1650890150901_885&muuid=&mucid=&sessionId=607655137&step=2&new_visitor=0&mstprevpid=&mstprev_pid_loc=&prevtarget=&lastsource=×tamp=1650890150905&ref=&domain=.mi.com&screen=2560*1440&language=zh-CN&vendor=Google%20Inc.&platform=MacIntel&gu=&pu=&cps=&xmv=1650890150901_885_1650890150908&domain_id=100&client_id=&masid=&edm_task=&miwd=&muwd=&v=2.0.0&vuuid=86L8AG093EL9VRAA&rf=&mutid=', 'https://s1.mi.com/stat/20/xmst.js'] -['https://a.stat.xiaomi.com/js/mstr.js?type=sp&count=2&log_codes=bid%3D3213222%3Bbid%3D3213223&mid=&device_id=&phpsessid=&mstuid=1650890150901_885&muuid=&mucid=&sessionId=607655137&step=2&new_visitor=0&mstprevpid=&mstprev_pid_loc=&prevtarget=&lastsource=×tamp=1650890150905&ref=&domain=.mi.com&screen=2560*1440&language=zh-CN&vendor=Google%20Inc.&platform=MacIntel&gu=&pu=&cps=&xmv=1650890150901_885_1650890150908&domain_id=100&client_id=&masid=&edm_task=&miwd=&muwd=&v=2.0.0&vuuid=86L8AG093EL9VRAA&rf=&mutid=', 'https://s1.mi.com/stat/20/xmst.js'] -['https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=150010680&si=c3e3e8b3ea48955284516b186acf0f4e&v=1.2.92&lv=1&sn=63501&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fwww.mi.com%2F&tt=%E5%B0%8F%E7%B1%B3%E5%95%86%E5%9F%8E%20-%20Xiaomi%2011%20Ultra%E3%80%81Redmi%20K40%20Pro%E3%80%81MIX%20FOLD%EF%BC%8C%E5%B0%8F%E7%B1%B3%E7%94%B5%E8%A7%86%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99', 'https://hm.baidu.com/hm.js?c3e3e8b3ea48955284516b186acf0f4e'] diff --git a/result/www.mi.com22-04-25/component b/result/www.mi.com22-04-25/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/www.mi.com22-04-25/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/www.mi.com22-04-25/header b/result/www.mi.com22-04-25/header deleted file mode 100644 index 64ea1642..00000000 --- a/result/www.mi.com22-04-25/header +++ /dev/null @@ -1 +0,0 @@ -{'Content-Type': 'text/html; charset=UTF-8', 'Content-Length': '481190', 'Connection': 'keep-alive', 'Server': 'MIFE/3.0', 'Date': 'Mon, 25 Apr 2022 12:35:03 GMT', 'Last-Modified': 'Mon, 25 Apr 2022 12:34:58 GMT', 'Expires': 'Mon, 25 Apr 2022 12:37:03 GMT', 'Age': '68', 'Cache-Control': 'max-age=120', 'Accept-Ranges': 'bytes', 'Vary': 'Accept-Encoding, Accept-Encoding, Origin', 'X-Cacheable': 'MI-WWW-Cacheable', 'X-Frame-Options': 'SAMEORIGIN', 'x-link-via': 'tjct06:443;taizmp01:443;', 'X-Cache-Status': 'HIT from KS-CLOUD-TAIZ-MP-01-07, HIT from KS-CLOUD-TJ-CT-06-14', 'X-Cdn-Request-ID': 'cf8e4c9929137cd773e9761bbeb82244'} \ No newline at end of file diff --git a/result/www.mi.com22-04-25/whois b/result/www.mi.com22-04-25/whois deleted file mode 100644 index a5644425..00000000 --- a/result/www.mi.com22-04-25/whois +++ /dev/null @@ -1,30 +0,0 @@ -{ - "domain_name": "MI.COM", - "registrar": "Network Solutions, LLC", - "whois_server": "whois.networksolutions.com", - "referral_url": null, - "updated_date": [ - "2015-05-05 09:20:08", - "2017-12-20 07:20:54" - ], - "creation_date": "1998-11-06 05:00:00", - "expiration_date": "2023-11-05 04:00:00", - "name_servers": [ - "NS3.DNSV5.COM", - "NS4.DNSV5.COM" - ], - "status": "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "emails": [ - "abuse@web.com", - "dns-admin@xiaomi.com", - "domain.operations@web.com" - ], - "dnssec": "unsigned", - "name": "XIAOMI INC", - "org": "XIAOMI INC", - "address": "The Rainbow City Office Building", - "city": "Beijing", - "state": "Beijing", - "zipcode": "100085", - "country": "CN" -} \ No newline at end of file diff --git a/result/www.mi.com22-04-25/www.mi.com.csv b/result/www.mi.com22-04-25/www.mi.com.csv deleted file mode 100644 index dcb69416..00000000 --- a/result/www.mi.com22-04-25/www.mi.com.csv +++ /dev/null @@ -1,11 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://hm.baidu.com/hm.js?c3e3e8b3ea48955284516b186acf0f4e,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.']",False,False -https://s02.mifile.cn/assets/js/home.92c06606.js,1,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns2.dnsv2.com.', 'ns1.dnsv2.com.']",False,False -https://s02.mifile.cn/assets/js/chunk-vendors.98b31f16.js,1,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns2.dnsv2.com.', 'ns1.dnsv2.com.']",False,False -https://static.fengkongcloud.com/dist/web/v3.0.0/fp.min.js?t=76430,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['vip4.alidns.com.', 'vip3.alidns.com.']",False,False -https://time.hd.mi.com/gettimestamp,0,1,http://cacerts.digicert.com/RapidSSLTLSDVRSAMixedSHA2562020CA-1.crt,"",http://ocsp.digicert.com,"['http://crl3.digicert.com/RapidSSLTLSDVRSAMixedSHA2562020CA-1.crl', 'http://crl4.digicert.com/RapidSSLTLSDVRSAMixedSHA2562020CA-1.crl']","['ns4.dnsv5.com.', 'ns3.dnsv5.com.']",False,False -https://s02.mifile.cn/assets/css/home.d8080dad.css,1,5,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns1.dnsv2.com.', 'ns2.dnsv2.com.']",False,False -https://xyt.xinchacha.com/img/icon/icon3.png,1,2,,"",http://repository.certum.pl/xinchachaov.cer,['http://xinchachaov.crl.certum.pl/xinchachaov.crl'],"['ns12.xincache.com.', 'ns11.xincache.com.']",False,False -https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=150010680&si=c3e3e8b3ea48955284516b186acf0f4e&v=1.2.92&lv=1&sn=63501&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fwww.mi.com%2F&tt=%E5%B0%8F%E7%B1%B3%E5%95%86%E5%9F%8E%20-%20Xiaomi%2011%20Ultra%E3%80%81Redmi%20K40%20Pro%E3%80%81MIX%20FOLD%EF%BC%8C%E5%B0%8F%E7%B1%B3%E7%94%B5%E8%A7%86%E5%AE%98%E6%96%B9%E7%BD%91%E7%AB%99,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'dns.baidu.com.', 'ns4.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.']",False,False -https://cnbj1.fds.api.xiaomi.com/b2c-misite-activity/f1ee261b96ae71e845efba398efeca02.png,1,2,http://certificates.godaddy.com/repository/gdig2.crt,"",http://ocsp.godaddy.com/,['http://crl.godaddy.com/gdig2s1-3835.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False -https://cnbj1.fds.api.xiaomi.com/b2c-misite-activity/e482dca34e2b43b2521941a396d8e170.png,1,2,http://certificates.godaddy.com/repository/gdig2.crt,"",http://ocsp.godaddy.com/,['http://crl.godaddy.com/gdig2s1-3835.crl'],"['ns3.dnsv5.com.', 'ns4.dnsv5.com.']",False,False diff --git a/result/www.mi.com22-04-25/www.mi.com.html b/result/www.mi.com22-04-25/www.mi.com.html deleted file mode 100644 index bcebc45e..00000000 --- a/result/www.mi.com22-04-25/www.mi.com.html +++ /dev/null @@ -1,624 +0,0 @@ - - - - - 小米商城 - Xiaomi 11 Ultra、Redmi K40 Pro、MIX FOLD,小米电视官方网站 - - - - - - - - - - - - - - - - - - - - - - -
    test

    生活电器

    • - 扫地机 -
    • - 空净 -
    • - 清洁 -
    • - 风扇 -
    test

    厨房电器

    • - 净水器 -
    • - 烟灶 -
    • - 电饭煲 -
    • - 微蒸烤 -

    智能家居

    • - 小爱音箱 -
    • - 门锁 -
    • - 路由器 -
    • - 智能设备 -

    运动出行

    • - 平衡车/滑板车 -
    • - 运动健身 -
    • - 箱包配饰 -
    • - 出行工具 -
    test

    日用百货

    • - 个护健康 -
    • - 电源/线材 -
    • - 儿童用品 -
    • - 家居床品 -
    - - - - - - - \ No newline at end of file diff --git a/result/www.mi.com22-04-25/www.mi.com.png b/result/www.mi.com22-04-25/www.mi.com.png deleted file mode 100644 index c4c46a65..00000000 Binary files a/result/www.mi.com22-04-25/www.mi.com.png and /dev/null differ diff --git a/result/www.piaoliang.com22-04-25/chain.txt b/result/www.piaoliang.com22-04-25/chain.txt deleted file mode 100644 index ae3847d1..00000000 --- a/result/www.piaoliang.com22-04-25/chain.txt +++ /dev/null @@ -1,5 +0,0 @@ -['https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/latest/default/rms.js?v=20220425', 'https://webresource.c-ctrip.com/code/ubt/_bfa.min.js?v=20223_25.js'] -['https://webresource.c-ctrip.com/ResUnionOnline/R1/common/marinRedirect.js?v=20220425', 'https://webresource.c-ctrip.com/code/ubt/_bfa.min.js?v=20223_25.js'] -['https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/d.min.d7a9ee87.js', 'https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/latest/default/rms.js?v=20220425', 'https://webresource.c-ctrip.com/code/ubt/_bfa.min.js?v=20223_25.js'] -['https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/d.min.d7a9ee87.js', 'https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/latest/default/rms.js?v=20220425', 'https://webresource.c-ctrip.com/code/ubt/_bfa.min.js?v=20223_25.js'] -['https://m.ctrip.com/restapi/soa2/18088/getAppConfig.json', 'https://webresource.c-ctrip.com/code/ubt/_bfa.min.js?v=20223_25.js'] diff --git a/result/www.piaoliang.com22-04-25/component b/result/www.piaoliang.com22-04-25/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/www.piaoliang.com22-04-25/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/www.piaoliang.com22-04-25/header b/result/www.piaoliang.com22-04-25/header deleted file mode 100644 index 1e56bc58..00000000 --- a/result/www.piaoliang.com22-04-25/header +++ /dev/null @@ -1 +0,0 @@ -{'Date': 'Mon, 25 Apr 2022 12:27:51 GMT', 'Content-Type': 'text/html; charset=utf-8', 'Content-Length': '74730', 'Connection': 'keep-alive', 'Cache-Control': 'private', 'Server': 'Microsoft-IIS/10.0', 'X-AspNet-Version': '4.0.30319', 'X-Powered-By': 'ASP.NET', 'X-Ser': 'BC167_dx-lt-yd-zhejiang-jinhua-5-cache-6, BC99_cnix-beijing-beijing-1-cache-1'} \ No newline at end of file diff --git a/result/www.piaoliang.com22-04-25/whois b/result/www.piaoliang.com22-04-25/whois deleted file mode 100644 index 6fdafbf6..00000000 --- a/result/www.piaoliang.com22-04-25/whois +++ /dev/null @@ -1,36 +0,0 @@ -{ - "domain_name": [ - "PIAOLIANG.COM", - "piaoliang.com" - ], - "registrar": "eName Technology Co.,Ltd.", - "whois_server": "whois.ename.com", - "referral_url": null, - "updated_date": [ - "2021-04-02 06:46:53", - "2021-04-02 14:46:53" - ], - "creation_date": "2001-07-02 13:37:02", - "expiration_date": "2025-07-02 13:37:01", - "name_servers": [ - "NS3.DNS.COM", - "NS4.DNS.COM", - "ns3.dns.com", - "ns4.dns.com" - ], - "status": [ - "clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited", - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "clientDeleteProhibited https://www.icann.org/epp#clientDeleteProhibited", - "clientTransferProhibited https://www.icann.org/epp#clientTransferProhibited" - ], - "emails": "abuse@ename.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "HuNan", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.piaoliang.com22-04-25/www.piaoliang.com.csv b/result/www.piaoliang.com22-04-25/www.piaoliang.com.csv deleted file mode 100644 index 4f60fd2e..00000000 --- a/result/www.piaoliang.com22-04-25/www.piaoliang.com.csv +++ /dev/null @@ -1,42 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://s9.cnzz.com/z_stat.php?id=1280004903&web_id=1280004903,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://www.piaoliang.com/content/js/base.js,0,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/content/js/jquery-1.9.1.min.js,0,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/content/js/category.js,0,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/content/js/common.js,0,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/,0,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/content/js/lab.js,0,1,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/CodeImage.aspx,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/assets/images/loadings.gif,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://webresource.c-ctrip.com/code/ubt/_bfa.min.js?v=20223_25.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns7.ctrip.com.', 'ns8.ctrip.com.', 'ns4.ctrip.com.', 'ns1.ctrip.com.', 'ns3.ctrip.com.', 'ns6.ctrip.com.', 'ns2.ctrip.com.', 'ns5.ctrip.com.']",False,False -https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/latest/default/rms.js?v=20220425,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns6.ctrip.com.', 'ns2.ctrip.com.', 'ns4.ctrip.com.', 'ns3.ctrip.com.', 'ns8.ctrip.com.', 'ns5.ctrip.com.', 'ns1.ctrip.com.', 'ns7.ctrip.com.']",False,False -https://webresource.c-ctrip.com/ResUnionOnline/R1/common/marinRedirect.js?v=20220425,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns6.ctrip.com.', 'ns7.ctrip.com.', 'ns4.ctrip.com.', 'ns2.ctrip.com.', 'ns5.ctrip.com.', 'ns1.ctrip.com.', 'ns3.ctrip.com.', 'ns8.ctrip.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2369_20210420181218350_1.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/13/13017_20210413140445045.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://c.cnzz.com/core.php?web_id=1280004903&t=z,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://webresource.c-ctrip.com/resaresonline/risk/ubtrms/d.min.d7a9ee87.js,1,1,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns3.ctrip.com.', 'ns7.ctrip.com.', 'ns2.ctrip.com.', 'ns5.ctrip.com.', 'ns8.ctrip.com.', 'ns4.ctrip.com.', 'ns1.ctrip.com.', 'ns6.ctrip.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/13/13019_20210413140446389.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/13/13020_20210413140446530.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2354_20210816154049337_1.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/129/129535_20210414155738552.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2333_20210816154654986_1.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/395/395983_20210926074618943.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/269/269100_20210707174511823.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/424/424505_20211014070118350.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/225/225180_20210608174224066.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/442/442813_20211027051309296.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/369/369727_20210913065957808.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2319_20210816153525096_1.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2337_20210816154256996_1.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2352_20210816154014680_1.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/395/395969_20210926073559836.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/269/269088_20210707173336288.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/424/424496_20211014065024710.png,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/369/369723_20210913065954324.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/ArticleCategories/412/0/2/2347_20210816154143479_1.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/483/483447_20220228035203780.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dns.com.', 'ns3.dns.com.']",False,False -https://www.piaoliang.com/Upload/Articles/412/0/483/483444_20220228034149438.jpg,0,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dns.com.', 'ns4.dns.com.']",False,False -https://m.ctrip.com/restapi/soa2/18088/getAppConfig.json,1,4,http://crl.digicert-cn.com/DigiCertCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/DigiCertCNRSACAG1.crl', 'http://crl4.digicert.com/DigiCertCNRSACAG1.crl']","['ns6.ctrip.com.', 'ns1.ctrip.com.', 'ns8.ctrip.com.', 'ns2.ctrip.com.', 'ns7.ctrip.com.', 'ns3.ctrip.com.', 'ns4.ctrip.com.', 'ns5.ctrip.com.']",False,False -https://cdid.c-ctrip.com/chloro-device/v2/d,1,4,http://crl.digicert-cn.com/DigiCertCNRSACAG1.crt,"",http://ocsp.dcocsp.cn,"['http://crl3.digicert.com/DigiCertCNRSACAG1.crl', 'http://crl4.digicert.com/DigiCertCNRSACAG1.crl']","['ns6.ctrip.com.', 'ns5.ctrip.com.', 'ns1.ctrip.com.', 'ns3.ctrip.com.', 'ns2.ctrip.com.', 'ns4.ctrip.com.', 'ns7.ctrip.com.', 'ns8.ctrip.com.']",False,False -https://cnzz.mmstat.com/9.gif?abc=1&rnd=847963923,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.aliyun.com.', 'ns5.aliyun.com.', 'ns3.aliyun.com.']",False,False -https://z12.cnzz.com/stat.htm?id=1280004903&r=&lg=zh-cn&ntime=none&cnzz_eid=1120363271-1650888372-&showp=2560x1440&p=https%3A%2F%2Fwww.piaoliang.com%2F&t=%E6%BC%82%E4%BA%AE%E5%A5%B3%E4%BA%BA%E7%BD%91-%E6%BC%82%E4%BA%AE%E5%A5%B3%E4%BA%BA%E7%BE%8E%E7%99%BD%E3%80%81%E5%87%8F%E8%82%A5%E3%80%81%E5%8C%96%E5%A6%86%E7%AC%AC%E4%B8%80%E9%97%A8%E6%88%B7&umuuid=18060b0f189598-0afa25c732d4a7-6e340874-384000-18060b0f18b129&h=1&rnd=298836942,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False diff --git a/result/www.piaoliang.com22-04-25/www.piaoliang.com.html b/result/www.piaoliang.com22-04-25/www.piaoliang.com.html deleted file mode 100644 index bf2bf2f8..00000000 --- a/result/www.piaoliang.com22-04-25/www.piaoliang.com.html +++ /dev/null @@ -1,1180 +0,0 @@ - - - - 漂亮女人网-漂亮女人美白、减肥、化妆第一门户 - - - - - - - - - - - -
    - - - - - - - - - - - - -
    -
    -
    -
    -
    - 用户注册 -
    - -
    -
    - - -
    -
    - - -
    -
    - - -
    -
    - - -
    -
    - - 点击换图 -
    - -
    -
    - - - - -
    -
    -
    -
    - 投稿取消 -
    -
    - - -
    -
    -
    - - - - - -
    文章分类: -
    -
    -
    -
    -
    - - 还能输入300字 -
    - -
    -
    -
    - -
    - -
    - -
    -
    - -
    - -
    - -
    -
    - -
    - - -
    -
    -
    -
    -
    - -
    -
    - -

    上传中....

    -
    -
    -
    -
    - - -
    - -
    -
    -
    -
    -
    - 全部 - - 时尚 - - 美容 - - 美体 - - 健康 - - 生活 - -
    -
    -
    - - -
    - 护肤产品 - 补水面霜哪个品牌好 补水面霜推荐 -
    -
    -
    -

    补水面霜哪个品牌好 补水面霜推荐

    -
    -
    -

    很多干性皮肤的人说用了很多水乳都感觉脸上还是干的,那是因为你没有用面霜,用了面霜你就会爱上的,补水能力真的好,下面给大家

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 恋爱 - 情侣的消费观不同怎么办 情侣消费观不同能磨合吗 -
    -
    -
    -

    情侣的消费观不同怎么办 情侣消费观不同能磨合吗

    -
    -
    -

    两个人不管是在一起谈恋爱还是结婚,其实消费观是很重要的一点,消费观相差太远的话,两人在一起是很容易产生争吵的,下面来看看

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 护肤心得 - 冬季巧选护唇品 捍卫水嫩双唇 -
    -
    -
    -

    冬季巧选护唇品 捍卫水嫩双唇

    -
    -
    -

    在冬天,比保湿面霜更为抢手的当属护唇产品了。市面上有滋润作用的护唇膏、护唇啫喱、护唇霜非常多,到底怎么选?怎么用?现在就

    -
    -
    - - - 3 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 抗衰美白 - 眼罩里面的蓝色液体干了怎么办 怎么用 -
    -
    -
    -

    眼罩里面的蓝色液体干了怎么办 怎么用

    -
    -
    -

    眼罩,这是非常实用的,在生活中经常看到有人在用。眼罩里面的蓝色液体干了怎么办?怎么用?眼罩里面的蓝色液体干了怎么办:有些

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 化妆技巧 - 简单美甲教程步骤图片 把波点穿上指尖 -
    -
    -
    -

    简单美甲教程步骤图片 把波点穿上指尖

    -
    -
    -

    今天小编为大家带来一款简单美甲教程步骤图片,就来学习波点简单美甲教程吧,你一定不会陌生,然而它的波点系列美衣却非常昂贵,

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 时尚单品 - t恤可以烫吗   多久洗一次合适 -
    -
    -
    -

    t恤可以烫吗 多久洗一次合适

    -
    -
    -

    t恤是很多人都有的衣服,也是比较宽松舒服的额,那么t恤可以烫吗?t恤多久洗一次合适?t恤是夏季象征的衣服,也是比较舒服的

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 流行彩妆 - 眼影哪个颜色好看 不挑人的蜜桃色眼影你画对了吗? -
    -
    -
    -

    眼影哪个颜色好看 不挑人的蜜桃色眼影你画对了吗?

    -
    -
    -

    眼影哪个颜色好看?对于很多人来说画好眼妆是少不了眼影的衬托的,如何画眼影好看?小编今天为你带来蜜桃色眼影的画法,不挑人的

    -
    -
    - - - 1 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 减肥方法 - 减脂肪的方法 给肠子洗澡 -
    -
    -
    -

    减脂肪的方法 给肠子洗澡

    -
    -
    -

    减肥是女性的必须的,总是感觉自己减肥减不下去,原来是脂肪没有减下去,怎样才能把脂肪减掉呢?一起来跟女性网来看看减脂肪的方

    -
    -
    - - - 1 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 饮食减肥 - 夏季自制4款清凉瘦身蔬果汁 解暑又燃脂 -
    -
    -
    -

    夏季自制4款清凉瘦身蔬果汁 解暑又燃脂

    -
    -
    -

    夏季瘦身减肥饮食相当重要,下面小编就要介绍给大家几个减肥蔬果汁,帮助大家有效控制饮品的热量,那么就来看看我们在减肥期间应

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 搭配技巧 - 老年人每天走多少步合适?走路怎么保护膝盖 -
    -
    -
    -

    老年人每天走多少步合适?走路怎么保护膝盖

    -
    -
    -

    俗话说,饭后百步走,活到九十九。这句老话反应了走路对于老年人的身体健康是非常有好处的。但是显然一百步对于健身来说是不够的

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 潮流服饰 - 银项链断了能不能接好 大部分可以维修 -
    -
    -
    -

    银项链断了能不能接好 大部分可以维修

    -
    -
    -

    银项链在佩戴的时候如果力气太大的话,其实是很容易断掉的,那么对于断掉的银项链我们扔掉又会很可惜,这个时候能不能修好呢?银

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 护肤产品 - 阿玛尼黑钥匙至臻奂颜精华乳怎么样?阿玛尼黑钥匙精华乳好用吗? -
    -
    -
    -

    阿玛尼黑钥匙至臻奂颜精华乳怎么样?阿玛尼黑钥匙精华乳好用吗?

    -
    -
    -

    阿玛尼黑钥匙系列是一款冻龄系列,可以有效的减轻肌肤的衰老,阿玛尼黑钥匙至臻奂颜精华乳是殿堂级的一款护肤品,用过你就会爱不

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 恋爱 - 男朋友突然对我特别好怎么回事 男朋友突然变了的原因 -
    -
    -
    -

    男朋友突然对我特别好怎么回事 男朋友突然变了的原因

    -
    -
    -

    在谈恋爱期间,如果平时比较冷淡的男朋友,突然变得特别贴心,很多女生应该都会起疑心的,男朋友突然对自己特别好的话肯定是有一

    -
    -
    - - - 1 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 护肤心得 - 手是女人的第二张脸 教你手部护理小窍门 -
    -
    -
    -

    手是女人的第二张脸 教你手部护理小窍门

    -
    -
    -

    都说手是女人的第二张脸,所以呵护我们的手,就像呵护我们的脸蛋一样重要。但是很多女性因为忙于工作和家务,常常忽略手部的保养

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 抗衰美白 - 封面故事芦荟巨补水面膜好用吗  价格多少钱 -
    -
    -
    -

    封面故事芦荟巨补水面膜好用吗 价格多少钱

    -
    -
    -

    封面故事旗下的面膜也是有很多种的,也是少数人比较了解的,那封面故事芦荟巨补水面膜好用吗?价格多少钱?封面故事芦荟巨补水面

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 化妆技巧 - 冬天什么指甲颜色好看 红色美甲图片 -
    -
    -
    -

    冬天什么指甲颜色好看 红色美甲图片

    -
    -
    -

    冬天悄悄的走了,春季不知不自觉地到来了。在这个季节交接棒的时候,红色的指甲是最适合的选择了。不论是迎来初春还是告别冬末,

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 时尚单品 - t恤怎么叠成小圆筒    分男女款吗 -
    -
    -
    -

    t恤怎么叠成小圆筒 分男女款吗

    -
    -
    -

    t恤是很多人夏季都会穿的衣服,并且也是夏季比较方便携带的,那t恤怎么叠成小圆筒?t恤分男女款吗?t恤是比较节省空间的额,

    -
    -
    - - - 1 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 流行彩妆 - 蝶芙兰素颜霜多少钱 蝶芙兰约会素颜霜价格 -
    -
    -
    -

    蝶芙兰素颜霜多少钱 蝶芙兰约会素颜霜价格

    -
    -
    -

    蝶芙兰约会素颜霜在网上十分的火,虽然说这个品牌比较小众,但这款产品用的人可不少,擦在脸上十分自然,下面一起来了解下这款素

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 减肥方法 - 有氧搏击操高效率燃脂 -
    -
    -
    -

    有氧搏击操高效率燃脂

    -
    -
    -

    导读:有氧搏击操第一步双手握拳,拳头举在肩部位置。双脚自然分开站立,目视前方。将右脚伸直向右后方伸直,同时右手向左上方打

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - - -
    - 饮食减肥 - 天气太热不想动?8种食物让你边吃边瘦 -
    -
    -
    -

    天气太热不想动?8种食物让你边吃边瘦

    -
    -
    -

    天气越来越热了,在这个时候运动减肥就会有出汗等等令人不舒服的症状,加上端午佳节,当然想休闲一番,可是减肥又是一件持之以恒

    -
    -
    - - - 2 - 人都在看 - - 2022-04-25 -
    -
    -
    - -
    - -
    -
    -
    - - - - - -
    -
    -
    标签
    -
    -
      - -
    -
    -
    - - -
    - - - -
    - - -
    -
    -
    - - - - - -
    - - - - - - \ No newline at end of file diff --git a/result/www.piaoliang.com22-04-25/www.piaoliang.com.png b/result/www.piaoliang.com22-04-25/www.piaoliang.com.png deleted file mode 100644 index 66280dfb..00000000 Binary files a/result/www.piaoliang.com22-04-25/www.piaoliang.com.png and /dev/null differ diff --git a/result/www.youku.com22-04-22/chain.txt b/result/www.youku.com22-04-22/chain.txt deleted file mode 100644 index 287568ad..00000000 --- a/result/www.youku.com22-04-22/chain.txt +++ /dev/null @@ -1,9 +0,0 @@ -['https://ynuf.aliapp.org/w/wu.json', 'https://g.alicdn.com/AWSC/WebUMID/1.88.4/um.js'] -['https://g.alicdn.com/fsp/tracker-patch/index.js?1650523722956', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://account.youku.com/getConfig.json?pid=8fb8456183734a86bfc1c15a1c761cdf&bizType=login&callback=&jsonpCallback=__jsonp0', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://aeu.alicdn.com/ctl/ctl.js', 'https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://aeu.alicdn.com/ctl/ctl.js', 'https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://ynuf.aliapp.org/service/um.json', 'https://g.alicdn.com/AWSC/WebUMID/1.88.4/um.js'] -['https://g.alicdn.com/static-es6/login/pc/login/css/main_70d8d4cb.css', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://fourier.taobao.com/ts?url=&token=BPv7j_8IHWIH2CHWI6SMs5ZPitllUA9S7i4C-u241_oRTBsudSCfohkaYO0C92dK&cna=SOznGrmD6FECAcorlL1oxri4&ext=1', 'https://g.alicdn.com/secdev/sufei_data/3.9.9/index.js'] diff --git a/result/www.youku.com22-04-22/component b/result/www.youku.com22-04-22/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/www.youku.com22-04-22/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/www.youku.com22-04-22/header b/result/www.youku.com22-04-22/header deleted file mode 100644 index bc57f64b..00000000 --- a/result/www.youku.com22-04-22/header +++ /dev/null @@ -1 +0,0 @@ -{'Date': 'Fri, 22 Apr 2022 02:23:15 GMT', 'Content-Type': 'text/html; charset=UTF-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'vary': 'Accept-Encoding', 'x-server-id': 'a46426e25423c4a14dc4da128ebb4951551d017ad5158cb2936ce8e67d7838ddcb5aef15659983dc', 'set-cookie': 'csrfToken=nz9XLZL3oVf2aa8NuSTutY6k; path=/', 'x-frame-options': 'SAMEORIGIN', 'x-xss-protection': '1; mode=block', 'x-content-type-options': 'nosniff', 'x-download-options': 'noopen', 'strict-transport-security': 'max-age=31536000, max-age=31536000', 'x-readtime': '205', 'content-encoding': 'gzip', 'req-cost-time': '220', 'req-arrive-time': '1650594195738', 'resp-start-time': '1650594195959', 'x-envoy-upstream-service-time': '220', 'Server': 'Tengine/Aserver', 'EagleEye-TraceId': '213dec2816505941957335409e5c7b, 213dec2816505941957335409e5c7b', 'Timing-Allow-Origin': '*', 's-rt': '226'} \ No newline at end of file diff --git a/result/www.youku.com22-04-22/whois b/result/www.youku.com22-04-22/whois deleted file mode 100644 index ccecd365..00000000 --- a/result/www.youku.com22-04-22/whois +++ /dev/null @@ -1,33 +0,0 @@ -{ - "domain_name": [ - "YOUKU.COM", - "youku.com" - ], - "registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.", - "whois_server": "grs-whois.hichina.com", - "referral_url": null, - "updated_date": "2021-10-18 18:28:25", - "creation_date": "2003-12-22 09:57:45", - "expiration_date": "2022-12-22 09:57:45", - "name_servers": [ - "DNS1.YOUKU.COM", - "DNS2.YOUKU.COM", - "DNS3.YOUKU.COM", - "DNS4.YOUKU.COM" - ], - "status": [ - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", - "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", - "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited" - ], - "emails": "DomainAbuse@service.aliyun.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "bei jing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.youku.com22-04-22/www.youku.com.csv b/result/www.youku.com22-04-22/www.youku.com.csv deleted file mode 100644 index a1e47125..00000000 --- a/result/www.youku.com22-04-22/www.youku.com.csv +++ /dev/null @@ -1,127 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://www.youku.com/,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -https://g.alicdn.com/mtb/lib-promise/3.1.3/polyfillB.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/AWSC/awsc.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/activity-components/1.0.12/static/js/live-window.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youkuvip_fe/vip-public-assets/pay/pay.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/scout/probe_cdn/index.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://www.youku.com/pwaServiceWorker.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://g.alicdn.com/mtb/lib-mtop/2.4.2/mtop.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/mm/yksdk/0.2.0/pagesdk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/WebUMID/1.88.4/um.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/alilog/mlog/aplus_v2.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/runtime~app.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://www.youku.com/pwaSetting.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.']",False,False -https://g.alicdn.com/AWSC/uab/1.140.0/collina.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523718433&sign=48e228f88e4472e9e68ac7abbd1fc4c5&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow1&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.']",False,False -https://pc.pay.youku.com/api/v?callback=callback,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.']",False,False -https://ynuf.aliapp.org/w/wu.json,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.aliyun.com.', 'ns3.aliyun.com.', 'ns5.aliyun.com.']",False,False -https://log.mmstat.com/eg.js?t=1650523720722,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.aliyun.com.', 'ns4.aliyun.com.', 'ns5.aliyun.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523719804&sign=1cfdb6055ea6cada862fbca29414acf7&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow3&data=%7B%22bizType%22%3A%22CommonActivity.getServerTimeCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/vendor.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523719614&sign=f6dbbcbdf07ffb6355cb8c066e87c520&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow2&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.']",False,False -https://w.cnzz.com/c.php?id=1277956573&async=1,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/extra.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/app.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youkuvip_fe/vip-pay-assets/1.0.4/sdk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.4.2&appKey=24679788&t=1650523721659&sign=cf9ea1bfe9af55c396ce8cb35652c0e6&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523721613&type=jsonp&callback=mtopjsonp16505237216131&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.']",False,False -https://g.alicdn.com/alilog/s/8.15.21/plugin/aplus_ac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/alilog/s/8.15.21/plugin/aplus_ae.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://sealine.youku.com/yk/html?site=1&aw=w&bt=pc&tm=1650523721685&p=1503484520&callback=adpagesdkc2t1650523721685,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.playlog.open.get/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722161&sign=a547c07a1b4e4a9c5fc633cbe72d02ed&api=mtop.youku.playlog.open.get&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=headerRecord&callback=mtopjsonpheaderRecord5&data=%7B%22nlid%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%2C%22uid%22%3A%22%22%2C%22pageLength%22%3A100%2C%22timestamp%22%3A%221650523722161%22%2C%22appKey%22%3A%22qPbb2hfIYugHjMaj%22%2C%22appName%22%3A%22pc%22%2C%22hwClass%22%3A1%2C%22deviceName%22%3A%22web%22%2C%22isPlayController%22%3A1%2C%22ccode%22%3A%220502%22%2C%22clientDrmAbility%22%3A3%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.']",False,False -https://sealine.youku.com/yk/html?site=1&aw=w&bt=pc&tm=1650523721593&p=827&callback=adpagesdkc0t1650523721593,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -https://sealine.youku.com/yk/html?site=1&aw=w&bt=pc&tm=1650523721649&p=407&callback=adpagesdkc1t1650523721649,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523721676&sign=5d0438cbd63372ecc281492f1dce72ee&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow1&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722088&sign=4c6863b4ab22d5a9c55b7101cea57ba7&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=pc_pages_act_window&callback=mtopjsonppc_pages_act_window2&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22%E9%9C%B8%E5%B1%8F%E7%BA%BF%E4%B8%8A%E9%85%8D%E7%BD%AE%5C%22%2C%5C%22configId%5C%22%3A%5C%229c4ad307f87b44c5a91dcd6caef76340%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722373&sign=2371ba9267d7b22247a521ec654d23c3&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=pc_pages_act_window_time1650523722368&callback=mtopjsonppc_pages_act_window_time16505237223688&data=%7B%22bizType%22%3A%22CommonActivity.getServerTimeCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22%E9%9C%B8%E5%B1%8F%E7%BA%BF%E4%B8%8A%E9%85%8D%E7%BD%AE%5C%22%2C%5C%22configId%5C%22%3A%5C%229c4ad307f87b44c5a91dcd6caef76340%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722088&sign=1eb98fcbb3612add217d28c5e3e0d3f0&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523721883&type=jsonp&callback=mtopjsonp16505237218833&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722518&sign=6121061abe6864b72488591251ff171f&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722517&type=jsonp&callback=mtopjsonp16505237225179&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722322&sign=1f2415edc51e288b85c0971cc4f3e2e6&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722289&type=jsonp&callback=mtopjsonp16505237222896&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722089&sign=ff246bbda875ced5fb4fbf5e1760cd59&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow4&data=%7B%22bizType%22%3A%22CommonActivity.getServerTimeCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722373&sign=6e14274930a89caa883b7f3202596e5c&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722353&type=jsonp&callback=mtopjsonp16505237223537&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722619&sign=c1ecb80d0d632d513525694599ef46af&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722600&type=jsonp&callback=mtopjsonp165052372260010&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.']",False,False -https://g.alicdn.com/static-es6/login/public/load.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722639&sign=72dffa1aa17b28a034a0c472e56fadf6&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722639&type=jsonp&callback=mtopjsonp165052372263911&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://g.alicdn.com/fsp/tracker-patch/index.js?1650523722956,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722757&sign=4e33cd5906856f113f6f310ca4783955&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722757&type=jsonp&callback=mtopjsonp165052372275712&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://account.youku.com/getConfig.json?pid=8fb8456183734a86bfc1c15a1c761cdf&bizType=login&callback=&jsonpCallback=__jsonp0,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -https://g.alicdn.com/secdev/entry/index.js?t=229239,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/sd/baxia-entry/index.js?t=229239,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/sd/baxia/2.0.62/baxiaCommon.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/secdev/sufei_data/3.9.9/index.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://aeu.alicdn.com/ctl/ctl.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://g.alicdn.com/??xlly/spl/rp.js,secdev/nsv/1.0.78/ns_e_88_3_f.js?v=1",1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/et/1.62.1/et_f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/css/extra.chunk.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/css/app.chunk.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/live-platform/pc-com-sport-card/0.0.17/index/index.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/live-platform/pc-com-agenda/0.0.9/index/index.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/activity-components/1.0.12/static/css/live-window.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://fourier.taobao.com/rp?ext=51&data=jm_SOznGrmD6FECAcorlL1oxri4&random=37627677275290505&href=https%3A%2F%2Fwww.youku.com%2F&protocol=https:,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.taobao.com.', 'ns5.taobao.com.', 'ns7.taobao.com.', 'ns6.taobao.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN018RR8PM1D2PINvzBRW_!!6000000000158-2-tps-60-60.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/tfs/TB1oetPkAL0gK0jSZFAXXcA9pXa-279-279.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i4/O1CN01fxqCXY26E8F8ZpBUU_!!6000000007629-2-tps-40-40.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN01mTfoVo1FchuLyhHjD_!!6000000000508-2-tps-44-30.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN01rFI7mg1d6EbNH5q6m_!!6000000003686-2-tps-72-72.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN01WpOLdY1DG97PbESGP_!!6000000000188-2-tps-80-80.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/tfs/TB1UOb1vKT2gK0jSZFvXXXnFXXa-117-51.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-07-23/c1796aca82792deb55623ffa0b0a32f8.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-08-04/b4be6786b89ccadaef1b8666beca892c.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-08-04/85c2d6ffb6b96a82c5218c5843d7e6c2.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-20/5d2c26b413870c75af22483dad82f051.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-20/d56c378e26f28f4934d4a2b99aebedaf.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i1/O1CN01sJWmFE21rubpwg0aI_!!6000000007039-2-tps-120-120.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://liangcang-material.alicdn.com/prod/upload/ce2c399ad7d5428d909df5f749339979.gif,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://m.ykimg.com/05840000625A55FB13EB66114BE0A650?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.']",False,False -"https://m.ykimg.com/05840000624D438113EB660A377E5E9D?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -"https://m.ykimg.com/05840000624527D52037DD092D0AED10?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -"https://m.ykimg.com/052700006244198F13F7FF0998C965EB?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.']",False,False -"https://m.ykimg.com/05840000625CF5291FD8520C184F8EA0?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-20/d41eeb615696970ff38200d6252c2947.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/tfs/TB1lPFxh4D1gK0jSZFyXXciOVXa-12-12.svg,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/d083b63d9a734d3da187bb2fab9ffeaf.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://hudong.alicdn.com/api/data/v2/58e0c191c91c4fb88ef57dc13737c493.js?t=1649232678234,1,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://hudong.alicdn.com/api/data/v2/e53c59907f64488f8c82e53c96d7ddf9.js?t=1636091135468,1,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://ynuf.aliapp.org/service/um.json,1,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns5.aliyun.com.', 'ns4.aliyun.com.', 'ns3.aliyun.com.']",False,False -https://www.youku.com/log/screenlog?screenwidth=2560,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.']",False,False -https://log.mmstat.com/yt.gif?logtype=1&title=%E4%BC%98%E9%85%B7%20-%20%E4%BD%A0%E7%9A%84%E7%83%AD%E7%88%B1%20%E6%AD%A3%E5%9C%A8%E7%83%AD%E6%92%AD&pre=&scr=2560x1440&_p_url=https%3A%2F%2Fwww.youku.com%2F&cna=SOznGrmD6FECAcorlL1oxri4&spm-cnt=a2ha1.14919748_WEBHOME_GRAY.0.0.31b45f44QrdGEy&category=&uidaplus=&aplus&yunid=&&trid=213dec6516505237175492599e65fc&asid=AQAAAABF/mBi/HqpPwAAAACdqedF0z010w==&p=1&o=mac&b=chrome69&s=2560x1440&w=webkit&ism=mac&cache=9e2c39d&lver=8.15.21&jsver=aplus_o&pver=0.7.11&mansndlog=1&l_v=3&p_v=3&dmid=1&pc_i=1650523720896xTM&pu_i=&extd=yft%3D1650523720898%26ysid%3D1650523720898Fhs%26pvid%3D1650523720898VRiRxB%26rpvid%3D%26ycid%3D%26rycid%3D%26ypstp%3D1%26yspstp%3D1%26yscnt%3D1%26ycms%3D%26rcms%3D%26unc%3D0%26frame%3D0%26ikuins%3D0%26dev%3DMacIntel%26mtype%3Doth%26from%3D%26abt%3Doth%26cpid%3D&log_ver=v2&experiment_bucket_id=&tag=0&stag=2&lstag=0&_slog=0,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.aliyun.com.', 'ns4.aliyun.com.', 'ns5.aliyun.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/e2ab1cf65bd64f9f8eb5c3edea0156de.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/9ec492bd641d43bf930a2076b57904c9.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/7e87fb8c53944b6ababe58254e3c0e4c.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/0ce45f59744b41a8800a2cc995dfcafc.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/66677acd172144ba8a7d768fd9946130.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-18/7dcdd489663f94ee5bf8b439a4c877b0.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/8e065b5dab1b4ba397fb576333b34845.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/e3280797befa48ddad4081c78f306b3d.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/660eb22d8bea4097b227da4669bbf8e6.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/79c188420a904c21a8bd616402422e70.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/8a495277d92041a19b706c9dcc9c796f.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/847bd4eceef14bb582a7deb5fec2870f.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/6f96e0dba6df4491a70da45c116d7068.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/f3826b24a74d4ddb9161df45615e0171.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/8a100bf11c88431893c86413c359fa4f.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/7a51edc0b927497584f5a0a5fce94d03.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/7d8cac23520a4b27abd9fea1a8962f6b.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/162a8f4b984f44fd9bcf4e373964953e.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/4a6d903e2db541dfbfea031990e56e26.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/9401a731677c4f46b9bb92b2f2673acb.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/64cbc217b1b24e33bd61f263e2ffafc6.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/cdad167b8ce84ca3be5cfe7bf5c635e1.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/0ebc213721264524a327b31bb0d0e300.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/f40f135b6fd3486d8ef9d3bc1d2637ba.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/20e076a92ef04186bdb0f61bcf24baa6.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/a9e1da00584947afb9ea396ab3153696.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/c52f3247530846c49e0fc8d6f53d8794.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/e411d599f8f94d3a93791289f20451fa.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.vip.xtop.member.profile.get/1.0/?jsv=2.4.2&appKey=24679788&t=1650523721884&sign=145837b83d22d0721983200ea41e9cd1&api=mtop.youku.vip.xtop.member.profile.get&v=1.0&type=originaljson&dataType=json&timeout=20000&data=%7B%22req%22%3A%22%7B%5C%22deviceType%5C%22%3A%5C%22pc%5C%22%2C%5C%22show%5C%22%3A1%7D%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -https://m.ykimg.com/material/0A03/A1/202204/0419/3078212/1650361463408/0D010000625E89744661702360433539.jpg,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.xmop.strategyfacadeservice.getcontent/1.0/?jsv=2.4.2&appKey=24679788&t=1650523721885&sign=e1aac77ea16f4dbc3238a9ec30375812&api=mtop.youku.xmop.strategyfacadeservice.getcontent&type=originaljson&v=1.0&dataType=json&data=%7B%22touch_point_code%22%3A%22nucenter_page_pc%22%2C%22device_id%22%3A%221%22%2C%22cna%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.ykrec.recommendservice.recommend/1.0/?jsv=2.4.2&appKey=24679788&t=1650523721884&sign=fbbfed2666d14efb413c0b76b27d2614&api=mtop.ykrec.RecommendService.recommend&type=originaljson&v=1.0&dataType=json&jsonpIncPrefix=headerSearch&data=%7B%22appid%22%3A%2214177%22%2C%22mtopParams%22%3A%22%7B%5C%22count%5C%22%3A%5C%221%5C%22%2C%5C%22channel%5C%22%3A%5C%22PC%5C%22%2C%5C%22fr%5C%22%3A%5C%22pc%5C%22%2C%5C%22app_source%5C%22%3A%5C%22main_page%5C%22%2C%5C%22x_utdid%5C%22%3A%5C%22SOznGrmD6FECAcorlL1oxri4%5C%22%7D%22%2C%22utdid%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.']",False,False -https://img.alicdn.com/imgextra/i3/O1CN012VJ8YA22JOP4XNnCr_!!6000000007099-2-tps-20-20.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.soku.yksearch/2.0/?jsv=2.5.1&appKey=23774304&t=1650523722087&sign=6d592e7c5079065c6acd6860f8be0a50&api=mtop.youku.soku.yksearch&type=originaljson&v=2.0&ecode=1&dataType=json&data=%7B%22pg%22%3A%221%22%2C%22pz%22%3A%2210%22%2C%22appScene%22%3A%22default_page%22%2C%22appCaller%22%3A%22youku-search-sdk%22%2C%22searchFrom%22%3A%22home%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.']",False,False -https://ems.youku.com/imp?e=DGCXFGWcHbNCruf_8If6YTZqbkC6tHMB48J0mrFvSyAy77hL98ynamFwIsfNZ0-mWQHPMfIT66eCIfHuTwEJsRPm1IngpqAscyTRxqst1Hi5-i7upSpS7RlWb2hKnIKTpFsWJUd9SjVEXiuCl9jH0PZv-gW2c99vtcJeH1PiQEwQjtQH5L-EqdjlZGZjceG_KfWNQG_uhBns5qP-jExWl1M44ZoZU9oZskNVU_M-etBtQCoVe_NehWuARGwYF3yMrCWGkDc9Zfrm3V1gtDsmkcGLtloc0eqFNDRrX6DkBGDLmVPZJsL8irgnnl7IZRvf0FdAAyrzsmmjzQK82ry8N6gxmCwLDrCqsS_vbHznqULmdPxL1OsakhboZ6HcsUWMguVPdODAWSTT_tXJVrL5neUr4EB62mIQFNz-Upq5iiU0Zmy-D_JC-lcLN898lG4u3pgTyV5E_UIeDRMDCMPJs1FPaAtICdrRUKgRTLuPBPJbmBCLn2m2zLieNqPOCNNVKNRRr-oblTTi9YIYo49e_5GtoRCWr5P9i_e3JNsF252kC7Exusdz83kJCBX5EWbaf_iW1OYn-YuT0jNDqbk9mLB6yO1B846268mcHDlqaAXEZKSsiBRnJgb8xOBD_BuhmGeEky-I_gLP6DKyhOBBSngCC86IdtGB9YdDYoHsPUQHS7GFO_rzybXvlsze-CRh4s5ppINJITgkM_k_HR4vHJXO5gdq1yZ1OWB0Ux31VjkM2b9NXKBXSlprxKU4WtqzIrJMIBQhvaEl9EPW074SgKGlBZeAFJ9TtlXJ-SVqU4XlCFDX4Bi5I-OYeo1-dzDVTL4NVHUlEW8ih2V20zfIYn6NFWwHyp2H1Yf8LSLGf1HiPlBXWQQ0aRc9fFbcm-xpsG6DVs6AZRtBNFtELV_cOZWS2kyZhGCkvHahW4LrgP_TW-y76v_IH3E4zxrH4Q0QVxDEVPrlLsKbR6aUzeZVSAW-NpeyLl6OUd4eF_RGx9EBbnQbNS14-ajrd7M3pA4-wVo2vXQPy5741odC3Zw2OWZJukcD3aqPazH0JGXrmqzwcvv8TumC2xHrQTgVNuk--ajhFWZj-KN9XDVfj4ZU2Kok_JviYuiQe9-b4PE1GTY13zQh8VLHtgev0lhS7UPmJmezCcd0VEouC8zENNLwTld-iRPJ0HBcK374yuu4m6L9jcczkf8tBhiz2IqtBHnv7fPOvC-eR-DR2OxKV_Q4o5JgvpyEOV3oSwgi8NLSSOc1BdJatZDP31pitc7SdZ13g5zGx7hhWC5fwxwZxco2YDFbXNOCOJVcZjqdtShKQwNvzeGk6xkRfWNjWf0HRF_oWCRnVg1-uNSkou8TXP1YXQ-1ecco-nPIi-0rZ6Pgc-yyMXiv5Wt3blV1BT_faXvcUOgSmpY5izxnhDFW1Itu4faeNECDAJjtNRfnscUmhxSUjXb4fFtvlKB6sHd4WtnkFDYZGJ_J1PZ6T8ZuhTwwUIUKeFMrJ-LYuqf1nG3fQCV8t4qsHIkTRyhvqZfO88JXDOxss3BIfmaYuhSSNTYbd5ZJHBko3NNfsJAjmLcCcsERZluSdLnVNurFw0CAXWZnxG1kpNwARel_JqhkwfYSECSxDcHgJS7FhjBcfF3YQOq5tIdzBxsC6Th-xBFhZVEi_J5foNhEGYF4aECItWsNyZSXNWFRQfXzKSdDqLrw2hkIToC2gMHfqE4R_0MWDN3gx9ibhDwgT8kl1jFTxc35DxrHlGwWVsKU0abUeR29TwsxMZzhj8suaXXUUTIK7jjvPAg1VyqGoDNHndAt6IfpeXi-gOgUZeys0N1vNPaZdx1fzMXgvhyg_cxhdCzAreNtz_zM_O_RGOPl5cSnQw2JvqlyWca1adWLPm_XX1j0UKYWq8m-mHEivmsUGmYAjHzF1Jv46hNgELcwB83tFdruTFZ3Po67pX4Pylaxd0nbKd__HSKnNqlghvWKuI_TS_qwLkwJsXvFF_yizgJ7KcZNf60Lfnkk5i26t2Zkt-8ngwik4NKgrsaKBLmuhaJ7u8T4mbQ1oh3HLncqiJMwJ6TGstLv56FvmPF63TIoZXpHLwoJz9kadc5NM-kVK0-S73GPqMjHDejixpLv7AbwDrpr4GyHPu4GRS9H9NqkeiQGFRJnViFCPZFAbKbbwjSVEd7bZ0Qo4X10OepisMZAnc96dOggnmon5d4AIeOnkrooaftosoIaI3vYPifYL6XxqVf3_pVWCu3iR8ir63XbEykhNM6-_F5j0_beP_z-5AuUQfpJNUdmxMhZLe3M-XVUAG3OXMUjTyIh4-OkH2pb0lAnU00zEJ6dZpuS0Fb2uhF9eyjccoFrdnIuM5j032X1ZI3txohHMdiGjECauOVtIjIUmWeUSfgFp2AuE9IzCkK8g5eRqeh_ergZRuRAjn_TIGR-D32O-88bAhJ5OMaFQrlhCAPj7nKuh7Lypizprau6AScEpkijur8E_FMKFL6TnX61xzAbI2-dBz5TjZuYkuDvbXc4PMg5meEwTnH2e4lUoSrN_-Px1EQi8R14ynZjMoGGOG5HB5eilig3666L6HnXllqZP0QX1suVrXtrYhm_Ou0Q6hvjBWJR7hFQNG9c3OsvsdlRCGmFBdAuvEPw9FH3dXUkW2KuJJQ2IEGMs3BPckBi4L0ffquHxChThKWV5ASHSuQMXkw_bCjc0R9gCqoHXRWzSy80rFeSgyrSS5sO889JsCE10QHKBWLGihmUeszY4T5aJjyTB8t399a2XdVPVqA6RrKTijB-69r3VT2TTC2IA1fJe29kZI9Guhv1e4q_cChi2cmhNQKmBA3a06J3PcjHh6xMEhdDhlqCxWu2Tivb8JeyCeReW20a1mj_xjDX&pid=60881&tm=1650523721&htch=__htch__,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.']",False,False -https://fourier.taobao.com/ts?url=&token=BPv7j_8IHWIH2CHWI6SMs5ZPitllUA9S7i4C-u241_oRTBsudSCfohkaYO0C92dK&cna=SOznGrmD6FECAcorlL1oxri4&ext=1,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns6.taobao.com.', 'ns4.taobao.com.', 'ns5.taobao.com.', 'ns7.taobao.com.']",False,False -https://ykimg.alicdn.com/product/image/2021-12-24/998af6140172c95ece57478830ce7c63.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/static-es6/login/pc/login/css/main_70d8d4cb.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.xspace.maincms.position.query/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722322&sign=6ca75c686ff249cc160b2f50d478cd95&api=mtop.youku.xspace.maincms.position.query&type=originaljson&v=1.0&dataType=json&data=%7B%22rootPath%22%3A%22product-main-cms%22%2C%22positionTag%22%3A%22top-navigation%22%2C%22terminal%22%3A%22pcweb%22%2C%22systemInfo%22%3A%22%7B%5C%22device%5C%22%3A%5C%22pcweb%5C%22%2C%5C%22os%5C%22%3A%5C%22pcweb%5C%22%2C%5C%22ver%5C%22%3A%5C%221.0.0.0%5C%22%2C%5C%22userAgent%5C%22%3A%5C%22%5C%22%2C%5C%22guid%5C%22%3A%5C%221590141704165YXe%5C%22%2C%5C%22appPackageKey%5C%22%3A%5C%22com.youku.pcweb%5C%22%2C%5C%22young%5C%22%3A0%2C%5C%22brand%5C%22%3A%5C%22%5C%22%2C%5C%22network%5C%22%3A%5C%22%5C%22%2C%5C%22ouid%5C%22%3A%5C%22%5C%22%2C%5C%22idfa%5C%22%3A%5C%22%5C%22%2C%5C%22scale%5C%22%3A%5C%22%5C%22%2C%5C%22operator%5C%22%3A%5C%22%5C%22%2C%5C%22resolution%5C%22%3A%5C%22%5C%22%2C%5C%22pid%5C%22%3A%5C%22%5C%22%2C%5C%22childGender%5C%22%3A0%2C%5C%22userId%5C%22%3A0%2C%5C%22utdid%5C%22%3A%5C%22SOznGrmD6FECAcorlL1oxri4%5C%22%7D%22%2C%22debug%22%3Afalse%2C%22utdid%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%2C%22ip%22%3A%22%22%2C%22businessContext%22%3A%22%22%2C%22mockType%22%3A0%2C%22userId%22%3A0%2C%22ttid%22%3A%22%22%2C%22isVip%22%3A0%2C%22gray%22%3Afalse%2C%22businessKey%22%3A%22main_cms%22%2C%22mock%22%3Afalse%2C%22class%22%3A%22com.youku.xspace.api.client.dto.index.IndexPositionParams%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False diff --git a/result/www.youku.com22-04-22/www.youku.com.html b/result/www.youku.com22-04-22/www.youku.com.html deleted file mode 100644 index 62578ddd..00000000 --- a/result/www.youku.com22-04-22/www.youku.com.html +++ /dev/null @@ -1,75 +0,0 @@ -优酷 - 你的热爱 正在热播 -

    正在热播

    忍者VS海贼!向怒涛岛出发
    羊狼携手球场高燃追梦!
    周深联手民谣王子和声太绝了
    美丽狐妖虐恋书生
    欢迎英雄凯旋归来!
    会员免费看!章宇保家卫国
    霸少宠妻天花板!太苏了

    猜你在追

    特惠购

    首月仅6元开通会员

    畅看热门剧集

    特惠开通
    沈腾马丽合体来袭
    林峯力破九大奇案
    王牌家族温情回归
    戏骨云集再现盛世
    张译章宇保家卫国
    初遇夫妇十世痴恋
    天才草根开挂逆袭
    云禾变“药人”遭仙姬折磨
    军魂燃!兵王杨洋热血成长
    顶配!戏骨云集共创大明盛世
    女编剧逆袭追爱男明星
    袁泉优雅回应第三者挑衅
    女霸总金晨恋上狼狗王子异
    钟汉良失忆与小冉重新恋爱
    “最穷”富二代 拼命不拼爹
    热播!林峯惨成“通缉犯”
    贫穷小萝莉遇上多金外星霸总
    小三坐牢!明宝杨争终于离婚
    谢广坤口出狂言!媳妇拦不住
    小敏爱与陪伴战胜一切
    广告
    \ No newline at end of file diff --git a/result/www.youku.com22-04-22/www.youku.com.png b/result/www.youku.com22-04-22/www.youku.com.png deleted file mode 100644 index 6d4871e8..00000000 Binary files a/result/www.youku.com22-04-22/www.youku.com.png and /dev/null differ diff --git a/result/www.youku.com22-04-24/chain.txt b/result/www.youku.com22-04-24/chain.txt deleted file mode 100644 index 287568ad..00000000 --- a/result/www.youku.com22-04-24/chain.txt +++ /dev/null @@ -1,9 +0,0 @@ -['https://ynuf.aliapp.org/w/wu.json', 'https://g.alicdn.com/AWSC/WebUMID/1.88.4/um.js'] -['https://g.alicdn.com/fsp/tracker-patch/index.js?1650523722956', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://account.youku.com/getConfig.json?pid=8fb8456183734a86bfc1c15a1c761cdf&bizType=login&callback=&jsonpCallback=__jsonp0', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://aeu.alicdn.com/ctl/ctl.js', 'https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://aeu.alicdn.com/ctl/ctl.js', 'https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://ynuf.aliapp.org/service/um.json', 'https://g.alicdn.com/AWSC/WebUMID/1.88.4/um.js'] -['https://g.alicdn.com/static-es6/login/pc/login/css/main_70d8d4cb.css', 'https://g.alicdn.com/static-es6/login/public/load.js'] -['https://fourier.taobao.com/ts?url=&token=BPv7j_8IHWIH2CHWI6SMs5ZPitllUA9S7i4C-u241_oRTBsudSCfohkaYO0C92dK&cna=SOznGrmD6FECAcorlL1oxri4&ext=1', 'https://g.alicdn.com/secdev/sufei_data/3.9.9/index.js'] diff --git a/result/www.youku.com22-04-24/component b/result/www.youku.com22-04-24/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/www.youku.com22-04-24/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/www.youku.com22-04-24/header b/result/www.youku.com22-04-24/header deleted file mode 100644 index 327b982b..00000000 --- a/result/www.youku.com22-04-24/header +++ /dev/null @@ -1 +0,0 @@ -{'Date': 'Sun, 24 Apr 2022 02:50:16 GMT', 'Content-Type': 'text/html; charset=UTF-8', 'Transfer-Encoding': 'chunked', 'Connection': 'keep-alive', 'vary': 'Accept-Encoding', 'x-server-id': 'a46426e25423c4a14dc4da128ebb4951f9849a278eca3896936ce8e67d7838dd957989f9f562d72c', 'set-cookie': 'csrfToken=KJHs7zzh-9J2eW8WBIP35QID; path=/', 'x-frame-options': 'SAMEORIGIN', 'x-xss-protection': '1; mode=block', 'x-content-type-options': 'nosniff', 'x-download-options': 'noopen', 'strict-transport-security': 'max-age=31536000, max-age=31536000', 'x-readtime': '175', 'content-encoding': 'gzip', 'req-cost-time': '187', 'req-arrive-time': '1650768616123', 'resp-start-time': '1650768616311', 'x-envoy-upstream-service-time': '187', 'Server': 'Tengine/Aserver', 'EagleEye-TraceId': '213f97c416507686161181772e8ffd, 213f97c416507686161181772e8ffd', 'Timing-Allow-Origin': '*', 's-rt': '193'} \ No newline at end of file diff --git a/result/www.youku.com22-04-24/whois b/result/www.youku.com22-04-24/whois deleted file mode 100644 index ccecd365..00000000 --- a/result/www.youku.com22-04-24/whois +++ /dev/null @@ -1,33 +0,0 @@ -{ - "domain_name": [ - "YOUKU.COM", - "youku.com" - ], - "registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.", - "whois_server": "grs-whois.hichina.com", - "referral_url": null, - "updated_date": "2021-10-18 18:28:25", - "creation_date": "2003-12-22 09:57:45", - "expiration_date": "2022-12-22 09:57:45", - "name_servers": [ - "DNS1.YOUKU.COM", - "DNS2.YOUKU.COM", - "DNS3.YOUKU.COM", - "DNS4.YOUKU.COM" - ], - "status": [ - "clientTransferProhibited https://icann.org/epp#clientTransferProhibited", - "serverDeleteProhibited https://icann.org/epp#serverDeleteProhibited", - "serverTransferProhibited https://icann.org/epp#serverTransferProhibited", - "serverUpdateProhibited https://icann.org/epp#serverUpdateProhibited" - ], - "emails": "DomainAbuse@service.aliyun.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "bei jing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/www.youku.com22-04-24/www.youku.com.csv b/result/www.youku.com22-04-24/www.youku.com.csv deleted file mode 100644 index e5283adf..00000000 --- a/result/www.youku.com22-04-24/www.youku.com.csv +++ /dev/null @@ -1,127 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://g.alicdn.com/youkuvip_fe/vip-public-assets/pay/pay.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/activity-components/1.0.12/static/js/live-window.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/mtb/lib-promise/3.1.3/polyfillB.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/AWSC/awsc.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/scout/probe_cdn/index.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/mm/yksdk/0.2.0/pagesdk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/mtb/lib-mtop/2.4.2/mtop.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/alilog/mlog/aplus_v2.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/runtime~app.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/WebUMID/1.88.4/um.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/uab/1.140.0/collina.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://www.youku.com/,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.']",False,False -https://www.youku.com/pwaServiceWorker.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.']",False,False -https://pc.pay.youku.com/api/v?callback=callback,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523718433&sign=48e228f88e4472e9e68ac7abbd1fc4c5&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow1&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://w.cnzz.com/c.php?id=1277956573&async=1,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523719614&sign=f6dbbcbdf07ffb6355cb8c066e87c520&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow2&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -https://www.youku.com/pwaSetting.js,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/vendor.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/app.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youkuvip_fe/vip-pay-assets/1.0.4/sdk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523719804&sign=1cfdb6055ea6cada862fbca29414acf7&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow3&data=%7B%22bizType%22%3A%22CommonActivity.getServerTimeCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -https://g.alicdn.com/alilog/s/8.15.21/plugin/aplus_ac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/alilog/s/8.15.21/plugin/aplus_ae.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://ynuf.aliapp.org/w/wu.json,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns5.aliyun.com.', 'ns4.aliyun.com.', 'ns3.aliyun.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/js/extra.chunk.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://sealine.youku.com/yk/html?site=1&aw=w&bt=pc&tm=1650523721593&p=827&callback=adpagesdkc0t1650523721593,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.4.2&appKey=24679788&t=1650523721659&sign=cf9ea1bfe9af55c396ce8cb35652c0e6&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523721613&type=jsonp&callback=mtopjsonp16505237216131&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://sealine.youku.com/yk/html?site=1&aw=w&bt=pc&tm=1650523721649&p=407&callback=adpagesdkc1t1650523721649,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.']",False,False -https://log.mmstat.com/eg.js?t=1650523720722,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns5.aliyun.com.', 'ns4.aliyun.com.', 'ns3.aliyun.com.']",False,False -https://sealine.youku.com/yk/html?site=1&aw=w&bt=pc&tm=1650523721685&p=1503484520&callback=adpagesdkc2t1650523721685,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523721676&sign=5d0438cbd63372ecc281492f1dce72ee&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow1&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722088&sign=4c6863b4ab22d5a9c55b7101cea57ba7&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=pc_pages_act_window&callback=mtopjsonppc_pages_act_window2&data=%7B%22bizType%22%3A%22CommonActivity.getConfigCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22%E9%9C%B8%E5%B1%8F%E7%BA%BF%E4%B8%8A%E9%85%8D%E7%BD%AE%5C%22%2C%5C%22configId%5C%22%3A%5C%229c4ad307f87b44c5a91dcd6caef76340%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.playlog.open.get/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722161&sign=a547c07a1b4e4a9c5fc633cbe72d02ed&api=mtop.youku.playlog.open.get&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=headerRecord&callback=mtopjsonpheaderRecord5&data=%7B%22nlid%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%2C%22uid%22%3A%22%22%2C%22pageLength%22%3A100%2C%22timestamp%22%3A%221650523722161%22%2C%22appKey%22%3A%22qPbb2hfIYugHjMaj%22%2C%22appName%22%3A%22pc%22%2C%22hwClass%22%3A1%2C%22deviceName%22%3A%22web%22%2C%22isPlayController%22%3A1%2C%22ccode%22%3A%220502%22%2C%22clientDrmAbility%22%3A3%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722089&sign=ff246bbda875ced5fb4fbf5e1760cd59&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=livewindow&callback=mtopjsonplivewindow4&data=%7B%22bizType%22%3A%22CommonActivity.getServerTimeCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22PC%E5%8F%8C11%E7%9B%B4%E6%92%AD%E5%B0%8F%E7%AA%97%5C%22%2C%5C%22configId%5C%22%3A%5C%22d135184f089c40ad903c45b801fdb329%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722088&sign=1eb98fcbb3612add217d28c5e3e0d3f0&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523721883&type=jsonp&callback=mtopjsonp16505237218833&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722322&sign=1f2415edc51e288b85c0971cc4f3e2e6&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722289&type=jsonp&callback=mtopjsonp16505237222896&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722373&sign=6e14274930a89caa883b7f3202596e5c&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722353&type=jsonp&callback=mtopjsonp16505237223537&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722518&sign=6121061abe6864b72488591251ff171f&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722517&type=jsonp&callback=mtopjsonp16505237225179&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.com.youku.aplatform.weakget/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722373&sign=2371ba9267d7b22247a521ec654d23c3&api=mtop.com.youku.aplatform.weakGet&type=jsonp&v=1.0&dataType=jsonp&jsonpIncPrefix=pc_pages_act_window_time1650523722368&callback=mtopjsonppc_pages_act_window_time16505237223688&data=%7B%22bizType%22%3A%22CommonActivity.getServerTimeCommon%22%2C%22bizParam%22%3A%22%7B%5C%22activityName%5C%22%3A%5C%22%E9%9C%B8%E5%B1%8F%E7%BA%BF%E4%B8%8A%E9%85%8D%E7%BD%AE%5C%22%2C%5C%22configId%5C%22%3A%5C%229c4ad307f87b44c5a91dcd6caef76340%5C%22%7D%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.']",False,False -https://g.alicdn.com/static-es6/login/public/load.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722619&sign=c1ecb80d0d632d513525694599ef46af&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722600&type=jsonp&callback=mtopjsonp165052372260010&data=%7B%22itemType%22%3A%22%5C%22VIDEO%5C%22%22%2C%22itemIds%22%3A%22XNTIwNTE4ODkzNg%3D%3D%2CXNTg1OTA2NDg1Ng%3D%3D%2CXNTIwNTIwMjkzMg%3D%3D%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -https://g.alicdn.com/fsp/tracker-patch/index.js?1650523722956,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/static-es6/login/pc/login/js/main_eba8f3e8.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722639&sign=72dffa1aa17b28a034a0c472e56fadf6&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722639&type=jsonp&callback=mtopjsonp165052372263911&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.subscribe.service.subscribe.favourite.batchisfav/3.0/?jsv=2.5.1&appKey=24679788&t=1650523722757&sign=4e33cd5906856f113f6f310ca4783955&api=mtop.youku.subscribe.service.subscribe.favourite.batchisfav&v=3.0&dataType=jsonp&jsonpIncPrefix=1650523722757&type=jsonp&callback=mtopjsonp165052372275712&data=%7B%22itemType%22%3A%22%5C%22SHOW%5C%22%22%2C%22itemIds%22%3A%22fcffbcd8aafe49d3b5ba%2C85aa15ea054c4f61a195%2Ceeaf2b8a5ff94849a454%2C8287885e63b040e18d13%2Cfdcfe476eaeb48b1a50d%22%2C%22src%22%3A%22PC_PAGES%22%2C%22guid%22%3A%221650523720896xTM%22%7D,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -https://aeu.alicdn.com/ctl/ctl.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/sd/baxia-entry/index.js?t=229239,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/secdev/entry/index.js?t=229239,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/sd/baxia/2.0.62/baxiaCommon.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/secdev/sufei_data/3.9.9/index.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/AWSC/et/1.62.1/et_f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://account.youku.com/getConfig.json?pid=8fb8456183734a86bfc1c15a1c761cdf&bizType=login&callback=&jsonpCallback=__jsonp0,0,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -"https://g.alicdn.com/??xlly/spl/rp.js,secdev/nsv/1.0.78/ns_e_88_3_f.js?v=1",1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/css/app.chunk.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/pc-pages-v2/1.2.51/static/css/extra.chunk.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/youku-node/activity-components/1.0.12/static/css/live-window.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://g.alicdn.com/live-platform/pc-com-sport-card/0.0.17/index/index.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://g.alicdn.com/live-platform/pc-com-agenda/0.0.9/index/index.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://fourier.taobao.com/rp?ext=51&data=jm_SOznGrmD6FECAcorlL1oxri4&random=37627677275290505&href=https%3A%2F%2Fwww.youku.com%2F&protocol=https:,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.taobao.com.', 'ns5.taobao.com.', 'ns6.taobao.com.', 'ns7.taobao.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN018RR8PM1D2PINvzBRW_!!6000000000158-2-tps-60-60.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i4/O1CN01fxqCXY26E8F8ZpBUU_!!6000000007629-2-tps-40-40.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN01mTfoVo1FchuLyhHjD_!!6000000000508-2-tps-44-30.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/tfs/TB1oetPkAL0gK0jSZFAXXcA9pXa-279-279.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN01WpOLdY1DG97PbESGP_!!6000000000188-2-tps-80-80.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/tfs/TB1UOb1vKT2gK0jSZFvXXXnFXXa-117-51.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-20/d41eeb615696970ff38200d6252c2947.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-08-04/85c2d6ffb6b96a82c5218c5843d7e6c2.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-08-04/b4be6786b89ccadaef1b8666beca892c.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-07-23/c1796aca82792deb55623ffa0b0a32f8.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-20/5d2c26b413870c75af22483dad82f051.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-20/d56c378e26f28f4934d4a2b99aebedaf.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://img.alicdn.com/imgextra/i1/O1CN01sJWmFE21rubpwg0aI_!!6000000007039-2-tps-120-120.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://liangcang-material.alicdn.com/prod/upload/ce2c399ad7d5428d909df5f749339979.gif,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://m.ykimg.com/05840000625CF5291FD8520C184F8EA0?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -"https://m.ykimg.com/05840000624527D52037DD092D0AED10?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -"https://m.ykimg.com/05840000625A55FB13EB66114BE0A650?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.', 'dns3.youku.com.']",False,False -"https://m.ykimg.com/05840000624D438113EB660A377E5E9D?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.']",False,False -"https://m.ykimg.com/052700006244198F13F7FF0998C965EB?x-oss-process=image/resize,w_100/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns4.youku.com.', 'dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.']",False,False -https://hudong.alicdn.com/api/data/v2/58e0c191c91c4fb88ef57dc13737c493.js?t=1649232678234,1,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://hudong.alicdn.com/api/data/v2/e53c59907f64488f8c82e53c96d7ddf9.js?t=1636091135468,1,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://img.alicdn.com/tfs/TB1lPFxh4D1gK0jSZFyXXciOVXa-12-12.svg,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://www.youku.com/log/screenlog?screenwidth=2560,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.']",False,False -https://ynuf.aliapp.org/service/um.json,1,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.aliyun.com.', 'ns3.aliyun.com.', 'ns5.aliyun.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/e2ab1cf65bd64f9f8eb5c3edea0156de.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/d083b63d9a734d3da187bb2fab9ffeaf.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://log.mmstat.com/yt.gif?logtype=1&title=%E4%BC%98%E9%85%B7%20-%20%E4%BD%A0%E7%9A%84%E7%83%AD%E7%88%B1%20%E6%AD%A3%E5%9C%A8%E7%83%AD%E6%92%AD&pre=&scr=2560x1440&_p_url=https%3A%2F%2Fwww.youku.com%2F&cna=SOznGrmD6FECAcorlL1oxri4&spm-cnt=a2ha1.14919748_WEBHOME_GRAY.0.0.31b45f44QrdGEy&category=&uidaplus=&aplus&yunid=&&trid=213dec6516505237175492599e65fc&asid=AQAAAABF/mBi/HqpPwAAAACdqedF0z010w==&p=1&o=mac&b=chrome69&s=2560x1440&w=webkit&ism=mac&cache=9e2c39d&lver=8.15.21&jsver=aplus_o&pver=0.7.11&mansndlog=1&l_v=3&p_v=3&dmid=1&pc_i=1650523720896xTM&pu_i=&extd=yft%3D1650523720898%26ysid%3D1650523720898Fhs%26pvid%3D1650523720898VRiRxB%26rpvid%3D%26ycid%3D%26rycid%3D%26ypstp%3D1%26yspstp%3D1%26yscnt%3D1%26ycms%3D%26rcms%3D%26unc%3D0%26frame%3D0%26ikuins%3D0%26dev%3DMacIntel%26mtype%3Doth%26from%3D%26abt%3Doth%26cpid%3D&log_ver=v2&experiment_bucket_id=&tag=0&stag=2&lstag=0&_slog=0,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.aliyun.com.', 'ns5.aliyun.com.', 'ns4.aliyun.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/7e87fb8c53944b6ababe58254e3c0e4c.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/9ec492bd641d43bf930a2076b57904c9.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/0ce45f59744b41a8800a2cc995dfcafc.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/develop/image/2021-10-18/7dcdd489663f94ee5bf8b439a4c877b0.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/8e065b5dab1b4ba397fb576333b34845.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/66677acd172144ba8a7d768fd9946130.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/e3280797befa48ddad4081c78f306b3d.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/8a495277d92041a19b706c9dcc9c796f.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/660eb22d8bea4097b227da4669bbf8e6.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/847bd4eceef14bb582a7deb5fec2870f.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/6f96e0dba6df4491a70da45c116d7068.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/f3826b24a74d4ddb9161df45615e0171.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/8a100bf11c88431893c86413c359fa4f.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/7d8cac23520a4b27abd9fea1a8962f6b.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/162a8f4b984f44fd9bcf4e373964953e.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/7a51edc0b927497584f5a0a5fce94d03.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/9401a731677c4f46b9bb92b2f2673acb.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/64cbc217b1b24e33bd61f263e2ffafc6.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/4a6d903e2db541dfbfea031990e56e26.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/79c188420a904c21a8bd616402422e70.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/cdad167b8ce84ca3be5cfe7bf5c635e1.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/f40f135b6fd3486d8ef9d3bc1d2637ba.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/c52f3247530846c49e0fc8d6f53d8794.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/20e076a92ef04186bdb0f61bcf24baa6.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/e411d599f8f94d3a93791289f20451fa.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/a9e1da00584947afb9ea396ab3153696.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -"https://liangcang-material.alicdn.com/prod/upload/0ebc213721264524a327b31bb0d0e300.jpg?x-oss-process=image/resize,w_290/interlace,1/quality,Q_80",1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://m.ykimg.com/material/0A03/A1/202204/0419/3078212/1650361463408/0D010000625E89744661702360433539.jpg,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.vip.xtop.member.profile.get/1.0/?jsv=2.4.2&appKey=24679788&t=1650523721884&sign=145837b83d22d0721983200ea41e9cd1&api=mtop.youku.vip.xtop.member.profile.get&v=1.0&type=originaljson&dataType=json&timeout=20000&data=%7B%22req%22%3A%22%7B%5C%22deviceType%5C%22%3A%5C%22pc%5C%22%2C%5C%22show%5C%22%3A1%7D%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns1.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.', 'dns3.youku.com.']",False,False -https://img.alicdn.com/imgextra/i3/O1CN012VJ8YA22JOP4XNnCr_!!6000000007099-2-tps-20-20.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.xmop.strategyfacadeservice.getcontent/1.0/?jsv=2.4.2&appKey=24679788&t=1650523721885&sign=e1aac77ea16f4dbc3238a9ec30375812&api=mtop.youku.xmop.strategyfacadeservice.getcontent&type=originaljson&v=1.0&dataType=json&data=%7B%22touch_point_code%22%3A%22nucenter_page_pc%22%2C%22device_id%22%3A%221%22%2C%22cna%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.']",False,False -https://acs.youku.com/h5/mtop.youku.soku.yksearch/2.0/?jsv=2.5.1&appKey=23774304&t=1650523722087&sign=6d592e7c5079065c6acd6860f8be0a50&api=mtop.youku.soku.yksearch&type=originaljson&v=2.0&ecode=1&dataType=json&data=%7B%22pg%22%3A%221%22%2C%22pz%22%3A%2210%22%2C%22appScene%22%3A%22default_page%22%2C%22appCaller%22%3A%22youku-search-sdk%22%2C%22searchFrom%22%3A%22home%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns1.youku.com.', 'dns2.youku.com.', 'dns4.youku.com.']",False,False -https://acs.youku.com/h5/mtop.ykrec.recommendservice.recommend/1.0/?jsv=2.4.2&appKey=24679788&t=1650523721884&sign=fbbfed2666d14efb413c0b76b27d2614&api=mtop.ykrec.RecommendService.recommend&type=originaljson&v=1.0&dataType=json&jsonpIncPrefix=headerSearch&data=%7B%22appid%22%3A%2214177%22%2C%22mtopParams%22%3A%22%7B%5C%22count%5C%22%3A%5C%221%5C%22%2C%5C%22channel%5C%22%3A%5C%22PC%5C%22%2C%5C%22fr%5C%22%3A%5C%22pc%5C%22%2C%5C%22app_source%5C%22%3A%5C%22main_page%5C%22%2C%5C%22x_utdid%5C%22%3A%5C%22SOznGrmD6FECAcorlL1oxri4%5C%22%7D%22%2C%22utdid%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns4.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.']",False,False -https://ems.youku.com/imp?e=DGCXFGWcHbNCruf_8If6YTZqbkC6tHMB48J0mrFvSyAy77hL98ynamFwIsfNZ0-mWQHPMfIT66eCIfHuTwEJsRPm1IngpqAscyTRxqst1Hi5-i7upSpS7RlWb2hKnIKTpFsWJUd9SjVEXiuCl9jH0PZv-gW2c99vtcJeH1PiQEwQjtQH5L-EqdjlZGZjceG_KfWNQG_uhBns5qP-jExWl1M44ZoZU9oZskNVU_M-etBtQCoVe_NehWuARGwYF3yMrCWGkDc9Zfrm3V1gtDsmkcGLtloc0eqFNDRrX6DkBGDLmVPZJsL8irgnnl7IZRvf0FdAAyrzsmmjzQK82ry8N6gxmCwLDrCqsS_vbHznqULmdPxL1OsakhboZ6HcsUWMguVPdODAWSTT_tXJVrL5neUr4EB62mIQFNz-Upq5iiU0Zmy-D_JC-lcLN898lG4u3pgTyV5E_UIeDRMDCMPJs1FPaAtICdrRUKgRTLuPBPJbmBCLn2m2zLieNqPOCNNVKNRRr-oblTTi9YIYo49e_5GtoRCWr5P9i_e3JNsF252kC7Exusdz83kJCBX5EWbaf_iW1OYn-YuT0jNDqbk9mLB6yO1B846268mcHDlqaAXEZKSsiBRnJgb8xOBD_BuhmGeEky-I_gLP6DKyhOBBSngCC86IdtGB9YdDYoHsPUQHS7GFO_rzybXvlsze-CRh4s5ppINJITgkM_k_HR4vHJXO5gdq1yZ1OWB0Ux31VjkM2b9NXKBXSlprxKU4WtqzIrJMIBQhvaEl9EPW074SgKGlBZeAFJ9TtlXJ-SVqU4XlCFDX4Bi5I-OYeo1-dzDVTL4NVHUlEW8ih2V20zfIYn6NFWwHyp2H1Yf8LSLGf1HiPlBXWQQ0aRc9fFbcm-xpsG6DVs6AZRtBNFtELV_cOZWS2kyZhGCkvHahW4LrgP_TW-y76v_IH3E4zxrH4Q0QVxDEVPrlLsKbR6aUzeZVSAW-NpeyLl6OUd4eF_RGx9EBbnQbNS14-ajrd7M3pA4-wVo2vXQPy5741odC3Zw2OWZJukcD3aqPazH0JGXrmqzwcvv8TumC2xHrQTgVNuk--ajhFWZj-KN9XDVfj4ZU2Kok_JviYuiQe9-b4PE1GTY13zQh8VLHtgev0lhS7UPmJmezCcd0VEouC8zENNLwTld-iRPJ0HBcK374yuu4m6L9jcczkf8tBhiz2IqtBHnv7fPOvC-eR-DR2OxKV_Q4o5JgvpyEOV3oSwgi8NLSSOc1BdJatZDP31pitc7SdZ13g5zGx7hhWC5fwxwZxco2YDFbXNOCOJVcZjqdtShKQwNvzeGk6xkRfWNjWf0HRF_oWCRnVg1-uNSkou8TXP1YXQ-1ecco-nPIi-0rZ6Pgc-yyMXiv5Wt3blV1BT_faXvcUOgSmpY5izxnhDFW1Itu4faeNECDAJjtNRfnscUmhxSUjXb4fFtvlKB6sHd4WtnkFDYZGJ_J1PZ6T8ZuhTwwUIUKeFMrJ-LYuqf1nG3fQCV8t4qsHIkTRyhvqZfO88JXDOxss3BIfmaYuhSSNTYbd5ZJHBko3NNfsJAjmLcCcsERZluSdLnVNurFw0CAXWZnxG1kpNwARel_JqhkwfYSECSxDcHgJS7FhjBcfF3YQOq5tIdzBxsC6Th-xBFhZVEi_J5foNhEGYF4aECItWsNyZSXNWFRQfXzKSdDqLrw2hkIToC2gMHfqE4R_0MWDN3gx9ibhDwgT8kl1jFTxc35DxrHlGwWVsKU0abUeR29TwsxMZzhj8suaXXUUTIK7jjvPAg1VyqGoDNHndAt6IfpeXi-gOgUZeys0N1vNPaZdx1fzMXgvhyg_cxhdCzAreNtz_zM_O_RGOPl5cSnQw2JvqlyWca1adWLPm_XX1j0UKYWq8m-mHEivmsUGmYAjHzF1Jv46hNgELcwB83tFdruTFZ3Po67pX4Pylaxd0nbKd__HSKnNqlghvWKuI_TS_qwLkwJsXvFF_yizgJ7KcZNf60Lfnkk5i26t2Zkt-8ngwik4NKgrsaKBLmuhaJ7u8T4mbQ1oh3HLncqiJMwJ6TGstLv56FvmPF63TIoZXpHLwoJz9kadc5NM-kVK0-S73GPqMjHDejixpLv7AbwDrpr4GyHPu4GRS9H9NqkeiQGFRJnViFCPZFAbKbbwjSVEd7bZ0Qo4X10OepisMZAnc96dOggnmon5d4AIeOnkrooaftosoIaI3vYPifYL6XxqVf3_pVWCu3iR8ir63XbEykhNM6-_F5j0_beP_z-5AuUQfpJNUdmxMhZLe3M-XVUAG3OXMUjTyIh4-OkH2pb0lAnU00zEJ6dZpuS0Fb2uhF9eyjccoFrdnIuM5j032X1ZI3txohHMdiGjECauOVtIjIUmWeUSfgFp2AuE9IzCkK8g5eRqeh_ergZRuRAjn_TIGR-D32O-88bAhJ5OMaFQrlhCAPj7nKuh7Lypizprau6AScEpkijur8E_FMKFL6TnX61xzAbI2-dBz5TjZuYkuDvbXc4PMg5meEwTnH2e4lUoSrN_-Px1EQi8R14ynZjMoGGOG5HB5eilig3666L6HnXllqZP0QX1suVrXtrYhm_Ou0Q6hvjBWJR7hFQNG9c3OsvsdlRCGmFBdAuvEPw9FH3dXUkW2KuJJQ2IEGMs3BPckBi4L0ffquHxChThKWV5ASHSuQMXkw_bCjc0R9gCqoHXRWzSy80rFeSgyrSS5sO889JsCE10QHKBWLGihmUeszY4T5aJjyTB8t399a2XdVPVqA6RrKTijB-69r3VT2TTC2IA1fJe29kZI9Guhv1e4q_cChi2cmhNQKmBA3a06J3PcjHh6xMEhdDhlqCxWu2Tivb8JeyCeReW20a1mj_xjDX&pid=60881&tm=1650523721&htch=__htch__,0,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns3.youku.com.', 'dns1.youku.com.', 'dns4.youku.com.', 'dns2.youku.com.']",False,False -https://g.alicdn.com/static-es6/login/pc/login/css/main_70d8d4cb.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False -https://ykimg.alicdn.com/product/image/2021-12-24/998af6140172c95ece57478830ce7c63.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns2.alibabadns.com.', 'ns1.alibabadns.com.']",False,False -https://acs.youku.com/h5/mtop.youku.xspace.maincms.position.query/1.0/?jsv=2.5.1&appKey=24679788&t=1650523722322&sign=6ca75c686ff249cc160b2f50d478cd95&api=mtop.youku.xspace.maincms.position.query&type=originaljson&v=1.0&dataType=json&data=%7B%22rootPath%22%3A%22product-main-cms%22%2C%22positionTag%22%3A%22top-navigation%22%2C%22terminal%22%3A%22pcweb%22%2C%22systemInfo%22%3A%22%7B%5C%22device%5C%22%3A%5C%22pcweb%5C%22%2C%5C%22os%5C%22%3A%5C%22pcweb%5C%22%2C%5C%22ver%5C%22%3A%5C%221.0.0.0%5C%22%2C%5C%22userAgent%5C%22%3A%5C%22%5C%22%2C%5C%22guid%5C%22%3A%5C%221590141704165YXe%5C%22%2C%5C%22appPackageKey%5C%22%3A%5C%22com.youku.pcweb%5C%22%2C%5C%22young%5C%22%3A0%2C%5C%22brand%5C%22%3A%5C%22%5C%22%2C%5C%22network%5C%22%3A%5C%22%5C%22%2C%5C%22ouid%5C%22%3A%5C%22%5C%22%2C%5C%22idfa%5C%22%3A%5C%22%5C%22%2C%5C%22scale%5C%22%3A%5C%22%5C%22%2C%5C%22operator%5C%22%3A%5C%22%5C%22%2C%5C%22resolution%5C%22%3A%5C%22%5C%22%2C%5C%22pid%5C%22%3A%5C%22%5C%22%2C%5C%22childGender%5C%22%3A0%2C%5C%22userId%5C%22%3A0%2C%5C%22utdid%5C%22%3A%5C%22SOznGrmD6FECAcorlL1oxri4%5C%22%7D%22%2C%22debug%22%3Afalse%2C%22utdid%22%3A%22SOznGrmD6FECAcorlL1oxri4%22%2C%22ip%22%3A%22%22%2C%22businessContext%22%3A%22%22%2C%22mockType%22%3A0%2C%22userId%22%3A0%2C%22ttid%22%3A%22%22%2C%22isVip%22%3A0%2C%22gray%22%3Afalse%2C%22businessKey%22%3A%22main_cms%22%2C%22mock%22%3Afalse%2C%22class%22%3A%22com.youku.xspace.api.client.dto.index.IndexPositionParams%22%7D,0,4,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['dns2.youku.com.', 'dns1.youku.com.', 'dns3.youku.com.', 'dns4.youku.com.']",False,False -https://fourier.taobao.com/ts?url=&token=BPv7j_8IHWIH2CHWI6SMs5ZPitllUA9S7i4C-u241_oRTBsudSCfohkaYO0C92dK&cna=SOznGrmD6FECAcorlL1oxri4&ext=1,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns6.taobao.com.', 'ns5.taobao.com.', 'ns4.taobao.com.', 'ns7.taobao.com.']",False,False -https://img.alicdn.com/imgextra/i2/O1CN01rFI7mg1d6EbNH5q6m_!!6000000003686-2-tps-72-72.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns1.alibabadns.com.', 'ns2.alibabadns.com.']",False,False diff --git a/result/www.youku.com22-04-24/www.youku.com.html b/result/www.youku.com22-04-24/www.youku.com.html deleted file mode 100644 index e60e5a98..00000000 --- a/result/www.youku.com22-04-24/www.youku.com.html +++ /dev/null @@ -1,75 +0,0 @@ -优酷 - 你的热爱 正在热播 -

    正在热播

    文学老炮儿的慢生活老友记
    先婚后爱!腹黑王爷宠妻无度
    谢苗率爆炸队血战日寇
    魅惑姐妹花虐恋俏书生
    中国夫妇变卖家产冒险10年
    欢迎英雄凯旋归来!
    “晋江在逃霸少”套路追妻

    猜你在追

    特惠购

    首月仅6元开通会员

    畅看热门剧集

    特惠开通
    王牌家族温情回归
    戏骨云集再现盛世
    林峯力破九大奇案
    初遇夫妇十世痴恋
    沈腾马丽合体来袭
    张译章宇保家卫国
    女子舞社热力来袭
    云禾变“药人”遭仙姬折磨
    军魂燃!兵王杨洋热血成长
    顶配!戏骨云集共创大明盛世
    女编剧逆袭追爱男明星
    袁泉优雅回应第三者挑衅
    女霸总金晨恋上狼狗王子异
    钟汉良失忆与小冉重新恋爱
    “最穷”富二代 拼命不拼爹
    热播!林峯惨成“通缉犯”
    贫穷小萝莉遇上多金外星霸总
    小三坐牢!明宝杨争终于离婚
    谢广坤口出狂言!媳妇拦不住
    小敏爱与陪伴战胜一切
    广告
    \ No newline at end of file diff --git a/result/www.youku.com22-04-24/www.youku.com.png b/result/www.youku.com22-04-24/www.youku.com.png deleted file mode 100644 index d919a17a..00000000 Binary files a/result/www.youku.com22-04-24/www.youku.com.png and /dev/null differ diff --git a/result/xueqiu.com22-04-21/chain.txt b/result/xueqiu.com22-04-21/chain.txt deleted file mode 100644 index f2598131..00000000 --- a/result/xueqiu.com22-04-21/chain.txt +++ /dev/null @@ -1 +0,0 @@ -['https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=664231024&si=1db88642e346389874251b5a1eded6e3&v=1.2.92&lv=1&sn=27351&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fxueqiu.com%2F&tt=%E9%9B%AA%E7%90%83%20-%20%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85%E9%83%BD%E5%9C%A8%E8%BF%99%E9%87%8C', 'https://hm.baidu.com/hm.js?1db88642e346389874251b5a1eded6e3'] diff --git a/result/xueqiu.com22-04-21/component b/result/xueqiu.com22-04-21/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/xueqiu.com22-04-21/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/xueqiu.com22-04-21/header b/result/xueqiu.com22-04-21/header deleted file mode 100644 index 39c2c05e..00000000 --- a/result/xueqiu.com22-04-21/header +++ /dev/null @@ -1 +0,0 @@ -{'Date': 'Thu, 21 Apr 2022 08:10:02 GMT', 'Content-Type': 'application/octet-stream', 'Content-Length': '48', 'Connection': 'keep-alive', 'Server': 'openresty', 'P3P': '"CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT""', 'Strict-Transport-Security': 'max-age=31536000'} \ No newline at end of file diff --git a/result/xueqiu.com22-04-21/whois b/result/xueqiu.com22-04-21/whois deleted file mode 100644 index 88c22bff..00000000 --- a/result/xueqiu.com22-04-21/whois +++ /dev/null @@ -1,26 +0,0 @@ -{ - "domain_name": [ - "XUEQIU.COM", - "xueqiu.com" - ], - "registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.", - "whois_server": "grs-whois.hichina.com", - "referral_url": null, - "updated_date": "2021-05-02 04:20:06", - "creation_date": "2001-05-08 21:06:21", - "expiration_date": "2023-05-08 21:06:21", - "name_servers": [ - "NS1.DNSV4.COM", - "NS2.DNSV4.COM" - ], - "status": "ok https://icann.org/epp#ok", - "emails": "DomainAbuse@service.aliyun.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "bei jing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/xueqiu.com22-04-21/xueqiu.com.csv b/result/xueqiu.com22-04-21/xueqiu.com.csv deleted file mode 100644 index 0adc257d..00000000 --- a/result/xueqiu.com22-04-21/xueqiu.com.csv +++ /dev/null @@ -1,29 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://assets.imedao.com/ugc/js/vendors-appeal_report-article_mobile-article_web-change_info-creator_showcase-fund_compulsory-fund_f-2d934c5d.46be084f80.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://hm.baidu.com/hm.js?1db88642e346389874251b5a1eded6e3,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.', 'ns7.baidu.com.']",False,True -https://assets.imedao.com/ugc/js/home.b0de6cabac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-account-logout-anchor_apply-announcement-appeal_report-appeal_report_mobile-appeal_tort_mobi-c5df76d2.92726dc893.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-appeal_report-appeal_report_mobile-article_mobile-article_web-calendar-call_auction-change_i-628f5c0a.6f78cc8fdd.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-account-logout-demo_cube_status-fund_relocate_history-hashtag_mobile-home-home_mobile-hot_st-6bc256f6.0e8afbf60f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/main.c1ef855b84.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/css/main.2f6f0416c5.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/css/home.b0de6cabac.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=664231024&si=1db88642e346389874251b5a1eded6e3&v=1.2.92&lv=1&sn=27351&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fxueqiu.com%2F&tt=%E9%9B%AA%E7%90%83%20-%20%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85%E9%83%BD%E5%9C%A8%E8%BF%99%E9%87%8C,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns3.baidu.com.', 'ns7.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,True -https://xavatar.imedao.com/community/20200/1579743520973-1579743521189.jpeg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20167/1472028683262-1472028683588.jpeg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/202111/1639968832170-1639968839929.jpg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20218/1631948937743-1631948941219.png!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20201/1580955268532-1580955272731.jpg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/201911/1576233945593-1576233945764.jpeg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -"https://stock.xueqiu.com/v5/stock/batch/quote.json?symbol=SH000001,SZ399001,SZ399006,SH000688,HKHSI,HKHSCEI,HKHSCCI,.DJI,.IXIC,.INX",0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/hot_stock/list.json?size=8&_type=10&type=10,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://open.xueqiu.com/mpaas/config/content?keys=web_unsign_download&cache=false&appkey=92f09797f899bdba4fbf01a2829a16d2,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=SH000001&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://xqimg.imedao.com/1798e07d43ed1003fcd3b54c.png,1,2,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/images/70dc977f21fe8b83471f08946ee04b58.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://open.xueqiu.com/mpaas/config/content?keys=web_side_nav&cache=false&appkey=92f09797f899bdba4fbf01a2829a16d2,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=SZ399001&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://open.xueqiu.com/mpaas/config/content?keys=web_anchor&cache=false&uid=-1&appkey=92f09797f899bdba4fbf01a2829a16d2,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=SZ399006&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=SH000688&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://open.xueqiu.com/es-apm/intake/v2/rum/events,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,True diff --git a/result/xueqiu.com22-04-21/xueqiu.com.html b/result/xueqiu.com22-04-21/xueqiu.com.html deleted file mode 100644 index 4103ef19..00000000 --- a/result/xueqiu.com22-04-21/xueqiu.com.html +++ /dev/null @@ -1,46 +0,0 @@ - - - 雪球 - 聪明的投资者都在这里 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    iOSAndroid
    扫一扫,下载
     

    天底下基金公司分两种,一种叫睿远,另一种叫其他 视频链接

     

    如果不是价值投资,抄底的锂矿小亏的时候早就割了。 可如果不坚持价值投资,我至今估计还是一根韭菜!这么多年来,最好的结果就是少亏一点。 锂矿下跌,我认为跟基本面没有任何关系。导致他们下跌的主要原因是市场的风格、疫情下的熊市。(前期主要是风格,近期主要是熊市。) 广誉远$广誉远(SH600...

     

    乱世黄金 盛世老酒。 中国老股民习惯了熊市,3000点在2007年(15年前)就见过,我之所以热爱股市充满信心的原因不乏几百倍的大牛股,买股票就是投资企业,强者更强的时代,投资者的选择比努力重要! 去全球化、内卷、存量博弈是常态,所以平庸是常态;能够颠覆逆袭的卓越企业寥寥无几,所以成功逆...

    avatar六星将军jjzhu04-21 14:39
     

    行情很虚弱,抄底机会越来越近了。今天市值是307.4 譬如601919继续跌破14,有个大V可能会割掉,我明天在这个位置有介入可能 譬如阳光电源,明天跌到60.05,我可能会无脑介入 譬如国联证券,明天再跌二到三个点 ,我也会无脑介入 譬如中概互联159605,明天再跌五个点,我也会介入 譬如明天退市拉夏...

     

    从支付宝大v清仓割肉说起

    今天,某支付宝大v清仓割肉了 今年以来,A股受外部美联储加息,外资流出,疫情反复等种种因素叠加,以新能源,医药为首的高估值成长股经受了较大幅度回调。 我们也在《灰犀牛步步逼近,美联储加息如何影响A股市场?》提示美联储加息对成长板块(新能源,医药等)是重大打击。 各类重仓这些板块的基...

    avatar复来指数投资04-20 22:54
     

    【野村削内地经济增长预测】野村指出,由于经济前景恶化,中国新冠“清零”策略的负面影响,将中国全年经济增长预测从4.3%,下调至3.9%。 野村又将中国第二季经济增长预测从3.4%,下调至1.8%。 野村称,这是因为4月份的数据迅速恶化,局部或全面封控的城市数量增加,物流严重中断,而且有迹象表明...

    avatar信报HKEJ04-21 14:06
     

    当拉券商成为护盘的惯性动作,那么潜伏盘就会让跟风盘舒服舒服。所有卖出都在早上完成,然后就看季后赛了,今天还比较平静。昨天既然看空指数,为什么不彻底清仓呢,因为庭化铁塔,距离走坏就一两个点,等一个开盘,确认走坏再卖出,我认为没什么问题,交易起来也比较简单。 反转图其实有点意思,...

    GODIFAR04-21 15:28
     

    奇迹没有等到,看大家痛苦的样子,都已经深深的绝望了。咱们国家前几年靠着炒房,一部分人已经实现了财务自由,但是这毕竟少部分群体,如果股市可以像🇺🇸一样,那么就可以惠及千万家庭了吧。我不懂,可能各有利弊吧,今年自从新股亏钱后我就不打新股了,每周发的数量真有点让人害怕了,大部分人都...

    小赵加油丫04-21 15:24
     

    你用什么钱来买基金?

    #雪球星计划# 曾经问一个朋友:“你用多少钱去买基金了?”对于这个问题,他有些不屑一顾:“多少钱?那还用问吗,当然是把钱全都投进入了!”最后,他还“警告”我:“哥们儿,趁着这个大好时机赶紧多投点吧,过了这个村儿就没这个店儿了!” 对于他的说法,我不置可否。或许他真的以为自己很聪...

    丹晨永续04-21 14:59
     

    ETF全“球”种草季:远离鲜花,赶快去浇灌杂草

    对于股票投资,著名投资大师有一个形象的比喻:如果你总是拔掉鲜花、浇灌杂草,那么你的投资花园里就只剩杂草了。 他在告诫已经持股在手的投资者,不要总是卖掉手中赚钱(涨的多)的股票,而留下亏钱、表现不好的股票。 可是, 如果我是正准备入场的投资者呢? 2021年,最漂亮的股票鲜花是宁德时...

    诺依曼Feng04-21 13:58
     

    2021年银华基金员工最爱基金清单大揭秘!“人气之王”居然是它?

    本文针对银华基金更新一些数据,我直接开门见山,主要针对的主动权益类基金,要求股票占比大于55%,基金类型是偏股混合型、灵活配置型、普通股票型三种,规模合并值大于2亿元,多份额仅保留A类,满足要求的有54只基金。 54只基金,其中机构持有比例大于10%的有19只基金,如果想和“聪明资金”站在...

    阡陌说04-21 14:36
     

    科创50指数“破发”,披沙拣金的时间窗口临近

    #ETF全球种草季# #科创50ETF正式获批# #科创板# 去年四季度以来,创业板指从3520高点跌到如今的2460点,跌幅约30%,高于上证50、沪深300等主流宽基指数。但如果评选“宽基指数谁跌的最惨”,恐怕创业板指还排不上号,新兴成长赛道的代表—科创50指数显然跌的更深。在去年8月份短暂突破1630点后,...

    看透一切的老罗04-21 14:58
     

    现在跟18年很像,毫无道理就是下跌,不过不同的是现在下跌更快。幅度也超过了13年的那次长期下跌。从盘面来看,这是牛市前的大跌。其实到不用担心下跌,我担心的是跌的不够多,我甚至希望大盘崩盘到2500点以下,跌的越多,弹性越大,不过无论如何,下半年和明年起步时期,是十分难得布局机会,因为...

    雪月霜04-21 12:54
     

    今天的盘面杀伤力非常大,属于场内资金失衡的多杀多极端走势,多头毫无还手之力。平时活跃的游资也大多选择了沉默。 唯一的好消息是该割的韭菜差不多都割了,剩下的就是没有赢家的爆仓互割了,也就是监管层眼里的系统性风险走向。这样的走势表明市场对监管层的期待已经不复存在,口号式稳市已经很...

    洪榕04-21 12:01
     

    这波暴跌已经超过15年了!别在提08年了,08年根本不值一提!以我现在水平满仓经历18年甚至都可以不亏,现在这波暴跌已经达到08年的水平了!!月线连阴三十年首次! 15年起码120周线以上就反弹了,这次堪比08年直接到120周线下方去了 15年涨了八倍,回调54个点有大反弹 08年深证涨了七倍,回调70个...

    浩瀚星辰77704-21 07:06
    - - - - - - - - - - - - - -
    \ No newline at end of file diff --git a/result/xueqiu.com22-04-21/xueqiu.com.png b/result/xueqiu.com22-04-21/xueqiu.com.png deleted file mode 100644 index 9238100d..00000000 Binary files a/result/xueqiu.com22-04-21/xueqiu.com.png and /dev/null differ diff --git a/result/xueqiu.com22-04-25/chain.txt b/result/xueqiu.com22-04-25/chain.txt deleted file mode 100644 index 26ed7bee..00000000 --- a/result/xueqiu.com22-04-25/chain.txt +++ /dev/null @@ -1 +0,0 @@ -['https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=90054022&si=1db88642e346389874251b5a1eded6e3&v=1.2.92&lv=1&sn=63339&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fxueqiu.com%2F&tt=%E9%9B%AA%E7%90%83%20-%20%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85%E9%83%BD%E5%9C%A8%E8%BF%99%E9%87%8C', 'https://hm.baidu.com/hm.js?1db88642e346389874251b5a1eded6e3'] diff --git a/result/xueqiu.com22-04-25/component b/result/xueqiu.com22-04-25/component deleted file mode 100644 index 9e26dfee..00000000 --- a/result/xueqiu.com22-04-25/component +++ /dev/null @@ -1 +0,0 @@ -{} \ No newline at end of file diff --git a/result/xueqiu.com22-04-25/header b/result/xueqiu.com22-04-25/header deleted file mode 100644 index d9d0eb4a..00000000 --- a/result/xueqiu.com22-04-25/header +++ /dev/null @@ -1 +0,0 @@ -{'Date': 'Mon, 25 Apr 2022 12:33:27 GMT', 'Content-Type': 'application/octet-stream', 'Content-Length': '48', 'Connection': 'keep-alive', 'Server': 'openresty', 'P3P': '"CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT""', 'Strict-Transport-Security': 'max-age=31536000'} \ No newline at end of file diff --git a/result/xueqiu.com22-04-25/whois b/result/xueqiu.com22-04-25/whois deleted file mode 100644 index 88c22bff..00000000 --- a/result/xueqiu.com22-04-25/whois +++ /dev/null @@ -1,26 +0,0 @@ -{ - "domain_name": [ - "XUEQIU.COM", - "xueqiu.com" - ], - "registrar": "Alibaba Cloud Computing (Beijing) Co., Ltd.", - "whois_server": "grs-whois.hichina.com", - "referral_url": null, - "updated_date": "2021-05-02 04:20:06", - "creation_date": "2001-05-08 21:06:21", - "expiration_date": "2023-05-08 21:06:21", - "name_servers": [ - "NS1.DNSV4.COM", - "NS2.DNSV4.COM" - ], - "status": "ok https://icann.org/epp#ok", - "emails": "DomainAbuse@service.aliyun.com", - "dnssec": "unsigned", - "name": null, - "org": null, - "address": null, - "city": null, - "state": "bei jing", - "zipcode": null, - "country": "CN" -} \ No newline at end of file diff --git a/result/xueqiu.com22-04-25/xueqiu.com.csv b/result/xueqiu.com22-04-25/xueqiu.com.csv deleted file mode 100644 index fdc0924a..00000000 --- a/result/xueqiu.com22-04-25/xueqiu.com.csv +++ /dev/null @@ -1,27 +0,0 @@ -resource_url,isThirdParty,resource_type,CA_url,Issuer,OCSP,CDP,NS,isAd,isTracker -https://hm.baidu.com/hm.js?1db88642e346389874251b5a1eded6e3,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.baidu.com.', 'ns7.baidu.com.', 'ns4.baidu.com.', 'dns.baidu.com.', 'ns2.baidu.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-account-logout-demo_cube_status-fund_relocate_history-hashtag_mobile-home-home_mobile-hot_st-6bc256f6.0e8afbf60f.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-appeal_report-article_mobile-article_web-change_info-creator_showcase-fund_compulsory-fund_f-2d934c5d.46be084f80.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-appeal_report-appeal_report_mobile-article_mobile-article_web-calendar-call_auction-change_i-628f5c0a.6f78cc8fdd.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/vendors-account-logout-anchor_apply-announcement-appeal_report-appeal_report_mobile-appeal_tort_mobi-c5df76d2.92726dc893.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/home.b0de6cabac.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/css/main.2f6f0416c5.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/js/main.c1ef855b84.js,1,1,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://assets.imedao.com/ugc/css/home.b0de6cabac.css,1,5,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20210/1610251871991-1610251872231.jpeg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20190/1548567594921-1548567595147.jpeg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20207/1597847952145-1597847952364.jpg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20172/1488339009984-1488339034174.jpg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/202111/1639004038618-1639004038810.jpeg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns3.dnsv3.com.', 'ns4.dnsv3.com.']",False,False -https://xavatar.imedao.com/community/20159/1444912556525-1444912560848.jpg!180x180.png,1,2,http://cacerts.geotrust.com/GeoTrustRSACA2018.crt,"",http://status.geotrust.com,['http://cdp.geotrust.com/GeoTrustRSACA2018.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -"https://stock.xueqiu.com/v5/stock/batch/quote.json?symbol=SH000001,SZ399001,SZ399006,SH000688,HKHSI,HKHSCEI,HKHSCCI,.DJI,.IXIC,.INX",0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/hot_stock/list.json?size=8&_type=10&type=10,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://open.xueqiu.com/mpaas/config/content?keys=web_anchor&cache=false&uid=-1&appkey=92f09797f899bdba4fbf01a2829a16d2,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://open.xueqiu.com/mpaas/config/content?keys=web_side_nav&cache=false&appkey=92f09797f899bdba4fbf01a2829a16d2,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=.DJI&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=.IXIC&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False -https://assets.imedao.com/ugc/images/70dc977f21fe8b83471f08946ee04b58.png,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://stock.xueqiu.com/v5/stock/chart/minute.json?symbol=.INX&period=1d,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns1.dnsv4.com.', 'ns2.dnsv4.com.']",False,False -https://xqimg.imedao.com/1798e07d43ed1003fcd3b54c.png,1,2,http://cacerts.digicert.cn/DigiCertSecureSiteProCNCAG3.crt,"",http://ocsp.digicert.cn,['http://crl.digicert.cn/DigiCertSecureSiteProCNCAG3.crl'],"['ns4.dnsv3.com.', 'ns3.dnsv3.com.']",False,False -https://hm.baidu.com/hm.gif?cc=1&ck=1&cl=24-bit&ds=2560x1440&vl=1297&et=0&ja=0&ln=zh-cn&lo=0&rnd=90054022&si=1db88642e346389874251b5a1eded6e3&v=1.2.92&lv=1&sn=63339&r=0&ww=1200&ct=!!&u=https%3A%2F%2Fxueqiu.com%2F&tt=%E9%9B%AA%E7%90%83%20-%20%E8%81%AA%E6%98%8E%E7%9A%84%E6%8A%95%E8%B5%84%E8%80%85%E9%83%BD%E5%9C%A8%E8%BF%99%E9%87%8C,1,2,http://secure.globalsign.com/cacert/gsorganizationvalsha2g2r1.crt,"",http://ocsp2.globalsign.com/gsorganizationvalsha2g2,['http://crl.globalsign.com/gs/gsorganizationvalsha2g2.crl'],"['ns4.baidu.com.', 'ns7.baidu.com.', 'ns3.baidu.com.', 'ns2.baidu.com.', 'dns.baidu.com.']",False,False -https://open.xueqiu.com/mpaas/config/content?keys=web_unsign_download&cache=false&appkey=92f09797f899bdba4fbf01a2829a16d2,0,4,http://cacerts.rapidssl.com/RapidSSLRSACA2018.crt,"",http://status.rapidssl.com,['http://cdp.rapidssl.com/RapidSSLRSACA2018.crl'],"['ns2.dnsv4.com.', 'ns1.dnsv4.com.']",False,False diff --git a/result/xueqiu.com22-04-25/xueqiu.com.html b/result/xueqiu.com22-04-25/xueqiu.com.html deleted file mode 100644 index c591fe49..00000000 --- a/result/xueqiu.com22-04-25/xueqiu.com.html +++ /dev/null @@ -1,46 +0,0 @@ - - - 雪球 - 聪明的投资者都在这里 - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    iOSAndroid
    扫一扫,下载
     

    炒股这个事情

    它门槛极低,不需要做很多年的学徒;但又门槛极高,交很多年学费也未必能赚钱; 它短期获利的可能性不低,几十年获取合理收益率的难度极高; 它让初入市者吊打巴菲特,时间长了发现他老人家一直在那里; 它有赌博的全部特征,却没有赌博那样的坏名声; 它对你的努力几乎立即抱有回应,但似乎又对...

     

    还活着,出来打个卡,不过快挂了,明天追加资金,继续买券商,虽然很难,心里却没有悲伤,可能与我学佛有关,师父告诫我,应无所住而生其心,我们本就是来这个世界体验生活的,每种生活都有它的感觉。大盘年线的上升趋势线在2800的位置,这就是G*运线了,最近20年都是有效的。最坏的情况就是重新洗...

     

    我为何在此位置坚持满仓

    $东方财富(SZ300059)$ 今天A股很惨,具体多惨呢? 跌停及10%以上的个股,超过1200只。 中位数个股跌幅在8.2%, 也就是说,你的持仓跌幅没达到8.2%,你就跑赢市场了。 这种惨烈程度,上一次还是在2020年疫情后的第一天。 为什么这么跌? 两个原因,一是担心疫情失控带来的产业链变动,二是个别赛道...

    avatar指点西湖04-25 16:47
     

    4540家下跌,再创记录,下一步,怎么办?

    周末天雷滚滚,想到会大跌,没想到这么惨。 看看数据: 4540家下跌中位数是-8.5%1900股跌幅9%以上3081家跌幅在7%以上 几大指数全跌幅全面在5%以下: 上证指数 -5.13%深证成指-6.08%创业板指 -5.56%科创50 -6.13% 说是股zai,没人有意见吧? 今天有点特别的情况,可能有很多被平仓的了。指数在2点...

    avatar比天空还远04-25 16:19
     

    今天收盘,沪市+深市A股总市值为70.77万亿,2020年3月31日,对应的总市值为56.29万亿。两年多时间增长26%。今年一季度国内GDP为27.02万亿,2020年一季度为20.65%,两年时间增长31%。从指数看,目前上证比2020年3月31日收盘指数高6.5%,创业板指比2020年3月31日收盘指数高15%。 武汉疫情过去两年,...

    avatar看好股市的新人04-25 19:04
     

    这种多重利空打压下的崩溃,靠市场自己肯定很难走出来,这个是常识,从15年开始,我们见证的还少吗?你说现在真的利空到什么程度吗?其实所有的利空我们都已经看得见,但信心没有了这是最大利空,信心从何而来,只能从放量大阳线里来,哪怕它背后有无形的手推动,但大阳线就是大阳线,这就是信心...

    avatar好股要重仓04-25 15:34
     

    必须加大刺激,特别是刺激消费了! 这次疫情,影响了我国两个经济重镇,一个是珠三角,一个是长三角。 二者的GDP增速都低于了全国水平4.8%,广东一季度增长了3.3%,上海增长了3.1%。 从分项来看,和全国趋势都一致,都是居民可支配收入大于GDP增速,二三产受损严重。 而上海市一季度社会消费品零...

    时代之04-25 07:58
     

    我现在一看见喊促销费我就本能的反感。这不是嘴炮,还是空炮。现在的情况你们不清楚?居民部门哪有钱拿出来消费啊? 市场经济国家走到这一步,就该靠财政赤字支撑经济了。天天喊促销费,你嘴皮子都磨起泡来了吧。哪有钱消费啊。能不能老老实实搞基建。你既然选择了市场经济体制,你难道不知道最终...

    司马缸砸锅04-25 17:13
     

    2021年度业绩说明会摘录

    任志林(董事会秘书) : 因为时间关系,今天的说明会到这里就要结束了。公司非常重视投资者提出的问题和建议,我们会认真研究和思考。欢迎广大投资者通过各种形式继续与我们交流。再次感谢各位对万东医疗的关心与支持。谢谢大家! 2022-04-25 17:01:07.0 南阳五金问 (财务负责人)井晓权 : 为什么...

    琨伦润东04-25 17:25
     

    有没有人能给点好消息? 外围: 港股跌成球,金融地位被新加坡捡漏; 制造业因为国内疫情,越南蓬勃发展了起来,有媒体预测GDP都过8%了; 还有印度小三子也在虎视眈眈,刚抢走了一个iPhone产业链…… 另外,今年复工复产不知道什么时候能出现,上海仍旧每天2W,还有死亡病例也在上涨,哎。 股市上...

    MdFly04-25 17:27
     

    回复@小七滚雪球: 刚才粗略算了一下,我目前全部投资组合(A股+B股+港股+美股)的加权平均PE是13.6,ROE是18.5%,股息率是4.17%,没有杠杆,我有充足的耐心等着融资客爆仓离场,这轮下跌多惨烈就意味着接下来的分红季我能以多低的成本分红再投资。$沪深300(SH000300)$ $创业板指(SZ399006)$ $上证...

    小七滚雪球04-25 13:20
     

    国务院:通过降低利率、减少收费等措施,向实体经济让利

    焦点财经讯 夏立人4月25日,国务院办公厅发布进一步释放消费潜力促进消费持续恢复的意见。 围绕保市场主体加大助企纾困力度。深入落实扶持制造业、小微企业和个体工商户的减税退税降费政策。推动金融系统通过降低利率、减少收费等多种措施,向实体经济让利。引导金融机构优化信贷管理,对受疫情影...

    焦点财经Focus04-25 17:30
     

    哈喽,大家下午好。 今天是「专职炒股并且见证历史」的阿呜呜。 ———————— 这日子挑的跟我人设真的挺配的,就是菜。 今天账户里面一个红的都没有:有两个跌停、再加一个骗炮加仓被埋。 稀里糊涂的就这么专职了一天, 账户跌幅最大的日子,但不是我单日亏损金额最大的日子,是因为亏了小半...

    阿呜呜一大口04-25 15:36
     

    今天上证指数暴跌5%+,市场上哀声一片,其实大可不必。 上证指数经过今天的暴跌后,已经接近30多年来长期上涨趋势的下轨,这个趋势代表着中国经济的发展方向,只要这个趋势不变,指数最多也就还有10个点以内的下跌空间。如果你还看多中国,这个时候就不该悲观。 这个时候也不要一直去想我今天亏了...

    冷静交易04-25 18:19
     

    本来想买几包方便面囤着,看了下保质期都只剩下一个多月,算了,还是先让别人抢吧,顺带着去库存。 路上看到不少人拿着篮子,估计晚上继续去超市抢购,我则安心去游泳,只要泳池一天不关,我就天天来。 其实逻辑上很好判断,没有全员核酸,学生也不停课,娱乐场所照常营业外,怕个毛线静态管理,过...

    DAVID自由之路04-25 19:47
    - - - - - - - - - - - - - -
    \ No newline at end of file diff --git a/result/xueqiu.com22-04-25/xueqiu.com.png b/result/xueqiu.com22-04-25/xueqiu.com.png deleted file mode 100644 index 039df04f..00000000 Binary files a/result/xueqiu.com22-04-25/xueqiu.com.png and /dev/null differ diff --git a/归档.zip b/归档.zip deleted file mode 100644 index 02f45f55..00000000 Binary files a/归档.zip and /dev/null differ