├── .tokens ├── LICENSE ├── README.md ├── automation.sh ├── automation ├── 404_js_wayback.sh ├── endpoints_extraction.py ├── github-endpoints.py ├── js_files_extraction.py └── tld_detection.py ├── installation.sh ├── jsa.py ├── requirements.txt ├── templates ├── credentials-disclosure-all.yaml └── some-PIIs.yaml └── tld_detection.py /.tokens: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/README.md -------------------------------------------------------------------------------- /automation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/automation.sh -------------------------------------------------------------------------------- /automation/404_js_wayback.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/automation/404_js_wayback.sh -------------------------------------------------------------------------------- /automation/endpoints_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/automation/endpoints_extraction.py -------------------------------------------------------------------------------- /automation/github-endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/automation/github-endpoints.py -------------------------------------------------------------------------------- /automation/js_files_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/automation/js_files_extraction.py -------------------------------------------------------------------------------- /automation/tld_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/automation/tld_detection.py -------------------------------------------------------------------------------- /installation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/installation.sh -------------------------------------------------------------------------------- /jsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/jsa.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/requirements.txt -------------------------------------------------------------------------------- /templates/credentials-disclosure-all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/templates/credentials-disclosure-all.yaml -------------------------------------------------------------------------------- /templates/some-PIIs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/templates/some-PIIs.yaml -------------------------------------------------------------------------------- /tld_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/w9w/JSA/HEAD/tld_detection.py --------------------------------------------------------------------------------