├── site ├── img │ ├── search.png │ └── background.jpg ├── index.html ├── style.css └── script.js ├── .linkcheck.json ├── markdown-link-check-config.json ├── package.json ├── scripts └── apply_link_check.sh ├── .github └── workflows │ └── md-link-check.yml ├── .vscode └── settings.json ├── LICENSE └── README.md /site/img/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C3n7ral051nt4g3ncy/Awesome-OSINT-For-Everything/HEAD/site/img/search.png -------------------------------------------------------------------------------- /site/img/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/C3n7ral051nt4g3ncy/Awesome-OSINT-For-Everything/HEAD/site/img/background.jpg -------------------------------------------------------------------------------- /.linkcheck.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": true, 3 | "MD004": { "style": "dash"}, 4 | "MD007": {"indent": 4}, 5 | "MD013": false, 6 | "MD024": { "siblings_only": true}, 7 | "MD029": false, 8 | "MD033": { "allowed_elements": [ "details" , "summary" ]}, 9 | "MD040": false 10 | } -------------------------------------------------------------------------------- /markdown-link-check-config.json: -------------------------------------------------------------------------------- 1 | { 2 | "ignorePatterns": [ 3 | { 4 | "pattern": "^bundle.zip" 5 | }, 6 | { 7 | "pattern": "^/" 8 | } 9 | ], 10 | "httpHeaders": [ 11 | { 12 | "urls": ["https://", "http://"], 13 | "headers": { 14 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0" 15 | } 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /site/index.html: -------------------------------------------------------------------------------- 1 | 2 |
3 |