├── .dockerignore ├── .env ├── .github ├── FUNDING.yml └── workflows │ ├── codeql-analysis.yml │ ├── github-sync.sh │ ├── main.yml │ └── secret.env.pgp ├── .gitignore ├── .gitlab-ci-old.yml ├── .gitlab-ci.yml ├── .travis.yml ├── AUTHORS ├── Dockerfile ├── Dockerfile_nginx ├── LICENSE ├── README.md ├── SECURITY.md ├── VERSION ├── app ├── __init__.py ├── assets_detection_rules.py.sample ├── celery.py ├── context_processors.py ├── settings.py.sample ├── urls.py ├── views.py └── wsgi.py ├── assets ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200616_1735.py │ ├── 0003_asset_owner.py │ ├── 0004_auto_20200617_0958.py │ ├── 0005_auto_20200617_1011.py │ ├── 0006_assetgroup_teams.py │ ├── 0007_auto_20200709_0007.py │ ├── 0008_asset_exposure.py │ ├── 0009_auto_20200921_1151.py │ ├── 0010_auto_20210402_1439.py │ ├── 0011_auto_20211123_1140.py │ ├── 0012_dynamicassetgroup.py │ └── __init__.py ├── models.py ├── serializers.py ├── templates │ ├── add-asset-group.html │ ├── add-asset-owner.html │ ├── add-asset.html │ ├── add-assets-bulk.html │ ├── add-dyn-asset-group.html │ ├── delete-asset-group.html │ ├── delete-asset-owner.html │ ├── delete-asset.html │ ├── details-asset-group.html │ ├── details-asset-owner.html │ ├── details-asset.html │ ├── details-dyn-asset-group.html │ ├── edit-asset-group.html │ ├── edit-asset.html │ ├── edit-dyn-asset-group.html │ ├── list-asset-owners.html │ ├── list-assets.html │ ├── report-asset-findings.html │ └── report-assetgroup-findings.html ├── tests.py ├── urls.py ├── utils.py └── views.py ├── common ├── __init__.py └── utils │ ├── __init__.py │ ├── cpe.py │ ├── date.py │ ├── encoding.py │ ├── net.py │ ├── pagination.py │ ├── password.py │ └── settings.py ├── docker-compose.with-engines.yml ├── docker-compose.yml ├── docker-entrypoint.sh ├── docker-entrypoint.with-engines.sh ├── engines ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── parsers │ └── nessus.py ├── serializers.py ├── tasks.py ├── templates │ ├── add-engine-policy.html │ ├── add-engine.html │ ├── add-scan-engine.html │ ├── delete-engine-policy.html │ ├── delete-engine.html │ ├── delete-scan-engine.html │ ├── edit-engine-policy.html │ ├── edit-engine.html │ ├── edit-scan-engine.html │ ├── import-engine-policies.html │ ├── info-scan-engine.html │ ├── list-engine-policies.html │ ├── list-engines.html │ └── list-scan-engines.html ├── tests.py ├── urls.py ├── utils.py └── views.py ├── events ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_alert.py │ ├── 0003_alert_metadata.py │ ├── 0004_auto_20200602_1813.py │ ├── 0005_auto_20200616_1631.py │ ├── 0006_auto_20200624_0923.py │ ├── 0007_auditlog.py │ ├── 0008_auditlog_owner_username.py │ ├── 0009_auditlog_type.py │ ├── 0010_auditlog_metadata.py │ ├── 0011_auto_20200723_1528.py │ ├── 0012_alert_type.py │ ├── 0013_alertoverride.py │ ├── 0014_alertoverride_teams.py │ └── __init__.py ├── models.py ├── serializers.py ├── templates │ ├── delete-event.html │ └── list-alerts.html ├── tests.py ├── urls.py ├── utils.py └── views.py ├── findings ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200306_0822.py │ ├── 0003_auto_20200602_2323.py │ ├── 0004_auto_20200709_0024.py │ ├── 0005_auto_20200709_0910.py │ ├── 0006_auto_20200720_1829.py │ ├── 0007_auto_20210113_1644.py │ ├── 0008_findingoverride.py │ ├── 0009_auto_20210504_1320.py │ ├── 0010_auto_20211104_1152.py │ └── __init__.py ├── models.py ├── serializers.py ├── templates │ ├── add-finding.html │ ├── compare-findings.html │ ├── delete-findings.html │ ├── details-finding.html │ ├── edit-finding.html │ ├── import-findings.html │ ├── list-findings.html │ └── report-finding.html ├── tests.py ├── urls.py ├── utils.py └── views.py ├── install-patrowl.sh ├── manage.py ├── media └── .gitignore ├── nginx.conf ├── nginx_docker.conf ├── reportings ├── __init__.py ├── admin.py ├── api.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ ├── home-dashboard.html │ └── patch-management-dashboard.html ├── urls.py └── views.py ├── requirements.macos.txt ├── requirements.txt ├── rules ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200720_1829.py │ ├── 0003_auto_20210113_1644.py │ ├── 0004_auto_20211104_1152.py │ └── __init__.py ├── models.py ├── templates │ └── list-rules.html ├── tests.py ├── urls.py └── views.py ├── scans ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_scandefinition_teams.py │ ├── 0003_scanjob.py │ ├── 0004_auto_20201202_1448.py │ ├── 0005_auto_20201202_1909.py │ ├── 0006_scandefinition_taggroups_list.py │ ├── 0007_auto_20220114_1547.py │ └── __init__.py ├── models.py ├── templates │ ├── add-scan-campaign.html │ ├── add-scan-definition.html │ ├── compare-scans.html │ ├── delete-scan-campaign.html │ ├── delete-scan-definition.html │ ├── details-scan-def.html │ ├── details-scan.html │ ├── edit-scan-campaign.html │ ├── edit-scan-definition.html │ ├── email_send_report.html │ ├── email_send_report.txt │ ├── list-scan-campaigns.html │ ├── list-scan-definitions.html │ ├── list-scans-performed.html │ └── report-scan.html ├── tests.py ├── urls.py ├── utils.py └── views.py ├── search ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── search-results.html ├── tests.py ├── urls.py └── views.py ├── settings ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── menu-settings.html │ ├── menu-users.html │ └── support.html ├── tests.py ├── urls.py └── views.py ├── start-server.sh ├── static ├── css │ ├── bootstrap-4.0.0.min.css │ ├── bootstrap-tagsinput.css │ ├── bootstrap.min.css │ ├── cal-heatmap.css │ ├── dataTables.bootstrap4.min.css │ ├── family-Lato.css │ ├── images │ │ └── ui-bg_flat_75_ffffff_40x100.png │ ├── jquery-ui.css │ ├── jquery.dataTables.min.css │ ├── patrowlmanager.css │ ├── select.dataTables.min.css │ └── selectize.bootstrap4.css ├── favicon.ico ├── fonts │ ├── S6u8w4BMUTPHjxsAXC-v.ttf │ ├── S6u9w4BMUTPHh6UVSwiPHA.ttf │ ├── S6uyw4BMUTPHjx4wWw.ttf │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ ├── sort_asc.png │ ├── sort_asc_disabled.png │ ├── sort_both.png │ └── sort_desc.png ├── js │ ├── Chart.bundle.min.js │ ├── bootstrap-tagsinput.min.js │ ├── bootstrap-tagsinput.min.js.map │ ├── bootstrap.min.js │ ├── cal-heatmap.min.js │ ├── cal-heatmap.source-map.js │ ├── d3.min.js │ ├── dataTables.buttons.min.js │ ├── dataTables.select.min.js │ ├── fontawesome-all.min.js │ ├── jquery-3.2.0.min.js │ ├── jquery-ui.min.js │ ├── jquery.dataTables.min.js │ ├── jquery.min.js │ ├── selectize.js │ ├── tether.min.js │ └── typeahead │ │ └── typeahead.bundle.min.js └── tmpl │ ├── assets_bulk_import_template.csv │ └── users_bulk_import_template.csv ├── templates ├── base.html ├── errors │ ├── 400.html │ ├── 403.html │ ├── 404.html │ └── 500.html ├── home.html ├── login.html └── signup.html ├── templatetags ├── __init__.py └── common_tags.py ├── tests └── test_sample.py ├── users ├── __init__.py ├── admin.py ├── apis.py ├── apps.py ├── forms.py ├── middleware.py ├── migrations │ ├── 0001_initial.py │ ├── 0002_auto_20200616_1704.py │ ├── 0003_auto_20200624_0037.py │ ├── 0004_remove_profile_role.py │ ├── 0005_profile_is_delegated.py │ └── __init__.py ├── models.py ├── permissions.py ├── serializers.py ├── templates │ ├── add-user.html │ ├── details-user.html │ ├── edit-user-password.html │ └── list-users.html ├── tests.py ├── urls.py └── views.py └── var ├── bin ├── create_default_admin.py ├── create_default_team.py └── update_db_migrations.sh ├── data ├── assets.AssetCategory.json ├── engines.Engine.json ├── engines.EnginePolicy.json └── engines.EnginePolicyScope.json ├── db ├── create_db.sql ├── create_user_and_db.sql └── init_db.sql ├── etc ├── supervisord-celery-pro.conf ├── supervisord-celery.conf ├── supervisord-pro.conf └── supervisord.conf ├── log ├── .dockerignore └── .gitignore ├── migrations └── assets │ └── 0002_asset_exposure.py └── tmp └── .gitignore /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | PATROWL_MANAGER_VERSION=latest 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [MaKyOtOx] 2 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/github-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.github/workflows/github-sync.sh -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/secret.env.pgp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.github/workflows/secret.env.pgp -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci-old.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.gitlab-ci-old.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/AUTHORS -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile_nginx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/Dockerfile_nginx -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.8.4 // Community Edition 2 | -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/assets_detection_rules.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/assets_detection_rules.py.sample -------------------------------------------------------------------------------- /app/celery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/celery.py -------------------------------------------------------------------------------- /app/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/context_processors.py -------------------------------------------------------------------------------- /app/settings.py.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/settings.py.sample -------------------------------------------------------------------------------- /app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/urls.py -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/views.py -------------------------------------------------------------------------------- /app/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/app/wsgi.py -------------------------------------------------------------------------------- /assets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/admin.py -------------------------------------------------------------------------------- /assets/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/apis.py -------------------------------------------------------------------------------- /assets/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/apps.py -------------------------------------------------------------------------------- /assets/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/forms.py -------------------------------------------------------------------------------- /assets/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0001_initial.py -------------------------------------------------------------------------------- /assets/migrations/0002_auto_20200616_1735.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0002_auto_20200616_1735.py -------------------------------------------------------------------------------- /assets/migrations/0003_asset_owner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0003_asset_owner.py -------------------------------------------------------------------------------- /assets/migrations/0004_auto_20200617_0958.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0004_auto_20200617_0958.py -------------------------------------------------------------------------------- /assets/migrations/0005_auto_20200617_1011.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0005_auto_20200617_1011.py -------------------------------------------------------------------------------- /assets/migrations/0006_assetgroup_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0006_assetgroup_teams.py -------------------------------------------------------------------------------- /assets/migrations/0007_auto_20200709_0007.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0007_auto_20200709_0007.py -------------------------------------------------------------------------------- /assets/migrations/0008_asset_exposure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0008_asset_exposure.py -------------------------------------------------------------------------------- /assets/migrations/0009_auto_20200921_1151.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0009_auto_20200921_1151.py -------------------------------------------------------------------------------- /assets/migrations/0010_auto_20210402_1439.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0010_auto_20210402_1439.py -------------------------------------------------------------------------------- /assets/migrations/0011_auto_20211123_1140.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0011_auto_20211123_1140.py -------------------------------------------------------------------------------- /assets/migrations/0012_dynamicassetgroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/migrations/0012_dynamicassetgroup.py -------------------------------------------------------------------------------- /assets/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/models.py -------------------------------------------------------------------------------- /assets/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/serializers.py -------------------------------------------------------------------------------- /assets/templates/add-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/add-asset-group.html -------------------------------------------------------------------------------- /assets/templates/add-asset-owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/add-asset-owner.html -------------------------------------------------------------------------------- /assets/templates/add-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/add-asset.html -------------------------------------------------------------------------------- /assets/templates/add-assets-bulk.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/add-assets-bulk.html -------------------------------------------------------------------------------- /assets/templates/add-dyn-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/add-dyn-asset-group.html -------------------------------------------------------------------------------- /assets/templates/delete-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/delete-asset-group.html -------------------------------------------------------------------------------- /assets/templates/delete-asset-owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/delete-asset-owner.html -------------------------------------------------------------------------------- /assets/templates/delete-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/delete-asset.html -------------------------------------------------------------------------------- /assets/templates/details-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/details-asset-group.html -------------------------------------------------------------------------------- /assets/templates/details-asset-owner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/details-asset-owner.html -------------------------------------------------------------------------------- /assets/templates/details-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/details-asset.html -------------------------------------------------------------------------------- /assets/templates/details-dyn-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/details-dyn-asset-group.html -------------------------------------------------------------------------------- /assets/templates/edit-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/edit-asset-group.html -------------------------------------------------------------------------------- /assets/templates/edit-asset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/edit-asset.html -------------------------------------------------------------------------------- /assets/templates/edit-dyn-asset-group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/edit-dyn-asset-group.html -------------------------------------------------------------------------------- /assets/templates/list-asset-owners.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/list-asset-owners.html -------------------------------------------------------------------------------- /assets/templates/list-assets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/list-assets.html -------------------------------------------------------------------------------- /assets/templates/report-asset-findings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/report-asset-findings.html -------------------------------------------------------------------------------- /assets/templates/report-assetgroup-findings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/templates/report-assetgroup-findings.html -------------------------------------------------------------------------------- /assets/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/tests.py -------------------------------------------------------------------------------- /assets/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/urls.py -------------------------------------------------------------------------------- /assets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/utils.py -------------------------------------------------------------------------------- /assets/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/assets/views.py -------------------------------------------------------------------------------- /common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/__init__.py -------------------------------------------------------------------------------- /common/utils/cpe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/cpe.py -------------------------------------------------------------------------------- /common/utils/date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/date.py -------------------------------------------------------------------------------- /common/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/encoding.py -------------------------------------------------------------------------------- /common/utils/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/net.py -------------------------------------------------------------------------------- /common/utils/pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/pagination.py -------------------------------------------------------------------------------- /common/utils/password.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/password.py -------------------------------------------------------------------------------- /common/utils/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/common/utils/settings.py -------------------------------------------------------------------------------- /docker-compose.with-engines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/docker-compose.with-engines.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/docker-entrypoint.sh -------------------------------------------------------------------------------- /docker-entrypoint.with-engines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/docker-entrypoint.with-engines.sh -------------------------------------------------------------------------------- /engines/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/admin.py -------------------------------------------------------------------------------- /engines/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/apis.py -------------------------------------------------------------------------------- /engines/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/apps.py -------------------------------------------------------------------------------- /engines/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/forms.py -------------------------------------------------------------------------------- /engines/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/migrations/0001_initial.py -------------------------------------------------------------------------------- /engines/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /engines/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/models.py -------------------------------------------------------------------------------- /engines/parsers/nessus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/parsers/nessus.py -------------------------------------------------------------------------------- /engines/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/serializers.py -------------------------------------------------------------------------------- /engines/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/tasks.py -------------------------------------------------------------------------------- /engines/templates/add-engine-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/add-engine-policy.html -------------------------------------------------------------------------------- /engines/templates/add-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/add-engine.html -------------------------------------------------------------------------------- /engines/templates/add-scan-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/add-scan-engine.html -------------------------------------------------------------------------------- /engines/templates/delete-engine-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/delete-engine-policy.html -------------------------------------------------------------------------------- /engines/templates/delete-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/delete-engine.html -------------------------------------------------------------------------------- /engines/templates/delete-scan-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/delete-scan-engine.html -------------------------------------------------------------------------------- /engines/templates/edit-engine-policy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/edit-engine-policy.html -------------------------------------------------------------------------------- /engines/templates/edit-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/edit-engine.html -------------------------------------------------------------------------------- /engines/templates/edit-scan-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/edit-scan-engine.html -------------------------------------------------------------------------------- /engines/templates/import-engine-policies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/import-engine-policies.html -------------------------------------------------------------------------------- /engines/templates/info-scan-engine.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/info-scan-engine.html -------------------------------------------------------------------------------- /engines/templates/list-engine-policies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/list-engine-policies.html -------------------------------------------------------------------------------- /engines/templates/list-engines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/list-engines.html -------------------------------------------------------------------------------- /engines/templates/list-scan-engines.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/templates/list-scan-engines.html -------------------------------------------------------------------------------- /engines/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/tests.py -------------------------------------------------------------------------------- /engines/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/urls.py -------------------------------------------------------------------------------- /engines/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/utils.py -------------------------------------------------------------------------------- /engines/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/engines/views.py -------------------------------------------------------------------------------- /events/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/admin.py -------------------------------------------------------------------------------- /events/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/apis.py -------------------------------------------------------------------------------- /events/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/apps.py -------------------------------------------------------------------------------- /events/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0001_initial.py -------------------------------------------------------------------------------- /events/migrations/0002_alert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0002_alert.py -------------------------------------------------------------------------------- /events/migrations/0003_alert_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0003_alert_metadata.py -------------------------------------------------------------------------------- /events/migrations/0004_auto_20200602_1813.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0004_auto_20200602_1813.py -------------------------------------------------------------------------------- /events/migrations/0005_auto_20200616_1631.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0005_auto_20200616_1631.py -------------------------------------------------------------------------------- /events/migrations/0006_auto_20200624_0923.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0006_auto_20200624_0923.py -------------------------------------------------------------------------------- /events/migrations/0007_auditlog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0007_auditlog.py -------------------------------------------------------------------------------- /events/migrations/0008_auditlog_owner_username.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0008_auditlog_owner_username.py -------------------------------------------------------------------------------- /events/migrations/0009_auditlog_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0009_auditlog_type.py -------------------------------------------------------------------------------- /events/migrations/0010_auditlog_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0010_auditlog_metadata.py -------------------------------------------------------------------------------- /events/migrations/0011_auto_20200723_1528.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0011_auto_20200723_1528.py -------------------------------------------------------------------------------- /events/migrations/0012_alert_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0012_alert_type.py -------------------------------------------------------------------------------- /events/migrations/0013_alertoverride.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0013_alertoverride.py -------------------------------------------------------------------------------- /events/migrations/0014_alertoverride_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/migrations/0014_alertoverride_teams.py -------------------------------------------------------------------------------- /events/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /events/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/models.py -------------------------------------------------------------------------------- /events/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/serializers.py -------------------------------------------------------------------------------- /events/templates/delete-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/templates/delete-event.html -------------------------------------------------------------------------------- /events/templates/list-alerts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/templates/list-alerts.html -------------------------------------------------------------------------------- /events/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/tests.py -------------------------------------------------------------------------------- /events/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/urls.py -------------------------------------------------------------------------------- /events/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/utils.py -------------------------------------------------------------------------------- /events/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/events/views.py -------------------------------------------------------------------------------- /findings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /findings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/admin.py -------------------------------------------------------------------------------- /findings/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/apis.py -------------------------------------------------------------------------------- /findings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/apps.py -------------------------------------------------------------------------------- /findings/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/forms.py -------------------------------------------------------------------------------- /findings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0001_initial.py -------------------------------------------------------------------------------- /findings/migrations/0002_auto_20200306_0822.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0002_auto_20200306_0822.py -------------------------------------------------------------------------------- /findings/migrations/0003_auto_20200602_2323.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0003_auto_20200602_2323.py -------------------------------------------------------------------------------- /findings/migrations/0004_auto_20200709_0024.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0004_auto_20200709_0024.py -------------------------------------------------------------------------------- /findings/migrations/0005_auto_20200709_0910.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0005_auto_20200709_0910.py -------------------------------------------------------------------------------- /findings/migrations/0006_auto_20200720_1829.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0006_auto_20200720_1829.py -------------------------------------------------------------------------------- /findings/migrations/0007_auto_20210113_1644.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0007_auto_20210113_1644.py -------------------------------------------------------------------------------- /findings/migrations/0008_findingoverride.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0008_findingoverride.py -------------------------------------------------------------------------------- /findings/migrations/0009_auto_20210504_1320.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0009_auto_20210504_1320.py -------------------------------------------------------------------------------- /findings/migrations/0010_auto_20211104_1152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/migrations/0010_auto_20211104_1152.py -------------------------------------------------------------------------------- /findings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /findings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/models.py -------------------------------------------------------------------------------- /findings/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/serializers.py -------------------------------------------------------------------------------- /findings/templates/add-finding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/add-finding.html -------------------------------------------------------------------------------- /findings/templates/compare-findings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/compare-findings.html -------------------------------------------------------------------------------- /findings/templates/delete-findings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/delete-findings.html -------------------------------------------------------------------------------- /findings/templates/details-finding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/details-finding.html -------------------------------------------------------------------------------- /findings/templates/edit-finding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/edit-finding.html -------------------------------------------------------------------------------- /findings/templates/import-findings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/import-findings.html -------------------------------------------------------------------------------- /findings/templates/list-findings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/list-findings.html -------------------------------------------------------------------------------- /findings/templates/report-finding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/templates/report-finding.html -------------------------------------------------------------------------------- /findings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/tests.py -------------------------------------------------------------------------------- /findings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/urls.py -------------------------------------------------------------------------------- /findings/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/utils.py -------------------------------------------------------------------------------- /findings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/findings/views.py -------------------------------------------------------------------------------- /install-patrowl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/install-patrowl.sh -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/manage.py -------------------------------------------------------------------------------- /media/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/nginx.conf -------------------------------------------------------------------------------- /nginx_docker.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/nginx_docker.conf -------------------------------------------------------------------------------- /reportings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reportings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/admin.py -------------------------------------------------------------------------------- /reportings/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/api.py -------------------------------------------------------------------------------- /reportings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/apps.py -------------------------------------------------------------------------------- /reportings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reportings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/models.py -------------------------------------------------------------------------------- /reportings/templates/home-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/templates/home-dashboard.html -------------------------------------------------------------------------------- /reportings/templates/patch-management-dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/templates/patch-management-dashboard.html -------------------------------------------------------------------------------- /reportings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/urls.py -------------------------------------------------------------------------------- /reportings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/reportings/views.py -------------------------------------------------------------------------------- /requirements.macos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/requirements.macos.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/requirements.txt -------------------------------------------------------------------------------- /rules/__init__.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /rules/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/admin.py -------------------------------------------------------------------------------- /rules/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/apis.py -------------------------------------------------------------------------------- /rules/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/apps.py -------------------------------------------------------------------------------- /rules/forms.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | -------------------------------------------------------------------------------- /rules/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/migrations/0001_initial.py -------------------------------------------------------------------------------- /rules/migrations/0002_auto_20200720_1829.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/migrations/0002_auto_20200720_1829.py -------------------------------------------------------------------------------- /rules/migrations/0003_auto_20210113_1644.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/migrations/0003_auto_20210113_1644.py -------------------------------------------------------------------------------- /rules/migrations/0004_auto_20211104_1152.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/migrations/0004_auto_20211104_1152.py -------------------------------------------------------------------------------- /rules/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rules/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/models.py -------------------------------------------------------------------------------- /rules/templates/list-rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/templates/list-rules.html -------------------------------------------------------------------------------- /rules/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/tests.py -------------------------------------------------------------------------------- /rules/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/urls.py -------------------------------------------------------------------------------- /rules/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/rules/views.py -------------------------------------------------------------------------------- /scans/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/admin.py -------------------------------------------------------------------------------- /scans/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/apis.py -------------------------------------------------------------------------------- /scans/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/apps.py -------------------------------------------------------------------------------- /scans/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/forms.py -------------------------------------------------------------------------------- /scans/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0001_initial.py -------------------------------------------------------------------------------- /scans/migrations/0002_scandefinition_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0002_scandefinition_teams.py -------------------------------------------------------------------------------- /scans/migrations/0003_scanjob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0003_scanjob.py -------------------------------------------------------------------------------- /scans/migrations/0004_auto_20201202_1448.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0004_auto_20201202_1448.py -------------------------------------------------------------------------------- /scans/migrations/0005_auto_20201202_1909.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0005_auto_20201202_1909.py -------------------------------------------------------------------------------- /scans/migrations/0006_scandefinition_taggroups_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0006_scandefinition_taggroups_list.py -------------------------------------------------------------------------------- /scans/migrations/0007_auto_20220114_1547.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/migrations/0007_auto_20220114_1547.py -------------------------------------------------------------------------------- /scans/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scans/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/models.py -------------------------------------------------------------------------------- /scans/templates/add-scan-campaign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/add-scan-campaign.html -------------------------------------------------------------------------------- /scans/templates/add-scan-definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/add-scan-definition.html -------------------------------------------------------------------------------- /scans/templates/compare-scans.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/compare-scans.html -------------------------------------------------------------------------------- /scans/templates/delete-scan-campaign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/delete-scan-campaign.html -------------------------------------------------------------------------------- /scans/templates/delete-scan-definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/delete-scan-definition.html -------------------------------------------------------------------------------- /scans/templates/details-scan-def.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/details-scan-def.html -------------------------------------------------------------------------------- /scans/templates/details-scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/details-scan.html -------------------------------------------------------------------------------- /scans/templates/edit-scan-campaign.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/edit-scan-campaign.html -------------------------------------------------------------------------------- /scans/templates/edit-scan-definition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/edit-scan-definition.html -------------------------------------------------------------------------------- /scans/templates/email_send_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/email_send_report.html -------------------------------------------------------------------------------- /scans/templates/email_send_report.txt: -------------------------------------------------------------------------------- 1 | PatrowlManager - Send Email report 2 | -------------------------------------------------------------------------------- /scans/templates/list-scan-campaigns.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/list-scan-campaigns.html -------------------------------------------------------------------------------- /scans/templates/list-scan-definitions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/list-scan-definitions.html -------------------------------------------------------------------------------- /scans/templates/list-scans-performed.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/list-scans-performed.html -------------------------------------------------------------------------------- /scans/templates/report-scan.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/templates/report-scan.html -------------------------------------------------------------------------------- /scans/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/tests.py -------------------------------------------------------------------------------- /scans/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/urls.py -------------------------------------------------------------------------------- /scans/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/utils.py -------------------------------------------------------------------------------- /scans/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/scans/views.py -------------------------------------------------------------------------------- /search/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/admin.py -------------------------------------------------------------------------------- /search/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/apis.py -------------------------------------------------------------------------------- /search/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/apps.py -------------------------------------------------------------------------------- /search/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /search/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/models.py -------------------------------------------------------------------------------- /search/templates/search-results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/templates/search-results.html -------------------------------------------------------------------------------- /search/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/tests.py -------------------------------------------------------------------------------- /search/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/urls.py -------------------------------------------------------------------------------- /search/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/search/views.py -------------------------------------------------------------------------------- /settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/admin.py -------------------------------------------------------------------------------- /settings/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/apis.py -------------------------------------------------------------------------------- /settings/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/apps.py -------------------------------------------------------------------------------- /settings/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/migrations/0001_initial.py -------------------------------------------------------------------------------- /settings/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /settings/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/models.py -------------------------------------------------------------------------------- /settings/templates/menu-settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/templates/menu-settings.html -------------------------------------------------------------------------------- /settings/templates/menu-users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/templates/menu-users.html -------------------------------------------------------------------------------- /settings/templates/support.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/templates/support.html -------------------------------------------------------------------------------- /settings/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/tests.py -------------------------------------------------------------------------------- /settings/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/urls.py -------------------------------------------------------------------------------- /settings/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/settings/views.py -------------------------------------------------------------------------------- /start-server.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/start-server.sh -------------------------------------------------------------------------------- /static/css/bootstrap-4.0.0.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/bootstrap-4.0.0.min.css -------------------------------------------------------------------------------- /static/css/bootstrap-tagsinput.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/bootstrap-tagsinput.css -------------------------------------------------------------------------------- /static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /static/css/cal-heatmap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/cal-heatmap.css -------------------------------------------------------------------------------- /static/css/dataTables.bootstrap4.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/dataTables.bootstrap4.min.css -------------------------------------------------------------------------------- /static/css/family-Lato.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/family-Lato.css -------------------------------------------------------------------------------- /static/css/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /static/css/jquery-ui.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/jquery-ui.css -------------------------------------------------------------------------------- /static/css/jquery.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/jquery.dataTables.min.css -------------------------------------------------------------------------------- /static/css/patrowlmanager.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/patrowlmanager.css -------------------------------------------------------------------------------- /static/css/select.dataTables.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/select.dataTables.min.css -------------------------------------------------------------------------------- /static/css/selectize.bootstrap4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/css/selectize.bootstrap4.css -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/fonts/S6u8w4BMUTPHjxsAXC-v.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/S6u8w4BMUTPHjxsAXC-v.ttf -------------------------------------------------------------------------------- /static/fonts/S6u9w4BMUTPHh6UVSwiPHA.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/S6u9w4BMUTPHh6UVSwiPHA.ttf -------------------------------------------------------------------------------- /static/fonts/S6uyw4BMUTPHjx4wWw.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/S6uyw4BMUTPHjx4wWw.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /static/images/sort_asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/images/sort_asc.png -------------------------------------------------------------------------------- /static/images/sort_asc_disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/images/sort_asc_disabled.png -------------------------------------------------------------------------------- /static/images/sort_both.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/images/sort_both.png -------------------------------------------------------------------------------- /static/images/sort_desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/images/sort_desc.png -------------------------------------------------------------------------------- /static/js/Chart.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/Chart.bundle.min.js -------------------------------------------------------------------------------- /static/js/bootstrap-tagsinput.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/bootstrap-tagsinput.min.js -------------------------------------------------------------------------------- /static/js/bootstrap-tagsinput.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/bootstrap-tagsinput.min.js.map -------------------------------------------------------------------------------- /static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /static/js/cal-heatmap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/cal-heatmap.min.js -------------------------------------------------------------------------------- /static/js/cal-heatmap.source-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/cal-heatmap.source-map.js -------------------------------------------------------------------------------- /static/js/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/d3.min.js -------------------------------------------------------------------------------- /static/js/dataTables.buttons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/dataTables.buttons.min.js -------------------------------------------------------------------------------- /static/js/dataTables.select.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/dataTables.select.min.js -------------------------------------------------------------------------------- /static/js/fontawesome-all.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/fontawesome-all.min.js -------------------------------------------------------------------------------- /static/js/jquery-3.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/jquery-3.2.0.min.js -------------------------------------------------------------------------------- /static/js/jquery-ui.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/jquery-ui.min.js -------------------------------------------------------------------------------- /static/js/jquery.dataTables.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/jquery.dataTables.min.js -------------------------------------------------------------------------------- /static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/jquery.min.js -------------------------------------------------------------------------------- /static/js/selectize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/selectize.js -------------------------------------------------------------------------------- /static/js/tether.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/tether.min.js -------------------------------------------------------------------------------- /static/js/typeahead/typeahead.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/js/typeahead/typeahead.bundle.min.js -------------------------------------------------------------------------------- /static/tmpl/assets_bulk_import_template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/tmpl/assets_bulk_import_template.csv -------------------------------------------------------------------------------- /static/tmpl/users_bulk_import_template.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/static/tmpl/users_bulk_import_template.csv -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/errors/400.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/errors/400.html -------------------------------------------------------------------------------- /templates/errors/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/errors/403.html -------------------------------------------------------------------------------- /templates/errors/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/errors/404.html -------------------------------------------------------------------------------- /templates/errors/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/errors/500.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/login.html -------------------------------------------------------------------------------- /templates/signup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templates/signup.html -------------------------------------------------------------------------------- /templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /templatetags/common_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/templatetags/common_tags.py -------------------------------------------------------------------------------- /tests/test_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/tests/test_sample.py -------------------------------------------------------------------------------- /users/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/admin.py -------------------------------------------------------------------------------- /users/apis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/apis.py -------------------------------------------------------------------------------- /users/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/apps.py -------------------------------------------------------------------------------- /users/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/forms.py -------------------------------------------------------------------------------- /users/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/middleware.py -------------------------------------------------------------------------------- /users/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/migrations/0001_initial.py -------------------------------------------------------------------------------- /users/migrations/0002_auto_20200616_1704.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/migrations/0002_auto_20200616_1704.py -------------------------------------------------------------------------------- /users/migrations/0003_auto_20200624_0037.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/migrations/0003_auto_20200624_0037.py -------------------------------------------------------------------------------- /users/migrations/0004_remove_profile_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/migrations/0004_remove_profile_role.py -------------------------------------------------------------------------------- /users/migrations/0005_profile_is_delegated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/migrations/0005_profile_is_delegated.py -------------------------------------------------------------------------------- /users/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /users/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/models.py -------------------------------------------------------------------------------- /users/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/permissions.py -------------------------------------------------------------------------------- /users/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/serializers.py -------------------------------------------------------------------------------- /users/templates/add-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/templates/add-user.html -------------------------------------------------------------------------------- /users/templates/details-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/templates/details-user.html -------------------------------------------------------------------------------- /users/templates/edit-user-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/templates/edit-user-password.html -------------------------------------------------------------------------------- /users/templates/list-users.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/templates/list-users.html -------------------------------------------------------------------------------- /users/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/tests.py -------------------------------------------------------------------------------- /users/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/urls.py -------------------------------------------------------------------------------- /users/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/users/views.py -------------------------------------------------------------------------------- /var/bin/create_default_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/bin/create_default_admin.py -------------------------------------------------------------------------------- /var/bin/create_default_team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/bin/create_default_team.py -------------------------------------------------------------------------------- /var/bin/update_db_migrations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/bin/update_db_migrations.sh -------------------------------------------------------------------------------- /var/data/assets.AssetCategory.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/data/assets.AssetCategory.json -------------------------------------------------------------------------------- /var/data/engines.Engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/data/engines.Engine.json -------------------------------------------------------------------------------- /var/data/engines.EnginePolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/data/engines.EnginePolicy.json -------------------------------------------------------------------------------- /var/data/engines.EnginePolicyScope.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/data/engines.EnginePolicyScope.json -------------------------------------------------------------------------------- /var/db/create_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/db/create_db.sql -------------------------------------------------------------------------------- /var/db/create_user_and_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/db/create_user_and_db.sql -------------------------------------------------------------------------------- /var/db/init_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/db/init_db.sql -------------------------------------------------------------------------------- /var/etc/supervisord-celery-pro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/etc/supervisord-celery-pro.conf -------------------------------------------------------------------------------- /var/etc/supervisord-celery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/etc/supervisord-celery.conf -------------------------------------------------------------------------------- /var/etc/supervisord-pro.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/etc/supervisord-pro.conf -------------------------------------------------------------------------------- /var/etc/supervisord.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/etc/supervisord.conf -------------------------------------------------------------------------------- /var/log/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/log/.dockerignore -------------------------------------------------------------------------------- /var/log/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/log/.gitignore -------------------------------------------------------------------------------- /var/migrations/assets/0002_asset_exposure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Patrowl/PatrowlManager/HEAD/var/migrations/assets/0002_asset_exposure.py -------------------------------------------------------------------------------- /var/tmp/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pid 3 | --------------------------------------------------------------------------------