├── .coveragerc ├── .gitignore ├── .pylintrc ├── .travis.yml ├── COPYING ├── COPYING.GPL ├── COPYING.LGPL ├── ChangeLog ├── KNOWN-BUGS ├── MANIFEST.in ├── README.md ├── apol ├── libqpol ├── avrule_query.c ├── bool_query.c ├── bounds_query.c ├── class_perm_query.c ├── cond_query.c ├── config.h ├── constraint_query.c ├── context_query.c ├── default_object_query.c ├── expand.c ├── expand.h ├── fs_use_query.c ├── ftrule_query.c ├── genfscon_query.c ├── include │ └── qpol │ │ ├── avrule_query.h │ │ ├── bool_query.h │ │ ├── bounds_query.h │ │ ├── class_perm_query.h │ │ ├── cond_query.h │ │ ├── constraint_query.h │ │ ├── context_query.h │ │ ├── default_object_query.h │ │ ├── fs_use_query.h │ │ ├── ftrule_query.h │ │ ├── genfscon_query.h │ │ ├── isid_query.h │ │ ├── iterator.h │ │ ├── linux_types.h │ │ ├── mls_query.h │ │ ├── mlsrule_query.h │ │ ├── module.h │ │ ├── netifcon_query.h │ │ ├── nodecon_query.h │ │ ├── permissive_query.h │ │ ├── polcap_query.h │ │ ├── policy.h │ │ ├── policy_extend.h │ │ ├── portcon_query.h │ │ ├── rbacrule_query.h │ │ ├── role_query.h │ │ ├── syn_rule_query.h │ │ ├── terule_query.h │ │ ├── type_query.h │ │ ├── user_query.h │ │ └── xen_query.h ├── isid_query.c ├── iterator.c ├── iterator_internal.h ├── mls_query.c ├── mlsrule_query.c ├── module.c ├── module_compiler.c ├── module_compiler.h ├── netifcon_query.c ├── nodecon_query.c ├── permissive_query.c ├── polcap_query.c ├── policy.c ├── policy_define.c ├── policy_define.h ├── policy_extend.c ├── policy_parse.y ├── policy_scan.l ├── portcon_query.c ├── qpol_internal.h ├── queue.c ├── queue.h ├── rbacrule_query.c ├── role_query.c ├── terule_query.c ├── type_query.c ├── user_query.c └── xen_query.c ├── man ├── apol.1 ├── sediff.1 ├── sedta.1 ├── seinfo.1 ├── seinfoflow.1 └── sesearch.1 ├── patches ├── README ├── explicit-python3.diff └── libsepol-2.4-mls-semantic-level-expand.patch ├── qhc ├── analyses.html ├── apol.qhcp ├── apol.qhp ├── components.html ├── dta.html ├── index.html ├── infoflow.html ├── labeling.html └── rules.html ├── sediff ├── sedta ├── seinfo ├── seinfoflow ├── sesearch ├── setools ├── __init__.py ├── boolquery.py ├── boundsquery.py ├── categoryquery.py ├── commonquery.py ├── constraintquery.py ├── defaultquery.py ├── descriptors.py ├── devicetreeconquery.py ├── diff │ ├── __init__.py │ ├── bool.py │ ├── bounds.py │ ├── commons.py │ ├── conditional.py │ ├── constraints.py │ ├── context.py │ ├── default.py │ ├── descriptors.py │ ├── difference.py │ ├── fsuse.py │ ├── genfscon.py │ ├── initsid.py │ ├── mls.py │ ├── mlsrules.py │ ├── netifcon.py │ ├── nodecon.py │ ├── objclass.py │ ├── polcap.py │ ├── portcon.py │ ├── properties.py │ ├── rbacrules.py │ ├── roles.py │ ├── terules.py │ ├── typeattr.py │ ├── types.py │ └── users.py ├── dta.py ├── exception.py ├── fsusequery.py ├── genfsconquery.py ├── infoflow.py ├── initsidquery.py ├── iomemconquery.py ├── ioportconquery.py ├── mixins.py ├── mlsrulequery.py ├── netifconquery.py ├── nodeconquery.py ├── objclassquery.py ├── pcideviceconquery.py ├── perm_map ├── permmap.py ├── pirqconquery.py ├── polcapquery.py ├── policyrep │ ├── __init__.py │ ├── boolcond.py │ ├── bounds.py │ ├── constraint.py │ ├── context.py │ ├── default.py │ ├── exception.py │ ├── fscontext.py │ ├── initsid.py │ ├── mls.py │ ├── mlsrule.py │ ├── netcontext.py │ ├── objclass.py │ ├── polcap.py │ ├── qpol.i │ ├── rbacrule.py │ ├── role.py │ ├── rule.py │ ├── selinuxpolicy.py │ ├── symbol.py │ ├── terule.py │ ├── typeattr.py │ ├── user.py │ ├── util.py │ └── xencontext.py ├── portconquery.py ├── query.py ├── rbacrulequery.py ├── rolequery.py ├── sensitivityquery.py ├── terulequery.py ├── typeattrquery.py ├── typequery.py ├── userquery.py └── util.py ├── setoolsgui ├── __init__.py ├── apol │ ├── __init__.py │ ├── analysistab.py │ ├── apol.qch │ ├── apol.qhc │ ├── apol.ui │ ├── boolquery.py │ ├── boolquery.ui │ ├── boundsquery.py │ ├── boundsquery.ui │ ├── categoryquery.py │ ├── categoryquery.ui │ ├── choose_analysis.ui │ ├── chooseanalysis.py │ ├── commonquery.py │ ├── commonquery.ui │ ├── constraintquery.py │ ├── constraintquery.ui │ ├── defaultquery.py │ ├── defaultquery.ui │ ├── dta.py │ ├── dta.ui │ ├── exception.py │ ├── exclude_types.ui │ ├── excludetypes.py │ ├── fsusequery.py │ ├── fsusequery.ui │ ├── genfsconquery.py │ ├── genfsconquery.ui │ ├── infoflow.py │ ├── infoflow.ui │ ├── initsidquery.py │ ├── initsidquery.ui │ ├── mainwindow.py │ ├── mlsrulequery.py │ ├── mlsrulequery.ui │ ├── netifconquery.py │ ├── netifconquery.ui │ ├── nodeconquery.py │ ├── nodeconquery.ui │ ├── objclassquery.py │ ├── objclassquery.ui │ ├── permmap_editor.ui │ ├── permmapedit.py │ ├── permmapping.ui │ ├── portconquery.py │ ├── portconquery.ui │ ├── queryupdater.py │ ├── rbacrulequery.py │ ├── rbacrulequery.ui │ ├── rolequery.py │ ├── rolequery.ui │ ├── sensitivityquery.py │ ├── sensitivityquery.ui │ ├── summary.py │ ├── summary.ui │ ├── terulequery.py │ ├── terulequery.ui │ ├── typeattrquery.py │ ├── typeattrquery.ui │ ├── typequery.py │ ├── typequery.ui │ ├── userquery.py │ ├── userquery.ui │ └── workspace.py ├── boolmodel.py ├── boundsmodel.py ├── commonmodel.py ├── constraintmodel.py ├── defaultmodel.py ├── detail_popup.ui ├── details.py ├── fsusemodel.py ├── genfsconmodel.py ├── getdetailslist.py ├── initsidmodel.py ├── logtosignal.py ├── mlsmodel.py ├── mlsrulemodel.py ├── models.py ├── netifconmodel.py ├── nodeconmodel.py ├── objclassmodel.py ├── portconmodel.py ├── rbacrulemodel.py ├── rolemodel.py ├── tableview.py ├── terulemodel.py ├── treeview.py ├── typeattrmodel.py ├── typemodel.py ├── usermodel.py └── widget.py ├── setup.py ├── tests ├── __init__.py ├── boolquery.conf ├── boolquery.py ├── boundsquery.conf ├── boundsquery.py ├── categoryquery.conf ├── categoryquery.py ├── commonquery.conf ├── commonquery.py ├── constraintquery.conf ├── constraintquery.py ├── defaultquery.conf ├── defaultquery.py ├── devicetreeconquery.conf ├── devicetreeconquery.py ├── diff.py ├── diff_left.conf ├── diff_left_standard.conf ├── diff_right.conf ├── dta.conf ├── dta.py ├── fsusequery.conf ├── fsusequery.py ├── genfsconquery.conf ├── genfsconquery.py ├── infoflow.conf ├── infoflow.py ├── initsidquery.conf ├── initsidquery.py ├── invalid_perm_maps │ ├── bad-class-keyword │ ├── bad-perm-weight-high │ ├── bad-perm-weight-low │ ├── bad-permcount │ ├── extra-class │ ├── extra-perms │ ├── invalid-flowdir │ ├── invalid-perm-weight │ ├── negative-classcount │ ├── negative-permcount │ └── non-number-classcount ├── iomemconquery.conf ├── iomemconquery.py ├── ioportconquery.conf ├── ioportconquery.py ├── mixins.py ├── mlsrulequery.conf ├── mlsrulequery.py ├── netifconquery.conf ├── netifconquery.py ├── nodeconquery.conf ├── nodeconquery.py ├── objclassquery.conf ├── objclassquery.py ├── pcideviceconquery.conf ├── pcideviceconquery.py ├── perm_map ├── permmap.conf ├── permmap.py ├── pirqconquery.conf ├── pirqconquery.py ├── polcapquery.conf ├── polcapquery.py ├── policyrep │ ├── __init__.py │ ├── default.py │ ├── initsid.conf │ ├── initsid.py │ ├── invalid_policies │ │ ├── nodecon-invalid-range.conf │ │ └── user-level-not-in-range.conf │ ├── mls.conf │ ├── mls.py │ ├── mlsrule.py │ ├── objclass.conf │ ├── objclass.py │ ├── polcap.py │ ├── rbacrule.py │ ├── role.conf │ ├── role.py │ ├── selinuxpolicy.conf │ ├── selinuxpolicy.py │ ├── symbol.py │ ├── terule.py │ ├── typeattr.conf │ ├── typeattr.py │ ├── user.conf │ └── user.py ├── portconquery.conf ├── portconquery.py ├── rbacrulequery.conf ├── rbacrulequery.py ├── rolequery.conf ├── rolequery.py ├── sensitivityquery.conf ├── sensitivityquery.py ├── terulequery.conf ├── terulequery.py ├── terulequery2.conf ├── typeattrquery.conf ├── typeattrquery.py ├── typequery.conf ├── typequery.py ├── userquery.conf └── userquery.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/.coveragerc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/.gitignore -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/.pylintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/COPYING.LGPL -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/ChangeLog -------------------------------------------------------------------------------- /KNOWN-BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/KNOWN-BUGS -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/README.md -------------------------------------------------------------------------------- /apol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/apol -------------------------------------------------------------------------------- /libqpol/avrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/avrule_query.c -------------------------------------------------------------------------------- /libqpol/bool_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/bool_query.c -------------------------------------------------------------------------------- /libqpol/bounds_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/bounds_query.c -------------------------------------------------------------------------------- /libqpol/class_perm_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/class_perm_query.c -------------------------------------------------------------------------------- /libqpol/cond_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/cond_query.c -------------------------------------------------------------------------------- /libqpol/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/config.h -------------------------------------------------------------------------------- /libqpol/constraint_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/constraint_query.c -------------------------------------------------------------------------------- /libqpol/context_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/context_query.c -------------------------------------------------------------------------------- /libqpol/default_object_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/default_object_query.c -------------------------------------------------------------------------------- /libqpol/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/expand.c -------------------------------------------------------------------------------- /libqpol/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/expand.h -------------------------------------------------------------------------------- /libqpol/fs_use_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/fs_use_query.c -------------------------------------------------------------------------------- /libqpol/ftrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/ftrule_query.c -------------------------------------------------------------------------------- /libqpol/genfscon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/genfscon_query.c -------------------------------------------------------------------------------- /libqpol/include/qpol/avrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/avrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/bool_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/bool_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/bounds_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/bounds_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/class_perm_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/class_perm_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/cond_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/cond_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/constraint_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/constraint_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/context_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/context_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/default_object_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/default_object_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/fs_use_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/fs_use_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/ftrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/ftrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/genfscon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/genfscon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/isid_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/isid_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/iterator.h -------------------------------------------------------------------------------- /libqpol/include/qpol/linux_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/linux_types.h -------------------------------------------------------------------------------- /libqpol/include/qpol/mls_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/mls_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/mlsrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/mlsrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/module.h -------------------------------------------------------------------------------- /libqpol/include/qpol/netifcon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/netifcon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/nodecon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/nodecon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/permissive_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/permissive_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/polcap_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/polcap_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/policy.h -------------------------------------------------------------------------------- /libqpol/include/qpol/policy_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/policy_extend.h -------------------------------------------------------------------------------- /libqpol/include/qpol/portcon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/portcon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/rbacrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/rbacrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/role_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/role_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/syn_rule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/syn_rule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/terule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/terule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/type_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/type_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/user_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/user_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/xen_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/include/qpol/xen_query.h -------------------------------------------------------------------------------- /libqpol/isid_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/isid_query.c -------------------------------------------------------------------------------- /libqpol/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/iterator.c -------------------------------------------------------------------------------- /libqpol/iterator_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/iterator_internal.h -------------------------------------------------------------------------------- /libqpol/mls_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/mls_query.c -------------------------------------------------------------------------------- /libqpol/mlsrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/mlsrule_query.c -------------------------------------------------------------------------------- /libqpol/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/module.c -------------------------------------------------------------------------------- /libqpol/module_compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/module_compiler.c -------------------------------------------------------------------------------- /libqpol/module_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/module_compiler.h -------------------------------------------------------------------------------- /libqpol/netifcon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/netifcon_query.c -------------------------------------------------------------------------------- /libqpol/nodecon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/nodecon_query.c -------------------------------------------------------------------------------- /libqpol/permissive_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/permissive_query.c -------------------------------------------------------------------------------- /libqpol/polcap_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/polcap_query.c -------------------------------------------------------------------------------- /libqpol/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/policy.c -------------------------------------------------------------------------------- /libqpol/policy_define.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/policy_define.c -------------------------------------------------------------------------------- /libqpol/policy_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/policy_define.h -------------------------------------------------------------------------------- /libqpol/policy_extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/policy_extend.c -------------------------------------------------------------------------------- /libqpol/policy_parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/policy_parse.y -------------------------------------------------------------------------------- /libqpol/policy_scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/policy_scan.l -------------------------------------------------------------------------------- /libqpol/portcon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/portcon_query.c -------------------------------------------------------------------------------- /libqpol/qpol_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/qpol_internal.h -------------------------------------------------------------------------------- /libqpol/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/queue.c -------------------------------------------------------------------------------- /libqpol/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/queue.h -------------------------------------------------------------------------------- /libqpol/rbacrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/rbacrule_query.c -------------------------------------------------------------------------------- /libqpol/role_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/role_query.c -------------------------------------------------------------------------------- /libqpol/terule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/terule_query.c -------------------------------------------------------------------------------- /libqpol/type_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/type_query.c -------------------------------------------------------------------------------- /libqpol/user_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/user_query.c -------------------------------------------------------------------------------- /libqpol/xen_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/libqpol/xen_query.c -------------------------------------------------------------------------------- /man/apol.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/man/apol.1 -------------------------------------------------------------------------------- /man/sediff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/man/sediff.1 -------------------------------------------------------------------------------- /man/sedta.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/man/sedta.1 -------------------------------------------------------------------------------- /man/seinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/man/seinfo.1 -------------------------------------------------------------------------------- /man/seinfoflow.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/man/seinfoflow.1 -------------------------------------------------------------------------------- /man/sesearch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/man/sesearch.1 -------------------------------------------------------------------------------- /patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/patches/README -------------------------------------------------------------------------------- /patches/explicit-python3.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/patches/explicit-python3.diff -------------------------------------------------------------------------------- /patches/libsepol-2.4-mls-semantic-level-expand.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/patches/libsepol-2.4-mls-semantic-level-expand.patch -------------------------------------------------------------------------------- /qhc/analyses.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/analyses.html -------------------------------------------------------------------------------- /qhc/apol.qhcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/apol.qhcp -------------------------------------------------------------------------------- /qhc/apol.qhp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/apol.qhp -------------------------------------------------------------------------------- /qhc/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/components.html -------------------------------------------------------------------------------- /qhc/dta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/dta.html -------------------------------------------------------------------------------- /qhc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/index.html -------------------------------------------------------------------------------- /qhc/infoflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/infoflow.html -------------------------------------------------------------------------------- /qhc/labeling.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/labeling.html -------------------------------------------------------------------------------- /qhc/rules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/qhc/rules.html -------------------------------------------------------------------------------- /sediff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/sediff -------------------------------------------------------------------------------- /sedta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/sedta -------------------------------------------------------------------------------- /seinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/seinfo -------------------------------------------------------------------------------- /seinfoflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/seinfoflow -------------------------------------------------------------------------------- /sesearch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/sesearch -------------------------------------------------------------------------------- /setools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/__init__.py -------------------------------------------------------------------------------- /setools/boolquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/boolquery.py -------------------------------------------------------------------------------- /setools/boundsquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/boundsquery.py -------------------------------------------------------------------------------- /setools/categoryquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/categoryquery.py -------------------------------------------------------------------------------- /setools/commonquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/commonquery.py -------------------------------------------------------------------------------- /setools/constraintquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/constraintquery.py -------------------------------------------------------------------------------- /setools/defaultquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/defaultquery.py -------------------------------------------------------------------------------- /setools/descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/descriptors.py -------------------------------------------------------------------------------- /setools/devicetreeconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/devicetreeconquery.py -------------------------------------------------------------------------------- /setools/diff/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/__init__.py -------------------------------------------------------------------------------- /setools/diff/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/bool.py -------------------------------------------------------------------------------- /setools/diff/bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/bounds.py -------------------------------------------------------------------------------- /setools/diff/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/commons.py -------------------------------------------------------------------------------- /setools/diff/conditional.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/conditional.py -------------------------------------------------------------------------------- /setools/diff/constraints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/constraints.py -------------------------------------------------------------------------------- /setools/diff/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/context.py -------------------------------------------------------------------------------- /setools/diff/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/default.py -------------------------------------------------------------------------------- /setools/diff/descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/descriptors.py -------------------------------------------------------------------------------- /setools/diff/difference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/difference.py -------------------------------------------------------------------------------- /setools/diff/fsuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/fsuse.py -------------------------------------------------------------------------------- /setools/diff/genfscon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/genfscon.py -------------------------------------------------------------------------------- /setools/diff/initsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/initsid.py -------------------------------------------------------------------------------- /setools/diff/mls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/mls.py -------------------------------------------------------------------------------- /setools/diff/mlsrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/mlsrules.py -------------------------------------------------------------------------------- /setools/diff/netifcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/netifcon.py -------------------------------------------------------------------------------- /setools/diff/nodecon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/nodecon.py -------------------------------------------------------------------------------- /setools/diff/objclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/objclass.py -------------------------------------------------------------------------------- /setools/diff/polcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/polcap.py -------------------------------------------------------------------------------- /setools/diff/portcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/portcon.py -------------------------------------------------------------------------------- /setools/diff/properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/properties.py -------------------------------------------------------------------------------- /setools/diff/rbacrules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/rbacrules.py -------------------------------------------------------------------------------- /setools/diff/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/roles.py -------------------------------------------------------------------------------- /setools/diff/terules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/terules.py -------------------------------------------------------------------------------- /setools/diff/typeattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/typeattr.py -------------------------------------------------------------------------------- /setools/diff/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/types.py -------------------------------------------------------------------------------- /setools/diff/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/diff/users.py -------------------------------------------------------------------------------- /setools/dta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/dta.py -------------------------------------------------------------------------------- /setools/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/exception.py -------------------------------------------------------------------------------- /setools/fsusequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/fsusequery.py -------------------------------------------------------------------------------- /setools/genfsconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/genfsconquery.py -------------------------------------------------------------------------------- /setools/infoflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/infoflow.py -------------------------------------------------------------------------------- /setools/initsidquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/initsidquery.py -------------------------------------------------------------------------------- /setools/iomemconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/iomemconquery.py -------------------------------------------------------------------------------- /setools/ioportconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/ioportconquery.py -------------------------------------------------------------------------------- /setools/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/mixins.py -------------------------------------------------------------------------------- /setools/mlsrulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/mlsrulequery.py -------------------------------------------------------------------------------- /setools/netifconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/netifconquery.py -------------------------------------------------------------------------------- /setools/nodeconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/nodeconquery.py -------------------------------------------------------------------------------- /setools/objclassquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/objclassquery.py -------------------------------------------------------------------------------- /setools/pcideviceconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/pcideviceconquery.py -------------------------------------------------------------------------------- /setools/perm_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/perm_map -------------------------------------------------------------------------------- /setools/permmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/permmap.py -------------------------------------------------------------------------------- /setools/pirqconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/pirqconquery.py -------------------------------------------------------------------------------- /setools/polcapquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/polcapquery.py -------------------------------------------------------------------------------- /setools/policyrep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/__init__.py -------------------------------------------------------------------------------- /setools/policyrep/boolcond.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/boolcond.py -------------------------------------------------------------------------------- /setools/policyrep/bounds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/bounds.py -------------------------------------------------------------------------------- /setools/policyrep/constraint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/constraint.py -------------------------------------------------------------------------------- /setools/policyrep/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/context.py -------------------------------------------------------------------------------- /setools/policyrep/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/default.py -------------------------------------------------------------------------------- /setools/policyrep/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/exception.py -------------------------------------------------------------------------------- /setools/policyrep/fscontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/fscontext.py -------------------------------------------------------------------------------- /setools/policyrep/initsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/initsid.py -------------------------------------------------------------------------------- /setools/policyrep/mls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/mls.py -------------------------------------------------------------------------------- /setools/policyrep/mlsrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/mlsrule.py -------------------------------------------------------------------------------- /setools/policyrep/netcontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/netcontext.py -------------------------------------------------------------------------------- /setools/policyrep/objclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/objclass.py -------------------------------------------------------------------------------- /setools/policyrep/polcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/polcap.py -------------------------------------------------------------------------------- /setools/policyrep/qpol.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/qpol.i -------------------------------------------------------------------------------- /setools/policyrep/rbacrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/rbacrule.py -------------------------------------------------------------------------------- /setools/policyrep/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/role.py -------------------------------------------------------------------------------- /setools/policyrep/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/rule.py -------------------------------------------------------------------------------- /setools/policyrep/selinuxpolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/selinuxpolicy.py -------------------------------------------------------------------------------- /setools/policyrep/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/symbol.py -------------------------------------------------------------------------------- /setools/policyrep/terule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/terule.py -------------------------------------------------------------------------------- /setools/policyrep/typeattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/typeattr.py -------------------------------------------------------------------------------- /setools/policyrep/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/user.py -------------------------------------------------------------------------------- /setools/policyrep/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/util.py -------------------------------------------------------------------------------- /setools/policyrep/xencontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/policyrep/xencontext.py -------------------------------------------------------------------------------- /setools/portconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/portconquery.py -------------------------------------------------------------------------------- /setools/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/query.py -------------------------------------------------------------------------------- /setools/rbacrulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/rbacrulequery.py -------------------------------------------------------------------------------- /setools/rolequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/rolequery.py -------------------------------------------------------------------------------- /setools/sensitivityquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/sensitivityquery.py -------------------------------------------------------------------------------- /setools/terulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/terulequery.py -------------------------------------------------------------------------------- /setools/typeattrquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/typeattrquery.py -------------------------------------------------------------------------------- /setools/typequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/typequery.py -------------------------------------------------------------------------------- /setools/userquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/userquery.py -------------------------------------------------------------------------------- /setools/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setools/util.py -------------------------------------------------------------------------------- /setoolsgui/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/__init__.py -------------------------------------------------------------------------------- /setoolsgui/apol/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/__init__.py -------------------------------------------------------------------------------- /setoolsgui/apol/analysistab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/analysistab.py -------------------------------------------------------------------------------- /setoolsgui/apol/apol.qch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/apol.qch -------------------------------------------------------------------------------- /setoolsgui/apol/apol.qhc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/apol.qhc -------------------------------------------------------------------------------- /setoolsgui/apol/apol.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/apol.ui -------------------------------------------------------------------------------- /setoolsgui/apol/boolquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/boolquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/boolquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/boolquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/boundsquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/boundsquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/boundsquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/boundsquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/categoryquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/categoryquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/categoryquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/categoryquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/choose_analysis.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/choose_analysis.ui -------------------------------------------------------------------------------- /setoolsgui/apol/chooseanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/chooseanalysis.py -------------------------------------------------------------------------------- /setoolsgui/apol/commonquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/commonquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/commonquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/commonquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/constraintquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/constraintquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/constraintquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/constraintquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/defaultquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/defaultquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/defaultquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/defaultquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/dta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/dta.py -------------------------------------------------------------------------------- /setoolsgui/apol/dta.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/dta.ui -------------------------------------------------------------------------------- /setoolsgui/apol/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/exception.py -------------------------------------------------------------------------------- /setoolsgui/apol/exclude_types.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/exclude_types.ui -------------------------------------------------------------------------------- /setoolsgui/apol/excludetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/excludetypes.py -------------------------------------------------------------------------------- /setoolsgui/apol/fsusequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/fsusequery.py -------------------------------------------------------------------------------- /setoolsgui/apol/fsusequery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/fsusequery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/genfsconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/genfsconquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/genfsconquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/genfsconquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/infoflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/infoflow.py -------------------------------------------------------------------------------- /setoolsgui/apol/infoflow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/infoflow.ui -------------------------------------------------------------------------------- /setoolsgui/apol/initsidquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/initsidquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/initsidquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/initsidquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/mainwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/mainwindow.py -------------------------------------------------------------------------------- /setoolsgui/apol/mlsrulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/mlsrulequery.py -------------------------------------------------------------------------------- /setoolsgui/apol/mlsrulequery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/mlsrulequery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/netifconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/netifconquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/netifconquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/netifconquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/nodeconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/nodeconquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/nodeconquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/nodeconquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/objclassquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/objclassquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/objclassquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/objclassquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/permmap_editor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/permmap_editor.ui -------------------------------------------------------------------------------- /setoolsgui/apol/permmapedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/permmapedit.py -------------------------------------------------------------------------------- /setoolsgui/apol/permmapping.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/permmapping.ui -------------------------------------------------------------------------------- /setoolsgui/apol/portconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/portconquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/portconquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/portconquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/queryupdater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/queryupdater.py -------------------------------------------------------------------------------- /setoolsgui/apol/rbacrulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/rbacrulequery.py -------------------------------------------------------------------------------- /setoolsgui/apol/rbacrulequery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/rbacrulequery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/rolequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/rolequery.py -------------------------------------------------------------------------------- /setoolsgui/apol/rolequery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/rolequery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/sensitivityquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/sensitivityquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/sensitivityquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/sensitivityquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/summary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/summary.py -------------------------------------------------------------------------------- /setoolsgui/apol/summary.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/summary.ui -------------------------------------------------------------------------------- /setoolsgui/apol/terulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/terulequery.py -------------------------------------------------------------------------------- /setoolsgui/apol/terulequery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/terulequery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/typeattrquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/typeattrquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/typeattrquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/typeattrquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/typequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/typequery.py -------------------------------------------------------------------------------- /setoolsgui/apol/typequery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/typequery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/userquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/userquery.py -------------------------------------------------------------------------------- /setoolsgui/apol/userquery.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/userquery.ui -------------------------------------------------------------------------------- /setoolsgui/apol/workspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/apol/workspace.py -------------------------------------------------------------------------------- /setoolsgui/boolmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/boolmodel.py -------------------------------------------------------------------------------- /setoolsgui/boundsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/boundsmodel.py -------------------------------------------------------------------------------- /setoolsgui/commonmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/commonmodel.py -------------------------------------------------------------------------------- /setoolsgui/constraintmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/constraintmodel.py -------------------------------------------------------------------------------- /setoolsgui/defaultmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/defaultmodel.py -------------------------------------------------------------------------------- /setoolsgui/detail_popup.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/detail_popup.ui -------------------------------------------------------------------------------- /setoolsgui/details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/details.py -------------------------------------------------------------------------------- /setoolsgui/fsusemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/fsusemodel.py -------------------------------------------------------------------------------- /setoolsgui/genfsconmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/genfsconmodel.py -------------------------------------------------------------------------------- /setoolsgui/getdetailslist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/getdetailslist.py -------------------------------------------------------------------------------- /setoolsgui/initsidmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/initsidmodel.py -------------------------------------------------------------------------------- /setoolsgui/logtosignal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/logtosignal.py -------------------------------------------------------------------------------- /setoolsgui/mlsmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/mlsmodel.py -------------------------------------------------------------------------------- /setoolsgui/mlsrulemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/mlsrulemodel.py -------------------------------------------------------------------------------- /setoolsgui/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/models.py -------------------------------------------------------------------------------- /setoolsgui/netifconmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/netifconmodel.py -------------------------------------------------------------------------------- /setoolsgui/nodeconmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/nodeconmodel.py -------------------------------------------------------------------------------- /setoolsgui/objclassmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/objclassmodel.py -------------------------------------------------------------------------------- /setoolsgui/portconmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/portconmodel.py -------------------------------------------------------------------------------- /setoolsgui/rbacrulemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/rbacrulemodel.py -------------------------------------------------------------------------------- /setoolsgui/rolemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/rolemodel.py -------------------------------------------------------------------------------- /setoolsgui/tableview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/tableview.py -------------------------------------------------------------------------------- /setoolsgui/terulemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/terulemodel.py -------------------------------------------------------------------------------- /setoolsgui/treeview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/treeview.py -------------------------------------------------------------------------------- /setoolsgui/typeattrmodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/typeattrmodel.py -------------------------------------------------------------------------------- /setoolsgui/typemodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/typemodel.py -------------------------------------------------------------------------------- /setoolsgui/usermodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/usermodel.py -------------------------------------------------------------------------------- /setoolsgui/widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setoolsgui/widget.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/boolquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/boolquery.conf -------------------------------------------------------------------------------- /tests/boolquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/boolquery.py -------------------------------------------------------------------------------- /tests/boundsquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/boundsquery.conf -------------------------------------------------------------------------------- /tests/boundsquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/boundsquery.py -------------------------------------------------------------------------------- /tests/categoryquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/categoryquery.conf -------------------------------------------------------------------------------- /tests/categoryquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/categoryquery.py -------------------------------------------------------------------------------- /tests/commonquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/commonquery.conf -------------------------------------------------------------------------------- /tests/commonquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/commonquery.py -------------------------------------------------------------------------------- /tests/constraintquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/constraintquery.conf -------------------------------------------------------------------------------- /tests/constraintquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/constraintquery.py -------------------------------------------------------------------------------- /tests/defaultquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/defaultquery.conf -------------------------------------------------------------------------------- /tests/defaultquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/defaultquery.py -------------------------------------------------------------------------------- /tests/devicetreeconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/devicetreeconquery.conf -------------------------------------------------------------------------------- /tests/devicetreeconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/devicetreeconquery.py -------------------------------------------------------------------------------- /tests/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/diff.py -------------------------------------------------------------------------------- /tests/diff_left.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/diff_left.conf -------------------------------------------------------------------------------- /tests/diff_left_standard.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/diff_left_standard.conf -------------------------------------------------------------------------------- /tests/diff_right.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/diff_right.conf -------------------------------------------------------------------------------- /tests/dta.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/dta.conf -------------------------------------------------------------------------------- /tests/dta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/dta.py -------------------------------------------------------------------------------- /tests/fsusequery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/fsusequery.conf -------------------------------------------------------------------------------- /tests/fsusequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/fsusequery.py -------------------------------------------------------------------------------- /tests/genfsconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/genfsconquery.conf -------------------------------------------------------------------------------- /tests/genfsconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/genfsconquery.py -------------------------------------------------------------------------------- /tests/infoflow.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/infoflow.conf -------------------------------------------------------------------------------- /tests/infoflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/infoflow.py -------------------------------------------------------------------------------- /tests/initsidquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/initsidquery.conf -------------------------------------------------------------------------------- /tests/initsidquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/initsidquery.py -------------------------------------------------------------------------------- /tests/invalid_perm_maps/bad-class-keyword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/bad-class-keyword -------------------------------------------------------------------------------- /tests/invalid_perm_maps/bad-perm-weight-high: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/bad-perm-weight-high -------------------------------------------------------------------------------- /tests/invalid_perm_maps/bad-perm-weight-low: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/bad-perm-weight-low -------------------------------------------------------------------------------- /tests/invalid_perm_maps/bad-permcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/bad-permcount -------------------------------------------------------------------------------- /tests/invalid_perm_maps/extra-class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/extra-class -------------------------------------------------------------------------------- /tests/invalid_perm_maps/extra-perms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/extra-perms -------------------------------------------------------------------------------- /tests/invalid_perm_maps/invalid-flowdir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/invalid-flowdir -------------------------------------------------------------------------------- /tests/invalid_perm_maps/invalid-perm-weight: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/invalid-perm-weight -------------------------------------------------------------------------------- /tests/invalid_perm_maps/negative-classcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/negative-classcount -------------------------------------------------------------------------------- /tests/invalid_perm_maps/negative-permcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/negative-permcount -------------------------------------------------------------------------------- /tests/invalid_perm_maps/non-number-classcount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/invalid_perm_maps/non-number-classcount -------------------------------------------------------------------------------- /tests/iomemconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/iomemconquery.conf -------------------------------------------------------------------------------- /tests/iomemconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/iomemconquery.py -------------------------------------------------------------------------------- /tests/ioportconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/ioportconquery.conf -------------------------------------------------------------------------------- /tests/ioportconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/ioportconquery.py -------------------------------------------------------------------------------- /tests/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/mixins.py -------------------------------------------------------------------------------- /tests/mlsrulequery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/mlsrulequery.conf -------------------------------------------------------------------------------- /tests/mlsrulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/mlsrulequery.py -------------------------------------------------------------------------------- /tests/netifconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/netifconquery.conf -------------------------------------------------------------------------------- /tests/netifconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/netifconquery.py -------------------------------------------------------------------------------- /tests/nodeconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/nodeconquery.conf -------------------------------------------------------------------------------- /tests/nodeconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/nodeconquery.py -------------------------------------------------------------------------------- /tests/objclassquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/objclassquery.conf -------------------------------------------------------------------------------- /tests/objclassquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/objclassquery.py -------------------------------------------------------------------------------- /tests/pcideviceconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/pcideviceconquery.conf -------------------------------------------------------------------------------- /tests/pcideviceconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/pcideviceconquery.py -------------------------------------------------------------------------------- /tests/perm_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/perm_map -------------------------------------------------------------------------------- /tests/permmap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/permmap.conf -------------------------------------------------------------------------------- /tests/permmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/permmap.py -------------------------------------------------------------------------------- /tests/pirqconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/pirqconquery.conf -------------------------------------------------------------------------------- /tests/pirqconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/pirqconquery.py -------------------------------------------------------------------------------- /tests/polcapquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/polcapquery.conf -------------------------------------------------------------------------------- /tests/polcapquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/polcapquery.py -------------------------------------------------------------------------------- /tests/policyrep/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/__init__.py -------------------------------------------------------------------------------- /tests/policyrep/default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/default.py -------------------------------------------------------------------------------- /tests/policyrep/initsid.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/initsid.conf -------------------------------------------------------------------------------- /tests/policyrep/initsid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/initsid.py -------------------------------------------------------------------------------- /tests/policyrep/invalid_policies/nodecon-invalid-range.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/invalid_policies/nodecon-invalid-range.conf -------------------------------------------------------------------------------- /tests/policyrep/invalid_policies/user-level-not-in-range.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/invalid_policies/user-level-not-in-range.conf -------------------------------------------------------------------------------- /tests/policyrep/mls.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/mls.conf -------------------------------------------------------------------------------- /tests/policyrep/mls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/mls.py -------------------------------------------------------------------------------- /tests/policyrep/mlsrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/mlsrule.py -------------------------------------------------------------------------------- /tests/policyrep/objclass.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/objclass.conf -------------------------------------------------------------------------------- /tests/policyrep/objclass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/objclass.py -------------------------------------------------------------------------------- /tests/policyrep/polcap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/polcap.py -------------------------------------------------------------------------------- /tests/policyrep/rbacrule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/rbacrule.py -------------------------------------------------------------------------------- /tests/policyrep/role.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/role.conf -------------------------------------------------------------------------------- /tests/policyrep/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/role.py -------------------------------------------------------------------------------- /tests/policyrep/selinuxpolicy.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/selinuxpolicy.conf -------------------------------------------------------------------------------- /tests/policyrep/selinuxpolicy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/selinuxpolicy.py -------------------------------------------------------------------------------- /tests/policyrep/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/symbol.py -------------------------------------------------------------------------------- /tests/policyrep/terule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/terule.py -------------------------------------------------------------------------------- /tests/policyrep/typeattr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/typeattr.conf -------------------------------------------------------------------------------- /tests/policyrep/typeattr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/typeattr.py -------------------------------------------------------------------------------- /tests/policyrep/user.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/user.conf -------------------------------------------------------------------------------- /tests/policyrep/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/policyrep/user.py -------------------------------------------------------------------------------- /tests/portconquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/portconquery.conf -------------------------------------------------------------------------------- /tests/portconquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/portconquery.py -------------------------------------------------------------------------------- /tests/rbacrulequery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/rbacrulequery.conf -------------------------------------------------------------------------------- /tests/rbacrulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/rbacrulequery.py -------------------------------------------------------------------------------- /tests/rolequery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/rolequery.conf -------------------------------------------------------------------------------- /tests/rolequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/rolequery.py -------------------------------------------------------------------------------- /tests/sensitivityquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/sensitivityquery.conf -------------------------------------------------------------------------------- /tests/sensitivityquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/sensitivityquery.py -------------------------------------------------------------------------------- /tests/terulequery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/terulequery.conf -------------------------------------------------------------------------------- /tests/terulequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/terulequery.py -------------------------------------------------------------------------------- /tests/terulequery2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/terulequery2.conf -------------------------------------------------------------------------------- /tests/typeattrquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/typeattrquery.conf -------------------------------------------------------------------------------- /tests/typeattrquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/typeattrquery.py -------------------------------------------------------------------------------- /tests/typequery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/typequery.conf -------------------------------------------------------------------------------- /tests/typequery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/typequery.py -------------------------------------------------------------------------------- /tests/userquery.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/userquery.conf -------------------------------------------------------------------------------- /tests/userquery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tests/userquery.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools/HEAD/tox.ini --------------------------------------------------------------------------------