├── .coveragerc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── README.rst ├── apps ├── __init__.py ├── api │ ├── __init__.py │ ├── mixins.py │ ├── urls.py │ └── utils.py ├── authentication │ ├── __init__.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── setpassword.py │ ├── migrations │ │ └── __init__.py │ ├── mixins.py │ ├── permissions.py │ ├── templates │ │ └── authentication │ │ │ └── login.html │ ├── templatetags │ │ ├── __init__.py │ │ └── permissions.py │ ├── urls.py │ └── views.py ├── context_processors.py ├── core │ ├── __init__.py │ ├── admin.py │ ├── api_views.py │ ├── decorators.py │ ├── fields.py │ ├── models.py │ ├── serializers.py │ ├── types.py │ └── urls.py ├── devices │ ├── __init__.py │ ├── admin.py │ ├── api_views.py │ ├── device_views.py │ ├── fixtures │ │ └── initial_data.json │ ├── group_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_device_inactive.py │ │ └── __init__.py │ ├── models.py │ ├── paging.py │ ├── product_views.py │ ├── serializers.py │ ├── static │ │ └── js │ │ │ ├── devices.js │ │ │ ├── groups.js │ │ │ └── products.js │ ├── templates │ │ └── devices │ │ │ ├── device_report.html │ │ │ ├── devices.html │ │ │ ├── event.html │ │ │ ├── groups.html │ │ │ ├── paging │ │ │ ├── device_list.html │ │ │ ├── device_report_events.html │ │ │ ├── device_report_sessions.html │ │ │ └── device_report_vulnerabilities.html │ │ │ ├── products.html │ │ │ └── session.html │ └── urls.py ├── filesystem │ ├── __init__.py │ ├── admin.py │ ├── ajax.py │ ├── api_views.py │ ├── directory_views.py │ ├── file_views.py │ ├── fixtures │ │ └── initial_data.json │ ├── models.py │ ├── paging.py │ ├── serializers.py │ ├── static │ │ └── js │ │ │ ├── directories.js │ │ │ └── files.js │ ├── templates │ │ └── filesystem │ │ │ ├── directories.html │ │ │ ├── files.html │ │ │ └── paging │ │ │ ├── file_list.html │ │ │ └── simple_file_list.html │ └── urls.py ├── front │ ├── __init__.py │ ├── ajax.py │ ├── paging.py │ ├── static │ │ ├── css │ │ │ ├── base.css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap-theme.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.map │ │ │ ├── select2-spinner.gif │ │ │ ├── select2.css │ │ │ ├── select2.png │ │ │ ├── select2x2.png │ │ │ └── smoothness │ │ │ │ ├── images │ │ │ │ ├── animated-overlay.gif │ │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ │ ├── ui-icons_454545_256x240.png │ │ │ │ ├── ui-icons_888888_256x240.png │ │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ │ └── jquery-ui-1.10.4.custom.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── img │ │ │ ├── ajax-loader-black-bg.gif │ │ │ ├── ajax-loader.gif │ │ │ ├── overview.png │ │ │ ├── sortable-asc.gif │ │ │ ├── sortable-desc.gif │ │ │ ├── sortable.gif │ │ │ └── swanicon.png │ │ └── js │ │ │ ├── ajax-loader.js │ │ │ ├── ajax-utils.js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ ├── common.js │ │ │ ├── exporting.js │ │ │ ├── hashquery.js │ │ │ ├── highcharts.js │ │ │ ├── html5shiv.js │ │ │ ├── ie8.js │ │ │ ├── jquery-1.9.1.min.js │ │ │ ├── jquery-ui-1.10.4.custom.min.js │ │ │ ├── jquery.min.map │ │ │ ├── jquery.tablesorter.min.js │ │ │ ├── jquery.validate.min.js │ │ │ ├── paging.js │ │ │ └── select2.min.js │ ├── templates │ │ └── front │ │ │ ├── base.html │ │ │ ├── overview.html │ │ │ ├── paged_block.html │ │ │ ├── paging │ │ │ ├── default_list.html │ │ │ └── regid_list_tags.html │ │ │ ├── search.html │ │ │ ├── statistics.html │ │ │ └── vulnerabilities.html │ ├── templatetags │ │ ├── __init__.py │ │ ├── paged_block.py │ │ └── text_filters.py │ ├── urls.py │ ├── utils.py │ └── views.py ├── packages │ ├── __init__.py │ ├── admin.py │ ├── api_views.py │ ├── migrations │ │ ├── 0001_initial.py │ │ └── __init__.py │ ├── models.py │ ├── paging.py │ ├── serializers.py │ ├── static │ │ └── js │ │ │ └── packages.js │ ├── templates │ │ └── packages │ │ │ └── packages.html │ ├── urls.py │ └── views.py ├── policies │ ├── __init__.py │ ├── admin.py │ ├── api_views.py │ ├── enforcement_views.py │ ├── models.py │ ├── paging.py │ ├── policy_views.py │ ├── serializers.py │ ├── static │ │ └── js │ │ │ ├── enforcements.js │ │ │ └── policies.js │ ├── templates │ │ └── policies │ │ │ ├── enforcements.html │ │ │ └── policies.html │ └── urls.py ├── swid │ ├── __init__.py │ ├── admin.py │ ├── ajax.py │ ├── api_views.py │ ├── management │ │ ├── __init__.py │ │ └── commands │ │ │ ├── __init__.py │ │ │ └── importswid.py │ ├── migrations │ │ ├── 0001_initial.py │ │ ├── 0002_rename_to_version_str.py │ │ ├── 0003_tag_version.py │ │ ├── 0004_link_tag_to_version.py │ │ └── __init__.py │ ├── models.py │ ├── paging.py │ ├── serializers.py │ ├── static │ │ └── js │ │ │ ├── swid-inventory.js │ │ │ └── swid-log.js │ ├── templates │ │ └── swid │ │ │ ├── paging │ │ │ ├── swid_devices_list.html │ │ │ ├── swid_inventory_list.html │ │ │ ├── swid_inventory_session_list.html │ │ │ └── swid_log_list.html │ │ │ ├── regid_detail.html │ │ │ ├── regid_list.html │ │ │ ├── swid_inventory.html │ │ │ ├── swid_log.html │ │ │ ├── tags_detail.html │ │ │ └── tags_list.html │ ├── urls.py │ ├── utils.py │ ├── views.py │ └── xmpp_grid.py └── tpm │ ├── __init__.py │ ├── admin.py │ ├── comphash_views.py │ ├── models.py │ ├── paging.py │ ├── templates │ └── tpm │ │ ├── comp_hashes.html │ │ └── tpm_evidence.html │ ├── tpm_views.py │ └── urls.py ├── config ├── __init__.py ├── router.py ├── settings.py ├── settings.sample.ini ├── settings_tests.py ├── urls.py └── wsgi.py ├── docs └── deployment.rst ├── manage.py ├── pytest.ini ├── requirements-tests.txt ├── requirements.txt ├── runtests.py ├── scripts ├── fix_db.sql └── get_schema.sh ├── sql ├── create_default_db.sh ├── init_data.sql ├── issue294_create.sql └── issue294_migrate.py ├── sqldump.py ├── tests ├── __init__.py ├── fixtures.py ├── test_ajax.py ├── test_api.py ├── test_auth.py ├── test_devices.py ├── test_filesystem.py ├── test_legacy.py ├── test_packages.py ├── test_policies.py ├── test_swid.py ├── test_tags │ ├── cowsay.full.swidtag │ ├── cowsay.short.swidtag │ ├── invalid_tags │ │ ├── strongswan.full.swidtag.duplicateregid │ │ ├── strongswan.full.swidtag.emptyregid │ │ ├── strongswan.full.swidtag.emptyuniqueid │ │ ├── strongswan.full.swidtag.notagcreator │ │ └── strongswan.full.swidtag.nouniqueid │ ├── multiple-swid-tags.txt │ ├── strongswan-tnc-imcvs.full.swidtag │ ├── strongswan-tnc-imcvs.short.swidtag │ ├── strongswan.full.swidtag │ ├── strongswan.full.swidtag.combinedrole │ ├── strongswan.full.swidtag.replacement │ ├── strongswan.full.swidtag.singleentity │ ├── strongswan.short.swidtag │ └── ubuntu_full_swid.txt └── test_utils.py └── vagrant ├── README.rst ├── Vagrantfile └── provisioning ├── playbook.yml └── roles ├── apache ├── handlers │ └── main.yml └── tasks │ └── main.yml ├── base └── tasks │ └── main.yml └── strongtnc ├── handlers └── main.yml ├── tasks ├── main.yml ├── mysql.yml └── sqlite.yml ├── templates ├── apache.conf.j2 ├── settings.ini.mysql.j2 └── settings.ini.sqlite.j2 └── vars └── main.yml /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/CONTRIBUTORS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/README.rst -------------------------------------------------------------------------------- /apps/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/api/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/api/mixins.py -------------------------------------------------------------------------------- /apps/api/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/api/urls.py -------------------------------------------------------------------------------- /apps/api/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/api/utils.py -------------------------------------------------------------------------------- /apps/authentication/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/authentication/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/authentication/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/authentication/management/commands/setpassword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/management/commands/setpassword.py -------------------------------------------------------------------------------- /apps/authentication/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/authentication/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/mixins.py -------------------------------------------------------------------------------- /apps/authentication/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/permissions.py -------------------------------------------------------------------------------- /apps/authentication/templates/authentication/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/templates/authentication/login.html -------------------------------------------------------------------------------- /apps/authentication/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/authentication/templatetags/permissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/templatetags/permissions.py -------------------------------------------------------------------------------- /apps/authentication/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/urls.py -------------------------------------------------------------------------------- /apps/authentication/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/authentication/views.py -------------------------------------------------------------------------------- /apps/context_processors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/context_processors.py -------------------------------------------------------------------------------- /apps/core/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/core/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/admin.py -------------------------------------------------------------------------------- /apps/core/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/api_views.py -------------------------------------------------------------------------------- /apps/core/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/decorators.py -------------------------------------------------------------------------------- /apps/core/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/fields.py -------------------------------------------------------------------------------- /apps/core/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/models.py -------------------------------------------------------------------------------- /apps/core/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/serializers.py -------------------------------------------------------------------------------- /apps/core/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/core/types.py -------------------------------------------------------------------------------- /apps/core/urls.py: -------------------------------------------------------------------------------- 1 | urlpatterns = [] 2 | -------------------------------------------------------------------------------- /apps/devices/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/devices/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/admin.py -------------------------------------------------------------------------------- /apps/devices/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/api_views.py -------------------------------------------------------------------------------- /apps/devices/device_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/device_views.py -------------------------------------------------------------------------------- /apps/devices/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/fixtures/initial_data.json -------------------------------------------------------------------------------- /apps/devices/group_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/group_views.py -------------------------------------------------------------------------------- /apps/devices/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/devices/migrations/0002_device_inactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/migrations/0002_device_inactive.py -------------------------------------------------------------------------------- /apps/devices/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/devices/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/models.py -------------------------------------------------------------------------------- /apps/devices/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/paging.py -------------------------------------------------------------------------------- /apps/devices/product_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/product_views.py -------------------------------------------------------------------------------- /apps/devices/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/serializers.py -------------------------------------------------------------------------------- /apps/devices/static/js/devices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/static/js/devices.js -------------------------------------------------------------------------------- /apps/devices/static/js/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/static/js/groups.js -------------------------------------------------------------------------------- /apps/devices/static/js/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/static/js/products.js -------------------------------------------------------------------------------- /apps/devices/templates/devices/device_report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/device_report.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/devices.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/devices.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/event.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/groups.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/paging/device_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/paging/device_list.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/paging/device_report_events.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/paging/device_report_events.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/paging/device_report_sessions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/paging/device_report_sessions.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/paging/device_report_vulnerabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/paging/device_report_vulnerabilities.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/products.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/products.html -------------------------------------------------------------------------------- /apps/devices/templates/devices/session.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/templates/devices/session.html -------------------------------------------------------------------------------- /apps/devices/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/devices/urls.py -------------------------------------------------------------------------------- /apps/filesystem/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/filesystem/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/admin.py -------------------------------------------------------------------------------- /apps/filesystem/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/ajax.py -------------------------------------------------------------------------------- /apps/filesystem/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/api_views.py -------------------------------------------------------------------------------- /apps/filesystem/directory_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/directory_views.py -------------------------------------------------------------------------------- /apps/filesystem/file_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/file_views.py -------------------------------------------------------------------------------- /apps/filesystem/fixtures/initial_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/fixtures/initial_data.json -------------------------------------------------------------------------------- /apps/filesystem/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/models.py -------------------------------------------------------------------------------- /apps/filesystem/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/paging.py -------------------------------------------------------------------------------- /apps/filesystem/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/serializers.py -------------------------------------------------------------------------------- /apps/filesystem/static/js/directories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/static/js/directories.js -------------------------------------------------------------------------------- /apps/filesystem/static/js/files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/static/js/files.js -------------------------------------------------------------------------------- /apps/filesystem/templates/filesystem/directories.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/templates/filesystem/directories.html -------------------------------------------------------------------------------- /apps/filesystem/templates/filesystem/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/templates/filesystem/files.html -------------------------------------------------------------------------------- /apps/filesystem/templates/filesystem/paging/file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/templates/filesystem/paging/file_list.html -------------------------------------------------------------------------------- /apps/filesystem/templates/filesystem/paging/simple_file_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/templates/filesystem/paging/simple_file_list.html -------------------------------------------------------------------------------- /apps/filesystem/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/filesystem/urls.py -------------------------------------------------------------------------------- /apps/front/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/ajax.py -------------------------------------------------------------------------------- /apps/front/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/paging.py -------------------------------------------------------------------------------- /apps/front/static/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/base.css -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap-theme.css -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap-theme.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap-theme.min.css.map -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap.css -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /apps/front/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /apps/front/static/css/select2-spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/select2-spinner.gif -------------------------------------------------------------------------------- /apps/front/static/css/select2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/select2.css -------------------------------------------------------------------------------- /apps/front/static/css/select2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/select2.png -------------------------------------------------------------------------------- /apps/front/static/css/select2x2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/select2x2.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/animated-overlay.gif -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /apps/front/static/css/smoothness/jquery-ui-1.10.4.custom.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/css/smoothness/jquery-ui-1.10.4.custom.min.css -------------------------------------------------------------------------------- /apps/front/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /apps/front/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /apps/front/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /apps/front/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /apps/front/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /apps/front/static/img/ajax-loader-black-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/ajax-loader-black-bg.gif -------------------------------------------------------------------------------- /apps/front/static/img/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/ajax-loader.gif -------------------------------------------------------------------------------- /apps/front/static/img/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/overview.png -------------------------------------------------------------------------------- /apps/front/static/img/sortable-asc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/sortable-asc.gif -------------------------------------------------------------------------------- /apps/front/static/img/sortable-desc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/sortable-desc.gif -------------------------------------------------------------------------------- /apps/front/static/img/sortable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/sortable.gif -------------------------------------------------------------------------------- /apps/front/static/img/swanicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/img/swanicon.png -------------------------------------------------------------------------------- /apps/front/static/js/ajax-loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/ajax-loader.js -------------------------------------------------------------------------------- /apps/front/static/js/ajax-utils.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/bootstrap.js -------------------------------------------------------------------------------- /apps/front/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /apps/front/static/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/common.js -------------------------------------------------------------------------------- /apps/front/static/js/exporting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/exporting.js -------------------------------------------------------------------------------- /apps/front/static/js/hashquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/hashquery.js -------------------------------------------------------------------------------- /apps/front/static/js/highcharts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/highcharts.js -------------------------------------------------------------------------------- /apps/front/static/js/html5shiv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/html5shiv.js -------------------------------------------------------------------------------- /apps/front/static/js/ie8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/ie8.js -------------------------------------------------------------------------------- /apps/front/static/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /apps/front/static/js/jquery-ui-1.10.4.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/jquery-ui-1.10.4.custom.min.js -------------------------------------------------------------------------------- /apps/front/static/js/jquery.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/jquery.min.map -------------------------------------------------------------------------------- /apps/front/static/js/jquery.tablesorter.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/jquery.tablesorter.min.js -------------------------------------------------------------------------------- /apps/front/static/js/jquery.validate.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/jquery.validate.min.js -------------------------------------------------------------------------------- /apps/front/static/js/paging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/paging.js -------------------------------------------------------------------------------- /apps/front/static/js/select2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/static/js/select2.min.js -------------------------------------------------------------------------------- /apps/front/templates/front/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/base.html -------------------------------------------------------------------------------- /apps/front/templates/front/overview.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/overview.html -------------------------------------------------------------------------------- /apps/front/templates/front/paged_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/paged_block.html -------------------------------------------------------------------------------- /apps/front/templates/front/paging/default_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/paging/default_list.html -------------------------------------------------------------------------------- /apps/front/templates/front/paging/regid_list_tags.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/paging/regid_list_tags.html -------------------------------------------------------------------------------- /apps/front/templates/front/search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/search.html -------------------------------------------------------------------------------- /apps/front/templates/front/statistics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/statistics.html -------------------------------------------------------------------------------- /apps/front/templates/front/vulnerabilities.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templates/front/vulnerabilities.html -------------------------------------------------------------------------------- /apps/front/templatetags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/front/templatetags/paged_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templatetags/paged_block.py -------------------------------------------------------------------------------- /apps/front/templatetags/text_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/templatetags/text_filters.py -------------------------------------------------------------------------------- /apps/front/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/urls.py -------------------------------------------------------------------------------- /apps/front/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/utils.py -------------------------------------------------------------------------------- /apps/front/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/front/views.py -------------------------------------------------------------------------------- /apps/packages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/packages/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/admin.py -------------------------------------------------------------------------------- /apps/packages/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/api_views.py -------------------------------------------------------------------------------- /apps/packages/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/packages/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/packages/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/models.py -------------------------------------------------------------------------------- /apps/packages/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/paging.py -------------------------------------------------------------------------------- /apps/packages/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/serializers.py -------------------------------------------------------------------------------- /apps/packages/static/js/packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/static/js/packages.js -------------------------------------------------------------------------------- /apps/packages/templates/packages/packages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/templates/packages/packages.html -------------------------------------------------------------------------------- /apps/packages/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/urls.py -------------------------------------------------------------------------------- /apps/packages/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/packages/views.py -------------------------------------------------------------------------------- /apps/policies/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/policies/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/admin.py -------------------------------------------------------------------------------- /apps/policies/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/api_views.py -------------------------------------------------------------------------------- /apps/policies/enforcement_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/enforcement_views.py -------------------------------------------------------------------------------- /apps/policies/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/models.py -------------------------------------------------------------------------------- /apps/policies/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/paging.py -------------------------------------------------------------------------------- /apps/policies/policy_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/policy_views.py -------------------------------------------------------------------------------- /apps/policies/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/serializers.py -------------------------------------------------------------------------------- /apps/policies/static/js/enforcements.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/static/js/enforcements.js -------------------------------------------------------------------------------- /apps/policies/static/js/policies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/static/js/policies.js -------------------------------------------------------------------------------- /apps/policies/templates/policies/enforcements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/templates/policies/enforcements.html -------------------------------------------------------------------------------- /apps/policies/templates/policies/policies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/templates/policies/policies.html -------------------------------------------------------------------------------- /apps/policies/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/policies/urls.py -------------------------------------------------------------------------------- /apps/swid/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/swid/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/admin.py -------------------------------------------------------------------------------- /apps/swid/ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/ajax.py -------------------------------------------------------------------------------- /apps/swid/api_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/api_views.py -------------------------------------------------------------------------------- /apps/swid/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/swid/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/swid/management/commands/importswid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/management/commands/importswid.py -------------------------------------------------------------------------------- /apps/swid/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/migrations/0001_initial.py -------------------------------------------------------------------------------- /apps/swid/migrations/0002_rename_to_version_str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/migrations/0002_rename_to_version_str.py -------------------------------------------------------------------------------- /apps/swid/migrations/0003_tag_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/migrations/0003_tag_version.py -------------------------------------------------------------------------------- /apps/swid/migrations/0004_link_tag_to_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/migrations/0004_link_tag_to_version.py -------------------------------------------------------------------------------- /apps/swid/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/swid/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/models.py -------------------------------------------------------------------------------- /apps/swid/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/paging.py -------------------------------------------------------------------------------- /apps/swid/serializers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/serializers.py -------------------------------------------------------------------------------- /apps/swid/static/js/swid-inventory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/static/js/swid-inventory.js -------------------------------------------------------------------------------- /apps/swid/static/js/swid-log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/static/js/swid-log.js -------------------------------------------------------------------------------- /apps/swid/templates/swid/paging/swid_devices_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/paging/swid_devices_list.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/paging/swid_inventory_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/paging/swid_inventory_list.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/paging/swid_inventory_session_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/paging/swid_inventory_session_list.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/paging/swid_log_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/paging/swid_log_list.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/regid_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/regid_detail.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/regid_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/regid_list.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/swid_inventory.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/swid_inventory.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/swid_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/swid_log.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/tags_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/tags_detail.html -------------------------------------------------------------------------------- /apps/swid/templates/swid/tags_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/templates/swid/tags_list.html -------------------------------------------------------------------------------- /apps/swid/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/urls.py -------------------------------------------------------------------------------- /apps/swid/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/utils.py -------------------------------------------------------------------------------- /apps/swid/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/views.py -------------------------------------------------------------------------------- /apps/swid/xmpp_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/swid/xmpp_grid.py -------------------------------------------------------------------------------- /apps/tpm/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/tpm/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/admin.py -------------------------------------------------------------------------------- /apps/tpm/comphash_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/comphash_views.py -------------------------------------------------------------------------------- /apps/tpm/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/models.py -------------------------------------------------------------------------------- /apps/tpm/paging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/paging.py -------------------------------------------------------------------------------- /apps/tpm/templates/tpm/comp_hashes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/templates/tpm/comp_hashes.html -------------------------------------------------------------------------------- /apps/tpm/templates/tpm/tpm_evidence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/templates/tpm/tpm_evidence.html -------------------------------------------------------------------------------- /apps/tpm/tpm_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/tpm_views.py -------------------------------------------------------------------------------- /apps/tpm/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/apps/tpm/urls.py -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/config/router.py -------------------------------------------------------------------------------- /config/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/config/settings.py -------------------------------------------------------------------------------- /config/settings.sample.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/config/settings.sample.ini -------------------------------------------------------------------------------- /config/settings_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/config/settings_tests.py -------------------------------------------------------------------------------- /config/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/config/urls.py -------------------------------------------------------------------------------- /config/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/config/wsgi.py -------------------------------------------------------------------------------- /docs/deployment.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/docs/deployment.rst -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/manage.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/requirements-tests.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/runtests.py -------------------------------------------------------------------------------- /scripts/fix_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/scripts/fix_db.sql -------------------------------------------------------------------------------- /scripts/get_schema.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/scripts/get_schema.sh -------------------------------------------------------------------------------- /sql/create_default_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/sql/create_default_db.sh -------------------------------------------------------------------------------- /sql/init_data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/sql/init_data.sql -------------------------------------------------------------------------------- /sql/issue294_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/sql/issue294_create.sql -------------------------------------------------------------------------------- /sql/issue294_migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/sql/issue294_migrate.py -------------------------------------------------------------------------------- /sqldump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/sqldump.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/fixtures.py -------------------------------------------------------------------------------- /tests/test_ajax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_ajax.py -------------------------------------------------------------------------------- /tests/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_api.py -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_devices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_devices.py -------------------------------------------------------------------------------- /tests/test_filesystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_filesystem.py -------------------------------------------------------------------------------- /tests/test_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_legacy.py -------------------------------------------------------------------------------- /tests/test_packages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_packages.py -------------------------------------------------------------------------------- /tests/test_policies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_policies.py -------------------------------------------------------------------------------- /tests/test_swid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_swid.py -------------------------------------------------------------------------------- /tests/test_tags/cowsay.full.swidtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/cowsay.full.swidtag -------------------------------------------------------------------------------- /tests/test_tags/cowsay.short.swidtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/cowsay.short.swidtag -------------------------------------------------------------------------------- /tests/test_tags/invalid_tags/strongswan.full.swidtag.duplicateregid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/invalid_tags/strongswan.full.swidtag.duplicateregid -------------------------------------------------------------------------------- /tests/test_tags/invalid_tags/strongswan.full.swidtag.emptyregid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/invalid_tags/strongswan.full.swidtag.emptyregid -------------------------------------------------------------------------------- /tests/test_tags/invalid_tags/strongswan.full.swidtag.emptyuniqueid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/invalid_tags/strongswan.full.swidtag.emptyuniqueid -------------------------------------------------------------------------------- /tests/test_tags/invalid_tags/strongswan.full.swidtag.notagcreator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/invalid_tags/strongswan.full.swidtag.notagcreator -------------------------------------------------------------------------------- /tests/test_tags/invalid_tags/strongswan.full.swidtag.nouniqueid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/invalid_tags/strongswan.full.swidtag.nouniqueid -------------------------------------------------------------------------------- /tests/test_tags/multiple-swid-tags.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/multiple-swid-tags.txt -------------------------------------------------------------------------------- /tests/test_tags/strongswan-tnc-imcvs.full.swidtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan-tnc-imcvs.full.swidtag -------------------------------------------------------------------------------- /tests/test_tags/strongswan-tnc-imcvs.short.swidtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan-tnc-imcvs.short.swidtag -------------------------------------------------------------------------------- /tests/test_tags/strongswan.full.swidtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan.full.swidtag -------------------------------------------------------------------------------- /tests/test_tags/strongswan.full.swidtag.combinedrole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan.full.swidtag.combinedrole -------------------------------------------------------------------------------- /tests/test_tags/strongswan.full.swidtag.replacement: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan.full.swidtag.replacement -------------------------------------------------------------------------------- /tests/test_tags/strongswan.full.swidtag.singleentity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan.full.swidtag.singleentity -------------------------------------------------------------------------------- /tests/test_tags/strongswan.short.swidtag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/strongswan.short.swidtag -------------------------------------------------------------------------------- /tests/test_tags/ubuntu_full_swid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_tags/ubuntu_full_swid.txt -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /vagrant/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/README.rst -------------------------------------------------------------------------------- /vagrant/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/Vagrantfile -------------------------------------------------------------------------------- /vagrant/provisioning/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/playbook.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/apache/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/apache/handlers/main.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/apache/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/apache/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/base/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/base/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/handlers/main.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/tasks/main.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/tasks/mysql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/tasks/mysql.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/tasks/sqlite.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/tasks/sqlite.yml -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/templates/apache.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/templates/apache.conf.j2 -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/templates/settings.ini.mysql.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/templates/settings.ini.mysql.j2 -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/templates/settings.ini.sqlite.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/templates/settings.ini.sqlite.j2 -------------------------------------------------------------------------------- /vagrant/provisioning/roles/strongtnc/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/strongswan/strongTNC/HEAD/vagrant/provisioning/roles/strongtnc/vars/main.yml --------------------------------------------------------------------------------