├── LICENSE ├── README.md ├── makeromfs.sh ├── rootfs.romfs ├── rootfs_toburn ├── bin │ ├── addgroup │ ├── adduser │ ├── ash │ ├── btools │ ├── busybox │ ├── cat │ ├── catv │ ├── chgrp │ ├── chmod │ ├── chown │ ├── cp │ ├── cpio │ ├── cttyhack │ ├── date │ ├── dd │ ├── delgroup │ ├── deluser │ ├── df │ ├── dmesg │ ├── dnsdomainname │ ├── dumpkmap │ ├── echo │ ├── ed │ ├── egrep │ ├── false │ ├── fdflush │ ├── fgrep │ ├── fsync │ ├── getopt │ ├── grep │ ├── gunzip │ ├── gzip │ ├── hiddrs │ ├── hier │ ├── hiew │ ├── hil2s │ ├── himc │ ├── himd │ ├── himd.l │ ├── himm │ ├── hostname │ ├── hush │ ├── ionice │ ├── ip │ ├── ipaddr │ ├── ipcalc │ ├── iplink │ ├── iproute │ ├── iprule │ ├── iptunnel │ ├── kill │ ├── linux32 │ ├── linux64 │ ├── ln │ ├── login │ ├── ls │ ├── lzop │ ├── makemime │ ├── mkdir │ ├── mknod │ ├── mktemp │ ├── more │ ├── mount │ ├── mountpoint │ ├── msh │ ├── mt │ ├── mv │ ├── netstat │ ├── nice │ ├── pidof │ ├── ping │ ├── ping6 │ ├── pipe_progress │ ├── printenv │ ├── ps │ ├── pwd │ ├── reformime │ ├── rm │ ├── rmdir │ ├── rpm │ ├── run-parts │ ├── scriptreplay │ ├── sed │ ├── setarch │ ├── sh │ ├── sleep │ ├── stat │ ├── stty │ ├── su │ ├── sync │ ├── tar │ ├── touch │ ├── true │ ├── udevd │ ├── udevinfo │ ├── udevstart │ ├── umount │ ├── uname │ ├── uncompress │ ├── usleep │ ├── vi │ ├── watch │ └── zcat ├── etc │ ├── fs-version │ ├── fstab │ ├── group │ ├── init.d │ │ ├── S00devs │ │ ├── S01udev │ │ ├── S80network │ │ └── rcS │ ├── inittab │ ├── mtab │ ├── passwd │ ├── passwd- │ ├── profile │ ├── protocols │ ├── services │ └── udev │ │ ├── rules.d │ │ ├── 54-gphoto.rules │ │ ├── 60-pcmcia.rules │ │ ├── 75-cd-aliases-generator.rules.optional │ │ ├── 75-persistent-net-generator.rules.optional │ │ ├── 90-hal.rules │ │ ├── 97-bluetooth-serial.rules │ │ ├── 99-fuse.rules │ │ └── device-mapper.rules │ │ └── udev.conf ├── init ├── lib │ ├── ld-uClibc-0.9.32.1.so │ ├── ld-uClibc.so.0 │ ├── libc.so.0 │ ├── libcrypt-0.9.32.1.so │ ├── libcrypt.so.0 │ ├── libdl-0.9.32.1.so │ ├── libdl.so.0 │ ├── libgcc_s.so │ ├── libgcc_s.so.1 │ ├── libhimount_api.a │ ├── libm-0.9.32.1.so │ ├── libm.so.0 │ ├── libnsl-0.9.32.1.so │ ├── libnsl.so.0 │ ├── libpthread-0.9.32.1.so │ ├── libpthread.so.0 │ ├── libresolv-0.9.32.1.so │ ├── libresolv.so.0 │ ├── librt-0.9.32.1.so │ ├── librt.so.0 │ ├── libthread_db-0.9.32.1.so │ ├── libthread_db.so.1 │ ├── libuClibc-0.9.32.1.so │ ├── libutil-0.9.32.1.so │ └── libutil.so.0 ├── linuxrc ├── mkimg.rootfs ├── mknod_console ├── opt │ ├── README │ ├── decrypt │ ├── encrypt_ar030 │ ├── encrypt_imx122 │ ├── encrypt_imx122_fm │ ├── encrypt_imx122_new │ ├── encrypt_imx278_fm │ ├── generate_task.sh │ ├── mount_usb.sh │ └── umount_usb.sh ├── root │ └── .profile ├── sbin │ ├── acpid │ ├── adjtimex │ ├── arp │ ├── blkid │ ├── depmod │ ├── devmem │ ├── fbsplash │ ├── fdisk │ ├── findfs │ ├── freeramdisk │ ├── fsck.minix │ ├── getty │ ├── halt │ ├── hdparm │ ├── hwclock │ ├── ifconfig │ ├── ifdown │ ├── ifenslave │ ├── ifup │ ├── init │ ├── inotifyd │ ├── insmod │ ├── klogd │ ├── loadkmap │ ├── logread │ ├── losetup │ ├── lsmod │ ├── lspci │ ├── lsusb │ ├── makedevs │ ├── man │ ├── mdev │ ├── mkdosfs │ ├── mkfs.minix │ ├── mkfs.vfat │ ├── mkswap │ ├── modprobe │ ├── nameif │ ├── pivot_root │ ├── poweroff │ ├── raidautorun │ ├── reboot │ ├── rmmod │ ├── route │ ├── runlevel │ ├── setconsole │ ├── slattach │ ├── start-stop-daemon │ ├── sulogin │ ├── swapoff │ ├── swapon │ ├── switch_root │ ├── sysctl │ ├── syslogd │ ├── tunctl │ ├── udhcpc │ ├── vconfig │ ├── watchdog │ └── zcip ├── usr │ ├── bin │ │ ├── [ │ │ ├── [[ │ │ ├── ar │ │ ├── arping │ │ ├── awk │ │ ├── basename │ │ ├── beep │ │ ├── bunzip2 │ │ ├── bzcat │ │ ├── bzip2 │ │ ├── cal │ │ ├── chat │ │ ├── chpst │ │ ├── chrt │ │ ├── chvt │ │ ├── cksum │ │ ├── clear │ │ ├── cmp │ │ ├── comm │ │ ├── crontab │ │ ├── cryptpw │ │ ├── cut │ │ ├── dc │ │ ├── deallocvt │ │ ├── diff │ │ ├── dirname │ │ ├── dos2unix │ │ ├── du │ │ ├── dumpleases │ │ ├── eject │ │ ├── env │ │ ├── envdir │ │ ├── envuidgid │ │ ├── ether-wake │ │ ├── expand │ │ ├── expr │ │ ├── fdformat │ │ ├── find │ │ ├── fold │ │ ├── free │ │ ├── ftpget │ │ ├── ftpput │ │ ├── fuser │ │ ├── hd │ │ ├── head │ │ ├── hexdump │ │ ├── hostid │ │ ├── id │ │ ├── ifplugd │ │ ├── install │ │ ├── ipcrm │ │ ├── ipcs │ │ ├── kbd_mode │ │ ├── killall │ │ ├── killall5 │ │ ├── last │ │ ├── length │ │ ├── less │ │ ├── logger │ │ ├── logname │ │ ├── lpq │ │ ├── lpr │ │ ├── lzmacat │ │ ├── lzopcat │ │ ├── md5sum │ │ ├── mesg │ │ ├── microcom │ │ ├── mkfifo │ │ ├── mkpasswd │ │ ├── nc │ │ ├── nmeter │ │ ├── nohup │ │ ├── nslookup │ │ ├── od │ │ ├── openvt │ │ ├── passwd │ │ ├── patch │ │ ├── pgrep │ │ ├── pkill │ │ ├── printf │ │ ├── pscan │ │ ├── readahead │ │ ├── readlink │ │ ├── realpath │ │ ├── renice │ │ ├── reset │ │ ├── resize │ │ ├── rpm2cpio │ │ ├── rtcwake │ │ ├── runsv │ │ ├── runsvdir │ │ ├── rx │ │ ├── script │ │ ├── seq │ │ ├── setkeycodes │ │ ├── setsid │ │ ├── setuidgid │ │ ├── sha1sum │ │ ├── sha256sum │ │ ├── sha512sum │ │ ├── showkey │ │ ├── softlimit │ │ ├── sort │ │ ├── split │ │ ├── strings │ │ ├── sum │ │ ├── sv │ │ ├── tac │ │ ├── tail │ │ ├── taskset │ │ ├── tcpsvd │ │ ├── tee │ │ ├── telnet │ │ ├── test │ │ ├── tftp │ │ ├── tftpd │ │ ├── time │ │ ├── timeout │ │ ├── top │ │ ├── tr │ │ ├── traceroute │ │ ├── traceroute6 │ │ ├── tty │ │ ├── ttysize │ │ ├── udpsvd │ │ ├── unexpand │ │ ├── uniq │ │ ├── unix2dos │ │ ├── unlzma │ │ ├── unlzop │ │ ├── unzip │ │ ├── uptime │ │ ├── uudecode │ │ ├── uuencode │ │ ├── vlock │ │ ├── volname │ │ ├── wall │ │ ├── wc │ │ ├── wget │ │ ├── which │ │ ├── who │ │ ├── whoami │ │ ├── xargs │ │ └── yes │ ├── lib │ │ ├── libcrypto.so │ │ ├── libcryptoV2.so │ │ └── libdvr.so │ └── sbin │ │ ├── brctl │ │ ├── chpasswd │ │ ├── chroot │ │ ├── crond │ │ ├── dhcprelay │ │ ├── dnsd │ │ ├── fakeidentd │ │ ├── fbset │ │ ├── flash_eraseall │ │ ├── flash_lock │ │ ├── flash_unlock │ │ ├── flashcp │ │ ├── ftpd │ │ ├── httpd │ │ ├── inetd │ │ ├── loadfont │ │ ├── lpd │ │ ├── nfsroot │ │ ├── ntpd │ │ ├── popmaildir │ │ ├── rdate │ │ ├── rdev │ │ ├── readprofile │ │ ├── sendmail │ │ ├── setfont │ │ ├── setlogcons │ │ ├── svlogd │ │ ├── telnetd │ │ └── udhcpd └── var │ └── run │ └── utmp ├── software ├── Makefile ├── bin │ ├── decrypt │ ├── encrypt_ar030 │ ├── encrypt_imx122 │ ├── encrypt_imx122_fm │ ├── encrypt_imx122_new │ ├── encrypt_imx278_fm │ ├── generate_task.sh │ ├── mount_usb.sh │ └── umount_usb.sh ├── decrypt.c ├── encrypt.c └── libs │ ├── libcrypto.so │ ├── libcryptoV2.so │ └── libdvr.so └── uImage /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/README.md -------------------------------------------------------------------------------- /makeromfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/makeromfs.sh -------------------------------------------------------------------------------- /rootfs.romfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs.romfs -------------------------------------------------------------------------------- /rootfs_toburn/bin/addgroup: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/adduser: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ash: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/btools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/bin/btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/busybox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/cat: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/catv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/chgrp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/chmod: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/chown: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/cp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/cpio: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/cttyhack: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/date: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/dd: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/delgroup: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/deluser: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/df: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/dmesg: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/dnsdomainname: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/dumpkmap: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/echo: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ed: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/egrep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/false: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/fdflush: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/fgrep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/fsync: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/getopt: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/grep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/gunzip: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/gzip: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/hiddrs: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/hier: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/hiew: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/hil2s: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/himc: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/himd: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/himd.l: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/himm: -------------------------------------------------------------------------------- 1 | btools -------------------------------------------------------------------------------- /rootfs_toburn/bin/hostname: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/hush: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ionice: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ip: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ipaddr: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ipcalc: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/iplink: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/iproute: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/iprule: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/iptunnel: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/kill: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/linux32: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/linux64: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ln: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/login: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ls: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/lzop: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/makemime: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mkdir: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mknod: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mktemp: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/more: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mount: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mountpoint: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/msh: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mt: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/mv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/netstat: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/nice: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/pidof: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ping: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ping6: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/pipe_progress: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/printenv: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/ps: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/pwd: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/reformime: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/rm: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/rmdir: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/rpm: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/run-parts: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/scriptreplay: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/sed: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/setarch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/sh: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/sleep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/stat: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/stty: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/su: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/sync: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/tar: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/touch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/true: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/udevd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/bin/udevd -------------------------------------------------------------------------------- /rootfs_toburn/bin/udevinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/bin/udevinfo -------------------------------------------------------------------------------- /rootfs_toburn/bin/udevstart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/bin/udevstart -------------------------------------------------------------------------------- /rootfs_toburn/bin/umount: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/uname: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/uncompress: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/usleep: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/vi: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/watch: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/bin/zcat: -------------------------------------------------------------------------------- 1 | busybox -------------------------------------------------------------------------------- /rootfs_toburn/etc/fs-version: -------------------------------------------------------------------------------- 1 | 01000100 rootbox nohelp info 2 | -------------------------------------------------------------------------------- /rootfs_toburn/etc/fstab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/fstab -------------------------------------------------------------------------------- /rootfs_toburn/etc/group: -------------------------------------------------------------------------------- 1 | root::0: 2 | -------------------------------------------------------------------------------- /rootfs_toburn/etc/init.d/S00devs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/init.d/S00devs -------------------------------------------------------------------------------- /rootfs_toburn/etc/init.d/S01udev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/init.d/S01udev -------------------------------------------------------------------------------- /rootfs_toburn/etc/init.d/S80network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/init.d/S80network -------------------------------------------------------------------------------- /rootfs_toburn/etc/init.d/rcS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/init.d/rcS -------------------------------------------------------------------------------- /rootfs_toburn/etc/inittab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/inittab -------------------------------------------------------------------------------- /rootfs_toburn/etc/mtab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/mtab -------------------------------------------------------------------------------- /rootfs_toburn/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/passwd -------------------------------------------------------------------------------- /rootfs_toburn/etc/passwd-: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/passwd- -------------------------------------------------------------------------------- /rootfs_toburn/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/profile -------------------------------------------------------------------------------- /rootfs_toburn/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/protocols -------------------------------------------------------------------------------- /rootfs_toburn/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/services -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/54-gphoto.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/54-gphoto.rules -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/60-pcmcia.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/60-pcmcia.rules -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/75-cd-aliases-generator.rules.optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/75-cd-aliases-generator.rules.optional -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/75-persistent-net-generator.rules.optional: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/75-persistent-net-generator.rules.optional -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/90-hal.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/90-hal.rules -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/97-bluetooth-serial.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/97-bluetooth-serial.rules -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/99-fuse.rules: -------------------------------------------------------------------------------- 1 | KERNEL=="fuse", MODE="0666" 2 | -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/rules.d/device-mapper.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/rules.d/device-mapper.rules -------------------------------------------------------------------------------- /rootfs_toburn/etc/udev/udev.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/etc/udev/udev.conf -------------------------------------------------------------------------------- /rootfs_toburn/init: -------------------------------------------------------------------------------- 1 | sbin/init -------------------------------------------------------------------------------- /rootfs_toburn/lib/ld-uClibc-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/ld-uClibc-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/ld-uClibc.so.0: -------------------------------------------------------------------------------- 1 | ld-uClibc-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libc.so.0: -------------------------------------------------------------------------------- 1 | libuClibc-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libcrypt-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libcrypt-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libcrypt.so.0: -------------------------------------------------------------------------------- 1 | libcrypt-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libdl-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libdl-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libdl.so.0: -------------------------------------------------------------------------------- 1 | libdl-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libgcc_s.so: -------------------------------------------------------------------------------- 1 | libgcc_s.so.1 -------------------------------------------------------------------------------- /rootfs_toburn/lib/libgcc_s.so.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libgcc_s.so.1 -------------------------------------------------------------------------------- /rootfs_toburn/lib/libhimount_api.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libhimount_api.a -------------------------------------------------------------------------------- /rootfs_toburn/lib/libm-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libm-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libm.so.0: -------------------------------------------------------------------------------- 1 | libm-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libnsl-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libnsl-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libnsl.so.0: -------------------------------------------------------------------------------- 1 | libnsl-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libpthread-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libpthread-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libpthread.so.0: -------------------------------------------------------------------------------- 1 | libpthread-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libresolv-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libresolv-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libresolv.so.0: -------------------------------------------------------------------------------- 1 | libresolv-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/librt-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/librt-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/librt.so.0: -------------------------------------------------------------------------------- 1 | librt-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libthread_db-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libthread_db-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libthread_db.so.1: -------------------------------------------------------------------------------- 1 | libthread_db-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libuClibc-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libuClibc-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libutil-0.9.32.1.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/lib/libutil-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/lib/libutil.so.0: -------------------------------------------------------------------------------- 1 | libutil-0.9.32.1.so -------------------------------------------------------------------------------- /rootfs_toburn/linuxrc: -------------------------------------------------------------------------------- 1 | bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/mkimg.rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/mkimg.rootfs -------------------------------------------------------------------------------- /rootfs_toburn/mknod_console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/mknod_console -------------------------------------------------------------------------------- /rootfs_toburn/opt/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/README -------------------------------------------------------------------------------- /rootfs_toburn/opt/decrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/decrypt -------------------------------------------------------------------------------- /rootfs_toburn/opt/encrypt_ar030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/encrypt_ar030 -------------------------------------------------------------------------------- /rootfs_toburn/opt/encrypt_imx122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/encrypt_imx122 -------------------------------------------------------------------------------- /rootfs_toburn/opt/encrypt_imx122_fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/encrypt_imx122_fm -------------------------------------------------------------------------------- /rootfs_toburn/opt/encrypt_imx122_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/encrypt_imx122_new -------------------------------------------------------------------------------- /rootfs_toburn/opt/encrypt_imx278_fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/encrypt_imx278_fm -------------------------------------------------------------------------------- /rootfs_toburn/opt/generate_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/opt/generate_task.sh -------------------------------------------------------------------------------- /rootfs_toburn/opt/mount_usb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | mount /dev/sda1 /mnt 5 | -------------------------------------------------------------------------------- /rootfs_toburn/opt/umount_usb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | umount /mnt 4 | -------------------------------------------------------------------------------- /rootfs_toburn/root/.profile: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | nfsroot 4 | 5 | -------------------------------------------------------------------------------- /rootfs_toburn/sbin/acpid: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/adjtimex: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/arp: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/blkid: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/depmod: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/devmem: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/fbsplash: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/fdisk: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/findfs: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/freeramdisk: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/fsck.minix: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/getty: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/halt: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/hdparm: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/hwclock: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/ifconfig: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/ifdown: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/ifenslave: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/ifup: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/init: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/inotifyd: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/insmod: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/klogd: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/loadkmap: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/logread: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/losetup: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/lsmod: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/lspci: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/lsusb: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/makedevs: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/man: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/mdev: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/mkdosfs: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/mkfs.minix: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/mkfs.vfat: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/mkswap: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/modprobe: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/nameif: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/pivot_root: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/poweroff: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/raidautorun: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/reboot: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/rmmod: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/route: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/runlevel: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/setconsole: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/slattach: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/start-stop-daemon: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/sulogin: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/swapoff: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/swapon: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/switch_root: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/sysctl: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/syslogd: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/tunctl: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/udhcpc: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/vconfig: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/watchdog: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/sbin/zcip: -------------------------------------------------------------------------------- 1 | ../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/[: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/[[: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ar: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/arping: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/awk: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/basename: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/beep: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/bunzip2: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/bzcat: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/bzip2: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/cal: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/chat: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/chpst: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/chrt: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/chvt: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/cksum: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/clear: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/cmp: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/comm: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/crontab: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/cryptpw: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/cut: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/dc: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/deallocvt: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/diff: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/dirname: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/dos2unix: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/du: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/dumpleases: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/eject: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/env: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/envdir: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/envuidgid: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ether-wake: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/expand: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/expr: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/fdformat: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/find: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/fold: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/free: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ftpget: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ftpput: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/fuser: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/hd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/head: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/hexdump: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/hostid: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/id: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ifplugd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/install: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ipcrm: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ipcs: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/kbd_mode: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/killall: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/killall5: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/last: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/length: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/less: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/logger: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/logname: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/lpq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/lpr: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/lzmacat: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/lzopcat: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/md5sum: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/mesg: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/microcom: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/mkfifo: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/mkpasswd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/nc: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/nmeter: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/nohup: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/nslookup: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/od: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/openvt: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/passwd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/patch: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/pgrep: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/pkill: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/printf: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/pscan: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/readahead: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/readlink: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/realpath: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/renice: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/reset: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/resize: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/rpm2cpio: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/rtcwake: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/runsv: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/runsvdir: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/rx: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/script: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/seq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/setkeycodes: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/setsid: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/setuidgid: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/sha1sum: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/sha256sum: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/sha512sum: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/showkey: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/softlimit: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/sort: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/split: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/strings: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/sum: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/sv: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tac: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tail: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/taskset: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tcpsvd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tee: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/telnet: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/test: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tftp: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tftpd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/time: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/timeout: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/top: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tr: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/traceroute: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/traceroute6: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/tty: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/ttysize: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/udpsvd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/unexpand: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/uniq: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/unix2dos: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/unlzma: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/unlzop: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/unzip: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/uptime: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/uudecode: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/uuencode: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/vlock: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/volname: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/wall: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/wc: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/wget: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/which: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/who: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/whoami: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/xargs: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/bin/yes: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/lib/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/usr/lib/libcrypto.so -------------------------------------------------------------------------------- /rootfs_toburn/usr/lib/libcryptoV2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/usr/lib/libcryptoV2.so -------------------------------------------------------------------------------- /rootfs_toburn/usr/lib/libdvr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/usr/lib/libdvr.so -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/brctl: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/chpasswd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/chroot: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/crond: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/dhcprelay: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/dnsd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/fakeidentd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/fbset: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/flash_eraseall: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/flash_lock: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/flash_unlock: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/flashcp: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/ftpd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/httpd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/inetd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/loadfont: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/lpd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/nfsroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/rootfs_toburn/usr/sbin/nfsroot -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/ntpd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/popmaildir: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/rdate: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/rdev: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/readprofile: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/sendmail: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/setfont: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/setlogcons: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/svlogd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/telnetd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/usr/sbin/udhcpd: -------------------------------------------------------------------------------- 1 | ../../bin/busybox -------------------------------------------------------------------------------- /rootfs_toburn/var/run/utmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /software/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/Makefile -------------------------------------------------------------------------------- /software/bin/decrypt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/decrypt -------------------------------------------------------------------------------- /software/bin/encrypt_ar030: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/encrypt_ar030 -------------------------------------------------------------------------------- /software/bin/encrypt_imx122: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/encrypt_imx122 -------------------------------------------------------------------------------- /software/bin/encrypt_imx122_fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/encrypt_imx122_fm -------------------------------------------------------------------------------- /software/bin/encrypt_imx122_new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/encrypt_imx122_new -------------------------------------------------------------------------------- /software/bin/encrypt_imx278_fm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/encrypt_imx278_fm -------------------------------------------------------------------------------- /software/bin/generate_task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/bin/generate_task.sh -------------------------------------------------------------------------------- /software/bin/mount_usb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | 4 | mount /dev/sda1 /mnt 5 | -------------------------------------------------------------------------------- /software/bin/umount_usb.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | umount /mnt 4 | -------------------------------------------------------------------------------- /software/decrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/decrypt.c -------------------------------------------------------------------------------- /software/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/encrypt.c -------------------------------------------------------------------------------- /software/libs/libcrypto.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/libs/libcrypto.so -------------------------------------------------------------------------------- /software/libs/libcryptoV2.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/libs/libcryptoV2.so -------------------------------------------------------------------------------- /software/libs/libdvr.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/software/libs/libdvr.so -------------------------------------------------------------------------------- /uImage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikitos1550/XM_ipcam_crypto_generator/HEAD/uImage --------------------------------------------------------------------------------