├── README.md ├── checks ├── credentials ├── devices_options ├── devices_permission ├── enabled │ ├── all │ │ ├── credentials │ │ ├── devices_options │ │ ├── devices_permission │ │ ├── gpg_agent │ │ ├── group_writable │ │ ├── history_readable │ │ ├── homedirs_executable │ │ ├── homedirs_writable │ │ ├── jar │ │ ├── key_material │ │ ├── ldap_authentication │ │ ├── nis_authentication │ │ ├── passwd_hashes │ │ ├── postgresql_configuration │ │ ├── postgresql_connection │ │ ├── postgresql_trust │ │ ├── privileged_arguments │ │ ├── privileged_banned │ │ ├── privileged_change_privileges │ │ ├── privileged_chroot │ │ ├── privileged_dependency │ │ ├── privileged_environment_variables │ │ ├── privileged_nx │ │ ├── privileged_path │ │ ├── privileged_pie │ │ ├── privileged_random │ │ ├── privileged_relro │ │ ├── privileged_rpath │ │ ├── privileged_ssp │ │ ├── privileged_tmp │ │ ├── privileged_writable │ │ ├── setgid │ │ ├── setuid │ │ ├── shadow_hashes │ │ ├── ssh_agent │ │ ├── ssh_key │ │ ├── sudo │ │ ├── system_aslr │ │ ├── system_configuration │ │ ├── system_libraries │ │ ├── system_mmap │ │ ├── system_nx │ │ ├── system_selinux │ │ └── world_writable │ ├── attack_surface │ │ ├── credentials │ │ ├── devices_permission │ │ ├── history_readable │ │ ├── homedirs_executable │ │ ├── homedirs_writable │ │ ├── key_material │ │ ├── passwd_hashes │ │ ├── postgresql_trust │ │ ├── privileged_arguments │ │ ├── privileged_change_privileges │ │ ├── privileged_environment_variables │ │ ├── privileged_path │ │ ├── privileged_rpath │ │ ├── privileged_writable │ │ ├── setgid │ │ ├── setuid │ │ ├── shadow_hashes │ │ ├── ssh_key │ │ ├── sudo │ │ ├── system_configuration │ │ └── world_writable │ └── sdl │ │ ├── privileged_banned │ │ ├── privileged_change_privileges │ │ ├── privileged_chroot │ │ ├── privileged_dependency │ │ ├── privileged_nx │ │ ├── privileged_path │ │ ├── privileged_pie │ │ ├── privileged_random │ │ ├── privileged_relro │ │ ├── privileged_rpath │ │ ├── privileged_ssp │ │ ├── privileged_tmp │ │ └── privileged_writable ├── gpg_agent ├── group_writable ├── history_readable ├── homedirs_executable ├── homedirs_writable ├── jar ├── key_material ├── ldap_authentication ├── nis_authentication ├── passwd_hashes ├── postgresql_configuration ├── postgresql_connection ├── postgresql_trust ├── privileged_arguments ├── privileged_banned ├── privileged_change_privileges ├── privileged_chroot ├── privileged_dependency ├── privileged_environment_variables ├── privileged_nx ├── privileged_path ├── privileged_pie ├── privileged_random ├── privileged_relro ├── privileged_rpath ├── privileged_ssp ├── privileged_tmp ├── privileged_writable ├── setgid ├── setuid ├── shadow_hashes ├── ssh_agent ├── ssh_key ├── sudo ├── system_aslr ├── system_configuration ├── system_libraries ├── system_mmap ├── system_nx ├── system_selinux └── world_writable ├── doc ├── AUTHORS ├── COPYING.GPL ├── COPYING.UNIX-PRIVESC-CHECK ├── ChangeLog ├── HACKING ├── TODO └── TODO-v1 ├── lib ├── binary ├── cron ├── dependencies ├── device ├── file ├── group ├── inetd ├── init ├── inittab ├── kernel ├── ldap ├── linker ├── nis ├── parse ├── passwd ├── permission ├── postgresql ├── privileged ├── process ├── shadow ├── ssh_agent ├── ssh_key ├── stdio ├── sudo ├── user └── validate ├── tools ├── generate_banned.sh └── generate_docs.sh └── upc.sh /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/README.md -------------------------------------------------------------------------------- /checks/credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/credentials -------------------------------------------------------------------------------- /checks/devices_options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/devices_options -------------------------------------------------------------------------------- /checks/devices_permission: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/devices_permission -------------------------------------------------------------------------------- /checks/enabled/all/credentials: -------------------------------------------------------------------------------- 1 | ../../credentials -------------------------------------------------------------------------------- /checks/enabled/all/devices_options: -------------------------------------------------------------------------------- 1 | ../../devices_options -------------------------------------------------------------------------------- /checks/enabled/all/devices_permission: -------------------------------------------------------------------------------- 1 | ../../devices_permission -------------------------------------------------------------------------------- /checks/enabled/all/gpg_agent: -------------------------------------------------------------------------------- 1 | ../../gpg_agent -------------------------------------------------------------------------------- /checks/enabled/all/group_writable: -------------------------------------------------------------------------------- 1 | ../../group_writable -------------------------------------------------------------------------------- /checks/enabled/all/history_readable: -------------------------------------------------------------------------------- 1 | ../../history_readable -------------------------------------------------------------------------------- /checks/enabled/all/homedirs_executable: -------------------------------------------------------------------------------- 1 | ../../homedirs_executable -------------------------------------------------------------------------------- /checks/enabled/all/homedirs_writable: -------------------------------------------------------------------------------- 1 | ../../homedirs_writable -------------------------------------------------------------------------------- /checks/enabled/all/jar: -------------------------------------------------------------------------------- 1 | ../../jar -------------------------------------------------------------------------------- /checks/enabled/all/key_material: -------------------------------------------------------------------------------- 1 | ../../key_material -------------------------------------------------------------------------------- /checks/enabled/all/ldap_authentication: -------------------------------------------------------------------------------- 1 | ../../ldap_authentication -------------------------------------------------------------------------------- /checks/enabled/all/nis_authentication: -------------------------------------------------------------------------------- 1 | ../../nis_authentication -------------------------------------------------------------------------------- /checks/enabled/all/passwd_hashes: -------------------------------------------------------------------------------- 1 | ../../passwd_hashes -------------------------------------------------------------------------------- /checks/enabled/all/postgresql_configuration: -------------------------------------------------------------------------------- 1 | ../../postgresql_configuration -------------------------------------------------------------------------------- /checks/enabled/all/postgresql_connection: -------------------------------------------------------------------------------- 1 | ../../postgresql_connection -------------------------------------------------------------------------------- /checks/enabled/all/postgresql_trust: -------------------------------------------------------------------------------- 1 | ../../postgresql_trust -------------------------------------------------------------------------------- /checks/enabled/all/privileged_arguments: -------------------------------------------------------------------------------- 1 | ../../privileged_arguments -------------------------------------------------------------------------------- /checks/enabled/all/privileged_banned: -------------------------------------------------------------------------------- 1 | ../../privileged_banned -------------------------------------------------------------------------------- /checks/enabled/all/privileged_change_privileges: -------------------------------------------------------------------------------- 1 | ../../privileged_change_privileges -------------------------------------------------------------------------------- /checks/enabled/all/privileged_chroot: -------------------------------------------------------------------------------- 1 | ../../privileged_chroot -------------------------------------------------------------------------------- /checks/enabled/all/privileged_dependency: -------------------------------------------------------------------------------- 1 | ../../privileged_dependency -------------------------------------------------------------------------------- /checks/enabled/all/privileged_environment_variables: -------------------------------------------------------------------------------- 1 | ../../privileged_environment_variables -------------------------------------------------------------------------------- /checks/enabled/all/privileged_nx: -------------------------------------------------------------------------------- 1 | ../../privileged_nx -------------------------------------------------------------------------------- /checks/enabled/all/privileged_path: -------------------------------------------------------------------------------- 1 | ../../privileged_path -------------------------------------------------------------------------------- /checks/enabled/all/privileged_pie: -------------------------------------------------------------------------------- 1 | ../../privileged_pie -------------------------------------------------------------------------------- /checks/enabled/all/privileged_random: -------------------------------------------------------------------------------- 1 | ../../privileged_random -------------------------------------------------------------------------------- /checks/enabled/all/privileged_relro: -------------------------------------------------------------------------------- 1 | ../../privileged_relro -------------------------------------------------------------------------------- /checks/enabled/all/privileged_rpath: -------------------------------------------------------------------------------- 1 | ../../privileged_rpath -------------------------------------------------------------------------------- /checks/enabled/all/privileged_ssp: -------------------------------------------------------------------------------- 1 | ../../privileged_ssp -------------------------------------------------------------------------------- /checks/enabled/all/privileged_tmp: -------------------------------------------------------------------------------- 1 | ../../privileged_tmp -------------------------------------------------------------------------------- /checks/enabled/all/privileged_writable: -------------------------------------------------------------------------------- 1 | ../../privileged_writable -------------------------------------------------------------------------------- /checks/enabled/all/setgid: -------------------------------------------------------------------------------- 1 | ../../setgid -------------------------------------------------------------------------------- /checks/enabled/all/setuid: -------------------------------------------------------------------------------- 1 | ../../setuid -------------------------------------------------------------------------------- /checks/enabled/all/shadow_hashes: -------------------------------------------------------------------------------- 1 | ../../shadow_hashes -------------------------------------------------------------------------------- /checks/enabled/all/ssh_agent: -------------------------------------------------------------------------------- 1 | ../../ssh_agent -------------------------------------------------------------------------------- /checks/enabled/all/ssh_key: -------------------------------------------------------------------------------- 1 | ../../ssh_key -------------------------------------------------------------------------------- /checks/enabled/all/sudo: -------------------------------------------------------------------------------- 1 | ../../sudo -------------------------------------------------------------------------------- /checks/enabled/all/system_aslr: -------------------------------------------------------------------------------- 1 | ../../system_aslr -------------------------------------------------------------------------------- /checks/enabled/all/system_configuration: -------------------------------------------------------------------------------- 1 | ../../system_configuration -------------------------------------------------------------------------------- /checks/enabled/all/system_libraries: -------------------------------------------------------------------------------- 1 | ../../system_libraries -------------------------------------------------------------------------------- /checks/enabled/all/system_mmap: -------------------------------------------------------------------------------- 1 | ../../system_mmap -------------------------------------------------------------------------------- /checks/enabled/all/system_nx: -------------------------------------------------------------------------------- 1 | ../../system_nx -------------------------------------------------------------------------------- /checks/enabled/all/system_selinux: -------------------------------------------------------------------------------- 1 | ../../system_selinux -------------------------------------------------------------------------------- /checks/enabled/all/world_writable: -------------------------------------------------------------------------------- 1 | ../../world_writable -------------------------------------------------------------------------------- /checks/enabled/attack_surface/credentials: -------------------------------------------------------------------------------- 1 | ../../credentials -------------------------------------------------------------------------------- /checks/enabled/attack_surface/devices_permission: -------------------------------------------------------------------------------- 1 | ../../devices_permission -------------------------------------------------------------------------------- /checks/enabled/attack_surface/history_readable: -------------------------------------------------------------------------------- 1 | ../../history_readable -------------------------------------------------------------------------------- /checks/enabled/attack_surface/homedirs_executable: -------------------------------------------------------------------------------- 1 | ../../homedirs_executable -------------------------------------------------------------------------------- /checks/enabled/attack_surface/homedirs_writable: -------------------------------------------------------------------------------- 1 | ../../homedirs_writable -------------------------------------------------------------------------------- /checks/enabled/attack_surface/key_material: -------------------------------------------------------------------------------- 1 | ../../key_material -------------------------------------------------------------------------------- /checks/enabled/attack_surface/passwd_hashes: -------------------------------------------------------------------------------- 1 | ../../passwd_hashes -------------------------------------------------------------------------------- /checks/enabled/attack_surface/postgresql_trust: -------------------------------------------------------------------------------- 1 | ../../postgresql_trust -------------------------------------------------------------------------------- /checks/enabled/attack_surface/privileged_arguments: -------------------------------------------------------------------------------- 1 | ../../privileged_arguments -------------------------------------------------------------------------------- /checks/enabled/attack_surface/privileged_change_privileges: -------------------------------------------------------------------------------- 1 | ../../privileged_change_privileges -------------------------------------------------------------------------------- /checks/enabled/attack_surface/privileged_environment_variables: -------------------------------------------------------------------------------- 1 | ../../privileged_environment_variables -------------------------------------------------------------------------------- /checks/enabled/attack_surface/privileged_path: -------------------------------------------------------------------------------- 1 | ../../privileged_path -------------------------------------------------------------------------------- /checks/enabled/attack_surface/privileged_rpath: -------------------------------------------------------------------------------- 1 | ../../privileged_rpath -------------------------------------------------------------------------------- /checks/enabled/attack_surface/privileged_writable: -------------------------------------------------------------------------------- 1 | ../../privileged_writable -------------------------------------------------------------------------------- /checks/enabled/attack_surface/setgid: -------------------------------------------------------------------------------- 1 | ../../setgid -------------------------------------------------------------------------------- /checks/enabled/attack_surface/setuid: -------------------------------------------------------------------------------- 1 | ../../setuid -------------------------------------------------------------------------------- /checks/enabled/attack_surface/shadow_hashes: -------------------------------------------------------------------------------- 1 | ../../shadow_hashes -------------------------------------------------------------------------------- /checks/enabled/attack_surface/ssh_key: -------------------------------------------------------------------------------- 1 | ../../ssh_key -------------------------------------------------------------------------------- /checks/enabled/attack_surface/sudo: -------------------------------------------------------------------------------- 1 | ../../sudo -------------------------------------------------------------------------------- /checks/enabled/attack_surface/system_configuration: -------------------------------------------------------------------------------- 1 | ../../system_configuration -------------------------------------------------------------------------------- /checks/enabled/attack_surface/world_writable: -------------------------------------------------------------------------------- 1 | ../../world_writable -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_banned: -------------------------------------------------------------------------------- 1 | ../../privileged_banned -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_change_privileges: -------------------------------------------------------------------------------- 1 | ../../privileged_change_privileges -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_chroot: -------------------------------------------------------------------------------- 1 | ../../privileged_chroot -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_dependency: -------------------------------------------------------------------------------- 1 | ../../privileged_dependency -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_nx: -------------------------------------------------------------------------------- 1 | ../../privileged_nx -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_path: -------------------------------------------------------------------------------- 1 | ../../privileged_path -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_pie: -------------------------------------------------------------------------------- 1 | ../../privileged_pie -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_random: -------------------------------------------------------------------------------- 1 | ../../privileged_random -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_relro: -------------------------------------------------------------------------------- 1 | ../../privileged_relro -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_rpath: -------------------------------------------------------------------------------- 1 | ../../privileged_rpath -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_ssp: -------------------------------------------------------------------------------- 1 | ../../privileged_ssp -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_tmp: -------------------------------------------------------------------------------- 1 | ../../privileged_tmp -------------------------------------------------------------------------------- /checks/enabled/sdl/privileged_writable: -------------------------------------------------------------------------------- 1 | ../../privileged_writable -------------------------------------------------------------------------------- /checks/gpg_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/gpg_agent -------------------------------------------------------------------------------- /checks/group_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/group_writable -------------------------------------------------------------------------------- /checks/history_readable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/history_readable -------------------------------------------------------------------------------- /checks/homedirs_executable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/homedirs_executable -------------------------------------------------------------------------------- /checks/homedirs_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/homedirs_writable -------------------------------------------------------------------------------- /checks/jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/jar -------------------------------------------------------------------------------- /checks/key_material: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/key_material -------------------------------------------------------------------------------- /checks/ldap_authentication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/ldap_authentication -------------------------------------------------------------------------------- /checks/nis_authentication: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/nis_authentication -------------------------------------------------------------------------------- /checks/passwd_hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/passwd_hashes -------------------------------------------------------------------------------- /checks/postgresql_configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/postgresql_configuration -------------------------------------------------------------------------------- /checks/postgresql_connection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/postgresql_connection -------------------------------------------------------------------------------- /checks/postgresql_trust: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/postgresql_trust -------------------------------------------------------------------------------- /checks/privileged_arguments: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_arguments -------------------------------------------------------------------------------- /checks/privileged_banned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_banned -------------------------------------------------------------------------------- /checks/privileged_change_privileges: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_change_privileges -------------------------------------------------------------------------------- /checks/privileged_chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_chroot -------------------------------------------------------------------------------- /checks/privileged_dependency: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_dependency -------------------------------------------------------------------------------- /checks/privileged_environment_variables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_environment_variables -------------------------------------------------------------------------------- /checks/privileged_nx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_nx -------------------------------------------------------------------------------- /checks/privileged_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_path -------------------------------------------------------------------------------- /checks/privileged_pie: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_pie -------------------------------------------------------------------------------- /checks/privileged_random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_random -------------------------------------------------------------------------------- /checks/privileged_relro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_relro -------------------------------------------------------------------------------- /checks/privileged_rpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_rpath -------------------------------------------------------------------------------- /checks/privileged_ssp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_ssp -------------------------------------------------------------------------------- /checks/privileged_tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_tmp -------------------------------------------------------------------------------- /checks/privileged_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/privileged_writable -------------------------------------------------------------------------------- /checks/setgid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/setgid -------------------------------------------------------------------------------- /checks/setuid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/setuid -------------------------------------------------------------------------------- /checks/shadow_hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/shadow_hashes -------------------------------------------------------------------------------- /checks/ssh_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/ssh_agent -------------------------------------------------------------------------------- /checks/ssh_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/ssh_key -------------------------------------------------------------------------------- /checks/sudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/sudo -------------------------------------------------------------------------------- /checks/system_aslr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/system_aslr -------------------------------------------------------------------------------- /checks/system_configuration: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/system_configuration -------------------------------------------------------------------------------- /checks/system_libraries: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/system_libraries -------------------------------------------------------------------------------- /checks/system_mmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/system_mmap -------------------------------------------------------------------------------- /checks/system_nx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/system_nx -------------------------------------------------------------------------------- /checks/system_selinux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/system_selinux -------------------------------------------------------------------------------- /checks/world_writable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/checks/world_writable -------------------------------------------------------------------------------- /doc/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/AUTHORS -------------------------------------------------------------------------------- /doc/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/COPYING.GPL -------------------------------------------------------------------------------- /doc/COPYING.UNIX-PRIVESC-CHECK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/COPYING.UNIX-PRIVESC-CHECK -------------------------------------------------------------------------------- /doc/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/ChangeLog -------------------------------------------------------------------------------- /doc/HACKING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/HACKING -------------------------------------------------------------------------------- /doc/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/TODO -------------------------------------------------------------------------------- /doc/TODO-v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/doc/TODO-v1 -------------------------------------------------------------------------------- /lib/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/binary -------------------------------------------------------------------------------- /lib/cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/cron -------------------------------------------------------------------------------- /lib/dependencies: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/dependencies -------------------------------------------------------------------------------- /lib/device: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/device -------------------------------------------------------------------------------- /lib/file: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/file -------------------------------------------------------------------------------- /lib/group: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/group -------------------------------------------------------------------------------- /lib/inetd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/inetd -------------------------------------------------------------------------------- /lib/init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/init -------------------------------------------------------------------------------- /lib/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/inittab -------------------------------------------------------------------------------- /lib/kernel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/kernel -------------------------------------------------------------------------------- /lib/ldap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/ldap -------------------------------------------------------------------------------- /lib/linker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/linker -------------------------------------------------------------------------------- /lib/nis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/nis -------------------------------------------------------------------------------- /lib/parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/parse -------------------------------------------------------------------------------- /lib/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/passwd -------------------------------------------------------------------------------- /lib/permission: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/permission -------------------------------------------------------------------------------- /lib/postgresql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/postgresql -------------------------------------------------------------------------------- /lib/privileged: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/privileged -------------------------------------------------------------------------------- /lib/process: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/process -------------------------------------------------------------------------------- /lib/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/shadow -------------------------------------------------------------------------------- /lib/ssh_agent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/ssh_agent -------------------------------------------------------------------------------- /lib/ssh_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/ssh_key -------------------------------------------------------------------------------- /lib/stdio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/stdio -------------------------------------------------------------------------------- /lib/sudo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/sudo -------------------------------------------------------------------------------- /lib/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/user -------------------------------------------------------------------------------- /lib/validate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/lib/validate -------------------------------------------------------------------------------- /tools/generate_banned.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/tools/generate_banned.sh -------------------------------------------------------------------------------- /tools/generate_docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/tools/generate_docs.sh -------------------------------------------------------------------------------- /upc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bdamele/unix-privesc-check/HEAD/upc.sh --------------------------------------------------------------------------------