├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── Dockerfile-alpine ├── Dockerfile-alpine-py3 ├── Dockerfile-kalilinux ├── Dockerfile-kalilinux-py3 ├── Dockerfile-ubuntu ├── Dockerfile-ubuntu-py3 ├── LICENSE.txt ├── MANIFEST.in ├── README ├── README.md ├── docs ├── Makefile ├── canari.config.rst ├── canari.framework.rst ├── canari.maltego.entities.rst ├── canari.maltego.message.rst ├── canari.mode.rst ├── canari.quickstart.rst ├── conf.py ├── images │ ├── bookmark_cyan.png │ ├── bookmark_green.png │ ├── bookmark_nocolor.png │ ├── bookmark_orange.png │ ├── bookmark_red.png │ ├── bookmark_yellow.png │ ├── canari_sudo.png │ ├── link_color_black.png │ ├── link_color_cyan.png │ ├── link_color_darkgray.png │ ├── link_color_darkgreen.png │ ├── link_color_lightgray.png │ ├── link_color_lime.png │ ├── link_color_magenta.png │ ├── link_color_navyblue.png │ ├── link_color_orange.png │ ├── link_color_pink.png │ ├── link_color_red.png │ ├── link_color_yellow.png │ ├── link_style_dashdot.png │ ├── link_style_dashed.png │ ├── link_style_dotted.png │ ├── link_style_normal.png │ ├── link_style_solid.png │ ├── maltego_add_decorations.png │ ├── maltego_bookmark.png │ ├── maltego_debug_pane.png │ ├── maltego_detail_view.png │ ├── maltego_dynamic_property.png │ ├── maltego_entity.png │ ├── maltego_entity_field.png │ ├── maltego_entity_field_editor.png │ ├── maltego_entity_field_editor_description.png │ ├── maltego_exception.png │ ├── maltego_export_entities.png │ ├── maltego_export_entities_button.png │ ├── maltego_global_label_visibility_settings.png │ ├── maltego_icon_url.png │ ├── maltego_import_profile.png │ ├── maltego_link_color.png │ ├── maltego_link_label.png │ ├── maltego_link_style.png │ ├── maltego_link_thickness.png │ ├── maltego_note.png │ ├── maltego_property_view.png │ ├── maltego_raw_exception.png │ ├── maltego_run_transform.png │ ├── maltego_tas_infrastructure.png │ ├── maltego_transform_friendly_name.png │ ├── maltego_transform_hub.png │ ├── maltego_validation_error.png │ ├── paterva_tds_console.png │ └── uimessage_fatal.png ├── index.rst └── make.bat ├── lambda ├── Dockerfile ├── build_wheels.sh └── upload-github-release-asset.sh ├── mkdocs.yml ├── requirements.txt ├── scripts ├── canari ├── canari.bat ├── dispatcher ├── dispatcher.bat └── pysudo ├── setup.py ├── src └── canari │ ├── __init__.py │ ├── commands │ ├── __init__.py │ ├── banner.py │ ├── common.py │ ├── create_aws_lambda.py │ ├── create_package.py │ ├── create_profile.py │ ├── create_transform.py │ ├── debug_transform.py │ ├── dockerize_package.py │ ├── framework.py │ ├── generate_entities.py │ ├── generate_entities_doc.py │ ├── install_plume.py │ ├── list_transforms.py │ ├── load_plume_package.py │ ├── remote_transform.py │ ├── run_transform.py │ ├── shell.py │ ├── unload_plume_package.py │ └── version.py │ ├── config.py │ ├── easygui.py │ ├── entrypoints.py │ ├── framework.py │ ├── maltego │ ├── __init__.py │ ├── configuration.py │ ├── entities.py │ ├── message.py │ ├── oxml.py │ ├── runner.py │ ├── transform.py │ └── utils.py │ ├── mode.py │ ├── pkgutils │ ├── __init__.py │ ├── maltego.py │ └── transform.py │ ├── project.py │ ├── question.py │ ├── resource.py │ ├── resources │ ├── __init__.py │ ├── etc │ │ ├── __init__.py │ │ └── canari.conf │ ├── external │ │ ├── __init__.py │ │ └── banner.txt │ └── templates │ │ ├── __init__.py │ │ ├── create_aws_lambda │ │ ├── .chalice │ │ │ └── config.json.bob │ │ ├── .gitignore │ │ ├── .mrbob.ini │ │ ├── README │ │ ├── app.py.bob │ │ ├── chalicelib │ │ │ └── README │ │ ├── requirements.txt.bob │ │ └── vendor │ │ │ └── README │ │ ├── create_package │ │ ├── .canari.bob │ │ ├── .mrbob.ini │ │ ├── MANIFEST.in │ │ ├── README.bob │ │ ├── setup.py.bob │ │ └── src │ │ │ └── +project.name+ │ │ │ ├── __init__.py.bob │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── etc │ │ │ │ ├── +project.name+.conf.bob │ │ │ │ └── __init__.py │ │ │ ├── external │ │ │ │ ├── README │ │ │ │ └── __init__.py │ │ │ ├── images │ │ │ │ └── __init__.py │ │ │ └── maltego │ │ │ │ └── __init__.py │ │ │ └── transforms │ │ │ ├── __init__.py │ │ │ ├── common │ │ │ ├── __init__.py │ │ │ └── entities.py.bob │ │ │ └── helloworld.py.bob │ │ ├── create_package_no_example │ │ ├── .canari.bob │ │ ├── .mrbob.ini │ │ ├── MANIFEST.in │ │ ├── README.bob │ │ ├── setup.py.bob │ │ └── src │ │ │ └── +project.name+ │ │ │ ├── __init__.py.bob │ │ │ ├── resources │ │ │ ├── __init__.py │ │ │ ├── etc │ │ │ │ ├── +project.name+.conf.bob │ │ │ │ └── __init__.py │ │ │ ├── external │ │ │ │ ├── README │ │ │ │ └── __init__.py │ │ │ ├── images │ │ │ │ └── __init__.py │ │ │ └── maltego │ │ │ │ └── __init__.py │ │ │ └── transforms │ │ │ ├── __init__.py │ │ │ └── common │ │ │ ├── __init__.py │ │ │ └── entities.py.bob │ │ ├── create_profile │ │ ├── .mrbob.ini │ │ └── canari.conf.bob │ │ ├── create_transform │ │ ├── .mrbob.ini │ │ └── src │ │ │ └── +project.name+ │ │ │ └── transforms │ │ │ └── +transform.module+.py.bob │ │ ├── dockerize_package │ │ ├── .mrbob.ini │ │ ├── Dockerfile-alpine-py3.bob │ │ ├── Dockerfile-alpine.bob │ │ ├── Dockerfile-kalilinux-py3.bob │ │ ├── Dockerfile-kalilinux.bob │ │ ├── Dockerfile-ubuntu-py3.bob │ │ └── Dockerfile-ubuntu.bob │ │ ├── generate_entities │ │ ├── .mrbob.ini │ │ └── entities.py.bob │ │ ├── generate_entities_doc │ │ ├── .mrbob.ini │ │ └── entities.rst.bob │ │ ├── init_canari │ │ ├── .mrbob.ini │ │ └── canari.conf.bob │ │ └── install_plume │ │ ├── .mrbob.ini │ │ ├── canari.conf │ │ └── plume.bob │ ├── tas │ ├── __init__.py │ └── plume.py │ └── utils │ ├── __init__.py │ ├── common.py │ ├── fs.py │ ├── stack.py │ └── wordlist.py └── tests ├── __init__.py ├── maltego ├── __init__.py ├── test_entities.py └── test_transform.py ├── pkgutils ├── __init__.py └── test_transform.py ├── resources ├── __init__.py ├── images │ ├── 0.png │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── __init__.py ├── root.conf ├── subconf.conf ├── wordlist.txt └── wordlist.txt.gz ├── test_config.py ├── test_framework.py ├── test_mode.py ├── test_resource.py └── utils ├── __init__.py └── test_wordlist.py /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile-alpine: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/Dockerfile-alpine -------------------------------------------------------------------------------- /Dockerfile-alpine-py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/Dockerfile-alpine-py3 -------------------------------------------------------------------------------- /Dockerfile-kalilinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/Dockerfile-kalilinux -------------------------------------------------------------------------------- /Dockerfile-kalilinux-py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/Dockerfile-kalilinux-py3 -------------------------------------------------------------------------------- /Dockerfile-ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/Dockerfile-ubuntu -------------------------------------------------------------------------------- /Dockerfile-ubuntu-py3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/Dockerfile-ubuntu-py3 -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | graft src 2 | -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/canari.config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/canari.config.rst -------------------------------------------------------------------------------- /docs/canari.framework.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/canari.framework.rst -------------------------------------------------------------------------------- /docs/canari.maltego.entities.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/canari.maltego.entities.rst -------------------------------------------------------------------------------- /docs/canari.maltego.message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/canari.maltego.message.rst -------------------------------------------------------------------------------- /docs/canari.mode.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/canari.mode.rst -------------------------------------------------------------------------------- /docs/canari.quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/canari.quickstart.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/images/bookmark_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/bookmark_cyan.png -------------------------------------------------------------------------------- /docs/images/bookmark_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/bookmark_green.png -------------------------------------------------------------------------------- /docs/images/bookmark_nocolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/bookmark_nocolor.png -------------------------------------------------------------------------------- /docs/images/bookmark_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/bookmark_orange.png -------------------------------------------------------------------------------- /docs/images/bookmark_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/bookmark_red.png -------------------------------------------------------------------------------- /docs/images/bookmark_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/bookmark_yellow.png -------------------------------------------------------------------------------- /docs/images/canari_sudo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/canari_sudo.png -------------------------------------------------------------------------------- /docs/images/link_color_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_black.png -------------------------------------------------------------------------------- /docs/images/link_color_cyan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_cyan.png -------------------------------------------------------------------------------- /docs/images/link_color_darkgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_darkgray.png -------------------------------------------------------------------------------- /docs/images/link_color_darkgreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_darkgreen.png -------------------------------------------------------------------------------- /docs/images/link_color_lightgray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_lightgray.png -------------------------------------------------------------------------------- /docs/images/link_color_lime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_lime.png -------------------------------------------------------------------------------- /docs/images/link_color_magenta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_magenta.png -------------------------------------------------------------------------------- /docs/images/link_color_navyblue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_navyblue.png -------------------------------------------------------------------------------- /docs/images/link_color_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_orange.png -------------------------------------------------------------------------------- /docs/images/link_color_pink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_pink.png -------------------------------------------------------------------------------- /docs/images/link_color_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_red.png -------------------------------------------------------------------------------- /docs/images/link_color_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_color_yellow.png -------------------------------------------------------------------------------- /docs/images/link_style_dashdot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_style_dashdot.png -------------------------------------------------------------------------------- /docs/images/link_style_dashed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_style_dashed.png -------------------------------------------------------------------------------- /docs/images/link_style_dotted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_style_dotted.png -------------------------------------------------------------------------------- /docs/images/link_style_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_style_normal.png -------------------------------------------------------------------------------- /docs/images/link_style_solid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/link_style_solid.png -------------------------------------------------------------------------------- /docs/images/maltego_add_decorations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_add_decorations.png -------------------------------------------------------------------------------- /docs/images/maltego_bookmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_bookmark.png -------------------------------------------------------------------------------- /docs/images/maltego_debug_pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_debug_pane.png -------------------------------------------------------------------------------- /docs/images/maltego_detail_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_detail_view.png -------------------------------------------------------------------------------- /docs/images/maltego_dynamic_property.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_dynamic_property.png -------------------------------------------------------------------------------- /docs/images/maltego_entity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_entity.png -------------------------------------------------------------------------------- /docs/images/maltego_entity_field.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_entity_field.png -------------------------------------------------------------------------------- /docs/images/maltego_entity_field_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_entity_field_editor.png -------------------------------------------------------------------------------- /docs/images/maltego_entity_field_editor_description.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_entity_field_editor_description.png -------------------------------------------------------------------------------- /docs/images/maltego_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_exception.png -------------------------------------------------------------------------------- /docs/images/maltego_export_entities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_export_entities.png -------------------------------------------------------------------------------- /docs/images/maltego_export_entities_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_export_entities_button.png -------------------------------------------------------------------------------- /docs/images/maltego_global_label_visibility_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_global_label_visibility_settings.png -------------------------------------------------------------------------------- /docs/images/maltego_icon_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_icon_url.png -------------------------------------------------------------------------------- /docs/images/maltego_import_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_import_profile.png -------------------------------------------------------------------------------- /docs/images/maltego_link_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_link_color.png -------------------------------------------------------------------------------- /docs/images/maltego_link_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_link_label.png -------------------------------------------------------------------------------- /docs/images/maltego_link_style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_link_style.png -------------------------------------------------------------------------------- /docs/images/maltego_link_thickness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_link_thickness.png -------------------------------------------------------------------------------- /docs/images/maltego_note.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_note.png -------------------------------------------------------------------------------- /docs/images/maltego_property_view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_property_view.png -------------------------------------------------------------------------------- /docs/images/maltego_raw_exception.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_raw_exception.png -------------------------------------------------------------------------------- /docs/images/maltego_run_transform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_run_transform.png -------------------------------------------------------------------------------- /docs/images/maltego_tas_infrastructure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_tas_infrastructure.png -------------------------------------------------------------------------------- /docs/images/maltego_transform_friendly_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_transform_friendly_name.png -------------------------------------------------------------------------------- /docs/images/maltego_transform_hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_transform_hub.png -------------------------------------------------------------------------------- /docs/images/maltego_validation_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/maltego_validation_error.png -------------------------------------------------------------------------------- /docs/images/paterva_tds_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/paterva_tds_console.png -------------------------------------------------------------------------------- /docs/images/uimessage_fatal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/images/uimessage_fatal.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/docs/make.bat -------------------------------------------------------------------------------- /lambda/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/lambda/Dockerfile -------------------------------------------------------------------------------- /lambda/build_wheels.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/lambda/build_wheels.sh -------------------------------------------------------------------------------- /lambda/upload-github-release-asset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/lambda/upload-github-release-asset.sh -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/canari: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/scripts/canari -------------------------------------------------------------------------------- /scripts/canari.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/scripts/canari.bat -------------------------------------------------------------------------------- /scripts/dispatcher: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/scripts/dispatcher -------------------------------------------------------------------------------- /scripts/dispatcher.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/scripts/dispatcher.bat -------------------------------------------------------------------------------- /scripts/pysudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/scripts/pysudo -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/setup.py -------------------------------------------------------------------------------- /src/canari/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/__init__.py -------------------------------------------------------------------------------- /src/canari/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/__init__.py -------------------------------------------------------------------------------- /src/canari/commands/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/banner.py -------------------------------------------------------------------------------- /src/canari/commands/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/common.py -------------------------------------------------------------------------------- /src/canari/commands/create_aws_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/create_aws_lambda.py -------------------------------------------------------------------------------- /src/canari/commands/create_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/create_package.py -------------------------------------------------------------------------------- /src/canari/commands/create_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/create_profile.py -------------------------------------------------------------------------------- /src/canari/commands/create_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/create_transform.py -------------------------------------------------------------------------------- /src/canari/commands/debug_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/debug_transform.py -------------------------------------------------------------------------------- /src/canari/commands/dockerize_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/dockerize_package.py -------------------------------------------------------------------------------- /src/canari/commands/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/framework.py -------------------------------------------------------------------------------- /src/canari/commands/generate_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/generate_entities.py -------------------------------------------------------------------------------- /src/canari/commands/generate_entities_doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/generate_entities_doc.py -------------------------------------------------------------------------------- /src/canari/commands/install_plume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/install_plume.py -------------------------------------------------------------------------------- /src/canari/commands/list_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/list_transforms.py -------------------------------------------------------------------------------- /src/canari/commands/load_plume_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/load_plume_package.py -------------------------------------------------------------------------------- /src/canari/commands/remote_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/remote_transform.py -------------------------------------------------------------------------------- /src/canari/commands/run_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/run_transform.py -------------------------------------------------------------------------------- /src/canari/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/shell.py -------------------------------------------------------------------------------- /src/canari/commands/unload_plume_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/unload_plume_package.py -------------------------------------------------------------------------------- /src/canari/commands/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/commands/version.py -------------------------------------------------------------------------------- /src/canari/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/config.py -------------------------------------------------------------------------------- /src/canari/easygui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/easygui.py -------------------------------------------------------------------------------- /src/canari/entrypoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/entrypoints.py -------------------------------------------------------------------------------- /src/canari/framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/framework.py -------------------------------------------------------------------------------- /src/canari/maltego/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/__init__.py -------------------------------------------------------------------------------- /src/canari/maltego/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/configuration.py -------------------------------------------------------------------------------- /src/canari/maltego/entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/entities.py -------------------------------------------------------------------------------- /src/canari/maltego/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/message.py -------------------------------------------------------------------------------- /src/canari/maltego/oxml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/oxml.py -------------------------------------------------------------------------------- /src/canari/maltego/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/runner.py -------------------------------------------------------------------------------- /src/canari/maltego/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/transform.py -------------------------------------------------------------------------------- /src/canari/maltego/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/maltego/utils.py -------------------------------------------------------------------------------- /src/canari/mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/mode.py -------------------------------------------------------------------------------- /src/canari/pkgutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/pkgutils/__init__.py -------------------------------------------------------------------------------- /src/canari/pkgutils/maltego.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/pkgutils/maltego.py -------------------------------------------------------------------------------- /src/canari/pkgutils/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/pkgutils/transform.py -------------------------------------------------------------------------------- /src/canari/project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/project.py -------------------------------------------------------------------------------- /src/canari/question.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/question.py -------------------------------------------------------------------------------- /src/canari/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resource.py -------------------------------------------------------------------------------- /src/canari/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/__init__.py -------------------------------------------------------------------------------- /src/canari/resources/etc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/etc/__init__.py -------------------------------------------------------------------------------- /src/canari/resources/etc/canari.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/etc/canari.conf -------------------------------------------------------------------------------- /src/canari/resources/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/external/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/external/banner.txt -------------------------------------------------------------------------------- /src/canari/resources/templates/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/__init__.py -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/.chalice/config.json.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_aws_lambda/.chalice/config.json.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_aws_lambda/.gitignore -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/.mrbob.ini: -------------------------------------------------------------------------------- 1 | [variables] 2 | project.requirements = 3 | 4 | package.transforms = -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_aws_lambda/README -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/app.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_aws_lambda/app.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/chalicelib/README: -------------------------------------------------------------------------------- 1 | Add any non-python files here. -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/requirements.txt.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_aws_lambda/requirements.txt.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_aws_lambda/vendor/README: -------------------------------------------------------------------------------- 1 | Add any python third-party packages here. -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/.canari.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/.canari.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/.mrbob.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/.mrbob.ini -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/MANIFEST.in -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/README.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/README.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/setup.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/setup.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/__init__.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/src/+project.name+/__init__.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/src/+project.name+/resources/__init__.py -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/etc/+project.name+.conf.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/src/+project.name+/resources/etc/+project.name+.conf.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/etc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/external/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/src/+project.name+/resources/external/README -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/resources/maltego/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/transforms/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'common' 3 | ] 4 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/transforms/common/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'entities' 3 | ] 4 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/transforms/common/entities.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/src/+project.name+/transforms/common/entities.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package/src/+project.name+/transforms/helloworld.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package/src/+project.name+/transforms/helloworld.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/.canari.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/.canari.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/.mrbob.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/.mrbob.ini -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/MANIFEST.in -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/README.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/README.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/setup.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/setup.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/__init__.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/src/+project.name+/__init__.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/__init__.py -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/etc/+project.name+.conf.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/etc/+project.name+.conf.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/etc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/external/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/external/README -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/external/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/images/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/resources/maltego/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/transforms/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'common' 3 | ] 4 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/transforms/common/__init__.py: -------------------------------------------------------------------------------- 1 | __all__ = [ 2 | 'entities' 3 | ] 4 | -------------------------------------------------------------------------------- /src/canari/resources/templates/create_package_no_example/src/+project.name+/transforms/common/entities.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_package_no_example/src/+project.name+/transforms/common/entities.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_profile/.mrbob.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_profile/.mrbob.ini -------------------------------------------------------------------------------- /src/canari/resources/templates/create_profile/canari.conf.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_profile/canari.conf.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/create_transform/.mrbob.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_transform/.mrbob.ini -------------------------------------------------------------------------------- /src/canari/resources/templates/create_transform/src/+project.name+/transforms/+transform.module+.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/create_transform/src/+project.name+/transforms/+transform.module+.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/.mrbob.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/Dockerfile-alpine-py3.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/dockerize_package/Dockerfile-alpine-py3.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/Dockerfile-alpine.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/dockerize_package/Dockerfile-alpine.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/Dockerfile-kalilinux-py3.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/dockerize_package/Dockerfile-kalilinux-py3.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/Dockerfile-kalilinux.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/dockerize_package/Dockerfile-kalilinux.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/Dockerfile-ubuntu-py3.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/dockerize_package/Dockerfile-ubuntu-py3.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/dockerize_package/Dockerfile-ubuntu.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/dockerize_package/Dockerfile-ubuntu.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/generate_entities/.mrbob.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/generate_entities/entities.py.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/generate_entities/entities.py.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/generate_entities_doc/.mrbob.ini: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/canari/resources/templates/generate_entities_doc/entities.rst.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/generate_entities_doc/entities.rst.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/init_canari/.mrbob.ini: -------------------------------------------------------------------------------- 1 | [variables] 2 | canari.command = 3 | -------------------------------------------------------------------------------- /src/canari/resources/templates/init_canari/canari.conf.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/init_canari/canari.conf.bob -------------------------------------------------------------------------------- /src/canari/resources/templates/install_plume/.mrbob.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/install_plume/.mrbob.ini -------------------------------------------------------------------------------- /src/canari/resources/templates/install_plume/canari.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/install_plume/canari.conf -------------------------------------------------------------------------------- /src/canari/resources/templates/install_plume/plume.bob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/resources/templates/install_plume/plume.bob -------------------------------------------------------------------------------- /src/canari/tas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/tas/__init__.py -------------------------------------------------------------------------------- /src/canari/tas/plume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/tas/plume.py -------------------------------------------------------------------------------- /src/canari/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/utils/__init__.py -------------------------------------------------------------------------------- /src/canari/utils/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/utils/common.py -------------------------------------------------------------------------------- /src/canari/utils/fs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/utils/fs.py -------------------------------------------------------------------------------- /src/canari/utils/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/utils/stack.py -------------------------------------------------------------------------------- /src/canari/utils/wordlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/src/canari/utils/wordlist.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/maltego/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/maltego/__init__.py -------------------------------------------------------------------------------- /tests/maltego/test_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/maltego/test_entities.py -------------------------------------------------------------------------------- /tests/maltego/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/maltego/test_transform.py -------------------------------------------------------------------------------- /tests/pkgutils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/pkgutils/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/pkgutils/test_transform.py -------------------------------------------------------------------------------- /tests/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/__init__.py -------------------------------------------------------------------------------- /tests/resources/images/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/images/0.png -------------------------------------------------------------------------------- /tests/resources/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/images/1.png -------------------------------------------------------------------------------- /tests/resources/images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/images/2.png -------------------------------------------------------------------------------- /tests/resources/images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/images/3.png -------------------------------------------------------------------------------- /tests/resources/images/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/images/__init__.py -------------------------------------------------------------------------------- /tests/resources/root.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/root.conf -------------------------------------------------------------------------------- /tests/resources/subconf.conf: -------------------------------------------------------------------------------- 1 | [subconf] 2 | test = hello world -------------------------------------------------------------------------------- /tests/resources/wordlist.txt: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 -------------------------------------------------------------------------------- /tests/resources/wordlist.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/resources/wordlist.txt.gz -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_framework.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/test_framework.py -------------------------------------------------------------------------------- /tests/test_mode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/test_mode.py -------------------------------------------------------------------------------- /tests/test_resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/test_resource.py -------------------------------------------------------------------------------- /tests/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/utils/test_wordlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/malleum-inc/canari3/HEAD/tests/utils/test_wordlist.py --------------------------------------------------------------------------------