├── .gitignore ├── Dockerfile ├── INSTALL ├── LICENSE.md ├── README.md ├── cli.py ├── data └── sample.zip ├── lib ├── __init__.py ├── aws │ ├── __init__.py │ ├── actions.py │ ├── attacks.py │ ├── ingestor.py │ ├── policy.py │ ├── profile.py │ └── resources.py ├── graph │ ├── base.py │ ├── db.py │ ├── edges.py │ └── nodes.py └── util │ ├── __init__.py │ ├── console.py │ └── keywords.py └── www ├── .browserslistrc ├── .eslintrc.json ├── babel.config.js ├── package.json ├── postcss.config.js ├── public ├── favicon.ico └── index.html └── src ├── App.vue ├── assets ├── fonts │ ├── MaterialIcons-Regular.woff │ └── MaterialIcons-Regular.woff2 └── logo.png ├── codemirror-cypher ├── cypher-codemirror.css └── cypher-codemirror.min.js ├── components ├── Database.vue ├── Graph.vue ├── Menu.vue ├── Properties.vue ├── Search.vue ├── SearchAdvanced.vue ├── SearchAdvancedFilter.vue ├── SearchResultsTable.vue ├── TemplateAutocomplete.vue ├── TemplateSelectItem.vue └── TemplateSelectSearch.vue ├── config.js ├── icons.js ├── main.js ├── neo4j.js └── queries.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/Dockerfile -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/INSTALL -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/README.md -------------------------------------------------------------------------------- /cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/cli.py -------------------------------------------------------------------------------- /data/sample.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/data/sample.zip -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/aws/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/aws/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/aws/actions.py -------------------------------------------------------------------------------- /lib/aws/attacks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/aws/attacks.py -------------------------------------------------------------------------------- /lib/aws/ingestor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/aws/ingestor.py -------------------------------------------------------------------------------- /lib/aws/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/aws/policy.py -------------------------------------------------------------------------------- /lib/aws/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/aws/profile.py -------------------------------------------------------------------------------- /lib/aws/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/aws/resources.py -------------------------------------------------------------------------------- /lib/graph/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/graph/base.py -------------------------------------------------------------------------------- /lib/graph/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/graph/db.py -------------------------------------------------------------------------------- /lib/graph/edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/graph/edges.py -------------------------------------------------------------------------------- /lib/graph/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/graph/nodes.py -------------------------------------------------------------------------------- /lib/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/util/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/util/console.py -------------------------------------------------------------------------------- /lib/util/keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/lib/util/keywords.py -------------------------------------------------------------------------------- /www/.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | -------------------------------------------------------------------------------- /www/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/.eslintrc.json -------------------------------------------------------------------------------- /www/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/babel.config.js -------------------------------------------------------------------------------- /www/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/package.json -------------------------------------------------------------------------------- /www/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/postcss.config.js -------------------------------------------------------------------------------- /www/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/public/favicon.ico -------------------------------------------------------------------------------- /www/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/public/index.html -------------------------------------------------------------------------------- /www/src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/App.vue -------------------------------------------------------------------------------- /www/src/assets/fonts/MaterialIcons-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/assets/fonts/MaterialIcons-Regular.woff -------------------------------------------------------------------------------- /www/src/assets/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/assets/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /www/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/assets/logo.png -------------------------------------------------------------------------------- /www/src/codemirror-cypher/cypher-codemirror.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/codemirror-cypher/cypher-codemirror.css -------------------------------------------------------------------------------- /www/src/codemirror-cypher/cypher-codemirror.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/codemirror-cypher/cypher-codemirror.min.js -------------------------------------------------------------------------------- /www/src/components/Database.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/Database.vue -------------------------------------------------------------------------------- /www/src/components/Graph.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/Graph.vue -------------------------------------------------------------------------------- /www/src/components/Menu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/Menu.vue -------------------------------------------------------------------------------- /www/src/components/Properties.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/Properties.vue -------------------------------------------------------------------------------- /www/src/components/Search.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/Search.vue -------------------------------------------------------------------------------- /www/src/components/SearchAdvanced.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/SearchAdvanced.vue -------------------------------------------------------------------------------- /www/src/components/SearchAdvancedFilter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/SearchAdvancedFilter.vue -------------------------------------------------------------------------------- /www/src/components/SearchResultsTable.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/SearchResultsTable.vue -------------------------------------------------------------------------------- /www/src/components/TemplateAutocomplete.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/TemplateAutocomplete.vue -------------------------------------------------------------------------------- /www/src/components/TemplateSelectItem.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/TemplateSelectItem.vue -------------------------------------------------------------------------------- /www/src/components/TemplateSelectSearch.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/components/TemplateSelectSearch.vue -------------------------------------------------------------------------------- /www/src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/config.js -------------------------------------------------------------------------------- /www/src/icons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/icons.js -------------------------------------------------------------------------------- /www/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/main.js -------------------------------------------------------------------------------- /www/src/neo4j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/neo4j.js -------------------------------------------------------------------------------- /www/src/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/awspx/HEAD/www/src/queries.js --------------------------------------------------------------------------------