├── .gitignore ├── README.md ├── YuanZhao.py ├── core ├── config.py ├── detector │ ├── css_detector.py │ ├── headless_browser_detector.py │ ├── html_detector.py │ ├── js_detector.py │ ├── keyword_detector.py │ └── special_hiding_detector.py ├── reporter.py └── scanner.py ├── keywords_example.txt ├── requirements.txt ├── targets_test.txt ├── test.css ├── test_dark_link.html └── utils ├── common_utils.py ├── css_utils.py ├── file_utils.py ├── html_utils.py ├── js_utils.py ├── logging_utils.py └── network_utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/README.md -------------------------------------------------------------------------------- /YuanZhao.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/YuanZhao.py -------------------------------------------------------------------------------- /core/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/config.py -------------------------------------------------------------------------------- /core/detector/css_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/detector/css_detector.py -------------------------------------------------------------------------------- /core/detector/headless_browser_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/detector/headless_browser_detector.py -------------------------------------------------------------------------------- /core/detector/html_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/detector/html_detector.py -------------------------------------------------------------------------------- /core/detector/js_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/detector/js_detector.py -------------------------------------------------------------------------------- /core/detector/keyword_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/detector/keyword_detector.py -------------------------------------------------------------------------------- /core/detector/special_hiding_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/detector/special_hiding_detector.py -------------------------------------------------------------------------------- /core/reporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/reporter.py -------------------------------------------------------------------------------- /core/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/core/scanner.py -------------------------------------------------------------------------------- /keywords_example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/keywords_example.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/requirements.txt -------------------------------------------------------------------------------- /targets_test.txt: -------------------------------------------------------------------------------- 1 | ./test_dark_link.html -------------------------------------------------------------------------------- /test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/test.css -------------------------------------------------------------------------------- /test_dark_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/test_dark_link.html -------------------------------------------------------------------------------- /utils/common_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/common_utils.py -------------------------------------------------------------------------------- /utils/css_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/css_utils.py -------------------------------------------------------------------------------- /utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/file_utils.py -------------------------------------------------------------------------------- /utils/html_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/html_utils.py -------------------------------------------------------------------------------- /utils/js_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/js_utils.py -------------------------------------------------------------------------------- /utils/logging_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/logging_utils.py -------------------------------------------------------------------------------- /utils/network_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BINBIN02/YuanZhao/HEAD/utils/network_utils.py --------------------------------------------------------------------------------