├── .gitignore ├── LICENSE ├── README.md └── tickey ├── .dep.inc ├── Makefile ├── keyctl.c ├── keyctl.h ├── keyrings.c ├── keyrings.h ├── krb_conf.c ├── krb_conf.h ├── main.c ├── nbproject ├── Makefile-Debug.mk ├── Makefile-Release.mk ├── Makefile-impl.mk ├── Makefile-variables.mk ├── Package-Debug.bash ├── Package-Release.bash ├── configurations.xml ├── private │ ├── Makefile-variables.mk │ ├── c_standard_headers_indexer.c │ ├── configurations.xml │ ├── cpp_standard_headers_indexer.cpp │ ├── launcher.properties │ └── private.xml └── project.xml ├── proc_info ├── proc_info.c └── proc_info.h ├── string_utils.c ├── string_utils.h ├── tickets.c ├── tickets.h ├── traceter ├── p_trace.c ├── p_trace.h ├── traceter.c ├── traceter.h ├── utils.c └── utils.h ├── user_session.c ├── user_session.h ├── users.c └── users.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/README.md -------------------------------------------------------------------------------- /tickey/.dep.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/.dep.inc -------------------------------------------------------------------------------- /tickey/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/Makefile -------------------------------------------------------------------------------- /tickey/keyctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/keyctl.c -------------------------------------------------------------------------------- /tickey/keyctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/keyctl.h -------------------------------------------------------------------------------- /tickey/keyrings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/keyrings.c -------------------------------------------------------------------------------- /tickey/keyrings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/keyrings.h -------------------------------------------------------------------------------- /tickey/krb_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/krb_conf.c -------------------------------------------------------------------------------- /tickey/krb_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/krb_conf.h -------------------------------------------------------------------------------- /tickey/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/main.c -------------------------------------------------------------------------------- /tickey/nbproject/Makefile-Debug.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/Makefile-Debug.mk -------------------------------------------------------------------------------- /tickey/nbproject/Makefile-Release.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/Makefile-Release.mk -------------------------------------------------------------------------------- /tickey/nbproject/Makefile-impl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/Makefile-impl.mk -------------------------------------------------------------------------------- /tickey/nbproject/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/Makefile-variables.mk -------------------------------------------------------------------------------- /tickey/nbproject/Package-Debug.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/Package-Debug.bash -------------------------------------------------------------------------------- /tickey/nbproject/Package-Release.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/Package-Release.bash -------------------------------------------------------------------------------- /tickey/nbproject/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/configurations.xml -------------------------------------------------------------------------------- /tickey/nbproject/private/Makefile-variables.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/private/Makefile-variables.mk -------------------------------------------------------------------------------- /tickey/nbproject/private/c_standard_headers_indexer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/private/c_standard_headers_indexer.c -------------------------------------------------------------------------------- /tickey/nbproject/private/configurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/private/configurations.xml -------------------------------------------------------------------------------- /tickey/nbproject/private/cpp_standard_headers_indexer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/private/cpp_standard_headers_indexer.cpp -------------------------------------------------------------------------------- /tickey/nbproject/private/launcher.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/private/launcher.properties -------------------------------------------------------------------------------- /tickey/nbproject/private/private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/private/private.xml -------------------------------------------------------------------------------- /tickey/nbproject/project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/nbproject/project.xml -------------------------------------------------------------------------------- /tickey/proc_info/proc_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/proc_info/proc_info.c -------------------------------------------------------------------------------- /tickey/proc_info/proc_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/proc_info/proc_info.h -------------------------------------------------------------------------------- /tickey/string_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/string_utils.c -------------------------------------------------------------------------------- /tickey/string_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/string_utils.h -------------------------------------------------------------------------------- /tickey/tickets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/tickets.c -------------------------------------------------------------------------------- /tickey/tickets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/tickets.h -------------------------------------------------------------------------------- /tickey/traceter/p_trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/traceter/p_trace.c -------------------------------------------------------------------------------- /tickey/traceter/p_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/traceter/p_trace.h -------------------------------------------------------------------------------- /tickey/traceter/traceter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/traceter/traceter.c -------------------------------------------------------------------------------- /tickey/traceter/traceter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/traceter/traceter.h -------------------------------------------------------------------------------- /tickey/traceter/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/traceter/utils.c -------------------------------------------------------------------------------- /tickey/traceter/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/traceter/utils.h -------------------------------------------------------------------------------- /tickey/user_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/user_session.c -------------------------------------------------------------------------------- /tickey/user_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/user_session.h -------------------------------------------------------------------------------- /tickey/users.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/users.c -------------------------------------------------------------------------------- /tickey/users.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TarlogicSecurity/tickey/HEAD/tickey/users.h --------------------------------------------------------------------------------