├── CONTRIBUTING ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── blueprints ├── css │ ├── __init__.py │ └── templates │ │ └── list-css-dir.html ├── headers │ ├── __init__.py │ └── templates │ │ ├── content-location-header.html │ │ ├── link-header.html │ │ ├── list-headers-dir.html │ │ └── refresh-header.html ├── html │ ├── __init__.py │ └── templates │ │ ├── list-html-dir.html │ │ ├── string │ │ └── url-string.html │ │ └── url │ │ ├── full-url.html │ │ ├── path-relative-url.html │ │ └── protocol-relative-url.html ├── javascript │ ├── __init__.py │ └── templates │ │ └── list-javascript-dir.html ├── misc │ ├── __init__.py │ └── templates │ │ └── list-misc-dir.html └── utils │ ├── __init__.py │ └── resources │ └── expected-results.json ├── cloudbuild.yaml ├── requirements.txt ├── templates ├── index.html └── sitemap.xml └── test-cases ├── css └── font-face.html ├── headers ├── content-location ├── link ├── location └── refresh ├── html ├── body │ ├── a │ │ ├── href.html │ │ └── ping.html │ ├── applet │ │ ├── archive.html │ │ └── codebase.html │ ├── audio │ │ ├── source │ │ │ ├── src.html │ │ │ └── srcset.html │ │ └── src.html │ ├── background.html │ ├── blockquote │ │ └── cite.html │ ├── embed │ │ └── src.html │ ├── form │ │ ├── action-get.html │ │ ├── action-post.html │ │ └── button │ │ │ └── formaction.html │ ├── frameset │ │ └── frame │ │ │ └── src.html │ ├── iframe │ │ ├── src.html │ │ └── srcdoc.html │ ├── img │ │ ├── dynsrc.html │ │ ├── longdesc.html │ │ ├── lowsrc.html │ │ ├── src-data.html │ │ ├── src.html │ │ └── srcset.html │ ├── input │ │ └── src.html │ ├── isindex │ │ └── action.html │ ├── map │ │ └── area │ │ │ └── ping.html │ ├── object │ │ ├── codebase.html │ │ ├── data.html │ │ └── param │ │ │ └── value.html │ ├── script │ │ └── src.html │ ├── svg │ │ ├── image │ │ │ └── xlink.html │ │ └── script │ │ │ └── xlink.html │ ├── table │ │ ├── background.html │ │ └── td │ │ │ └── background.html │ └── video │ │ ├── poster.html │ │ ├── src.html │ │ └── track │ │ └── src.html ├── doctype.html ├── head │ ├── base │ │ └── href.html │ ├── comment │ │ └── comment-conditional.html │ ├── import │ │ └── implementation.html │ ├── link │ │ └── href.html │ ├── meta │ │ ├── content-csp.html │ │ ├── content-pinned-websites.html │ │ ├── content-reading-view.html │ │ └── content-redirect.html │ └── profile.html ├── manifest.html └── misc │ ├── string │ ├── dot-dot-slash-prefix.html │ ├── dot-slash-prefix.html │ ├── string-known-extension.html │ └── url-string │ └── url │ ├── full-url │ ├── path-relative-url │ ├── protocol-relative-url │ └── root-relative-url.html ├── javascript ├── frameworks │ ├── angular │ │ ├── angular.json │ │ ├── browserslist │ │ ├── package.json │ │ ├── src │ │ │ ├── app │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.component.html │ │ │ │ ├── app.component.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── event-handler │ │ │ │ │ └── event-handler.component.ts │ │ │ │ └── router-outlet │ │ │ │ │ └── router-outlet.component.ts │ │ │ ├── environments │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ └── polyfills.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── angularjs │ │ ├── index.html │ │ └── main.js │ ├── polymer │ │ ├── index.html │ │ ├── manifest.json │ │ ├── package.json │ │ ├── polymer.json │ │ └── src │ │ │ ├── event-handler.js │ │ │ ├── home-page.js │ │ │ ├── my-app.js │ │ │ └── polymer-router.js │ └── react │ │ ├── package.json │ │ ├── public │ │ ├── index.html │ │ └── manifest.json │ │ └── src │ │ ├── App.js │ │ ├── actions │ │ ├── actionTypes.js │ │ └── actions.js │ │ ├── components │ │ ├── Home.js │ │ ├── QueryResult.js │ │ └── SearchWidget.js │ │ ├── index.js │ │ ├── reducers │ │ ├── index.js │ │ └── query.js │ │ └── routes │ │ └── index.js ├── interactive │ ├── js-delete.html │ ├── js-post-event-listener.html │ ├── js-post.html │ ├── js-put.html │ ├── listener-and-event-attribute.html │ ├── multi-step-request-event-attribute.html │ ├── multi-step-request-event-listener-div-dom.html │ ├── multi-step-request-event-listener-div.html │ ├── multi-step-request-event-listener-dom.html │ ├── multi-step-request-event-listener.html │ ├── multi-step-request-redefine-event-attribute.html │ ├── multi-step-request-remove-button.html │ ├── multi-step-request-remove-event-listener.html │ └── two-listeners.html └── misc │ ├── automatic-post.html │ ├── comment.html │ ├── string-concat-variable.html │ └── string-variable.html └── misc └── known-files ├── robots.txt.html └── sitemap.xml.html /CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/CONTRIBUTING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/app.py -------------------------------------------------------------------------------- /blueprints/css/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/css/__init__.py -------------------------------------------------------------------------------- /blueprints/css/templates/list-css-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/css/templates/list-css-dir.html -------------------------------------------------------------------------------- /blueprints/headers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/headers/__init__.py -------------------------------------------------------------------------------- /blueprints/headers/templates/content-location-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/headers/templates/content-location-header.html -------------------------------------------------------------------------------- /blueprints/headers/templates/link-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/headers/templates/link-header.html -------------------------------------------------------------------------------- /blueprints/headers/templates/list-headers-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/headers/templates/list-headers-dir.html -------------------------------------------------------------------------------- /blueprints/headers/templates/refresh-header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/headers/templates/refresh-header.html -------------------------------------------------------------------------------- /blueprints/html/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/html/__init__.py -------------------------------------------------------------------------------- /blueprints/html/templates/list-html-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/html/templates/list-html-dir.html -------------------------------------------------------------------------------- /blueprints/html/templates/string/url-string.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/html/templates/string/url-string.html -------------------------------------------------------------------------------- /blueprints/html/templates/url/full-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/html/templates/url/full-url.html -------------------------------------------------------------------------------- /blueprints/html/templates/url/path-relative-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/html/templates/url/path-relative-url.html -------------------------------------------------------------------------------- /blueprints/html/templates/url/protocol-relative-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/html/templates/url/protocol-relative-url.html -------------------------------------------------------------------------------- /blueprints/javascript/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/javascript/__init__.py -------------------------------------------------------------------------------- /blueprints/javascript/templates/list-javascript-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/javascript/templates/list-javascript-dir.html -------------------------------------------------------------------------------- /blueprints/misc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/misc/__init__.py -------------------------------------------------------------------------------- /blueprints/misc/templates/list-misc-dir.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/misc/templates/list-misc-dir.html -------------------------------------------------------------------------------- /blueprints/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/utils/__init__.py -------------------------------------------------------------------------------- /blueprints/utils/resources/expected-results.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/blueprints/utils/resources/expected-results.json -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask==1.0.2 2 | -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/templates/sitemap.xml -------------------------------------------------------------------------------- /test-cases/css/font-face.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/css/font-face.html -------------------------------------------------------------------------------- /test-cases/headers/content-location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/headers/content-location -------------------------------------------------------------------------------- /test-cases/headers/link: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/headers/link -------------------------------------------------------------------------------- /test-cases/headers/location: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/headers/location -------------------------------------------------------------------------------- /test-cases/headers/refresh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/headers/refresh -------------------------------------------------------------------------------- /test-cases/html/body/a/href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/a/href.html -------------------------------------------------------------------------------- /test-cases/html/body/a/ping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/a/ping.html -------------------------------------------------------------------------------- /test-cases/html/body/applet/archive.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/applet/archive.html -------------------------------------------------------------------------------- /test-cases/html/body/applet/codebase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/applet/codebase.html -------------------------------------------------------------------------------- /test-cases/html/body/audio/source/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/audio/source/src.html -------------------------------------------------------------------------------- /test-cases/html/body/audio/source/srcset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/audio/source/srcset.html -------------------------------------------------------------------------------- /test-cases/html/body/audio/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/audio/src.html -------------------------------------------------------------------------------- /test-cases/html/body/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/background.html -------------------------------------------------------------------------------- /test-cases/html/body/blockquote/cite.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/blockquote/cite.html -------------------------------------------------------------------------------- /test-cases/html/body/embed/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/embed/src.html -------------------------------------------------------------------------------- /test-cases/html/body/form/action-get.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/form/action-get.html -------------------------------------------------------------------------------- /test-cases/html/body/form/action-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/form/action-post.html -------------------------------------------------------------------------------- /test-cases/html/body/form/button/formaction.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/form/button/formaction.html -------------------------------------------------------------------------------- /test-cases/html/body/frameset/frame/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/frameset/frame/src.html -------------------------------------------------------------------------------- /test-cases/html/body/iframe/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/iframe/src.html -------------------------------------------------------------------------------- /test-cases/html/body/iframe/srcdoc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/iframe/srcdoc.html -------------------------------------------------------------------------------- /test-cases/html/body/img/dynsrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/img/dynsrc.html -------------------------------------------------------------------------------- /test-cases/html/body/img/longdesc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/img/longdesc.html -------------------------------------------------------------------------------- /test-cases/html/body/img/lowsrc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/img/lowsrc.html -------------------------------------------------------------------------------- /test-cases/html/body/img/src-data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/img/src-data.html -------------------------------------------------------------------------------- /test-cases/html/body/img/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/img/src.html -------------------------------------------------------------------------------- /test-cases/html/body/img/srcset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/img/srcset.html -------------------------------------------------------------------------------- /test-cases/html/body/input/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/input/src.html -------------------------------------------------------------------------------- /test-cases/html/body/isindex/action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/isindex/action.html -------------------------------------------------------------------------------- /test-cases/html/body/map/area/ping.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/map/area/ping.html -------------------------------------------------------------------------------- /test-cases/html/body/object/codebase.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/object/codebase.html -------------------------------------------------------------------------------- /test-cases/html/body/object/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/object/data.html -------------------------------------------------------------------------------- /test-cases/html/body/object/param/value.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/object/param/value.html -------------------------------------------------------------------------------- /test-cases/html/body/script/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/script/src.html -------------------------------------------------------------------------------- /test-cases/html/body/svg/image/xlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/svg/image/xlink.html -------------------------------------------------------------------------------- /test-cases/html/body/svg/script/xlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/svg/script/xlink.html -------------------------------------------------------------------------------- /test-cases/html/body/table/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/table/background.html -------------------------------------------------------------------------------- /test-cases/html/body/table/td/background.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/table/td/background.html -------------------------------------------------------------------------------- /test-cases/html/body/video/poster.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/video/poster.html -------------------------------------------------------------------------------- /test-cases/html/body/video/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/video/src.html -------------------------------------------------------------------------------- /test-cases/html/body/video/track/src.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/body/video/track/src.html -------------------------------------------------------------------------------- /test-cases/html/doctype.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/doctype.html -------------------------------------------------------------------------------- /test-cases/html/head/base/href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/base/href.html -------------------------------------------------------------------------------- /test-cases/html/head/comment/comment-conditional.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/comment/comment-conditional.html -------------------------------------------------------------------------------- /test-cases/html/head/import/implementation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/import/implementation.html -------------------------------------------------------------------------------- /test-cases/html/head/link/href.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/link/href.html -------------------------------------------------------------------------------- /test-cases/html/head/meta/content-csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/meta/content-csp.html -------------------------------------------------------------------------------- /test-cases/html/head/meta/content-pinned-websites.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/meta/content-pinned-websites.html -------------------------------------------------------------------------------- /test-cases/html/head/meta/content-reading-view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/meta/content-reading-view.html -------------------------------------------------------------------------------- /test-cases/html/head/meta/content-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/meta/content-redirect.html -------------------------------------------------------------------------------- /test-cases/html/head/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/head/profile.html -------------------------------------------------------------------------------- /test-cases/html/manifest.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/manifest.html -------------------------------------------------------------------------------- /test-cases/html/misc/string/dot-dot-slash-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/string/dot-dot-slash-prefix.html -------------------------------------------------------------------------------- /test-cases/html/misc/string/dot-slash-prefix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/string/dot-slash-prefix.html -------------------------------------------------------------------------------- /test-cases/html/misc/string/string-known-extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/string/string-known-extension.html -------------------------------------------------------------------------------- /test-cases/html/misc/string/url-string: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/string/url-string -------------------------------------------------------------------------------- /test-cases/html/misc/url/full-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/url/full-url -------------------------------------------------------------------------------- /test-cases/html/misc/url/path-relative-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/url/path-relative-url -------------------------------------------------------------------------------- /test-cases/html/misc/url/protocol-relative-url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/url/protocol-relative-url -------------------------------------------------------------------------------- /test-cases/html/misc/url/root-relative-url.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/html/misc/url/root-relative-url.html -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/angular.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/browserslist -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/package.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/app/app.component.html -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/app/app.component.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/app/app.module.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/app/event-handler/event-handler.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/app/event-handler/event-handler.component.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/app/router-outlet/router-outlet.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/app/router-outlet/router-outlet.component.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/environments/environment.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/index.html -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/main.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/src/polyfills.ts -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/tsconfig.app.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/tsconfig.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angular/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angular/tsconfig.spec.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angularjs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angularjs/index.html -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/angularjs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/angularjs/main.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/index.html -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Security Crawl Maze - Polymer" 3 | } 4 | -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/package.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/polymer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/polymer.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/src/event-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/src/event-handler.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/src/home-page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/src/home-page.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/src/my-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/src/my-app.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/polymer/src/polymer-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/polymer/src/polymer-router.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/package.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/public/index.html -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/public/manifest.json -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/App.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/actions/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/actions/actionTypes.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/actions/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/actions/actions.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/components/Home.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/components/Home.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/components/QueryResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/components/QueryResult.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/components/SearchWidget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/components/SearchWidget.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/index.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/reducers/index.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/reducers/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/reducers/query.js -------------------------------------------------------------------------------- /test-cases/javascript/frameworks/react/src/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/frameworks/react/src/routes/index.js -------------------------------------------------------------------------------- /test-cases/javascript/interactive/js-delete.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/js-delete.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/js-post-event-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/js-post-event-listener.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/js-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/js-post.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/js-put.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/js-put.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/listener-and-event-attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/listener-and-event-attribute.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-event-attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-event-attribute.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-event-listener-div-dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-event-listener-div-dom.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-event-listener-div.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-event-listener-div.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-event-listener-dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-event-listener-dom.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-event-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-event-listener.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-redefine-event-attribute.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-redefine-event-attribute.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-remove-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-remove-button.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/multi-step-request-remove-event-listener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/multi-step-request-remove-event-listener.html -------------------------------------------------------------------------------- /test-cases/javascript/interactive/two-listeners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/interactive/two-listeners.html -------------------------------------------------------------------------------- /test-cases/javascript/misc/automatic-post.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/misc/automatic-post.html -------------------------------------------------------------------------------- /test-cases/javascript/misc/comment.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/misc/comment.html -------------------------------------------------------------------------------- /test-cases/javascript/misc/string-concat-variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/misc/string-concat-variable.html -------------------------------------------------------------------------------- /test-cases/javascript/misc/string-variable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/javascript/misc/string-variable.html -------------------------------------------------------------------------------- /test-cases/misc/known-files/robots.txt.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/misc/known-files/robots.txt.html -------------------------------------------------------------------------------- /test-cases/misc/known-files/sitemap.xml.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/security-crawl-maze/HEAD/test-cases/misc/known-files/sitemap.xml.html --------------------------------------------------------------------------------