├── AUTHORS ├── COPYING ├── COPYING.GPL ├── COPYING.LGPL ├── ChangeLog ├── KNOWN-BUGS ├── Makefile.am ├── NEWS ├── README ├── TODO ├── VERSION.in ├── apol ├── Makefile.am ├── analysis_tab.tcl ├── apol.gif ├── apol.png ├── apol.xcf ├── apol_help.txt ├── apol_tcl.cc ├── apol_tcl.i ├── bounds_tab.tcl ├── classes_perms_tab.tcl ├── common_widgets.tcl ├── cond_bools_tab.tcl ├── cond_rules_tab.tcl ├── constraints_tab.tcl ├── context_dialog.tcl ├── context_selector.tcl ├── default_objects_tab.tcl ├── directflow_module.tcl ├── domaintrans_help.txt ├── domaintrans_module.tcl ├── file_contexts_tab.tcl ├── file_relabel_help.txt ├── find.tcl ├── foo_module.tcl ├── fscontexts_tab.tcl ├── goto.tcl ├── head.tcl ├── infoflow_help.txt ├── initial_sids_tab.tcl ├── level_dialog.tcl ├── mls_tab.tcl ├── namespaces_tab.tcl ├── netcontexts_tab.tcl ├── open_policy_dialog.tcl ├── perm_maps │ ├── apol_perm_mapping_ver12 │ ├── apol_perm_mapping_ver15 │ ├── apol_perm_mapping_ver16 │ ├── apol_perm_mapping_ver17 │ ├── apol_perm_mapping_ver18 │ ├── apol_perm_mapping_ver19 │ ├── apol_perm_mapping_ver20 │ ├── apol_perm_mapping_ver21 │ ├── apol_perm_mapping_ver22 │ ├── apol_perm_mapping_ver23 │ └── apol_perm_mapping_ver24 ├── perms_map.tcl ├── polcap_tab.tcl ├── policyconf.tcl ├── progress_dialog.tcl ├── range_dialog.tcl ├── range_selector.tcl ├── range_trans.tcl ├── rbac_tab.tcl ├── relabel_module.tcl ├── roles_tab.tcl ├── terules_tab.tcl ├── top.tcl ├── transflow_module.tcl ├── types_relation_help.txt ├── types_relation_module.tcl ├── types_tab.tcl ├── users_tab.tcl └── util.tcl ├── configure.ac ├── debian ├── Makefile.am ├── changelog ├── compat ├── control ├── copyright ├── docs ├── libsetools-dev.install ├── libsetools-java.install ├── libsetools-jni.install ├── libsetools-jni.postinst ├── libsetools-jni.postrm ├── libsetools-python.install ├── libsetools-python.postinst ├── libsetools-tcl.install ├── libsetools.install ├── libsetools.postinst ├── libsetools.postrm ├── rules ├── setools-console.install ├── setools.install ├── setools.menu ├── setools.postinst ├── setools.postrm └── watch ├── libapol ├── Makefile.am ├── include │ ├── Makefile.am │ └── apol │ │ ├── Makefile.am │ │ ├── avrule-query.h │ │ ├── bool-query.h │ │ ├── bounds-query.h │ │ ├── bst.h │ │ ├── class-perm-query.h │ │ ├── condrule-query.h │ │ ├── constraint-query.h │ │ ├── context-query.h │ │ ├── default-object-query.h │ │ ├── domain-trans-analysis.h │ │ ├── fscon-query.h │ │ ├── ftrule-query.h │ │ ├── infoflow-analysis.h │ │ ├── isid-query.h │ │ ├── mls-query.h │ │ ├── mls_level.h │ │ ├── mls_range.h │ │ ├── netcon-query.h │ │ ├── perm-map.h │ │ ├── permissive-query.h │ │ ├── polcap-query.h │ │ ├── policy-path.h │ │ ├── policy-query.h │ │ ├── policy.h │ │ ├── range_trans-query.h │ │ ├── rbacrule-query.h │ │ ├── relabel-analysis.h │ │ ├── render.h │ │ ├── role-query.h │ │ ├── terule-query.h │ │ ├── type-query.h │ │ ├── types-relation-analysis.h │ │ ├── user-query.h │ │ ├── util.h │ │ └── vector.h ├── src │ ├── Makefile.am │ ├── avrule-query.c │ ├── bool-query.c │ ├── bounds-query.c │ ├── bst.c │ ├── class-perm-query.c │ ├── condrule-query.c │ ├── constraint-query.c │ ├── context-query.c │ ├── default-object-query.c │ ├── domain-trans-analysis-internal.h │ ├── domain-trans-analysis.c │ ├── fscon-query.c │ ├── ftrule-query.c │ ├── infoflow-analysis-internal.h │ ├── infoflow-analysis.c │ ├── isid-query.c │ ├── libapol.map │ ├── mls-query.c │ ├── mls_level.c │ ├── mls_range.c │ ├── netcon-query.c │ ├── perm-map.c │ ├── permissive-query.c │ ├── polcap-query.c │ ├── policy-path.c │ ├── policy-query-internal.h │ ├── policy-query.c │ ├── policy.c │ ├── queue.c │ ├── queue.h │ ├── range_trans-query.c │ ├── rbacrule-query.c │ ├── relabel-analysis.c │ ├── render.c │ ├── role-query.c │ ├── terule-query.c │ ├── type-query.c │ ├── types-relation-analysis.c │ ├── user-query.c │ ├── util.c │ ├── vector-internal.h │ └── vector.c ├── swig │ ├── Makefile.am │ ├── apol.i │ ├── java │ │ ├── MANIFEST.MF.in │ │ └── Makefile.am │ ├── python │ │ └── Makefile.am │ └── tcl │ │ └── Makefile.am └── tests │ ├── Makefile.am │ ├── avrule-tests.c │ ├── avrule-tests.h │ ├── constrain-tests.c │ ├── constrain-tests.h │ ├── dta-tests.c │ ├── dta-tests.h │ ├── infoflow-tests.c │ ├── infoflow-tests.h │ ├── libapol-tests.c │ ├── policy-21-tests.c │ ├── policy-21-tests.h │ ├── role-tests.c │ ├── role-tests.h │ ├── terule-tests.c │ ├── terule-tests.h │ ├── user-tests.c │ └── user-tests.h ├── libpoldiff ├── Makefile.am ├── include │ ├── Makefile.am │ └── poldiff │ │ ├── Makefile.am │ │ ├── attrib_diff.h │ │ ├── avrule_diff.h │ │ ├── bool_diff.h │ │ ├── cat_diff.h │ │ ├── class_diff.h │ │ ├── component_record.h │ │ ├── level_diff.h │ │ ├── poldiff.h │ │ ├── range_diff.h │ │ ├── range_trans_diff.h │ │ ├── rbac_diff.h │ │ ├── role_diff.h │ │ ├── terule_diff.h │ │ ├── type_diff.h │ │ ├── type_map.h │ │ ├── user_diff.h │ │ └── util.h ├── src │ ├── Makefile.am │ ├── attrib_diff.c │ ├── attrib_internal.h │ ├── avrule_diff.c │ ├── avrule_internal.h │ ├── bool_diff.c │ ├── bool_internal.h │ ├── cat_diff.c │ ├── cat_internal.h │ ├── class_diff.c │ ├── class_internal.h │ ├── level_diff.c │ ├── level_internal.h │ ├── libpoldiff.map │ ├── poldiff.c │ ├── poldiff_internal.h │ ├── range_diff.c │ ├── range_internal.h │ ├── range_trans_diff.c │ ├── range_trans_internal.h │ ├── rbac_diff.c │ ├── rbac_internal.h │ ├── role_diff.c │ ├── role_internal.h │ ├── terule_diff.c │ ├── terule_internal.h │ ├── type_diff.c │ ├── type_internal.h │ ├── type_map.c │ ├── type_map_internal.h │ ├── user_diff.c │ ├── user_internal.h │ ├── util.c │ └── writing-diffs-HOWTO ├── swig │ ├── Makefile.am │ ├── java │ │ ├── MANIFEST.MF.in │ │ └── Makefile.am │ ├── poldiff.i │ ├── python │ │ └── Makefile.am │ └── tcl │ │ └── Makefile.am └── tests │ ├── Makefile.am │ ├── components-tests.c │ ├── components-tests.h │ ├── libpoldiff-tests.c │ ├── libpoldiff-tests.h │ ├── mls-tests.c │ ├── mls-tests.h │ ├── nomls-tests.c │ ├── nomls-tests.h │ ├── policy-defs.h │ ├── rules-tests.c │ └── rules-tests.h ├── libqpol ├── Makefile.am ├── include │ ├── Makefile.am │ └── qpol │ │ ├── Makefile.am │ │ ├── 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 │ │ ├── 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 │ │ └── util.h ├── src │ ├── Makefile.am │ ├── avrule_query.c │ ├── bool_query.c │ ├── bounds_query.c │ ├── class_perm_query.c │ ├── cond_query.c │ ├── constraint_query.c │ ├── context_query.c │ ├── default_object_query.c │ ├── expand.c │ ├── expand.h │ ├── fs_use_query.c │ ├── ftrule_query.c │ ├── genfscon_query.c │ ├── isid_query.c │ ├── iterator.c │ ├── iterator_internal.h │ ├── libqpol.map │ ├── 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 │ ├── syn_rule_internal.h │ ├── syn_rule_query.c │ ├── terule_query.c │ ├── type_query.c │ ├── user_query.c │ └── util.c ├── swig │ ├── Makefile.am │ ├── java │ │ ├── MANIFEST.MF.in │ │ └── Makefile.am │ ├── python │ │ ├── Makefile.am │ │ └── __init__.py │ ├── qpol.i │ └── tcl │ │ └── Makefile.am └── tests │ ├── Makefile.am │ ├── capabilities-tests.c │ ├── capabilities-tests.h │ ├── iterators-tests.c │ ├── iterators-tests.h │ ├── libqpol-tests.c │ ├── policy-features-tests.c │ └── policy-features-tests.h ├── libseaudit ├── Makefile.am ├── include │ ├── Makefile.am │ └── seaudit │ │ ├── Makefile.am │ │ ├── avc_message.h │ │ ├── bool_message.h │ │ ├── filter.h │ │ ├── load_message.h │ │ ├── log.h │ │ ├── message.h │ │ ├── model.h │ │ ├── parse.h │ │ ├── report.h │ │ ├── sort.h │ │ └── util.h ├── src │ ├── Makefile.am │ ├── avc_message.c │ ├── bool_message.c │ ├── filter-internal.c │ ├── filter-internal.h │ ├── filter.c │ ├── libseaudit.map │ ├── load_message.c │ ├── log.c │ ├── message.c │ ├── model.c │ ├── parse.c │ ├── report.c │ ├── seaudit_internal.h │ ├── sort.c │ └── util.c ├── swig │ ├── Makefile.am │ ├── java │ │ ├── MANIFEST.MF.in │ │ └── Makefile.am │ ├── python │ │ └── Makefile.am │ ├── seaudit.i │ └── tcl │ │ └── Makefile.am └── tests │ ├── Makefile.am │ ├── filters.c │ ├── filters.h │ ├── libseaudit-tests.c │ ├── parse_file.c │ └── parse_file.h ├── libsefs ├── Makefile.am ├── include │ ├── Makefile.am │ └── sefs │ │ ├── Makefile.am │ │ ├── db.hh │ │ ├── entry.hh │ │ ├── fcfile.hh │ │ ├── fclist.hh │ │ ├── filesystem.hh │ │ ├── query.hh │ │ └── util.h ├── src │ ├── Makefile.am │ ├── db.cc │ ├── entry.cc │ ├── fcfile.cc │ ├── fclist.cc │ ├── filesystem.cc │ ├── libsefs.map │ ├── new_ftw.c │ ├── new_ftw.h │ ├── query.cc │ ├── sefs_internal.hh │ └── util.c ├── swig │ ├── Makefile.am │ ├── java │ │ ├── MANIFEST.MF.in │ │ └── Makefile.am │ ├── python │ │ └── Makefile.am │ ├── sefs.i │ └── tcl │ │ └── Makefile.am └── tests │ ├── Makefile.am │ ├── attic │ ├── fuse_non_mls.c │ └── launch-libsefs-tests.sh │ ├── fcfile-tests.cc │ ├── fcfile-tests.hh │ ├── file_contexts.broken │ ├── file_contexts.confed │ ├── file_contexts.union │ └── libsefs-tests.cc ├── m4 ├── ac_check_classpath.m4 ├── ac_java_options.m4 ├── ac_pkg_swig.m4 ├── ac_prog_jar.m4 ├── ac_prog_java.m4 ├── ac_prog_java_works.m4 ├── ac_prog_javac.m4 ├── ac_prog_javac_works.m4 ├── ac_python_devel.m4 ├── c.m4 ├── swig_python.m4 └── tcl.m4 ├── man ├── Makefile.am ├── apol.1 ├── findcon.1 ├── indexcon.1 ├── replcon.1 ├── seaudit-report.8.in ├── seaudit.8 ├── sechecker.1 ├── sediff.1 ├── sediffx.1 ├── seinfo.1 └── sesearch.1 ├── packages ├── BWidget-1.8.0.tar.bz2 ├── Doxyfile ├── Makefile.am ├── combobox.tcl ├── libapol.pc.in ├── libpoldiff.pc.in ├── libqpol.pc.in ├── libseaudit.pc.in ├── libsefs.pc.in ├── mainframe.tcl ├── notebook.tcl └── rpm │ ├── Makefile.am │ ├── apol.desktop.in │ ├── fc9-compile.patch │ ├── seaudit.console.in │ ├── seaudit.desktop.in │ ├── seaudit.pam │ ├── sediffx.desktop.in │ └── setools.spec ├── python ├── Makefile.am └── setools │ ├── Makefile.am │ ├── __init__.py │ ├── seinfo.c │ ├── sesearch.c │ └── setup.py ├── seaudit ├── Makefile.am ├── dot_seaudit.in ├── filter_view.c ├── filter_view.h ├── message_view.c ├── message_view.h ├── modify_view.c ├── modify_view.h ├── open_policy_window.c ├── open_policy_window.h ├── policy_components_view.c ├── policy_components_view.h ├── policy_view.c ├── policy_view.h ├── preferences.c ├── preferences.h ├── preferences_view.c ├── preferences_view.h ├── progress.c ├── progress.h ├── report_window.c ├── report_window.h ├── seaudit-report-group.conf ├── seaudit-report-service.conf ├── seaudit-report-service.in ├── seaudit-report.c ├── seaudit-report.conf ├── seaudit-report.css ├── seaudit-small.png ├── seaudit.c ├── seaudit.glade ├── seaudit.gladep ├── seaudit.h ├── seaudit.png ├── seaudit.xcf ├── seaudit_help.txt ├── toplevel.c ├── toplevel.h ├── utilgui.c └── utilgui.h ├── sechecker ├── Makefile.am ├── modules │ ├── attribs_wo_rules.c │ ├── attribs_wo_rules.h │ ├── attribs_wo_types.c │ ├── attribs_wo_types.h │ ├── domain_and_file.c │ ├── domain_and_file.h │ ├── domains_wo_roles.c │ ├── domains_wo_roles.h │ ├── find_assoc_types.c │ ├── find_assoc_types.h │ ├── find_domains.c │ ├── find_domains.h │ ├── find_file_types.c │ ├── find_file_types.h │ ├── find_net_domains.c │ ├── find_net_domains.h │ ├── find_netif_types.c │ ├── find_netif_types.h │ ├── find_node_types.c │ ├── find_node_types.h │ ├── find_port_types.c │ ├── find_port_types.h │ ├── imp_range_trans.c │ ├── imp_range_trans.h │ ├── inc_dom_trans.c │ ├── inc_dom_trans.h │ ├── inc_mount.c │ ├── inc_mount.h │ ├── inc_net_access.c │ ├── inc_net_access.h │ ├── roles_wo_allow.c │ ├── roles_wo_allow.h │ ├── roles_wo_types.c │ ├── roles_wo_types.h │ ├── roles_wo_users.c │ ├── roles_wo_users.h │ ├── spurious_audit.c │ ├── spurious_audit.h │ ├── template │ │ ├── profiles.readme │ │ ├── template.howto │ │ ├── xx.c │ │ └── xx.h │ ├── types_wo_allow.c │ ├── types_wo_allow.h │ ├── unreachable_doms.c │ ├── unreachable_doms.h │ ├── users_wo_roles.c │ └── users_wo_roles.h ├── profiles │ ├── all-checks-no-mls.sechecker │ ├── all-checks.sechecker │ ├── analysis-checks.sechecker │ ├── devel-checks.sechecker │ └── sechecker.dtd ├── register_list.c ├── register_list.h ├── sechecker.c ├── sechecker.h ├── sechecker_cli.c ├── sechecker_help.txt ├── sechk_parse.c └── sechk_parse.h ├── secmds ├── Makefile.am ├── findcon.cc ├── indexcon.cc ├── replcon.cc ├── seinfo.c └── sesearch.c └── sediff ├── Makefile.am ├── find_dialog.c ├── find_dialog.h ├── open_policies_dialog.c ├── open_policies_dialog.h ├── policy_view.c ├── policy_view.h ├── progress.c ├── progress.h ├── remap_types_dialog.c ├── remap_types_dialog.h ├── result_item.c ├── result_item.h ├── result_item_render.c ├── result_item_render.h ├── results.c ├── results.h ├── sediff.c ├── sediff_help.txt ├── sediffx-small.png ├── sediffx-small.xcf ├── sediffx.c ├── sediffx.glade ├── sediffx.h ├── sediffx.png ├── sediffx.xcf ├── select_diff_dialog.c ├── select_diff_dialog.h ├── toplevel.c ├── toplevel.h ├── utilgui.c └── utilgui.h /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/COPYING.GPL -------------------------------------------------------------------------------- /COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/COPYING.LGPL -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/ChangeLog -------------------------------------------------------------------------------- /KNOWN-BUGS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/KNOWN-BUGS -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/README -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/TODO -------------------------------------------------------------------------------- /VERSION.in: -------------------------------------------------------------------------------- 1 | @VERSION@ 2 | -------------------------------------------------------------------------------- /apol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/Makefile.am -------------------------------------------------------------------------------- /apol/analysis_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/analysis_tab.tcl -------------------------------------------------------------------------------- /apol/apol.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/apol.gif -------------------------------------------------------------------------------- /apol/apol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/apol.png -------------------------------------------------------------------------------- /apol/apol.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/apol.xcf -------------------------------------------------------------------------------- /apol/apol_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/apol_help.txt -------------------------------------------------------------------------------- /apol/apol_tcl.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/apol_tcl.cc -------------------------------------------------------------------------------- /apol/apol_tcl.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/apol_tcl.i -------------------------------------------------------------------------------- /apol/bounds_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/bounds_tab.tcl -------------------------------------------------------------------------------- /apol/classes_perms_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/classes_perms_tab.tcl -------------------------------------------------------------------------------- /apol/common_widgets.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/common_widgets.tcl -------------------------------------------------------------------------------- /apol/cond_bools_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/cond_bools_tab.tcl -------------------------------------------------------------------------------- /apol/cond_rules_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/cond_rules_tab.tcl -------------------------------------------------------------------------------- /apol/constraints_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/constraints_tab.tcl -------------------------------------------------------------------------------- /apol/context_dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/context_dialog.tcl -------------------------------------------------------------------------------- /apol/context_selector.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/context_selector.tcl -------------------------------------------------------------------------------- /apol/default_objects_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/default_objects_tab.tcl -------------------------------------------------------------------------------- /apol/directflow_module.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/directflow_module.tcl -------------------------------------------------------------------------------- /apol/domaintrans_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/domaintrans_help.txt -------------------------------------------------------------------------------- /apol/domaintrans_module.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/domaintrans_module.tcl -------------------------------------------------------------------------------- /apol/file_contexts_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/file_contexts_tab.tcl -------------------------------------------------------------------------------- /apol/file_relabel_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/file_relabel_help.txt -------------------------------------------------------------------------------- /apol/find.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/find.tcl -------------------------------------------------------------------------------- /apol/foo_module.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/foo_module.tcl -------------------------------------------------------------------------------- /apol/fscontexts_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/fscontexts_tab.tcl -------------------------------------------------------------------------------- /apol/goto.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/goto.tcl -------------------------------------------------------------------------------- /apol/head.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/head.tcl -------------------------------------------------------------------------------- /apol/infoflow_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/infoflow_help.txt -------------------------------------------------------------------------------- /apol/initial_sids_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/initial_sids_tab.tcl -------------------------------------------------------------------------------- /apol/level_dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/level_dialog.tcl -------------------------------------------------------------------------------- /apol/mls_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/mls_tab.tcl -------------------------------------------------------------------------------- /apol/namespaces_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/namespaces_tab.tcl -------------------------------------------------------------------------------- /apol/netcontexts_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/netcontexts_tab.tcl -------------------------------------------------------------------------------- /apol/open_policy_dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/open_policy_dialog.tcl -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver12 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver15 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver16 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver17: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver17 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver18 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver19: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver19 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver20: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver20 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver21: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver21 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver22: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver22 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver23: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver23 -------------------------------------------------------------------------------- /apol/perm_maps/apol_perm_mapping_ver24: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perm_maps/apol_perm_mapping_ver24 -------------------------------------------------------------------------------- /apol/perms_map.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/perms_map.tcl -------------------------------------------------------------------------------- /apol/polcap_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/polcap_tab.tcl -------------------------------------------------------------------------------- /apol/policyconf.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/policyconf.tcl -------------------------------------------------------------------------------- /apol/progress_dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/progress_dialog.tcl -------------------------------------------------------------------------------- /apol/range_dialog.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/range_dialog.tcl -------------------------------------------------------------------------------- /apol/range_selector.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/range_selector.tcl -------------------------------------------------------------------------------- /apol/range_trans.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/range_trans.tcl -------------------------------------------------------------------------------- /apol/rbac_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/rbac_tab.tcl -------------------------------------------------------------------------------- /apol/relabel_module.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/relabel_module.tcl -------------------------------------------------------------------------------- /apol/roles_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/roles_tab.tcl -------------------------------------------------------------------------------- /apol/terules_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/terules_tab.tcl -------------------------------------------------------------------------------- /apol/top.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/top.tcl -------------------------------------------------------------------------------- /apol/transflow_module.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/transflow_module.tcl -------------------------------------------------------------------------------- /apol/types_relation_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/types_relation_help.txt -------------------------------------------------------------------------------- /apol/types_relation_module.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/types_relation_module.tcl -------------------------------------------------------------------------------- /apol/types_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/types_tab.tcl -------------------------------------------------------------------------------- /apol/users_tab.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/users_tab.tcl -------------------------------------------------------------------------------- /apol/util.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/apol/util.tcl -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/configure.ac -------------------------------------------------------------------------------- /debian/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/Makefile.am -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/docs: -------------------------------------------------------------------------------- 1 | NEWS 2 | README 3 | TODO 4 | AUTHORS 5 | KNOWN-BUGS 6 | -------------------------------------------------------------------------------- /debian/libsetools-dev.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-dev.install -------------------------------------------------------------------------------- /debian/libsetools-java.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-java.install -------------------------------------------------------------------------------- /debian/libsetools-jni.install: -------------------------------------------------------------------------------- 1 | /usr/lib/jni/* 2 | -------------------------------------------------------------------------------- /debian/libsetools-jni.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-jni.postinst -------------------------------------------------------------------------------- /debian/libsetools-jni.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-jni.postrm -------------------------------------------------------------------------------- /debian/libsetools-python.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-python.install -------------------------------------------------------------------------------- /debian/libsetools-python.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-python.postinst -------------------------------------------------------------------------------- /debian/libsetools-tcl.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools-tcl.install -------------------------------------------------------------------------------- /debian/libsetools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools.install -------------------------------------------------------------------------------- /debian/libsetools.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools.postinst -------------------------------------------------------------------------------- /debian/libsetools.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/libsetools.postrm -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/setools-console.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/setools-console.install -------------------------------------------------------------------------------- /debian/setools.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/setools.install -------------------------------------------------------------------------------- /debian/setools.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/setools.menu -------------------------------------------------------------------------------- /debian/setools.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/setools.postinst -------------------------------------------------------------------------------- /debian/setools.postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/setools.postrm -------------------------------------------------------------------------------- /debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/debian/watch -------------------------------------------------------------------------------- /libapol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/Makefile.am -------------------------------------------------------------------------------- /libapol/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = apol 2 | -------------------------------------------------------------------------------- /libapol/include/apol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/Makefile.am -------------------------------------------------------------------------------- /libapol/include/apol/avrule-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/avrule-query.h -------------------------------------------------------------------------------- /libapol/include/apol/bool-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/bool-query.h -------------------------------------------------------------------------------- /libapol/include/apol/bounds-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/bounds-query.h -------------------------------------------------------------------------------- /libapol/include/apol/bst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/bst.h -------------------------------------------------------------------------------- /libapol/include/apol/class-perm-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/class-perm-query.h -------------------------------------------------------------------------------- /libapol/include/apol/condrule-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/condrule-query.h -------------------------------------------------------------------------------- /libapol/include/apol/constraint-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/constraint-query.h -------------------------------------------------------------------------------- /libapol/include/apol/context-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/context-query.h -------------------------------------------------------------------------------- /libapol/include/apol/default-object-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/default-object-query.h -------------------------------------------------------------------------------- /libapol/include/apol/domain-trans-analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/domain-trans-analysis.h -------------------------------------------------------------------------------- /libapol/include/apol/fscon-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/fscon-query.h -------------------------------------------------------------------------------- /libapol/include/apol/ftrule-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/ftrule-query.h -------------------------------------------------------------------------------- /libapol/include/apol/infoflow-analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/infoflow-analysis.h -------------------------------------------------------------------------------- /libapol/include/apol/isid-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/isid-query.h -------------------------------------------------------------------------------- /libapol/include/apol/mls-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/mls-query.h -------------------------------------------------------------------------------- /libapol/include/apol/mls_level.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/mls_level.h -------------------------------------------------------------------------------- /libapol/include/apol/mls_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/mls_range.h -------------------------------------------------------------------------------- /libapol/include/apol/netcon-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/netcon-query.h -------------------------------------------------------------------------------- /libapol/include/apol/perm-map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/perm-map.h -------------------------------------------------------------------------------- /libapol/include/apol/permissive-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/permissive-query.h -------------------------------------------------------------------------------- /libapol/include/apol/polcap-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/polcap-query.h -------------------------------------------------------------------------------- /libapol/include/apol/policy-path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/policy-path.h -------------------------------------------------------------------------------- /libapol/include/apol/policy-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/policy-query.h -------------------------------------------------------------------------------- /libapol/include/apol/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/policy.h -------------------------------------------------------------------------------- /libapol/include/apol/range_trans-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/range_trans-query.h -------------------------------------------------------------------------------- /libapol/include/apol/rbacrule-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/rbacrule-query.h -------------------------------------------------------------------------------- /libapol/include/apol/relabel-analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/relabel-analysis.h -------------------------------------------------------------------------------- /libapol/include/apol/render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/render.h -------------------------------------------------------------------------------- /libapol/include/apol/role-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/role-query.h -------------------------------------------------------------------------------- /libapol/include/apol/terule-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/terule-query.h -------------------------------------------------------------------------------- /libapol/include/apol/type-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/type-query.h -------------------------------------------------------------------------------- /libapol/include/apol/types-relation-analysis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/types-relation-analysis.h -------------------------------------------------------------------------------- /libapol/include/apol/user-query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/user-query.h -------------------------------------------------------------------------------- /libapol/include/apol/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/util.h -------------------------------------------------------------------------------- /libapol/include/apol/vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/include/apol/vector.h -------------------------------------------------------------------------------- /libapol/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/Makefile.am -------------------------------------------------------------------------------- /libapol/src/avrule-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/avrule-query.c -------------------------------------------------------------------------------- /libapol/src/bool-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/bool-query.c -------------------------------------------------------------------------------- /libapol/src/bounds-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/bounds-query.c -------------------------------------------------------------------------------- /libapol/src/bst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/bst.c -------------------------------------------------------------------------------- /libapol/src/class-perm-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/class-perm-query.c -------------------------------------------------------------------------------- /libapol/src/condrule-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/condrule-query.c -------------------------------------------------------------------------------- /libapol/src/constraint-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/constraint-query.c -------------------------------------------------------------------------------- /libapol/src/context-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/context-query.c -------------------------------------------------------------------------------- /libapol/src/default-object-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/default-object-query.c -------------------------------------------------------------------------------- /libapol/src/domain-trans-analysis-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/domain-trans-analysis-internal.h -------------------------------------------------------------------------------- /libapol/src/domain-trans-analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/domain-trans-analysis.c -------------------------------------------------------------------------------- /libapol/src/fscon-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/fscon-query.c -------------------------------------------------------------------------------- /libapol/src/ftrule-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/ftrule-query.c -------------------------------------------------------------------------------- /libapol/src/infoflow-analysis-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/infoflow-analysis-internal.h -------------------------------------------------------------------------------- /libapol/src/infoflow-analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/infoflow-analysis.c -------------------------------------------------------------------------------- /libapol/src/isid-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/isid-query.c -------------------------------------------------------------------------------- /libapol/src/libapol.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/libapol.map -------------------------------------------------------------------------------- /libapol/src/mls-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/mls-query.c -------------------------------------------------------------------------------- /libapol/src/mls_level.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/mls_level.c -------------------------------------------------------------------------------- /libapol/src/mls_range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/mls_range.c -------------------------------------------------------------------------------- /libapol/src/netcon-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/netcon-query.c -------------------------------------------------------------------------------- /libapol/src/perm-map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/perm-map.c -------------------------------------------------------------------------------- /libapol/src/permissive-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/permissive-query.c -------------------------------------------------------------------------------- /libapol/src/polcap-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/polcap-query.c -------------------------------------------------------------------------------- /libapol/src/policy-path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/policy-path.c -------------------------------------------------------------------------------- /libapol/src/policy-query-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/policy-query-internal.h -------------------------------------------------------------------------------- /libapol/src/policy-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/policy-query.c -------------------------------------------------------------------------------- /libapol/src/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/policy.c -------------------------------------------------------------------------------- /libapol/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/queue.c -------------------------------------------------------------------------------- /libapol/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/queue.h -------------------------------------------------------------------------------- /libapol/src/range_trans-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/range_trans-query.c -------------------------------------------------------------------------------- /libapol/src/rbacrule-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/rbacrule-query.c -------------------------------------------------------------------------------- /libapol/src/relabel-analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/relabel-analysis.c -------------------------------------------------------------------------------- /libapol/src/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/render.c -------------------------------------------------------------------------------- /libapol/src/role-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/role-query.c -------------------------------------------------------------------------------- /libapol/src/terule-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/terule-query.c -------------------------------------------------------------------------------- /libapol/src/type-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/type-query.c -------------------------------------------------------------------------------- /libapol/src/types-relation-analysis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/types-relation-analysis.c -------------------------------------------------------------------------------- /libapol/src/user-query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/user-query.c -------------------------------------------------------------------------------- /libapol/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/util.c -------------------------------------------------------------------------------- /libapol/src/vector-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/vector-internal.h -------------------------------------------------------------------------------- /libapol/src/vector.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/src/vector.c -------------------------------------------------------------------------------- /libapol/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/swig/Makefile.am -------------------------------------------------------------------------------- /libapol/swig/apol.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/swig/apol.i -------------------------------------------------------------------------------- /libapol/swig/java/MANIFEST.MF.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/swig/java/MANIFEST.MF.in -------------------------------------------------------------------------------- /libapol/swig/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/swig/java/Makefile.am -------------------------------------------------------------------------------- /libapol/swig/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/swig/python/Makefile.am -------------------------------------------------------------------------------- /libapol/swig/tcl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/swig/tcl/Makefile.am -------------------------------------------------------------------------------- /libapol/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/Makefile.am -------------------------------------------------------------------------------- /libapol/tests/avrule-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/avrule-tests.c -------------------------------------------------------------------------------- /libapol/tests/avrule-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/avrule-tests.h -------------------------------------------------------------------------------- /libapol/tests/constrain-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/constrain-tests.c -------------------------------------------------------------------------------- /libapol/tests/constrain-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/constrain-tests.h -------------------------------------------------------------------------------- /libapol/tests/dta-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/dta-tests.c -------------------------------------------------------------------------------- /libapol/tests/dta-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/dta-tests.h -------------------------------------------------------------------------------- /libapol/tests/infoflow-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/infoflow-tests.c -------------------------------------------------------------------------------- /libapol/tests/infoflow-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/infoflow-tests.h -------------------------------------------------------------------------------- /libapol/tests/libapol-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/libapol-tests.c -------------------------------------------------------------------------------- /libapol/tests/policy-21-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/policy-21-tests.c -------------------------------------------------------------------------------- /libapol/tests/policy-21-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/policy-21-tests.h -------------------------------------------------------------------------------- /libapol/tests/role-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/role-tests.c -------------------------------------------------------------------------------- /libapol/tests/role-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/role-tests.h -------------------------------------------------------------------------------- /libapol/tests/terule-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/terule-tests.c -------------------------------------------------------------------------------- /libapol/tests/terule-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/terule-tests.h -------------------------------------------------------------------------------- /libapol/tests/user-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/user-tests.c -------------------------------------------------------------------------------- /libapol/tests/user-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libapol/tests/user-tests.h -------------------------------------------------------------------------------- /libpoldiff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = poldiff 2 | -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/attrib_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/attrib_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/avrule_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/avrule_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/bool_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/bool_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/cat_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/cat_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/class_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/class_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/component_record.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/component_record.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/level_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/level_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/poldiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/poldiff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/range_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/range_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/range_trans_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/range_trans_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/rbac_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/rbac_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/role_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/role_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/terule_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/terule_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/type_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/type_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/type_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/type_map.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/user_diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/user_diff.h -------------------------------------------------------------------------------- /libpoldiff/include/poldiff/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/include/poldiff/util.h -------------------------------------------------------------------------------- /libpoldiff/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/src/attrib_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/attrib_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/attrib_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/attrib_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/avrule_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/avrule_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/avrule_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/avrule_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/bool_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/bool_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/bool_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/bool_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/cat_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/cat_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/cat_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/cat_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/class_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/class_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/class_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/class_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/level_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/level_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/level_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/level_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/libpoldiff.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/libpoldiff.map -------------------------------------------------------------------------------- /libpoldiff/src/poldiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/poldiff.c -------------------------------------------------------------------------------- /libpoldiff/src/poldiff_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/poldiff_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/range_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/range_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/range_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/range_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/range_trans_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/range_trans_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/range_trans_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/range_trans_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/rbac_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/rbac_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/rbac_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/rbac_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/role_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/role_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/role_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/role_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/terule_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/terule_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/terule_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/terule_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/type_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/type_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/type_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/type_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/type_map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/type_map.c -------------------------------------------------------------------------------- /libpoldiff/src/type_map_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/type_map_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/user_diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/user_diff.c -------------------------------------------------------------------------------- /libpoldiff/src/user_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/user_internal.h -------------------------------------------------------------------------------- /libpoldiff/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/util.c -------------------------------------------------------------------------------- /libpoldiff/src/writing-diffs-HOWTO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/src/writing-diffs-HOWTO -------------------------------------------------------------------------------- /libpoldiff/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/swig/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/swig/java/MANIFEST.MF.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/swig/java/MANIFEST.MF.in -------------------------------------------------------------------------------- /libpoldiff/swig/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/swig/java/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/swig/poldiff.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/swig/poldiff.i -------------------------------------------------------------------------------- /libpoldiff/swig/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/swig/python/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/swig/tcl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/swig/tcl/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/Makefile.am -------------------------------------------------------------------------------- /libpoldiff/tests/components-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/components-tests.c -------------------------------------------------------------------------------- /libpoldiff/tests/components-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/components-tests.h -------------------------------------------------------------------------------- /libpoldiff/tests/libpoldiff-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/libpoldiff-tests.c -------------------------------------------------------------------------------- /libpoldiff/tests/libpoldiff-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/libpoldiff-tests.h -------------------------------------------------------------------------------- /libpoldiff/tests/mls-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/mls-tests.c -------------------------------------------------------------------------------- /libpoldiff/tests/mls-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/mls-tests.h -------------------------------------------------------------------------------- /libpoldiff/tests/nomls-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/nomls-tests.c -------------------------------------------------------------------------------- /libpoldiff/tests/nomls-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/nomls-tests.h -------------------------------------------------------------------------------- /libpoldiff/tests/policy-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/policy-defs.h -------------------------------------------------------------------------------- /libpoldiff/tests/rules-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/rules-tests.c -------------------------------------------------------------------------------- /libpoldiff/tests/rules-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libpoldiff/tests/rules-tests.h -------------------------------------------------------------------------------- /libqpol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/Makefile.am -------------------------------------------------------------------------------- /libqpol/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = qpol 2 | -------------------------------------------------------------------------------- /libqpol/include/qpol/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/Makefile.am -------------------------------------------------------------------------------- /libqpol/include/qpol/avrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/avrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/bool_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/bool_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/bounds_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/bounds_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/class_perm_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/class_perm_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/cond_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/cond_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/constraint_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/constraint_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/context_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/context_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/default_object_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/default_object_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/fs_use_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/fs_use_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/ftrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/ftrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/genfscon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/genfscon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/isid_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/isid_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/iterator.h -------------------------------------------------------------------------------- /libqpol/include/qpol/mls_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/mls_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/mlsrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/mlsrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/module.h -------------------------------------------------------------------------------- /libqpol/include/qpol/netifcon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/netifcon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/nodecon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/nodecon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/permissive_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/permissive_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/polcap_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/polcap_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/policy.h -------------------------------------------------------------------------------- /libqpol/include/qpol/policy_extend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/policy_extend.h -------------------------------------------------------------------------------- /libqpol/include/qpol/portcon_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/portcon_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/rbacrule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/rbacrule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/role_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/role_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/syn_rule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/syn_rule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/terule_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/terule_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/type_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/type_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/user_query.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/user_query.h -------------------------------------------------------------------------------- /libqpol/include/qpol/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/include/qpol/util.h -------------------------------------------------------------------------------- /libqpol/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/Makefile.am -------------------------------------------------------------------------------- /libqpol/src/avrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/avrule_query.c -------------------------------------------------------------------------------- /libqpol/src/bool_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/bool_query.c -------------------------------------------------------------------------------- /libqpol/src/bounds_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/bounds_query.c -------------------------------------------------------------------------------- /libqpol/src/class_perm_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/class_perm_query.c -------------------------------------------------------------------------------- /libqpol/src/cond_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/cond_query.c -------------------------------------------------------------------------------- /libqpol/src/constraint_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/constraint_query.c -------------------------------------------------------------------------------- /libqpol/src/context_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/context_query.c -------------------------------------------------------------------------------- /libqpol/src/default_object_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/default_object_query.c -------------------------------------------------------------------------------- /libqpol/src/expand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/expand.c -------------------------------------------------------------------------------- /libqpol/src/expand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/expand.h -------------------------------------------------------------------------------- /libqpol/src/fs_use_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/fs_use_query.c -------------------------------------------------------------------------------- /libqpol/src/ftrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/ftrule_query.c -------------------------------------------------------------------------------- /libqpol/src/genfscon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/genfscon_query.c -------------------------------------------------------------------------------- /libqpol/src/isid_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/isid_query.c -------------------------------------------------------------------------------- /libqpol/src/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/iterator.c -------------------------------------------------------------------------------- /libqpol/src/iterator_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/iterator_internal.h -------------------------------------------------------------------------------- /libqpol/src/libqpol.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/libqpol.map -------------------------------------------------------------------------------- /libqpol/src/mls_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/mls_query.c -------------------------------------------------------------------------------- /libqpol/src/mlsrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/mlsrule_query.c -------------------------------------------------------------------------------- /libqpol/src/module.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/module.c -------------------------------------------------------------------------------- /libqpol/src/module_compiler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/module_compiler.c -------------------------------------------------------------------------------- /libqpol/src/module_compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/module_compiler.h -------------------------------------------------------------------------------- /libqpol/src/netifcon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/netifcon_query.c -------------------------------------------------------------------------------- /libqpol/src/nodecon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/nodecon_query.c -------------------------------------------------------------------------------- /libqpol/src/permissive_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/permissive_query.c -------------------------------------------------------------------------------- /libqpol/src/polcap_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/polcap_query.c -------------------------------------------------------------------------------- /libqpol/src/policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/policy.c -------------------------------------------------------------------------------- /libqpol/src/policy_define.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/policy_define.c -------------------------------------------------------------------------------- /libqpol/src/policy_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/policy_define.h -------------------------------------------------------------------------------- /libqpol/src/policy_extend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/policy_extend.c -------------------------------------------------------------------------------- /libqpol/src/policy_parse.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/policy_parse.y -------------------------------------------------------------------------------- /libqpol/src/policy_scan.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/policy_scan.l -------------------------------------------------------------------------------- /libqpol/src/portcon_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/portcon_query.c -------------------------------------------------------------------------------- /libqpol/src/qpol_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/qpol_internal.h -------------------------------------------------------------------------------- /libqpol/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/queue.c -------------------------------------------------------------------------------- /libqpol/src/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/queue.h -------------------------------------------------------------------------------- /libqpol/src/rbacrule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/rbacrule_query.c -------------------------------------------------------------------------------- /libqpol/src/role_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/role_query.c -------------------------------------------------------------------------------- /libqpol/src/syn_rule_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/syn_rule_internal.h -------------------------------------------------------------------------------- /libqpol/src/syn_rule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/syn_rule_query.c -------------------------------------------------------------------------------- /libqpol/src/terule_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/terule_query.c -------------------------------------------------------------------------------- /libqpol/src/type_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/type_query.c -------------------------------------------------------------------------------- /libqpol/src/user_query.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/user_query.c -------------------------------------------------------------------------------- /libqpol/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/src/util.c -------------------------------------------------------------------------------- /libqpol/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/swig/Makefile.am -------------------------------------------------------------------------------- /libqpol/swig/java/MANIFEST.MF.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/swig/java/MANIFEST.MF.in -------------------------------------------------------------------------------- /libqpol/swig/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/swig/java/Makefile.am -------------------------------------------------------------------------------- /libqpol/swig/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/swig/python/Makefile.am -------------------------------------------------------------------------------- /libqpol/swig/python/__init__.py: -------------------------------------------------------------------------------- 1 | # This file intentionally left blank. 2 | -------------------------------------------------------------------------------- /libqpol/swig/qpol.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/swig/qpol.i -------------------------------------------------------------------------------- /libqpol/swig/tcl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/swig/tcl/Makefile.am -------------------------------------------------------------------------------- /libqpol/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/Makefile.am -------------------------------------------------------------------------------- /libqpol/tests/capabilities-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/capabilities-tests.c -------------------------------------------------------------------------------- /libqpol/tests/capabilities-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/capabilities-tests.h -------------------------------------------------------------------------------- /libqpol/tests/iterators-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/iterators-tests.c -------------------------------------------------------------------------------- /libqpol/tests/iterators-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/iterators-tests.h -------------------------------------------------------------------------------- /libqpol/tests/libqpol-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/libqpol-tests.c -------------------------------------------------------------------------------- /libqpol/tests/policy-features-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/policy-features-tests.c -------------------------------------------------------------------------------- /libqpol/tests/policy-features-tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libqpol/tests/policy-features-tests.h -------------------------------------------------------------------------------- /libseaudit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/Makefile.am -------------------------------------------------------------------------------- /libseaudit/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = seaudit -------------------------------------------------------------------------------- /libseaudit/include/seaudit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/Makefile.am -------------------------------------------------------------------------------- /libseaudit/include/seaudit/avc_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/avc_message.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/bool_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/bool_message.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/filter.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/load_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/load_message.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/log.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/message.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/model.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/parse.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/report.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/report.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/sort.h -------------------------------------------------------------------------------- /libseaudit/include/seaudit/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/include/seaudit/util.h -------------------------------------------------------------------------------- /libseaudit/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/Makefile.am -------------------------------------------------------------------------------- /libseaudit/src/avc_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/avc_message.c -------------------------------------------------------------------------------- /libseaudit/src/bool_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/bool_message.c -------------------------------------------------------------------------------- /libseaudit/src/filter-internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/filter-internal.c -------------------------------------------------------------------------------- /libseaudit/src/filter-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/filter-internal.h -------------------------------------------------------------------------------- /libseaudit/src/filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/filter.c -------------------------------------------------------------------------------- /libseaudit/src/libseaudit.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/libseaudit.map -------------------------------------------------------------------------------- /libseaudit/src/load_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/load_message.c -------------------------------------------------------------------------------- /libseaudit/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/log.c -------------------------------------------------------------------------------- /libseaudit/src/message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/message.c -------------------------------------------------------------------------------- /libseaudit/src/model.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/model.c -------------------------------------------------------------------------------- /libseaudit/src/parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/parse.c -------------------------------------------------------------------------------- /libseaudit/src/report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/report.c -------------------------------------------------------------------------------- /libseaudit/src/seaudit_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/seaudit_internal.h -------------------------------------------------------------------------------- /libseaudit/src/sort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/sort.c -------------------------------------------------------------------------------- /libseaudit/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/src/util.c -------------------------------------------------------------------------------- /libseaudit/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/swig/Makefile.am -------------------------------------------------------------------------------- /libseaudit/swig/java/MANIFEST.MF.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/swig/java/MANIFEST.MF.in -------------------------------------------------------------------------------- /libseaudit/swig/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/swig/java/Makefile.am -------------------------------------------------------------------------------- /libseaudit/swig/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/swig/python/Makefile.am -------------------------------------------------------------------------------- /libseaudit/swig/seaudit.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/swig/seaudit.i -------------------------------------------------------------------------------- /libseaudit/swig/tcl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/swig/tcl/Makefile.am -------------------------------------------------------------------------------- /libseaudit/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/tests/Makefile.am -------------------------------------------------------------------------------- /libseaudit/tests/filters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/tests/filters.c -------------------------------------------------------------------------------- /libseaudit/tests/filters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/tests/filters.h -------------------------------------------------------------------------------- /libseaudit/tests/libseaudit-tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/tests/libseaudit-tests.c -------------------------------------------------------------------------------- /libseaudit/tests/parse_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/tests/parse_file.c -------------------------------------------------------------------------------- /libseaudit/tests/parse_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libseaudit/tests/parse_file.h -------------------------------------------------------------------------------- /libsefs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/Makefile.am -------------------------------------------------------------------------------- /libsefs/include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = sefs 2 | -------------------------------------------------------------------------------- /libsefs/include/sefs/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/Makefile.am -------------------------------------------------------------------------------- /libsefs/include/sefs/db.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/db.hh -------------------------------------------------------------------------------- /libsefs/include/sefs/entry.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/entry.hh -------------------------------------------------------------------------------- /libsefs/include/sefs/fcfile.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/fcfile.hh -------------------------------------------------------------------------------- /libsefs/include/sefs/fclist.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/fclist.hh -------------------------------------------------------------------------------- /libsefs/include/sefs/filesystem.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/filesystem.hh -------------------------------------------------------------------------------- /libsefs/include/sefs/query.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/query.hh -------------------------------------------------------------------------------- /libsefs/include/sefs/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/include/sefs/util.h -------------------------------------------------------------------------------- /libsefs/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/Makefile.am -------------------------------------------------------------------------------- /libsefs/src/db.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/db.cc -------------------------------------------------------------------------------- /libsefs/src/entry.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/entry.cc -------------------------------------------------------------------------------- /libsefs/src/fcfile.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/fcfile.cc -------------------------------------------------------------------------------- /libsefs/src/fclist.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/fclist.cc -------------------------------------------------------------------------------- /libsefs/src/filesystem.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/filesystem.cc -------------------------------------------------------------------------------- /libsefs/src/libsefs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/libsefs.map -------------------------------------------------------------------------------- /libsefs/src/new_ftw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/new_ftw.c -------------------------------------------------------------------------------- /libsefs/src/new_ftw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/new_ftw.h -------------------------------------------------------------------------------- /libsefs/src/query.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/query.cc -------------------------------------------------------------------------------- /libsefs/src/sefs_internal.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/sefs_internal.hh -------------------------------------------------------------------------------- /libsefs/src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/src/util.c -------------------------------------------------------------------------------- /libsefs/swig/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/swig/Makefile.am -------------------------------------------------------------------------------- /libsefs/swig/java/MANIFEST.MF.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/swig/java/MANIFEST.MF.in -------------------------------------------------------------------------------- /libsefs/swig/java/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/swig/java/Makefile.am -------------------------------------------------------------------------------- /libsefs/swig/python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/swig/python/Makefile.am -------------------------------------------------------------------------------- /libsefs/swig/sefs.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/swig/sefs.i -------------------------------------------------------------------------------- /libsefs/swig/tcl/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/swig/tcl/Makefile.am -------------------------------------------------------------------------------- /libsefs/tests/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/Makefile.am -------------------------------------------------------------------------------- /libsefs/tests/attic/fuse_non_mls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/attic/fuse_non_mls.c -------------------------------------------------------------------------------- /libsefs/tests/attic/launch-libsefs-tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/attic/launch-libsefs-tests.sh -------------------------------------------------------------------------------- /libsefs/tests/fcfile-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/fcfile-tests.cc -------------------------------------------------------------------------------- /libsefs/tests/fcfile-tests.hh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/fcfile-tests.hh -------------------------------------------------------------------------------- /libsefs/tests/file_contexts.broken: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/file_contexts.broken -------------------------------------------------------------------------------- /libsefs/tests/file_contexts.confed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/file_contexts.confed -------------------------------------------------------------------------------- /libsefs/tests/file_contexts.union: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/file_contexts.union -------------------------------------------------------------------------------- /libsefs/tests/libsefs-tests.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/libsefs/tests/libsefs-tests.cc -------------------------------------------------------------------------------- /m4/ac_check_classpath.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_check_classpath.m4 -------------------------------------------------------------------------------- /m4/ac_java_options.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_java_options.m4 -------------------------------------------------------------------------------- /m4/ac_pkg_swig.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_pkg_swig.m4 -------------------------------------------------------------------------------- /m4/ac_prog_jar.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_prog_jar.m4 -------------------------------------------------------------------------------- /m4/ac_prog_java.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_prog_java.m4 -------------------------------------------------------------------------------- /m4/ac_prog_java_works.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_prog_java_works.m4 -------------------------------------------------------------------------------- /m4/ac_prog_javac.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_prog_javac.m4 -------------------------------------------------------------------------------- /m4/ac_prog_javac_works.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_prog_javac_works.m4 -------------------------------------------------------------------------------- /m4/ac_python_devel.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/ac_python_devel.m4 -------------------------------------------------------------------------------- /m4/c.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/c.m4 -------------------------------------------------------------------------------- /m4/swig_python.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/swig_python.m4 -------------------------------------------------------------------------------- /m4/tcl.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/m4/tcl.m4 -------------------------------------------------------------------------------- /man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/Makefile.am -------------------------------------------------------------------------------- /man/apol.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/apol.1 -------------------------------------------------------------------------------- /man/findcon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/findcon.1 -------------------------------------------------------------------------------- /man/indexcon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/indexcon.1 -------------------------------------------------------------------------------- /man/replcon.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/replcon.1 -------------------------------------------------------------------------------- /man/seaudit-report.8.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/seaudit-report.8.in -------------------------------------------------------------------------------- /man/seaudit.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/seaudit.8 -------------------------------------------------------------------------------- /man/sechecker.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/sechecker.1 -------------------------------------------------------------------------------- /man/sediff.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/sediff.1 -------------------------------------------------------------------------------- /man/sediffx.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/sediffx.1 -------------------------------------------------------------------------------- /man/seinfo.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/seinfo.1 -------------------------------------------------------------------------------- /man/sesearch.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/man/sesearch.1 -------------------------------------------------------------------------------- /packages/BWidget-1.8.0.tar.bz2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/BWidget-1.8.0.tar.bz2 -------------------------------------------------------------------------------- /packages/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/Doxyfile -------------------------------------------------------------------------------- /packages/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/Makefile.am -------------------------------------------------------------------------------- /packages/combobox.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/combobox.tcl -------------------------------------------------------------------------------- /packages/libapol.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/libapol.pc.in -------------------------------------------------------------------------------- /packages/libpoldiff.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/libpoldiff.pc.in -------------------------------------------------------------------------------- /packages/libqpol.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/libqpol.pc.in -------------------------------------------------------------------------------- /packages/libseaudit.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/libseaudit.pc.in -------------------------------------------------------------------------------- /packages/libsefs.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/libsefs.pc.in -------------------------------------------------------------------------------- /packages/mainframe.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/mainframe.tcl -------------------------------------------------------------------------------- /packages/notebook.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/notebook.tcl -------------------------------------------------------------------------------- /packages/rpm/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/Makefile.am -------------------------------------------------------------------------------- /packages/rpm/apol.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/apol.desktop.in -------------------------------------------------------------------------------- /packages/rpm/fc9-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/fc9-compile.patch -------------------------------------------------------------------------------- /packages/rpm/seaudit.console.in: -------------------------------------------------------------------------------- 1 | USER=root 2 | PROGRAM=@sbindir@/seaudit 3 | SESSION=true 4 | -------------------------------------------------------------------------------- /packages/rpm/seaudit.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/seaudit.desktop.in -------------------------------------------------------------------------------- /packages/rpm/seaudit.pam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/seaudit.pam -------------------------------------------------------------------------------- /packages/rpm/sediffx.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/sediffx.desktop.in -------------------------------------------------------------------------------- /packages/rpm/setools.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/packages/rpm/setools.spec -------------------------------------------------------------------------------- /python/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/python/Makefile.am -------------------------------------------------------------------------------- /python/setools/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/python/setools/Makefile.am -------------------------------------------------------------------------------- /python/setools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/python/setools/__init__.py -------------------------------------------------------------------------------- /python/setools/seinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/python/setools/seinfo.c -------------------------------------------------------------------------------- /python/setools/sesearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/python/setools/sesearch.c -------------------------------------------------------------------------------- /python/setools/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/python/setools/setup.py -------------------------------------------------------------------------------- /seaudit/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/Makefile.am -------------------------------------------------------------------------------- /seaudit/dot_seaudit.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/dot_seaudit.in -------------------------------------------------------------------------------- /seaudit/filter_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/filter_view.c -------------------------------------------------------------------------------- /seaudit/filter_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/filter_view.h -------------------------------------------------------------------------------- /seaudit/message_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/message_view.c -------------------------------------------------------------------------------- /seaudit/message_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/message_view.h -------------------------------------------------------------------------------- /seaudit/modify_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/modify_view.c -------------------------------------------------------------------------------- /seaudit/modify_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/modify_view.h -------------------------------------------------------------------------------- /seaudit/open_policy_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/open_policy_window.c -------------------------------------------------------------------------------- /seaudit/open_policy_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/open_policy_window.h -------------------------------------------------------------------------------- /seaudit/policy_components_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/policy_components_view.c -------------------------------------------------------------------------------- /seaudit/policy_components_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/policy_components_view.h -------------------------------------------------------------------------------- /seaudit/policy_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/policy_view.c -------------------------------------------------------------------------------- /seaudit/policy_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/policy_view.h -------------------------------------------------------------------------------- /seaudit/preferences.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/preferences.c -------------------------------------------------------------------------------- /seaudit/preferences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/preferences.h -------------------------------------------------------------------------------- /seaudit/preferences_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/preferences_view.c -------------------------------------------------------------------------------- /seaudit/preferences_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/preferences_view.h -------------------------------------------------------------------------------- /seaudit/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/progress.c -------------------------------------------------------------------------------- /seaudit/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/progress.h -------------------------------------------------------------------------------- /seaudit/report_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/report_window.c -------------------------------------------------------------------------------- /seaudit/report_window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/report_window.h -------------------------------------------------------------------------------- /seaudit/seaudit-report-group.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-report-group.conf -------------------------------------------------------------------------------- /seaudit/seaudit-report-service.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-report-service.conf -------------------------------------------------------------------------------- /seaudit/seaudit-report-service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-report-service.in -------------------------------------------------------------------------------- /seaudit/seaudit-report.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-report.c -------------------------------------------------------------------------------- /seaudit/seaudit-report.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-report.conf -------------------------------------------------------------------------------- /seaudit/seaudit-report.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-report.css -------------------------------------------------------------------------------- /seaudit/seaudit-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit-small.png -------------------------------------------------------------------------------- /seaudit/seaudit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit.c -------------------------------------------------------------------------------- /seaudit/seaudit.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit.glade -------------------------------------------------------------------------------- /seaudit/seaudit.gladep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit.gladep -------------------------------------------------------------------------------- /seaudit/seaudit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit.h -------------------------------------------------------------------------------- /seaudit/seaudit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit.png -------------------------------------------------------------------------------- /seaudit/seaudit.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit.xcf -------------------------------------------------------------------------------- /seaudit/seaudit_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/seaudit_help.txt -------------------------------------------------------------------------------- /seaudit/toplevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/toplevel.c -------------------------------------------------------------------------------- /seaudit/toplevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/toplevel.h -------------------------------------------------------------------------------- /seaudit/utilgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/utilgui.c -------------------------------------------------------------------------------- /seaudit/utilgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/seaudit/utilgui.h -------------------------------------------------------------------------------- /sechecker/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/Makefile.am -------------------------------------------------------------------------------- /sechecker/modules/attribs_wo_rules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/attribs_wo_rules.c -------------------------------------------------------------------------------- /sechecker/modules/attribs_wo_rules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/attribs_wo_rules.h -------------------------------------------------------------------------------- /sechecker/modules/attribs_wo_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/attribs_wo_types.c -------------------------------------------------------------------------------- /sechecker/modules/attribs_wo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/attribs_wo_types.h -------------------------------------------------------------------------------- /sechecker/modules/domain_and_file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/domain_and_file.c -------------------------------------------------------------------------------- /sechecker/modules/domain_and_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/domain_and_file.h -------------------------------------------------------------------------------- /sechecker/modules/domains_wo_roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/domains_wo_roles.c -------------------------------------------------------------------------------- /sechecker/modules/domains_wo_roles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/domains_wo_roles.h -------------------------------------------------------------------------------- /sechecker/modules/find_assoc_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_assoc_types.c -------------------------------------------------------------------------------- /sechecker/modules/find_assoc_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_assoc_types.h -------------------------------------------------------------------------------- /sechecker/modules/find_domains.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_domains.c -------------------------------------------------------------------------------- /sechecker/modules/find_domains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_domains.h -------------------------------------------------------------------------------- /sechecker/modules/find_file_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_file_types.c -------------------------------------------------------------------------------- /sechecker/modules/find_file_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_file_types.h -------------------------------------------------------------------------------- /sechecker/modules/find_net_domains.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_net_domains.c -------------------------------------------------------------------------------- /sechecker/modules/find_net_domains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_net_domains.h -------------------------------------------------------------------------------- /sechecker/modules/find_netif_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_netif_types.c -------------------------------------------------------------------------------- /sechecker/modules/find_netif_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_netif_types.h -------------------------------------------------------------------------------- /sechecker/modules/find_node_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_node_types.c -------------------------------------------------------------------------------- /sechecker/modules/find_node_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_node_types.h -------------------------------------------------------------------------------- /sechecker/modules/find_port_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_port_types.c -------------------------------------------------------------------------------- /sechecker/modules/find_port_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/find_port_types.h -------------------------------------------------------------------------------- /sechecker/modules/imp_range_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/imp_range_trans.c -------------------------------------------------------------------------------- /sechecker/modules/imp_range_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/imp_range_trans.h -------------------------------------------------------------------------------- /sechecker/modules/inc_dom_trans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/inc_dom_trans.c -------------------------------------------------------------------------------- /sechecker/modules/inc_dom_trans.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/inc_dom_trans.h -------------------------------------------------------------------------------- /sechecker/modules/inc_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/inc_mount.c -------------------------------------------------------------------------------- /sechecker/modules/inc_mount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/inc_mount.h -------------------------------------------------------------------------------- /sechecker/modules/inc_net_access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/inc_net_access.c -------------------------------------------------------------------------------- /sechecker/modules/inc_net_access.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/inc_net_access.h -------------------------------------------------------------------------------- /sechecker/modules/roles_wo_allow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/roles_wo_allow.c -------------------------------------------------------------------------------- /sechecker/modules/roles_wo_allow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/roles_wo_allow.h -------------------------------------------------------------------------------- /sechecker/modules/roles_wo_types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/roles_wo_types.c -------------------------------------------------------------------------------- /sechecker/modules/roles_wo_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/roles_wo_types.h -------------------------------------------------------------------------------- /sechecker/modules/roles_wo_users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/roles_wo_users.c -------------------------------------------------------------------------------- /sechecker/modules/roles_wo_users.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/roles_wo_users.h -------------------------------------------------------------------------------- /sechecker/modules/spurious_audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/spurious_audit.c -------------------------------------------------------------------------------- /sechecker/modules/spurious_audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/spurious_audit.h -------------------------------------------------------------------------------- /sechecker/modules/template/profiles.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/template/profiles.readme -------------------------------------------------------------------------------- /sechecker/modules/template/template.howto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/template/template.howto -------------------------------------------------------------------------------- /sechecker/modules/template/xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/template/xx.c -------------------------------------------------------------------------------- /sechecker/modules/template/xx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/template/xx.h -------------------------------------------------------------------------------- /sechecker/modules/types_wo_allow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/types_wo_allow.c -------------------------------------------------------------------------------- /sechecker/modules/types_wo_allow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/types_wo_allow.h -------------------------------------------------------------------------------- /sechecker/modules/unreachable_doms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/unreachable_doms.c -------------------------------------------------------------------------------- /sechecker/modules/unreachable_doms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/unreachable_doms.h -------------------------------------------------------------------------------- /sechecker/modules/users_wo_roles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/users_wo_roles.c -------------------------------------------------------------------------------- /sechecker/modules/users_wo_roles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/modules/users_wo_roles.h -------------------------------------------------------------------------------- /sechecker/profiles/all-checks-no-mls.sechecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/profiles/all-checks-no-mls.sechecker -------------------------------------------------------------------------------- /sechecker/profiles/all-checks.sechecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/profiles/all-checks.sechecker -------------------------------------------------------------------------------- /sechecker/profiles/analysis-checks.sechecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/profiles/analysis-checks.sechecker -------------------------------------------------------------------------------- /sechecker/profiles/devel-checks.sechecker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/profiles/devel-checks.sechecker -------------------------------------------------------------------------------- /sechecker/profiles/sechecker.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/profiles/sechecker.dtd -------------------------------------------------------------------------------- /sechecker/register_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/register_list.c -------------------------------------------------------------------------------- /sechecker/register_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/register_list.h -------------------------------------------------------------------------------- /sechecker/sechecker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/sechecker.c -------------------------------------------------------------------------------- /sechecker/sechecker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/sechecker.h -------------------------------------------------------------------------------- /sechecker/sechecker_cli.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/sechecker_cli.c -------------------------------------------------------------------------------- /sechecker/sechecker_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/sechecker_help.txt -------------------------------------------------------------------------------- /sechecker/sechk_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/sechk_parse.c -------------------------------------------------------------------------------- /sechecker/sechk_parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sechecker/sechk_parse.h -------------------------------------------------------------------------------- /secmds/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/secmds/Makefile.am -------------------------------------------------------------------------------- /secmds/findcon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/secmds/findcon.cc -------------------------------------------------------------------------------- /secmds/indexcon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/secmds/indexcon.cc -------------------------------------------------------------------------------- /secmds/replcon.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/secmds/replcon.cc -------------------------------------------------------------------------------- /secmds/seinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/secmds/seinfo.c -------------------------------------------------------------------------------- /secmds/sesearch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/secmds/sesearch.c -------------------------------------------------------------------------------- /sediff/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/Makefile.am -------------------------------------------------------------------------------- /sediff/find_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/find_dialog.c -------------------------------------------------------------------------------- /sediff/find_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/find_dialog.h -------------------------------------------------------------------------------- /sediff/open_policies_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/open_policies_dialog.c -------------------------------------------------------------------------------- /sediff/open_policies_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/open_policies_dialog.h -------------------------------------------------------------------------------- /sediff/policy_view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/policy_view.c -------------------------------------------------------------------------------- /sediff/policy_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/policy_view.h -------------------------------------------------------------------------------- /sediff/progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/progress.c -------------------------------------------------------------------------------- /sediff/progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/progress.h -------------------------------------------------------------------------------- /sediff/remap_types_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/remap_types_dialog.c -------------------------------------------------------------------------------- /sediff/remap_types_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/remap_types_dialog.h -------------------------------------------------------------------------------- /sediff/result_item.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/result_item.c -------------------------------------------------------------------------------- /sediff/result_item.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/result_item.h -------------------------------------------------------------------------------- /sediff/result_item_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/result_item_render.c -------------------------------------------------------------------------------- /sediff/result_item_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/result_item_render.h -------------------------------------------------------------------------------- /sediff/results.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/results.c -------------------------------------------------------------------------------- /sediff/results.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/results.h -------------------------------------------------------------------------------- /sediff/sediff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediff.c -------------------------------------------------------------------------------- /sediff/sediff_help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediff_help.txt -------------------------------------------------------------------------------- /sediff/sediffx-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx-small.png -------------------------------------------------------------------------------- /sediff/sediffx-small.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx-small.xcf -------------------------------------------------------------------------------- /sediff/sediffx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx.c -------------------------------------------------------------------------------- /sediff/sediffx.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx.glade -------------------------------------------------------------------------------- /sediff/sediffx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx.h -------------------------------------------------------------------------------- /sediff/sediffx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx.png -------------------------------------------------------------------------------- /sediff/sediffx.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/sediffx.xcf -------------------------------------------------------------------------------- /sediff/select_diff_dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/select_diff_dialog.c -------------------------------------------------------------------------------- /sediff/select_diff_dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/select_diff_dialog.h -------------------------------------------------------------------------------- /sediff/toplevel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/toplevel.c -------------------------------------------------------------------------------- /sediff/toplevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/toplevel.h -------------------------------------------------------------------------------- /sediff/utilgui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/utilgui.c -------------------------------------------------------------------------------- /sediff/utilgui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OwlCyberDefense/setools3/HEAD/sediff/utilgui.h --------------------------------------------------------------------------------