├── BASHLITE ├── README.md ├── client.c └── server.c ├── README.md ├── busybotnet ├── .config ├── .config-mips ├── .config.old ├── .config_ ├── .indent.pro ├── AUTHORS ├── Config.in ├── INSTALL ├── LICENSE ├── Makefile ├── Makefile.custom ├── Makefile.flags ├── Makefile.help ├── README ├── README.md ├── TODO ├── TODO_unicode ├── add-applet.bash ├── applets │ ├── Kbuild │ ├── Kbuild.src │ ├── applet_tables.c │ ├── applets.c │ ├── busybox.mkll │ ├── busybox.mksuid │ ├── individual.c │ ├── install.sh │ ├── usage.c │ ├── usage_compressed │ └── usage_pod.c ├── applets_sh │ ├── README │ ├── dos2unix │ ├── nologin │ ├── tac │ └── unix2dos ├── arch │ └── i386 │ │ └── Makefile ├── archival │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── ar.c │ ├── bbunzip.c │ ├── bbunzip_test.sh │ ├── bbunzip_test2.sh │ ├── bbunzip_test3.sh │ ├── bzip2.c │ ├── cpio.c │ ├── dpkg.c │ ├── dpkg_deb.c │ ├── gzip.c │ ├── libarchive │ │ ├── Kbuild │ │ ├── Kbuild.src │ │ ├── bz │ │ │ ├── LICENSE │ │ │ ├── README │ │ │ ├── blocksort.c │ │ │ ├── bzlib.c │ │ │ ├── bzlib.h │ │ │ ├── bzlib_private.h │ │ │ ├── compress.c │ │ │ └── huffman.c │ │ ├── data_align.c │ │ ├── data_extract_all.c │ │ ├── data_extract_to_command.c │ │ ├── data_extract_to_stdout.c │ │ ├── data_skip.c │ │ ├── decompress_bunzip2.c │ │ ├── decompress_gunzip.c │ │ ├── decompress_uncompress.c │ │ ├── decompress_unlzma.c │ │ ├── decompress_unxz.c │ │ ├── filter_accept_all.c │ │ ├── filter_accept_list.c │ │ ├── filter_accept_list_reassign.c │ │ ├── filter_accept_reject_list.c │ │ ├── find_list_entry.c │ │ ├── get_header_ar.c │ │ ├── get_header_cpio.c │ │ ├── get_header_tar.c │ │ ├── get_header_tar_bz2.c │ │ ├── get_header_tar_gz.c │ │ ├── get_header_tar_lzma.c │ │ ├── get_header_tar_xz.c │ │ ├── header_list.c │ │ ├── header_skip.c │ │ ├── header_verbose_list.c │ │ ├── init_handle.c │ │ ├── liblzo.h │ │ ├── lzo1x_1.c │ │ ├── lzo1x_1o.c │ │ ├── lzo1x_9x.c │ │ ├── lzo1x_c.c │ │ ├── lzo1x_d.c │ │ ├── open_transformer.c │ │ ├── seek_by_jump.c │ │ ├── seek_by_read.c │ │ ├── unpack_ar_archive.c │ │ ├── unsafe_prefix.c │ │ └── unxz │ │ │ ├── README │ │ │ ├── xz.h │ │ │ ├── xz_config.h │ │ │ ├── xz_dec_bcj.c │ │ │ ├── xz_dec_lzma2.c │ │ │ ├── xz_dec_stream.c │ │ │ ├── xz_lzma2.h │ │ │ ├── xz_private.h │ │ │ └── xz_stream.h │ ├── lzop.c │ ├── rpm.c │ ├── rpm.h │ ├── rpm2cpio.c │ ├── tar.c │ └── unzip.c ├── banner.txt ├── binaries │ └── busybox-x64 ├── build.sh ├── configs │ ├── TEST_nommu_defconfig │ ├── TEST_noprintf_defconfig │ ├── TEST_rh9_defconfig │ ├── android2_defconfig │ ├── android_defconfig │ ├── android_ndk_defconfig │ ├── cygwin_defconfig │ └── freebsd_defconfig ├── console-tools │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── chvt.c │ ├── clear.c │ ├── deallocvt.c │ ├── dumpkmap.c │ ├── fgconsole.c │ ├── kbd_mode.c │ ├── loadfont.c │ ├── loadkmap.c │ ├── openvt.c │ ├── reset.c │ ├── resize.c │ ├── setconsole.c │ ├── setkeycodes.c │ ├── setlogcons.c │ └── showkey.c ├── coreutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── basename.c │ ├── cal.c │ ├── cat.c │ ├── catv.c │ ├── chgrp.c │ ├── chmod.c │ ├── chown.c │ ├── chroot.c │ ├── cksum.c │ ├── comm.c │ ├── cp.c │ ├── cut.c │ ├── date.c │ ├── dd.c │ ├── df.c │ ├── dirname.c │ ├── dos2unix.c │ ├── du.c │ ├── echo.c │ ├── env.c │ ├── expand.c │ ├── expr.c │ ├── false.c │ ├── fold.c │ ├── fsync.c │ ├── head.c │ ├── hostid.c │ ├── id.c │ ├── id_test.sh │ ├── install.c │ ├── length.c.disabled │ ├── libcoreutils │ │ ├── Kbuild │ │ ├── Kbuild.src │ │ ├── coreutils.h │ │ ├── cp_mv_stat.c │ │ └── getopt_mk_fifo_nod.c │ ├── ln.c │ ├── logname.c │ ├── ls.c │ ├── md5_sha1_sum.c │ ├── mkdir.c │ ├── mkfifo.c │ ├── mknod.c │ ├── mv.c │ ├── nice.c │ ├── nohup.c │ ├── od.c │ ├── od_bloaty.c │ ├── printenv.c │ ├── printf.c │ ├── pwd.c │ ├── readlink.c │ ├── realpath.c │ ├── rm.c │ ├── rmdir.c │ ├── seq.c │ ├── shuf.c │ ├── sleep.c │ ├── sort.c │ ├── split.c │ ├── stat.c │ ├── stty.c │ ├── sum.c │ ├── sync.c │ ├── tac.c │ ├── tail.c │ ├── tee.c │ ├── test.c │ ├── test_ptr_hack.c │ ├── touch.c │ ├── tr.c │ ├── true.c │ ├── truncate.c │ ├── tty.c │ ├── uname.c │ ├── uniq.c │ ├── unlink.c │ ├── usleep.c │ ├── uudecode.c │ ├── uuencode.c │ ├── wc.c │ ├── who.c │ ├── whoami.c │ └── yes.c ├── creds ├── debianutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── mktemp.c │ ├── pipe_progress.c │ ├── run_parts.c │ ├── start_stop_daemon.c │ └── which.c ├── docs │ ├── BusyBox.html │ ├── BusyBox.txt │ ├── Serial-Programming-HOWTO.txt │ ├── busybox.1 │ ├── busybox.net │ │ └── BusyBox.html │ ├── busybox.pod │ ├── busybox_footer.pod │ ├── busybox_header.pod │ ├── cgi │ │ ├── cl.html │ │ ├── env.html │ │ ├── in.html │ │ ├── interface.html │ │ └── out.html │ ├── contributing.txt │ ├── ctty.htm │ ├── draft-coar-cgi-v11-03-clean.html │ ├── ifupdown_design.txt │ ├── keep_data_small.txt │ ├── logging_and_backgrounding.txt │ ├── mdev.txt │ ├── new-applet-HOWTO.txt │ ├── nofork_noexec.txt │ ├── posix_conformance.txt │ ├── sigint.htm │ ├── smallint.txt │ ├── style-guide.txt │ ├── syslog.conf.txt │ ├── tar_pax.txt │ ├── tcp.txt │ ├── unicode.txt │ ├── unicode_UTF-8-test.txt │ ├── unicode_full-bmp.txt │ └── unit-tests.txt ├── e2fsprogs │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── README │ ├── chattr.c │ ├── e2fs_lib.c │ ├── e2fs_lib.h │ ├── fsck.c │ ├── lsattr.c │ └── tune2fs.c ├── editors │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── awk.c │ ├── cmp.c │ ├── diff.c │ ├── ed.c │ ├── patch.c │ ├── patch_bbox.c │ ├── patch_toybox.c │ ├── sed.c │ ├── sed1line.txt │ ├── sed_summary.htm │ └── vi.c ├── examples │ ├── android-build │ ├── bootfloppy │ │ ├── bootfloppy.txt │ │ ├── display.txt │ │ ├── etc │ │ │ ├── fstab │ │ │ ├── init.d │ │ │ │ └── rcS │ │ │ ├── inittab │ │ │ └── profile │ │ ├── mkdevs.sh │ │ ├── mkrootfs.sh │ │ ├── mksyslinux.sh │ │ ├── quickstart.txt │ │ └── syslinux.cfg │ ├── busybox.spec │ ├── depmod │ ├── depmod.pl │ ├── devfsd.conf │ ├── dnsd.conf │ ├── inetd.conf │ ├── inittab │ ├── linux-2.6.30_proc_self_exe.patch │ ├── mdev.conf │ ├── mdev.conf.change_blockdev.sh │ ├── mdev_fat.conf │ ├── mk2knr.pl │ ├── udhcp │ │ ├── sample.bound │ │ ├── sample.deconfig │ │ ├── sample.nak │ │ ├── sample.renew │ │ ├── sample.script │ │ ├── simple.script │ │ └── udhcpd.conf │ ├── undeb │ ├── unrpm │ ├── var_service │ │ ├── README │ │ ├── dhcp_if │ │ │ ├── README │ │ │ ├── convert2ipconf │ │ │ ├── convert2ntpconf │ │ │ ├── dhcp_handler │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── dhcp_if_pinger │ │ │ ├── README │ │ │ └── run │ │ ├── ftpd │ │ │ ├── README │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── fw │ │ │ ├── README │ │ │ ├── conf │ │ │ │ ├── 11.22.33.44.ipconf-- │ │ │ │ ├── 192.168.0.1.ipconf │ │ │ │ └── lo.ipconf │ │ │ ├── etc │ │ │ │ ├── hosts │ │ │ │ └── resolv.conf │ │ │ ├── run │ │ │ └── stat │ │ ├── getty_tty1 │ │ │ ├── README │ │ │ ├── alt08x16+unimap.fnt │ │ │ ├── cfg │ │ │ ├── koi8r_to_uni.trans │ │ │ ├── login.sh │ │ │ ├── ru_koi8r.keymap │ │ │ └── run │ │ ├── gpm │ │ │ ├── README │ │ │ └── run │ │ ├── httpd │ │ │ ├── README │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── ifplugd_if │ │ │ ├── README │ │ │ ├── ifplugd_handler │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── inetd │ │ │ ├── README │ │ │ ├── inetd.conf │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ ├── nmeter │ │ │ ├── README │ │ │ └── run │ │ ├── ntpd │ │ │ ├── README │ │ │ ├── log │ │ │ │ └── run │ │ │ ├── ntp.script │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ │ └── tftpd │ │ │ ├── README │ │ │ ├── log │ │ │ └── run │ │ │ ├── p_log │ │ │ ├── run │ │ │ └── w_log │ └── zcip.script ├── findutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── find.c │ ├── grep.c │ └── xargs.c ├── fjME ├── hlog ├── hme ├── include │ ├── Buf.h │ ├── Connection.h │ ├── NUM_APPLETS.h │ ├── NcrackOps.h │ ├── NcrackOutputTable.h │ ├── Service.h │ ├── ServiceGroup.h │ ├── Target.h │ ├── TargetGroup.h │ ├── aesrand.h │ ├── applet_metadata.h │ ├── applet_tables.h │ ├── applets.h │ ├── applets.src.h │ ├── ar.h │ ├── audit.h │ ├── auth.h │ ├── authfd.h │ ├── authfile.h │ ├── autoconf.h │ ├── base64.h │ ├── bb_archive.h │ ├── bb_e2fs_defs.h │ ├── bbconfigopts.h │ ├── bbconfigopts_bz2.h │ ├── bfg.h │ ├── blf.h │ ├── bsd-cray.h │ ├── bsd-cygwin_util.h │ ├── bsd-misc.h │ ├── bsd-nextstep.h │ ├── bsd-poll.h │ ├── bsd-setres_id.h │ ├── bsd-statvfs.h │ ├── bsd-waitpid.h │ ├── buffer.h │ ├── busybox.h │ ├── canohost.h │ ├── chacha.h │ ├── chacha_private.h │ ├── channels.h │ ├── charclass.h │ ├── checks.h │ ├── cipher-aesctr.h │ ├── cipher-chachapoly.h │ ├── cipher.h │ ├── client_shared.h │ ├── compat.h │ ├── config.h │ ├── config │ │ ├── MARKER │ │ ├── acpid.h │ │ ├── add │ │ │ └── shell.h │ │ ├── addgroup.h │ │ ├── adduser.h │ │ ├── adjtimex.h │ │ ├── aescrypt.h │ │ ├── ar.h │ │ ├── arp.h │ │ ├── arping.h │ │ ├── ash.h │ │ ├── ash │ │ │ ├── alias.h │ │ │ ├── bash │ │ │ │ └── compat.h │ │ │ ├── builtin │ │ │ │ ├── echo.h │ │ │ │ ├── printf.h │ │ │ │ └── test.h │ │ │ ├── cmdcmd.h │ │ │ ├── expand │ │ │ │ └── prmt.h │ │ │ ├── getopts.h │ │ │ ├── help.h │ │ │ ├── idle │ │ │ │ └── timeout.h │ │ │ ├── job │ │ │ │ └── control.h │ │ │ ├── mail.h │ │ │ ├── optimize │ │ │ │ └── for │ │ │ │ │ └── size.h │ │ │ └── random │ │ │ │ └── support.h │ │ ├── awk.h │ │ ├── bangrab.h │ │ ├── base64.h │ │ ├── basename.h │ │ ├── bb │ │ │ └── sysctl.h │ │ ├── bbconfig.h │ │ ├── bd.h │ │ ├── beep.h │ │ ├── beer.h │ │ ├── beleth.h │ │ ├── bindtty.h │ │ ├── blacknurse.h │ │ ├── blkid.h │ │ ├── blockdev.h │ │ ├── boink.h │ │ ├── bonk.h │ │ ├── bootchartd.h │ │ ├── brctl.h │ │ ├── brute │ │ │ └── ssh.h │ │ ├── build │ │ │ └── libbusybox.h │ │ ├── bunzip2.h │ │ ├── busybox │ │ │ └── exec │ │ │ │ └── path.h │ │ ├── bzip2.h │ │ ├── cal.h │ │ ├── cat.h │ │ ├── catv.h │ │ ├── chat.h │ │ ├── chattr.h │ │ ├── chcon.h │ │ ├── chgrp.h │ │ ├── chmod.h │ │ ├── chown.h │ │ ├── chpasswd.h │ │ ├── chpst.h │ │ ├── chroot.h │ │ ├── chrt.h │ │ ├── chvt.h │ │ ├── cksum.h │ │ ├── clear.h │ │ ├── cmp.h │ │ ├── coke.h │ │ ├── comm.h │ │ ├── conseal.h │ │ ├── conspy.h │ │ ├── cowroot.h │ │ ├── cp.h │ │ ├── cpio.h │ │ ├── crond.h │ │ ├── crontab.h │ │ ├── cross │ │ │ └── compiler │ │ │ │ └── prefix.h │ │ ├── crunch.h │ │ ├── crypthash.h │ │ ├── cryptpw.h │ │ ├── cttyhack.h │ │ ├── cut.h │ │ ├── date.h │ │ ├── dc.h │ │ ├── dcd3c.h │ │ ├── dd.h │ │ ├── deallocvt.h │ │ ├── debug.h │ │ ├── debug │ │ │ └── pessimize.h │ │ ├── default │ │ │ ├── depmod │ │ │ │ └── file.h │ │ │ ├── modules │ │ │ │ └── dir.h │ │ │ └── setfont │ │ │ │ └── dir.h │ │ ├── delgroup.h │ │ ├── deluser.h │ │ ├── depmod.h │ │ ├── desktop.h │ │ ├── devfsd.h │ │ ├── devfsd │ │ │ ├── fg │ │ │ │ └── np.h │ │ │ ├── modload.h │ │ │ └── verbose.h │ │ ├── devmem.h │ │ ├── df.h │ │ ├── dhclient.h │ │ ├── dhcpd │ │ │ └── leases │ │ │ │ └── file.h │ │ ├── dhcprelay.h │ │ ├── dhgenprime.h │ │ ├── diff.h │ │ ├── dirname.h │ │ ├── dmalloc.h │ │ ├── dmesg.h │ │ ├── dnsamp.h │ │ ├── dnsd.h │ │ ├── dos2unix.h │ │ ├── dpkg.h │ │ ├── dpkg │ │ │ └── deb.h │ │ ├── dpsc.h │ │ ├── dpss.h │ │ ├── dtlsclient.h │ │ ├── du.h │ │ ├── dumpkmap.h │ │ ├── dumpleases.h │ │ ├── ecdsa.h │ │ ├── echo.h │ │ ├── ed.h │ │ ├── efence.h │ │ ├── eject.h │ │ ├── env.h │ │ ├── envdir.h │ │ ├── envuidgid.h │ │ ├── ether │ │ │ └── wake.h │ │ ├── expand.h │ │ ├── expr.h │ │ ├── expr │ │ │ └── math │ │ │ │ └── support │ │ │ │ └── 64.h │ │ ├── extra │ │ │ ├── cflags.h │ │ │ ├── compat.h │ │ │ ├── ldflags.h │ │ │ └── ldlibs.h │ │ ├── fakeidentd.h │ │ ├── false.h │ │ ├── fatattr.h │ │ ├── fawx.h │ │ ├── fbset.h │ │ ├── fbsplash.h │ │ ├── fdflush.h │ │ ├── fdformat.h │ │ ├── fdisk.h │ │ ├── fdisk │ │ │ └── support │ │ │ │ └── large │ │ │ │ └── disks.h │ │ ├── feature │ │ │ ├── 2 │ │ │ │ └── 4 │ │ │ │ │ └── modules.h │ │ │ ├── acpid │ │ │ │ └── compat.h │ │ │ ├── addgroup │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── adduser │ │ │ │ ├── long │ │ │ │ │ └── options.h │ │ │ │ └── to │ │ │ │ │ └── group.h │ │ │ ├── aix │ │ │ │ └── label.h │ │ │ ├── allow │ │ │ │ └── exec.h │ │ │ ├── ar │ │ │ │ ├── create.h │ │ │ │ └── long │ │ │ │ │ └── filenames.h │ │ │ ├── autowidth.h │ │ │ ├── awk │ │ │ │ ├── gnu │ │ │ │ │ └── extensions.h │ │ │ │ └── libm.h │ │ │ ├── bash │ │ │ │ └── is │ │ │ │ │ ├── ash.h │ │ │ │ │ ├── hush.h │ │ │ │ │ └── none.h │ │ │ ├── beep │ │ │ │ ├── freq.h │ │ │ │ └── length │ │ │ │ │ └── ms.h │ │ │ ├── blkid │ │ │ │ └── type.h │ │ │ ├── bootchartd │ │ │ │ ├── bloated │ │ │ │ │ └── header.h │ │ │ │ └── config │ │ │ │ │ └── file.h │ │ │ ├── brctl │ │ │ │ ├── fancy.h │ │ │ │ └── show.h │ │ │ ├── buffers │ │ │ │ ├── go │ │ │ │ │ ├── in │ │ │ │ │ │ └── bss.h │ │ │ │ │ └── on │ │ │ │ │ │ └── stack.h │ │ │ │ └── use │ │ │ │ │ └── malloc.h │ │ │ ├── call │ │ │ │ └── telinit.h │ │ │ ├── chat │ │ │ │ ├── clr │ │ │ │ │ └── abort.h │ │ │ │ ├── implicit │ │ │ │ │ └── cr.h │ │ │ │ ├── nofail.h │ │ │ │ ├── send │ │ │ │ │ └── escapes.h │ │ │ │ ├── swallow │ │ │ │ │ └── opts.h │ │ │ │ ├── tty │ │ │ │ │ └── hifi.h │ │ │ │ └── var │ │ │ │ │ └── abort │ │ │ │ │ └── len.h │ │ │ ├── chcon │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── check │ │ │ │ ├── names.h │ │ │ │ ├── tainted │ │ │ │ │ └── module.h │ │ │ │ └── unicode │ │ │ │ │ └── in │ │ │ │ │ └── env.h │ │ │ ├── chown │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── clean │ │ │ │ └── up.h │ │ │ ├── compress │ │ │ │ ├── bbconfig.h │ │ │ │ └── usage.h │ │ │ ├── copybuf │ │ │ │ └── kb.h │ │ │ ├── cp │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── cpio │ │ │ │ ├── o.h │ │ │ │ └── p.h │ │ │ ├── crond │ │ │ │ ├── call │ │ │ │ │ └── sendmail.h │ │ │ │ ├── d.h │ │ │ │ └── dir.h │ │ │ ├── date │ │ │ │ ├── compat.h │ │ │ │ ├── isofmt.h │ │ │ │ └── nano.h │ │ │ ├── dc │ │ │ │ └── libm.h │ │ │ ├── dd │ │ │ │ ├── ibs │ │ │ │ │ └── obs.h │ │ │ │ ├── signal │ │ │ │ │ └── handling.h │ │ │ │ ├── status.h │ │ │ │ └── third │ │ │ │ │ └── status │ │ │ │ │ └── line.h │ │ │ ├── default │ │ │ │ └── passwd │ │ │ │ │ └── algo.h │ │ │ ├── del │ │ │ │ └── user │ │ │ │ │ └── from │ │ │ │ │ └── group.h │ │ │ ├── devfs.h │ │ │ ├── devpts.h │ │ │ ├── df │ │ │ │ └── fancy.h │ │ │ ├── diff │ │ │ │ ├── dir.h │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── dmesg │ │ │ │ └── pretty.h │ │ │ ├── dpkg │ │ │ │ └── deb │ │ │ │ │ └── extract │ │ │ │ │ └── only.h │ │ │ ├── du │ │ │ │ └── default │ │ │ │ │ └── blocksize │ │ │ │ │ └── 1k.h │ │ │ ├── editing.h │ │ │ ├── editing │ │ │ │ ├── ask │ │ │ │ │ └── terminal.h │ │ │ │ ├── fancy │ │ │ │ │ └── prompt.h │ │ │ │ ├── history.h │ │ │ │ ├── max │ │ │ │ │ └── len.h │ │ │ │ ├── save │ │ │ │ │ └── on │ │ │ │ │ │ └── exit.h │ │ │ │ ├── savehistory.h │ │ │ │ └── vi.h │ │ │ ├── eject │ │ │ │ └── scsi.h │ │ │ ├── env │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── etc │ │ │ │ └── networks.h │ │ │ ├── expand │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── extra │ │ │ │ └── quiet.h │ │ │ ├── fancy │ │ │ │ ├── echo.h │ │ │ │ ├── head.h │ │ │ │ ├── ping.h │ │ │ │ ├── sleep.h │ │ │ │ └── tail.h │ │ │ ├── fast │ │ │ │ └── top.h │ │ │ ├── fbset │ │ │ │ ├── fancy.h │ │ │ │ └── readmode.h │ │ │ ├── fdisk │ │ │ │ ├── advanced.h │ │ │ │ └── writable.h │ │ │ ├── find │ │ │ │ ├── context.h │ │ │ │ ├── delete.h │ │ │ │ ├── depth.h │ │ │ │ ├── exec.h │ │ │ │ ├── exec │ │ │ │ │ └── plus.h │ │ │ │ ├── group.h │ │ │ │ ├── inum.h │ │ │ │ ├── links.h │ │ │ │ ├── maxdepth.h │ │ │ │ ├── mmin.h │ │ │ │ ├── mtime.h │ │ │ │ ├── newer.h │ │ │ │ ├── not.h │ │ │ │ ├── paren.h │ │ │ │ ├── path.h │ │ │ │ ├── perm.h │ │ │ │ ├── print0.h │ │ │ │ ├── prune.h │ │ │ │ ├── regex.h │ │ │ │ ├── size.h │ │ │ │ ├── type.h │ │ │ │ ├── user.h │ │ │ │ └── xdev.h │ │ │ ├── float │ │ │ │ └── sleep.h │ │ │ ├── ftp │ │ │ │ ├── authentication.h │ │ │ │ └── write.h │ │ │ ├── ftpd │ │ │ │ └── accept │ │ │ │ │ └── broken │ │ │ │ │ └── list.h │ │ │ ├── ftpgetput │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── getopt │ │ │ │ └── long.h │ │ │ ├── gpt │ │ │ │ └── label.h │ │ │ ├── grep │ │ │ │ ├── context.h │ │ │ │ ├── egrep │ │ │ │ │ └── alias.h │ │ │ │ └── fgrep │ │ │ │ │ └── alias.h │ │ │ ├── gzip │ │ │ │ ├── levels.h │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── have │ │ │ │ └── rpc.h │ │ │ ├── hdparm │ │ │ │ ├── get │ │ │ │ │ └── identity.h │ │ │ │ └── hdio │ │ │ │ │ ├── drive │ │ │ │ │ └── reset.h │ │ │ │ │ ├── getset │ │ │ │ │ └── dma.h │ │ │ │ │ ├── scan │ │ │ │ │ └── hwif.h │ │ │ │ │ ├── tristate │ │ │ │ │ └── hwif.h │ │ │ │ │ └── unregister │ │ │ │ │ └── hwif.h │ │ │ ├── hexdump │ │ │ │ └── reverse.h │ │ │ ├── httpd │ │ │ │ ├── auth │ │ │ │ │ └── md5.h │ │ │ │ ├── basic │ │ │ │ │ └── auth.h │ │ │ │ ├── cgi.h │ │ │ │ ├── config │ │ │ │ │ └── with │ │ │ │ │ │ └── script │ │ │ │ │ │ └── interpr.h │ │ │ │ ├── encode │ │ │ │ │ └── url │ │ │ │ │ │ └── str.h │ │ │ │ ├── error │ │ │ │ │ └── pages.h │ │ │ │ ├── gzip.h │ │ │ │ ├── proxy.h │ │ │ │ ├── ranges.h │ │ │ │ ├── set │ │ │ │ │ └── remote │ │ │ │ │ │ └── port │ │ │ │ │ │ └── to │ │ │ │ │ │ └── env.h │ │ │ │ └── setuid.h │ │ │ ├── human │ │ │ │ └── readable.h │ │ │ ├── hwclock │ │ │ │ ├── adjtime │ │ │ │ │ └── fhs.h │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── hwib.h │ │ │ ├── ifconfig │ │ │ │ ├── broadcast │ │ │ │ │ └── plus.h │ │ │ │ ├── hw.h │ │ │ │ ├── memstart │ │ │ │ │ └── ioaddr │ │ │ │ │ │ └── irq.h │ │ │ │ ├── slip.h │ │ │ │ └── status.h │ │ │ ├── ifupdown │ │ │ │ ├── external │ │ │ │ │ └── dhcp.h │ │ │ │ ├── ifconfig │ │ │ │ │ └── builtin.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip │ │ │ │ │ └── builtin.h │ │ │ │ ├── ipv4.h │ │ │ │ ├── ipv6.h │ │ │ │ └── mapping.h │ │ │ ├── individual.h │ │ │ ├── inetd │ │ │ │ ├── rpc.h │ │ │ │ └── support │ │ │ │ │ └── builtin │ │ │ │ │ ├── chargen.h │ │ │ │ │ ├── daytime.h │ │ │ │ │ ├── discard.h │ │ │ │ │ ├── echo.h │ │ │ │ │ └── time.h │ │ │ ├── init │ │ │ │ ├── coredumps.h │ │ │ │ ├── sctty.h │ │ │ │ └── syslog.h │ │ │ ├── initrd.h │ │ │ ├── insmod │ │ │ │ ├── ksymoops │ │ │ │ │ └── symbols.h │ │ │ │ ├── load │ │ │ │ │ ├── map.h │ │ │ │ │ └── map │ │ │ │ │ │ └── full.h │ │ │ │ ├── loadinkmem.h │ │ │ │ ├── try │ │ │ │ │ └── mmap.h │ │ │ │ └── version │ │ │ │ │ └── checking.h │ │ │ ├── install │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── installer.h │ │ │ ├── ip │ │ │ │ ├── address.h │ │ │ │ ├── link.h │ │ │ │ ├── rare │ │ │ │ │ └── protocols.h │ │ │ │ ├── route.h │ │ │ │ ├── route │ │ │ │ │ └── dir.h │ │ │ │ ├── rule.h │ │ │ │ ├── short │ │ │ │ │ └── forms.h │ │ │ │ └── tunnel.h │ │ │ ├── ipc │ │ │ │ ├── syslog.h │ │ │ │ └── syslog │ │ │ │ │ └── buffer │ │ │ │ │ └── size.h │ │ │ ├── ipcalc │ │ │ │ ├── fancy.h │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── ipv6.h │ │ │ ├── kill │ │ │ │ ├── delay.h │ │ │ │ └── removed.h │ │ │ ├── klogd │ │ │ │ └── klogctl.h │ │ │ ├── kmsg │ │ │ │ └── syslog.h │ │ │ ├── last │ │ │ │ ├── fancy.h │ │ │ │ └── small.h │ │ │ ├── less │ │ │ │ ├── ask │ │ │ │ │ └── terminal.h │ │ │ │ ├── brackets.h │ │ │ │ ├── dashcmd.h │ │ │ │ ├── flags.h │ │ │ │ ├── linenums.h │ │ │ │ ├── marks.h │ │ │ │ ├── maxlines.h │ │ │ │ ├── regexp.h │ │ │ │ ├── truncate.h │ │ │ │ └── winch.h │ │ │ ├── loadfont │ │ │ │ ├── psf2.h │ │ │ │ └── raw.h │ │ │ ├── logread │ │ │ │ └── reduced │ │ │ │ │ └── locking.h │ │ │ ├── ls │ │ │ │ ├── color.h │ │ │ │ ├── color │ │ │ │ │ └── is │ │ │ │ │ │ └── default.h │ │ │ │ ├── filetypes.h │ │ │ │ ├── followlinks.h │ │ │ │ ├── recursive.h │ │ │ │ ├── sortfiles.h │ │ │ │ ├── timestamps.h │ │ │ │ └── username.h │ │ │ ├── lsmod │ │ │ │ └── pretty │ │ │ │ │ └── 2 │ │ │ │ │ └── 6 │ │ │ │ │ └── output.h │ │ │ ├── lzma │ │ │ │ └── fast.h │ │ │ ├── makedevs │ │ │ │ ├── leaf.h │ │ │ │ └── table.h │ │ │ ├── md5 │ │ │ │ └── sha1 │ │ │ │ │ └── sum │ │ │ │ │ └── check.h │ │ │ ├── mdev │ │ │ │ ├── conf.h │ │ │ │ ├── exec.h │ │ │ │ ├── load │ │ │ │ │ └── firmware.h │ │ │ │ ├── rename.h │ │ │ │ └── rename │ │ │ │ │ └── regexp.h │ │ │ ├── mesg │ │ │ │ └── enable │ │ │ │ │ └── only │ │ │ │ │ └── group.h │ │ │ ├── mime │ │ │ │ └── charset.h │ │ │ ├── minix2.h │ │ │ ├── mkdir │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── mkswap │ │ │ │ └── uuid.h │ │ │ ├── modprobe │ │ │ │ ├── blacklist.h │ │ │ │ └── small │ │ │ │ │ ├── check │ │ │ │ │ └── already │ │ │ │ │ │ └── loaded.h │ │ │ │ │ └── options │ │ │ │ │ └── on │ │ │ │ │ └── cmdline.h │ │ │ ├── modutils │ │ │ │ ├── alias.h │ │ │ │ └── symbols.h │ │ │ ├── mount │ │ │ │ ├── cifs.h │ │ │ │ ├── fake.h │ │ │ │ ├── flags.h │ │ │ │ ├── fstab.h │ │ │ │ ├── helpers.h │ │ │ │ ├── label.h │ │ │ │ ├── loop.h │ │ │ │ ├── loop │ │ │ │ │ └── create.h │ │ │ │ ├── nfs.h │ │ │ │ ├── othertab.h │ │ │ │ └── verbose.h │ │ │ ├── mtab │ │ │ │ └── support.h │ │ │ ├── mv │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── nameif │ │ │ │ └── extended.h │ │ │ ├── netstat │ │ │ │ ├── prg.h │ │ │ │ └── wide.h │ │ │ ├── nologin.h │ │ │ ├── non │ │ │ │ └── posix │ │ │ │ │ └── cp.h │ │ │ ├── ntpd │ │ │ │ ├── conf.h │ │ │ │ └── server.h │ │ │ ├── osf │ │ │ │ └── label.h │ │ │ ├── passwd │ │ │ │ └── weak │ │ │ │ │ └── check.h │ │ │ ├── pidfile.h │ │ │ ├── pidof │ │ │ │ ├── omit.h │ │ │ │ └── single.h │ │ │ ├── popmaildir │ │ │ │ └── delivery.h │ │ │ ├── prefer │ │ │ │ ├── applets.h │ │ │ │ └── ipv4 │ │ │ │ │ └── address.h │ │ │ ├── preserve │ │ │ │ └── hardlinks.h │ │ │ ├── ps │ │ │ │ ├── additional │ │ │ │ │ └── columns.h │ │ │ │ ├── long.h │ │ │ │ ├── time.h │ │ │ │ ├── unusual │ │ │ │ │ └── systems.h │ │ │ │ └── wide.h │ │ │ ├── readlink │ │ │ │ └── follow.h │ │ │ ├── reformime │ │ │ │ └── compat.h │ │ │ ├── remote │ │ │ │ └── log.h │ │ │ ├── resize │ │ │ │ └── print.h │ │ │ ├── reverse │ │ │ │ └── search.h │ │ │ ├── rmdir │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── rotate │ │ │ │ └── logfile.h │ │ │ ├── rtminmax.h │ │ │ ├── run │ │ │ │ └── parts │ │ │ │ │ ├── fancy.h │ │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── runcon │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── runsvdir │ │ │ │ └── log.h │ │ │ ├── seamless │ │ │ │ ├── bz2.h │ │ │ │ ├── gz.h │ │ │ │ ├── lzma.h │ │ │ │ ├── xz.h │ │ │ │ └── z.h │ │ │ ├── securetty.h │ │ │ ├── setconsole │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── setfiles │ │ │ │ └── check │ │ │ │ │ └── option.h │ │ │ ├── setfont │ │ │ │ └── textual │ │ │ │ │ └── map.h │ │ │ ├── sgi │ │ │ │ └── label.h │ │ │ ├── sh │ │ │ │ ├── extra │ │ │ │ │ └── quiet.h │ │ │ │ ├── histfilesize.h │ │ │ │ ├── is │ │ │ │ │ ├── ash.h │ │ │ │ │ ├── hush.h │ │ │ │ │ └── none.h │ │ │ │ ├── nofork.h │ │ │ │ └── standalone.h │ │ │ ├── shadowpasswds.h │ │ │ ├── shared │ │ │ │ └── busybox.h │ │ │ ├── show │ │ │ │ └── threads.h │ │ │ ├── skip │ │ │ │ └── rootfs.h │ │ │ ├── sort │ │ │ │ └── big.h │ │ │ ├── split │ │ │ │ └── fancy.h │ │ │ ├── start │ │ │ │ └── stop │ │ │ │ │ └── daemon │ │ │ │ │ ├── fancy.h │ │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── stat │ │ │ │ └── format.h │ │ │ ├── su │ │ │ │ ├── checks │ │ │ │ │ └── shells.h │ │ │ │ └── syslog.h │ │ │ ├── suid.h │ │ │ ├── suid │ │ │ │ ├── config.h │ │ │ │ └── config │ │ │ │ │ └── quiet.h │ │ │ ├── sun │ │ │ │ └── label.h │ │ │ ├── swapon │ │ │ │ ├── discard.h │ │ │ │ └── pri.h │ │ │ ├── sync │ │ │ │ └── fancy.h │ │ │ ├── syslog.h │ │ │ ├── syslogd │ │ │ │ ├── cfg.h │ │ │ │ ├── dup.h │ │ │ │ └── read │ │ │ │ │ └── buffer │ │ │ │ │ └── size.h │ │ │ ├── systemd.h │ │ │ ├── tab │ │ │ │ └── completion.h │ │ │ ├── tar │ │ │ │ ├── autodetect.h │ │ │ │ ├── create.h │ │ │ │ ├── from.h │ │ │ │ ├── gnu │ │ │ │ │ └── extensions.h │ │ │ │ ├── long │ │ │ │ │ └── options.h │ │ │ │ ├── nopreserve │ │ │ │ │ └── time.h │ │ │ │ ├── oldgnu │ │ │ │ │ └── compatibility.h │ │ │ │ ├── oldsun │ │ │ │ │ └── compatibility.h │ │ │ │ ├── selinux.h │ │ │ │ ├── to │ │ │ │ │ └── command.h │ │ │ │ └── uname │ │ │ │ │ └── gname.h │ │ │ ├── taskset │ │ │ │ └── fancy.h │ │ │ ├── tee │ │ │ │ └── use │ │ │ │ │ └── block │ │ │ │ │ └── io.h │ │ │ ├── telnet │ │ │ │ ├── autologin.h │ │ │ │ └── ttype.h │ │ │ ├── telnetd │ │ │ │ ├── inetd │ │ │ │ │ └── wait.h │ │ │ │ └── standalone.h │ │ │ ├── test │ │ │ │ └── 64.h │ │ │ ├── tftp │ │ │ │ ├── blocksize.h │ │ │ │ ├── get.h │ │ │ │ ├── progress │ │ │ │ │ └── bar.h │ │ │ │ └── put.h │ │ │ ├── top │ │ │ │ ├── cpu │ │ │ │ │ ├── global │ │ │ │ │ │ └── percents.h │ │ │ │ │ └── usage │ │ │ │ │ │ └── percentage.h │ │ │ │ ├── decimals.h │ │ │ │ └── smp │ │ │ │ │ ├── cpu.h │ │ │ │ │ └── process.h │ │ │ ├── topmem.h │ │ │ ├── touch │ │ │ │ ├── noderef.h │ │ │ │ └── susv3.h │ │ │ ├── tr │ │ │ │ ├── classes.h │ │ │ │ └── equiv.h │ │ │ ├── traceroute │ │ │ │ ├── source │ │ │ │ │ └── route.h │ │ │ │ ├── use │ │ │ │ │ └── icmp.h │ │ │ │ └── verbose.h │ │ │ ├── tunctl │ │ │ │ └── ug.h │ │ │ ├── udhcp │ │ │ │ ├── 8021q.h │ │ │ │ ├── port.h │ │ │ │ └── rfc3397.h │ │ │ ├── udhcpc │ │ │ │ ├── arping.h │ │ │ │ └── sanitizeopt.h │ │ │ ├── udhcpd │ │ │ │ ├── base │ │ │ │ │ └── ip │ │ │ │ │ │ └── on │ │ │ │ │ │ └── mac.h │ │ │ │ └── write │ │ │ │ │ └── leases │ │ │ │ │ └── early.h │ │ │ ├── umount │ │ │ │ └── all.h │ │ │ ├── unexpand │ │ │ │ └── long │ │ │ │ │ └── options.h │ │ │ ├── unix │ │ │ │ └── local.h │ │ │ ├── uptime │ │ │ │ └── utmp │ │ │ │ │ └── support.h │ │ │ ├── use │ │ │ │ ├── inittab.h │ │ │ │ ├── sendfile.h │ │ │ │ └── termios.h │ │ │ ├── username │ │ │ │ └── completion.h │ │ │ ├── utmp.h │ │ │ ├── verbose.h │ │ │ ├── verbose │ │ │ │ ├── cp │ │ │ │ │ └── message.h │ │ │ │ └── usage.h │ │ │ ├── vi │ │ │ │ ├── 8bit.h │ │ │ │ ├── ask │ │ │ │ │ └── terminal.h │ │ │ │ ├── colon.h │ │ │ │ ├── dot │ │ │ │ │ └── cmd.h │ │ │ │ ├── max │ │ │ │ │ └── len.h │ │ │ │ ├── readonly.h │ │ │ │ ├── regex │ │ │ │ │ └── search.h │ │ │ │ ├── search.h │ │ │ │ ├── set.h │ │ │ │ ├── setopts.h │ │ │ │ ├── undo.h │ │ │ │ ├── undo │ │ │ │ │ ├── queue.h │ │ │ │ │ └── queue │ │ │ │ │ │ └── max.h │ │ │ │ ├── use │ │ │ │ │ └── signals.h │ │ │ │ ├── win │ │ │ │ │ └── resize.h │ │ │ │ └── yankmark.h │ │ │ ├── volumeid │ │ │ │ ├── btrfs.h │ │ │ │ ├── cramfs.h │ │ │ │ ├── exfat.h │ │ │ │ ├── ext.h │ │ │ │ ├── f2fs.h │ │ │ │ ├── fat.h │ │ │ │ ├── hfs.h │ │ │ │ ├── iso9660.h │ │ │ │ ├── jfs.h │ │ │ │ ├── linuxraid.h │ │ │ │ ├── linuxswap.h │ │ │ │ ├── luks.h │ │ │ │ ├── nilfs.h │ │ │ │ ├── ntfs.h │ │ │ │ ├── ocfs2.h │ │ │ │ ├── reiserfs.h │ │ │ │ ├── romfs.h │ │ │ │ ├── squashfs.h │ │ │ │ ├── sysv.h │ │ │ │ ├── udf.h │ │ │ │ └── xfs.h │ │ │ ├── wc │ │ │ │ └── large.h │ │ │ ├── wget │ │ │ │ ├── authentication.h │ │ │ │ ├── long │ │ │ │ │ └── options.h │ │ │ │ ├── openssl.h │ │ │ │ ├── ssl │ │ │ │ │ └── helper.h │ │ │ │ ├── statusbar.h │ │ │ │ └── timeout.h │ │ │ ├── wtmp.h │ │ │ └── xargs │ │ │ │ └── support │ │ │ │ ├── confirmation.h │ │ │ │ ├── quotes.h │ │ │ │ ├── repl │ │ │ │ └── str.h │ │ │ │ ├── termopt.h │ │ │ │ └── zero │ │ │ │ └── term.h │ │ ├── fenc.h │ │ ├── fgconsole.h │ │ ├── find.h │ │ ├── findfs.h │ │ ├── first │ │ │ └── system │ │ │ │ └── id.h │ │ ├── flash │ │ │ ├── eraseall.h │ │ │ ├── lock.h │ │ │ └── unlock.h │ │ ├── flashcp.h │ │ ├── flock.h │ │ ├── fold.h │ │ ├── free.h │ │ ├── freeramdisk.h │ │ ├── fsck.h │ │ ├── fsck │ │ │ └── minix.h │ │ ├── fstrim.h │ │ ├── fsync.h │ │ ├── ftpd.h │ │ ├── ftpget.h │ │ ├── ftpput.h │ │ ├── fuser.h │ │ ├── genericsum.h │ │ ├── genkey.h │ │ ├── getenforce.h │ │ ├── getopt.h │ │ ├── getsebool.h │ │ ├── getty.h │ │ ├── gewse.h │ │ ├── gewse5.h │ │ ├── goldeneye.h │ │ ├── grep.h │ │ ├── groups.h │ │ ├── gunzip.h │ │ ├── gzip.h │ │ ├── gzip │ │ │ └── fast.h │ │ ├── halt.h │ │ ├── have │ │ │ └── dot │ │ │ │ └── config.h │ │ ├── hd.h │ │ ├── hdparm.h │ │ ├── head.h │ │ ├── hexdump.h │ │ ├── hide.h │ │ ├── hole.h │ │ ├── hostid.h │ │ ├── hostname.h │ │ ├── httpd.h │ │ ├── hush.h │ │ ├── hush │ │ │ ├── bash │ │ │ │ └── compat.h │ │ │ ├── brace │ │ │ │ └── expansion.h │ │ │ ├── case.h │ │ │ ├── export │ │ │ │ └── n.h │ │ │ ├── functions.h │ │ │ ├── help.h │ │ │ ├── if.h │ │ │ ├── interactive.h │ │ │ ├── job.h │ │ │ ├── local.h │ │ │ ├── loops.h │ │ │ ├── mode │ │ │ │ └── x.h │ │ │ ├── random │ │ │ │ └── support.h │ │ │ ├── savehistory.h │ │ │ └── tick.h │ │ ├── hwclock.h │ │ ├── hydra.h │ │ ├── i2cdetect.h │ │ ├── i2cdump.h │ │ ├── i2cget.h │ │ ├── i2cset.h │ │ ├── id.h │ │ ├── ifconfig.h │ │ ├── ifenslave.h │ │ ├── ifplugd.h │ │ ├── ifupdown.h │ │ ├── ifupdown │ │ │ ├── ifstate │ │ │ │ └── path.h │ │ │ └── udhcpc │ │ │ │ └── cmd │ │ │ │ └── options.h │ │ ├── include │ │ │ └── susv2.h │ │ ├── inetd.h │ │ ├── init.h │ │ ├── init │ │ │ └── terminal │ │ │ │ └── type.h │ │ ├── inotifyd.h │ │ ├── insmod.h │ │ ├── install.h │ │ ├── install │ │ │ ├── applet │ │ │ │ ├── dont.h │ │ │ │ ├── hardlinks.h │ │ │ │ ├── script │ │ │ │ │ └── wrappers.h │ │ │ │ └── symlinks.h │ │ │ ├── no │ │ │ │ └── usr.h │ │ │ └── sh │ │ │ │ └── applet │ │ │ │ ├── hardlink.h │ │ │ │ ├── script │ │ │ │ └── wrapper.h │ │ │ │ └── symlink.h │ │ ├── ioctl │ │ │ └── hex2str │ │ │ │ └── error.h │ │ ├── ionice.h │ │ ├── iostat.h │ │ ├── ip.h │ │ ├── ipaddr.h │ │ ├── ipcalc.h │ │ ├── ipcrm.h │ │ ├── ipcs.h │ │ ├── iplink.h │ │ ├── iproute.h │ │ ├── iprule.h │ │ ├── iptunnel.h │ │ ├── jolt.h │ │ ├── jshon.h │ │ ├── kbd │ │ │ └── mode.h │ │ ├── kill.h │ │ ├── killall.h │ │ ├── killall5.h │ │ ├── kissofdeath.h │ │ ├── kkill.h │ │ ├── klogd.h │ │ ├── knbot.h │ │ ├── land.h │ │ ├── last.h │ │ ├── last │ │ │ ├── id.h │ │ │ ├── supported │ │ │ │ └── wchar.h │ │ │ └── system │ │ │ │ └── id.h │ │ ├── latierra.h │ │ ├── less.h │ │ ├── lfs.h │ │ ├── lizbot.h │ │ ├── lizserv.h │ │ ├── ln.h │ │ ├── load │ │ │ └── policy.h │ │ ├── loadfont.h │ │ ├── loadkmap.h │ │ ├── locale │ │ │ └── support.h │ │ ├── logger.h │ │ ├── login.h │ │ ├── login │ │ │ ├── scripts.h │ │ │ └── session │ │ │ │ └── as │ │ │ │ └── child.h │ │ ├── logname.h │ │ ├── logread.h │ │ ├── long │ │ │ └── opts.h │ │ ├── losetup.h │ │ ├── lpd.h │ │ ├── lpq.h │ │ ├── lpr.h │ │ ├── ls.h │ │ ├── lsattr.h │ │ ├── lsmod.h │ │ ├── lsof.h │ │ ├── lspci.h │ │ ├── lsusb.h │ │ ├── lzma.h │ │ ├── lzop.h │ │ ├── lzop │ │ │ └── compr │ │ │ │ └── high.h │ │ ├── makedevs.h │ │ ├── makemime.h │ │ ├── man.h │ │ ├── masscan.h │ │ ├── matchpathcon.h │ │ ├── md5 │ │ │ └── small.h │ │ ├── md5sum.h │ │ ├── mdev.h │ │ ├── medusa.h │ │ ├── mesg.h │ │ ├── microcom.h │ │ ├── mkdir.h │ │ ├── mkfifo.h │ │ ├── mkfs │ │ │ ├── ext2.h │ │ │ ├── minix.h │ │ │ ├── reiser.h │ │ │ └── vfat.h │ │ ├── mknod.h │ │ ├── mkswap.h │ │ ├── mktemp.h │ │ ├── modinfo.h │ │ ├── modprobe.h │ │ ├── modprobe │ │ │ └── small.h │ │ ├── monotonic │ │ │ └── syscall.h │ │ ├── more.h │ │ ├── mount.h │ │ ├── mountpoint.h │ │ ├── mpstat.h │ │ ├── mq.h │ │ ├── mqsh.h │ │ ├── mqtte.h │ │ ├── msh.h │ │ ├── mt.h │ │ ├── mv.h │ │ ├── nameif.h │ │ ├── nanddump.h │ │ ├── nandwrite.h │ │ ├── nbdclient.h │ │ ├── nc.h │ │ ├── nc │ │ │ ├── 110 │ │ │ │ └── compat.h │ │ │ ├── extra.h │ │ │ └── server.h │ │ ├── ncrack.h │ │ ├── nestea.h │ │ ├── netscan.h │ │ ├── netstat.h │ │ ├── newtear.h │ │ ├── nice.h │ │ ├── nmeter.h │ │ ├── no │ │ │ └── debug │ │ │ │ └── lib.h │ │ ├── nohup.h │ │ ├── nommu.h │ │ ├── nslookup.h │ │ ├── ntpd.h │ │ ├── ntpdos.h │ │ ├── od.h │ │ ├── openvt.h │ │ ├── orgasm.h │ │ ├── ottf.h │ │ ├── pam.h │ │ ├── passwd.h │ │ ├── password │ │ │ └── minlen.h │ │ ├── patator.h │ │ ├── patch.h │ │ ├── pepsi.h │ │ ├── pgrep.h │ │ ├── pid │ │ │ └── file │ │ │ │ └── path.h │ │ ├── pidof.h │ │ ├── pie.h │ │ ├── ping.h │ │ ├── ping6.h │ │ ├── pipe │ │ │ └── progress.h │ │ ├── pivot │ │ │ └── root.h │ │ ├── pkdecrypt.h │ │ ├── pkencrypt.h │ │ ├── pkill.h │ │ ├── pksign.h │ │ ├── platform │ │ │ └── linux.h │ │ ├── pmap.h │ │ ├── pong.h │ │ ├── popmaildir.h │ │ ├── powertop.h │ │ ├── prefix.h │ │ ├── printenv.h │ │ ├── printf.h │ │ ├── prism.h │ │ ├── proxcat.h │ │ ├── ps.h │ │ ├── pscan.h │ │ ├── pstree.h │ │ ├── pubclient.h │ │ ├── pud.h │ │ ├── pwd.h │ │ ├── pwdx.h │ │ ├── raidautorun.h │ │ ├── randip.h │ │ ├── raped.h │ │ ├── rdate.h │ │ ├── rdev.h │ │ ├── readahead.h │ │ ├── readlink.h │ │ ├── readprofile.h │ │ ├── realpath.h │ │ ├── reformime.h │ │ ├── remove │ │ │ └── shell.h │ │ ├── renice.h │ │ ├── reset.h │ │ ├── resize.h │ │ ├── restorecon.h │ │ ├── rev.h │ │ ├── rfkill.h │ │ ├── rm.h │ │ ├── rmdir.h │ │ ├── rmmod.h │ │ ├── route.h │ │ ├── rpm.h │ │ ├── rpm2cpio.h │ │ ├── rsadecrypt.h │ │ ├── rsaencrypt.h │ │ ├── rsagenkey.h │ │ ├── rsasign.h │ │ ├── rsaverify.h │ │ ├── rtcwake.h │ │ ├── run │ │ │ └── parts.h │ │ ├── runcon.h │ │ ├── runlevel.h │ │ ├── runsv.h │ │ ├── runsvdir.h │ │ ├── rx.h │ │ ├── scp.h │ │ ├── script.h │ │ ├── scriptreplay.h │ │ ├── sed.h │ │ ├── selinux.h │ │ ├── selinuxenabled.h │ │ ├── sendmail.h │ │ ├── seq.h │ │ ├── sestatus.h │ │ ├── setarch.h │ │ ├── setconsole.h │ │ ├── setenforce.h │ │ ├── setfiles.h │ │ ├── setfont.h │ │ ├── setkeycodes.h │ │ ├── setlogcons.h │ │ ├── setsebool.h │ │ ├── setserial.h │ │ ├── setsid.h │ │ ├── setuidgid.h │ │ ├── sevone.h │ │ ├── sftp.h │ │ ├── sftpcli.h │ │ ├── sh │ │ │ └── math │ │ │ │ ├── support.h │ │ │ │ └── support │ │ │ │ └── 64.h │ │ ├── sha1sum.h │ │ ├── sha256sum.h │ │ ├── sha3 │ │ │ └── small.h │ │ ├── sha3sum.h │ │ ├── sha512sum.h │ │ ├── show │ │ │ └── usage.h │ │ ├── showkey.h │ │ ├── shuf.h │ │ ├── slattach.h │ │ ├── sleep.h │ │ ├── smemcap.h │ │ ├── smurf.h │ │ ├── snmpdos.h │ │ ├── sockstress.h │ │ ├── softlimit.h │ │ ├── sort.h │ │ ├── spiffit.h │ │ ├── sping.h │ │ ├── split.h │ │ ├── ssh.h │ │ ├── sshcli.h │ │ ├── sshtrix.h │ │ ├── sslclient2.h │ │ ├── ssyn2.h │ │ ├── start │ │ │ └── stop │ │ │ │ └── daemon.h │ │ ├── stat.h │ │ ├── static.h │ │ ├── stream.h │ │ ├── strings.h │ │ ├── stty.h │ │ ├── su.h │ │ ├── subclient.h │ │ ├── subst │ │ │ └── wchar.h │ │ ├── sudp.h │ │ ├── sulogin.h │ │ ├── sum.h │ │ ├── sv.h │ │ ├── sv │ │ │ └── default │ │ │ │ └── service │ │ │ │ └── dir.h │ │ ├── svlogd.h │ │ ├── swaponoff.h │ │ ├── switch │ │ │ └── root.h │ │ ├── sync.h │ │ ├── syndrop.h │ │ ├── synk4.h │ │ ├── synscan.h │ │ ├── syslogd.h │ │ ├── sysroot.h │ │ ├── tac.h │ │ ├── tail.h │ │ ├── tar.h │ │ ├── taskset.h │ │ ├── tcpsvd.h │ │ ├── teardrop.h │ │ ├── tee.h │ │ ├── telinit │ │ │ └── path.h │ │ ├── telnet.h │ │ ├── telnetd.h │ │ ├── test.h │ │ ├── tftp.h │ │ ├── tftp │ │ │ └── debug.h │ │ ├── tftpd.h │ │ ├── time.h │ │ ├── timeout.h │ │ ├── top.h │ │ ├── torloris.h │ │ ├── touch.h │ │ ├── tr.h │ │ ├── traceroute.h │ │ ├── traceroute6.h │ │ ├── true.h │ │ ├── truncate.h │ │ ├── ts3.h │ │ ├── tsh.h │ │ ├── tshd.h │ │ ├── tty.h │ │ ├── ttysize.h │ │ ├── tunctl.h │ │ ├── tune2fs.h │ │ ├── ubiattach.h │ │ ├── ubidetach.h │ │ ├── ubimkvol.h │ │ ├── ubirmvol.h │ │ ├── ubirsvol.h │ │ ├── ubiupdatevol.h │ │ ├── udhcp │ │ │ └── debug.h │ │ ├── udhcpc.h │ │ ├── udhcpc │ │ │ ├── default │ │ │ │ └── script.h │ │ │ └── slack │ │ │ │ └── for │ │ │ │ └── buggy │ │ │ │ └── servers.h │ │ ├── udhcpc6.h │ │ ├── udhcpd.h │ │ ├── udpdata.h │ │ ├── udpspoof.h │ │ ├── udpsvd.h │ │ ├── uevent.h │ │ ├── umount.h │ │ ├── uname.h │ │ ├── uname │ │ │ └── osname.h │ │ ├── uncompress.h │ │ ├── unexpand.h │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ └── support.h │ │ │ ├── combining │ │ │ │ └── wchars.h │ │ │ ├── neutral │ │ │ │ └── table.h │ │ │ ├── preserve │ │ │ │ └── broken.h │ │ │ ├── support.h │ │ │ ├── using │ │ │ │ └── locale.h │ │ │ └── wide │ │ │ │ └── wchars.h │ │ ├── uniq.h │ │ ├── unit │ │ │ └── test.h │ │ ├── unix2dos.h │ │ ├── unlink.h │ │ ├── unlzma.h │ │ ├── unxz.h │ │ ├── unzip.h │ │ ├── uptime.h │ │ ├── use │ │ │ ├── bb │ │ │ │ ├── crypt.h │ │ │ │ ├── crypt │ │ │ │ │ └── sha.h │ │ │ │ ├── pwd │ │ │ │ │ └── grp.h │ │ │ │ └── shadow.h │ │ │ └── portable │ │ │ │ └── code.h │ │ ├── users.h │ │ ├── usleep.h │ │ ├── uudecode.h │ │ ├── uuencode.h │ │ ├── vconfig.h │ │ ├── verbose │ │ │ └── resolution │ │ │ │ └── errors.h │ │ ├── vi.h │ │ ├── vlock.h │ │ ├── volname.h │ │ ├── volumeid.h │ │ ├── wall.h │ │ ├── watch.h │ │ ├── watchdog.h │ │ ├── wc.h │ │ ├── werror.h │ │ ├── wget.h │ │ ├── which.h │ │ ├── who.h │ │ ├── whoami.h │ │ ├── whois.h │ │ ├── wingatecrash.h │ │ ├── xargs.h │ │ ├── xersex.h │ │ ├── xersextcp.h │ │ ├── xorpipe.h │ │ ├── xxd.h │ │ ├── xz.h │ │ ├── yes.h │ │ ├── zcip.h │ │ ├── ziggy.h │ │ └── zmap.h │ ├── crc32.h │ ├── crypto.h │ ├── crypto_api.h │ ├── cyclic.h │ ├── d3des.h │ ├── deattack.h │ ├── defines.h │ ├── dh.h │ ├── digest.h │ ├── dispatch.h │ ├── dummypthread.h │ ├── dump.h │ ├── entropy.h │ ├── error.h │ ├── examples_common.h │ ├── expression.h │ ├── fake-rfc2553.h │ ├── fe25519.h │ ├── fieldset.h │ ├── filespace.h │ ├── filter.h │ ├── fix_u32.h │ ├── ge25519.h │ ├── get_gateway-bsd.h │ ├── get_gateway-linux.h │ ├── get_gateway.h │ ├── getopt.h │ ├── getrrsetbyname.h │ ├── gh_heap.h │ ├── gh_list.h │ ├── glob.h │ ├── global_structures.h │ ├── grp_.h │ ├── hmac.h │ ├── hmacmd5.h │ ├── hostfile.h │ ├── http.h │ ├── hydra-mod.h │ ├── hydra.h │ ├── igmp.h │ ├── in.h │ ├── in_systm.h │ ├── includes.h │ ├── inet_common.h │ ├── ip.h │ ├── ip_icmp.h │ ├── ip_tcp.h │ ├── ip_udp.h │ ├── iterator.h │ ├── kex.h │ ├── key.h │ ├── libbb.h │ ├── liblzo_interface.h │ ├── libpq-fe.h │ ├── log.h │ ├── logging_mosq.h │ ├── mac.h │ ├── match.h │ ├── mbedtls │ │ ├── aes.h │ │ ├── aesni.h │ │ ├── arc4.h │ │ ├── asn1.h │ │ ├── asn1write.h │ │ ├── base64.h │ │ ├── bignum.h │ │ ├── blowfish.h │ │ ├── bn_mul.h │ │ ├── camellia.h │ │ ├── campatpem.h │ │ ├── ccm.h │ │ ├── certs.h │ │ ├── check_config.h │ │ ├── cipher.h │ │ ├── cipher_internal.h │ │ ├── compat-1.3.h │ │ ├── compatpem.h │ │ ├── config.h │ │ ├── ctr_drbg.h │ │ ├── debug.h │ │ ├── des.h │ │ ├── dhm.h │ │ ├── ecdh.h │ │ ├── ecdsa.h │ │ ├── ecjpake.h │ │ ├── ecp.h │ │ ├── entropy.h │ │ ├── entropy_poll.h │ │ ├── error.h │ │ ├── gcm.h │ │ ├── havege.h │ │ ├── hmac_drbg.h │ │ ├── md.h │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── md_internal.h │ │ ├── memory_buffer_alloc.h │ │ ├── net.h │ │ ├── oid.h │ │ ├── padlock.h │ │ ├── pem.h │ │ ├── pk.h │ │ ├── pk_internal.h │ │ ├── pkcs11.h │ │ ├── pkcs12.h │ │ ├── pkcs5.h │ │ ├── platform.h │ │ ├── ripemd160.h │ │ ├── rsa.h │ │ ├── sha1.h │ │ ├── sha256.h │ │ ├── sha512.h │ │ ├── ssl.h │ │ ├── ssl_cache.h │ │ ├── ssl_ciphersuites.h │ │ ├── ssl_cookie.h │ │ ├── ssl_internal.h │ │ ├── ssl_ticket.h │ │ ├── threading.h │ │ ├── timing.h │ │ ├── version.h │ │ ├── x509.h │ │ ├── x509_crl.h │ │ ├── x509_crt.h │ │ ├── x509_csr.h │ │ └── xtea.h │ ├── md5.h │ ├── memory_mosq.h │ ├── messages_mosq.h │ ├── misc.h │ ├── monitor.h │ ├── mosquitto.h │ ├── mosquitto_internal.h │ ├── mqtt3_protocol.h │ ├── msg.h │ ├── myproposal.h │ ├── nbase.h │ ├── nbase_addrset.h │ ├── nbase_config.h │ ├── nbase_crc32ct.h │ ├── nbase_ipv6.h │ ├── nbase_winconfig.h │ ├── nbase_winunix.h │ ├── ncrack.h │ ├── ncrack │ │ ├── Buf.h │ │ ├── Connection.h │ │ ├── NcrackOps.h │ │ ├── NcrackOutputTable.h │ │ ├── Service.h │ │ ├── ServiceGroup.h │ │ ├── Target.h │ │ ├── TargetGroup.h │ │ ├── crypto.h │ │ ├── global_structures.h │ │ ├── http.h │ │ ├── nbase.h │ │ ├── nbase_addrset.h │ │ ├── nbase_config.h │ │ ├── nbase_crc32ct.h │ │ ├── nbase_ipv6.h │ │ ├── nbase_winconfig.h │ │ ├── nbase_winunix.h │ │ ├── ncrack.h │ │ ├── ncrack_config.h │ │ ├── ncrack_error.h │ │ ├── ncrack_input.h │ │ ├── ncrack_resume.h │ │ ├── ncrack_tty.h │ │ ├── ncrack_winconfig.h │ │ ├── output.h │ │ ├── services.h │ │ ├── targets.h │ │ ├── timing.h │ │ └── utils.h │ ├── ncrack_config.h │ ├── ncrack_error.h │ ├── ncrack_input.h │ ├── ncrack_resume.h │ ├── ncrack_tty.h │ ├── ncrack_winconfig.h │ ├── net_mosq.h │ ├── netutils.h │ ├── nsock.h │ ├── nsock_config.h │ ├── nsock_internal.h │ ├── nsock_log.h │ ├── nsock_pcap.h │ ├── nsock_proxy.h │ ├── nsock_ssl.h │ ├── nsock_winconfig.h │ ├── ntlm.h │ ├── opacket.h │ ├── openbsd-compat.h │ ├── openssh.h │ ├── opensshlib.h │ ├── openssl-compat.h │ ├── output.h │ ├── packet.h │ ├── pathnames.h │ ├── pcap-bpf.h │ ├── pcap-namedb.h │ ├── pcap.h │ ├── pcap │ │ ├── bluetooth.h │ │ ├── bpf.h │ │ ├── can_socketcan.h │ │ ├── dlt.h │ │ ├── export-defs.h │ │ ├── ipnet.h │ │ ├── namedb.h │ │ ├── nflog.h │ │ ├── pcap.h │ │ ├── sll.h │ │ ├── usb.h │ │ └── vlan.h │ ├── performance.h │ ├── platform.h │ ├── poly1305.h │ ├── port-aix.h │ ├── port-irix.h │ ├── port-linux.h │ ├── port-solaris.h │ ├── port-tun.h │ ├── port-uw.h │ ├── postgres_ext.h │ ├── protocols.h │ ├── pwd_.h │ ├── rdp.h │ ├── read_handle.h │ ├── readconf.h │ ├── readpassphrase.h │ ├── recv-internal.h │ ├── recv.h │ ├── rijndael.h │ ├── rmd160.h │ ├── rsa.h │ ├── rtc_.h │ ├── sasl.h │ ├── sc25519.h │ ├── send-bsd.h │ ├── send-linux.h │ ├── send-pfring.h │ ├── send.h │ ├── send_mosq.h │ ├── services.h │ ├── sha1.h │ ├── sha2.h │ ├── shadow_.h │ ├── shard.h │ ├── sigact.h │ ├── socket.h │ ├── socks_mosq.h │ ├── ssh.h │ ├── ssh1.h │ ├── ssh2.h │ ├── sshbuf.h │ ├── sshconnect.h │ ├── ssherr.h │ ├── sshkey.h │ ├── state.h │ ├── summary.h │ ├── sys-queue.h │ ├── sys-tree.h │ ├── targets.h │ ├── tcp.h │ ├── test-common.h │ ├── time_mosq.h │ ├── timing.h │ ├── tls_mosq.h │ ├── uidswap.h │ ├── umac.h │ ├── unicode.h │ ├── usage.h │ ├── usage.src.h │ ├── usage_compressed.h │ ├── util_mosq.h │ ├── utils.h │ ├── uuencode.h │ ├── validate.h │ ├── vis.h │ ├── volume_id.h │ ├── will_mosq.h │ ├── winfixssh.h │ ├── xatonum.h │ ├── xmalloc.h │ └── xregex.h ├── init │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── bootchartd.c │ ├── halt.c │ ├── init.c │ ├── mesg.c │ └── reboot.h ├── ips ├── json-c │ ├── .editorconfig │ ├── .gitignore │ ├── .travis.yml │ ├── AUTHORS │ ├── Android.configure.mk │ ├── CMakeLists.txt │ ├── COPYING │ ├── ChangeLog │ ├── Doxyfile │ ├── Makefile.am │ ├── NEWS │ ├── README │ ├── README-WIN32.html │ ├── README.html │ ├── README.md │ ├── RELEASE_CHECKLIST.txt │ ├── STYLE.txt │ ├── appveyor.yml │ ├── arraylist.c │ ├── arraylist.h │ ├── autoconf-archive │ │ ├── README.txt │ │ └── m4 │ │ │ ├── ax_append_compile_flags.m4 │ │ │ ├── ax_append_flag.m4 │ │ │ ├── ax_check_compile_flag.m4 │ │ │ ├── ax_compile_check_sizeof.m4 │ │ │ └── ax_require_defined.m4 │ ├── autogen.sh │ ├── bits.h │ ├── config.h.win32 │ ├── configure.ac │ ├── debug.c │ ├── debug.h │ ├── json-c-uninstalled.pc.in │ ├── json-c.pc.in │ ├── json-c.vcproj │ ├── json-c.vcxproj │ ├── json-c.vcxproj.filters │ ├── json.h │ ├── json_c_version.c │ ├── json_c_version.h │ ├── json_config.h.in │ ├── json_config.h.win32 │ ├── json_inttypes.h │ ├── json_object.c │ ├── json_object.h │ ├── json_object_iterator.c │ ├── json_object_iterator.h │ ├── json_object_private.h │ ├── json_pointer.c │ ├── json_pointer.h │ ├── json_tokener.c │ ├── json_tokener.h │ ├── json_util.c │ ├── json_util.h │ ├── json_visit.c │ ├── json_visit.h │ ├── libjson.c │ ├── linkhash.c │ ├── linkhash.h │ ├── math_compat.h │ ├── printbuf.c │ ├── printbuf.h │ ├── random_seed.c │ ├── random_seed.h │ ├── strdup_compat.h │ ├── tests │ │ ├── Makefile.am │ │ ├── parse_flags.c │ │ ├── parse_flags.h │ │ ├── strerror_override.c │ │ ├── test-defs.sh │ │ ├── test1.c │ │ ├── test1.expected │ │ ├── test1.test │ │ ├── test1Formatted_plain.expected │ │ ├── test1Formatted_pretty.expected │ │ ├── test1Formatted_spaced.expected │ │ ├── test2.c │ │ ├── test2.expected │ │ ├── test2.test │ │ ├── test2Formatted_plain.expected │ │ ├── test2Formatted_pretty.expected │ │ ├── test2Formatted_spaced.expected │ │ ├── test4.c │ │ ├── test4.expected │ │ ├── test4.test │ │ ├── testReplaceExisting.c │ │ ├── testReplaceExisting.expected │ │ ├── testReplaceExisting.test │ │ ├── test_cast.c │ │ ├── test_cast.expected │ │ ├── test_cast.test │ │ ├── test_charcase.c │ │ ├── test_charcase.expected │ │ ├── test_charcase.test │ │ ├── test_compare.c │ │ ├── test_compare.expected │ │ ├── test_compare.test │ │ ├── test_double_serializer.c │ │ ├── test_double_serializer.expected │ │ ├── test_double_serializer.test │ │ ├── test_float.c │ │ ├── test_float.expected │ │ ├── test_float.test │ │ ├── test_json_pointer.c │ │ ├── test_json_pointer.expected │ │ ├── test_json_pointer.test │ │ ├── test_locale.c │ │ ├── test_locale.expected │ │ ├── test_locale.test │ │ ├── test_null.c │ │ ├── test_null.expected │ │ ├── test_null.test │ │ ├── test_parse.c │ │ ├── test_parse.expected │ │ ├── test_parse.test │ │ ├── test_parse_int64.c │ │ ├── test_parse_int64.expected │ │ ├── test_parse_int64.test │ │ ├── test_printbuf.c │ │ ├── test_printbuf.expected │ │ ├── test_printbuf.test │ │ ├── test_set_serializer.c │ │ ├── test_set_serializer.expected │ │ ├── test_set_serializer.test │ │ ├── test_set_value.c │ │ ├── test_set_value.expected │ │ ├── test_set_value.test │ │ ├── test_util_file.c │ │ ├── test_util_file.expected │ │ ├── test_util_file.test │ │ ├── test_visit.c │ │ ├── test_visit.expected │ │ ├── test_visit.test │ │ └── valid.json │ └── vasprintf_compat.h ├── kek ├── libbb.h ├── libbb │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── README │ ├── appletlib.c │ ├── appletlib.c.old │ ├── ask_confirmation.c │ ├── auto_string.c │ ├── bb_askpass.c │ ├── bb_bswap_64.c │ ├── bb_do_delay.c │ ├── bb_pwd.c │ ├── bb_qsort.c │ ├── bb_strtod.c │ ├── bb_strtonum.c │ ├── bbunit.c │ ├── change_identity.c │ ├── chomp.c │ ├── compare_string_array.c │ ├── concat_path_file.c │ ├── concat_subpath_file.c │ ├── copy_file.c │ ├── copyfd.c │ ├── correct_password.c │ ├── crc32.c │ ├── default_error_retval.c │ ├── device_open.c │ ├── die_if_bad_username.c │ ├── dump.c │ ├── endofname.c │ ├── executable.c │ ├── fclose_nonstdin.c │ ├── fflush_stdout_and_exit.c │ ├── fgets_str.c │ ├── find_mount_point.c │ ├── find_pid_by_name.c │ ├── find_root_device.c │ ├── full_write.c │ ├── get_console.c │ ├── get_cpu_count.c │ ├── get_last_path_component.c │ ├── get_line_from_file.c │ ├── get_shell_name.c │ ├── get_volsize.c │ ├── getopt32.c │ ├── getpty.c │ ├── hash_md5_sha.c │ ├── hash_md5prime.c │ ├── herror_msg.c │ ├── human_readable.c │ ├── in_ether.c │ ├── inet_cksum.c │ ├── inet_common.c │ ├── info_msg.c │ ├── inode_hash.c │ ├── isdirectory.c │ ├── kernel_version.c │ ├── last_char_is.c │ ├── lineedit.c │ ├── lineedit_ptr_hack.c │ ├── llist.c │ ├── logenv.c │ ├── login.c │ ├── loop.c │ ├── make_directory.c │ ├── makedev.c │ ├── match_fstype.c │ ├── messages.c │ ├── missing_syscalls.c │ ├── mode_string.c │ ├── mtab.c │ ├── nuke_str.c │ ├── obscure.c │ ├── parse_config.c │ ├── parse_mode.c │ ├── percent_decode.c │ ├── perror_msg.c │ ├── perror_nomsg.c │ ├── perror_nomsg_and_die.c │ ├── pidfile.c │ ├── platform.c │ ├── print_flags.c │ ├── printable.c │ ├── printable_string.c │ ├── process_escape_sequence.c │ ├── procps.c │ ├── progress.c │ ├── ptr_to_globals.c │ ├── pw_encrypt.c │ ├── pw_encrypt_des.c │ ├── pw_encrypt_md5.c │ ├── pw_encrypt_sha.c │ ├── read.c │ ├── read_key.c │ ├── read_printf.c │ ├── recursive_action.c │ ├── remove_file.c │ ├── replace.c │ ├── rtc.c │ ├── run_shell.c │ ├── safe_gethostname.c │ ├── safe_poll.c │ ├── safe_strncpy.c │ ├── safe_write.c │ ├── selinux_common.c │ ├── setup_environment.c │ ├── signals.c │ ├── simplify_path.c │ ├── single_argv.c │ ├── skip_whitespace.c │ ├── speed_table.c │ ├── str_tolower.c │ ├── strrstr.c │ ├── sysconf.c │ ├── systemd_support.c │ ├── time.c │ ├── trim.c │ ├── u_signal_names.c │ ├── udp_io.c │ ├── unicode.c │ ├── update_passwd.c │ ├── utmp.c │ ├── uuencode.c │ ├── vdprintf.c │ ├── verror_msg.c │ ├── vfork_daemon_rexec.c │ ├── warn_ignoring_args.c │ ├── wfopen.c │ ├── wfopen_input.c │ ├── write.c │ ├── xatonum.c │ ├── xatonum_template.c │ ├── xconnect.c │ ├── xfunc_die.c │ ├── xfuncs.c │ ├── xfuncs_printf.c │ ├── xgetcwd.c │ ├── xgethostbyname.c │ ├── xreadlink.c │ ├── xrealloc_vector.c │ └── xregcomp.c ├── libpcap │ ├── .appveyor.yml │ ├── .gitattributes │ ├── .gitignore │ ├── .travis-coverity-scan-build.sh │ ├── .travis.yml │ ├── CHANGES │ ├── CMakeLists.txt │ ├── CONTRIBUTING │ ├── CREDITS │ ├── ChmodBPF │ │ ├── ChmodBPF │ │ └── StartupParameters.plist │ ├── GenVersion.bat │ ├── INSTALL.txt │ ├── LICENSE │ ├── Makefile-devel-adds │ ├── Makefile.in │ ├── README │ ├── README.Win32 │ ├── README.aix │ ├── README.dag │ ├── README.hpux │ ├── README.linux │ ├── README.macosx │ ├── README.septel │ ├── README.sita │ ├── README.tru64 │ ├── SUNOS4 │ │ ├── nit_if.o.sparc │ │ ├── nit_if.o.sun3 │ │ └── nit_if.o.sun4c.4.0.3c │ ├── TODO │ ├── VERSION │ ├── Win32 │ │ ├── Include │ │ │ └── Gnuc.h │ │ └── Prj │ │ │ ├── wpcap.sln │ │ │ ├── wpcap.vcxproj │ │ │ └── wpcap.vcxproj.filters │ ├── aclocal.m4 │ ├── arcnet.h │ ├── atmuni31.h │ ├── bpf_dump.c │ ├── bpf_image.c │ ├── chmod_bpf │ ├── cmake │ │ └── preconfigure.cmake │ ├── cmakeconfig.h.in │ ├── config.guess │ ├── config.h.in │ ├── config.sub │ ├── config │ │ └── have_siocglifconf.c │ ├── configure │ ├── configure.ac │ ├── dlpisubs.c │ ├── dlpisubs.h │ ├── etherent.c │ ├── ethertype.h │ ├── extract.h │ ├── fad-getad.c │ ├── fad-gifc.c │ ├── fad-glifc.c │ ├── ftmacros.h │ ├── funcattrs.h │ ├── gen_version_c.sh │ ├── gen_version_header.sh │ ├── gencode.c │ ├── gencode.h │ ├── grammar.y │ ├── ieee80211.h │ ├── inet.c │ ├── install-sh │ ├── lbl │ │ ├── os-aix4.h │ │ ├── os-aix7.h │ │ ├── os-hpux11.h │ │ ├── os-osf4.h │ │ ├── os-osf5.h │ │ ├── os-solaris2.h │ │ ├── os-sunos4.h │ │ └── os-ultrix4.h │ ├── llc.h │ ├── missing │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── snprintf.c │ │ ├── strtok_r.c │ │ └── win_snprintf.c │ ├── mkdep │ ├── msdos │ │ ├── bin2c.c │ │ ├── common.dj │ │ ├── makefile │ │ ├── makefile.dj │ │ ├── makefile.wc │ │ ├── ndis2.c │ │ ├── ndis2.h │ │ ├── ndis_0.asm │ │ ├── pkt_rx0.asm │ │ ├── pktdrvr.c │ │ ├── pktdrvr.h │ │ └── readme.dos │ ├── nametoaddr.c │ ├── nametoaddr.h │ ├── nlpid.h │ ├── optimize.c │ ├── org.tcpdump.chmod_bpf.plist │ ├── pcap-bpf.c │ ├── pcap-bpf.h │ ├── pcap-bt-linux.c │ ├── pcap-bt-linux.h │ ├── pcap-bt-monitor-linux.c │ ├── pcap-bt-monitor-linux.h │ ├── pcap-common.c │ ├── pcap-common.h │ ├── pcap-config.1 │ ├── pcap-config.in │ ├── pcap-dag.c │ ├── pcap-dag.h │ ├── pcap-dbus.c │ ├── pcap-dbus.h │ ├── pcap-dlpi.c │ ├── pcap-dos.c │ ├── pcap-dos.h │ ├── pcap-enet.c │ ├── pcap-filter.manmisc.in │ ├── pcap-int.h │ ├── pcap-libdlpi.c │ ├── pcap-linktype.manmisc.in │ ├── pcap-linux.c │ ├── pcap-namedb.h │ ├── pcap-netfilter-linux.c │ ├── pcap-netfilter-linux.h │ ├── pcap-new.c │ ├── pcap-nit.c │ ├── pcap-null.c │ ├── pcap-pf.c │ ├── pcap-rpcap-int.h │ ├── pcap-rpcap.c │ ├── pcap-savefile.manfile.in │ ├── pcap-septel.c │ ├── pcap-septel.h │ ├── pcap-sita.c │ ├── pcap-sita.h │ ├── pcap-sita.html │ ├── pcap-snf.c │ ├── pcap-snf.h │ ├── pcap-snit.c │ ├── pcap-snoop.c │ ├── pcap-stdinc.h │ ├── pcap-tc.c │ ├── pcap-tc.h │ ├── pcap-tstamp.manmisc.in │ ├── pcap-usb-linux.c │ ├── pcap-usb-linux.h │ ├── pcap-win32.c │ ├── pcap.3pcap.in │ ├── pcap.c │ ├── pcap.h │ ├── pcap │ │ ├── bluetooth.h │ │ ├── bpf.h │ │ ├── can_socketcan.h │ │ ├── dlt.h │ │ ├── export-defs.h │ │ ├── ipnet.h │ │ ├── namedb.h │ │ ├── nflog.h │ │ ├── pcap.h │ │ ├── sll.h │ │ ├── usb.h │ │ └── vlan.h │ ├── pcap_activate.3pcap │ ├── pcap_breakloop.3pcap │ ├── pcap_can_set_rfmon.3pcap │ ├── pcap_close.3pcap │ ├── pcap_compile.3pcap.in │ ├── pcap_create.3pcap │ ├── pcap_datalink.3pcap.in │ ├── pcap_datalink_name_to_val.3pcap │ ├── pcap_datalink_val_to_name.3pcap │ ├── pcap_dump.3pcap │ ├── pcap_dump_close.3pcap │ ├── pcap_dump_file.3pcap │ ├── pcap_dump_flush.3pcap │ ├── pcap_dump_ftell.3pcap │ ├── pcap_dump_open.3pcap.in │ ├── pcap_file.3pcap │ ├── pcap_fileno.3pcap │ ├── pcap_findalldevs.3pcap │ ├── pcap_freecode.3pcap │ ├── pcap_get_selectable_fd.3pcap │ ├── pcap_get_tstamp_precision.3pcap.in │ ├── pcap_geterr.3pcap │ ├── pcap_inject.3pcap │ ├── pcap_is_swapped.3pcap │ ├── pcap_lib_version.3pcap │ ├── pcap_list_datalinks.3pcap.in │ ├── pcap_list_tstamp_types.3pcap.in │ ├── pcap_lookupdev.3pcap │ ├── pcap_lookupnet.3pcap │ ├── pcap_loop.3pcap │ ├── pcap_major_version.3pcap │ ├── pcap_next_ex.3pcap │ ├── pcap_offline_filter.3pcap │ ├── pcap_open_dead.3pcap.in │ ├── pcap_open_live.3pcap │ ├── pcap_open_offline.3pcap.in │ ├── pcap_set_buffer_size.3pcap │ ├── pcap_set_datalink.3pcap │ ├── pcap_set_immediate_mode.3pcap │ ├── pcap_set_promisc.3pcap │ ├── pcap_set_rfmon.3pcap │ ├── pcap_set_snaplen.3pcap │ ├── pcap_set_timeout.3pcap │ ├── pcap_set_tstamp_precision.3pcap.in │ ├── pcap_set_tstamp_type.3pcap.in │ ├── pcap_setdirection.3pcap │ ├── pcap_setfilter.3pcap │ ├── pcap_setnonblock.3pcap │ ├── pcap_snapshot.3pcap │ ├── pcap_stats.3pcap │ ├── pcap_statustostr.3pcap │ ├── pcap_strerror.3pcap │ ├── pcap_tstamp_type_name_to_val.3pcap │ ├── pcap_tstamp_type_val_to_name.3pcap │ ├── pcap_version.h.in │ ├── portability.h │ ├── ppp.h │ ├── rpcap-protocol.h │ ├── rpcapd │ │ ├── .gitignore │ │ ├── Makefile.in │ │ ├── daemon.c │ │ ├── daemon.h │ │ ├── fileconf.c │ │ ├── fileconf.h │ │ ├── rpcapd.c │ │ ├── rpcapd.h │ │ ├── utils.c │ │ ├── utils.h │ │ ├── win32-svc.c │ │ └── win32-svc.h │ ├── savefile.c │ ├── scanner.l │ ├── sf-pcap-ng.c │ ├── sf-pcap-ng.h │ ├── sf-pcap.c │ ├── sf-pcap.h │ ├── sockutils.c │ ├── sockutils.h │ ├── sunatmpos.h │ └── tests │ │ ├── BPF │ │ ├── 1.txt │ │ ├── 2.txt │ │ ├── 3.txt │ │ ├── 4.txt │ │ ├── 5.txt │ │ ├── 6.txt │ │ └── 7.txt │ │ ├── CMakeLists.txt │ │ ├── can_set_rfmon_test.c │ │ ├── capturetest.c │ │ ├── filtertest.c │ │ ├── findalldevstest.c │ │ ├── opentest.c │ │ ├── pcap_compile_test.c │ │ ├── reactivatetest.c │ │ ├── selpolltest.c │ │ ├── valgrindtest.c │ │ └── visopts.py ├── libpwdgrp │ ├── Kbuild │ ├── Kbuild.src │ ├── pwd_grp.c │ └── uidgid_get.c ├── libssh-0.7.4 │ ├── .clang_complete │ ├── AUTHORS │ ├── BSD │ ├── CMakeLists.txt │ ├── COPYING │ ├── CPackConfig.cmake │ ├── CTestConfig.cmake │ ├── ChangeLog │ ├── ConfigureChecks.cmake │ ├── DefineOptions.cmake │ ├── INSTALL │ ├── README │ ├── README.CodingStyle │ ├── SubmittingPatches │ ├── build │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.5.2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeError.log │ │ │ ├── CMakeOutput.log │ │ │ ├── CheckTypeSize │ │ │ │ ├── CMAKE_SIZEOF_UNSIGNED_SHORT.bin │ │ │ │ └── CMAKE_SIZEOF_UNSIGNED_SHORT.c │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── TargetDirectories.txt │ │ │ ├── TestEndianess.bin │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ └── progress.marks │ │ ├── CPackConfig.cmake │ │ ├── CPackSourceConfig.cmake │ │ ├── Makefile │ │ ├── cmake_install.cmake │ │ ├── compile_commands.json │ │ ├── config.h │ │ ├── doc │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ └── cmake_install.cmake │ │ ├── examples │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── exec.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── libssh_scp.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── libsshpp.dir │ │ │ │ │ ├── CXX.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── libsshpp_noexcept.dir │ │ │ │ │ ├── CXX.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── progress.marks │ │ │ │ ├── samplesftp.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── samplessh.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── samplesshd-kbdint.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── scp_download.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── senddata.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ ├── ssh_server_fork.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ │ └── sshnetcat.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ └── progress.make │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── exec │ │ │ ├── libssh_scp │ │ │ ├── libsshpp │ │ │ ├── libsshpp_noexcept │ │ │ ├── samplesftp │ │ │ ├── samplessh │ │ │ ├── samplesshd-kbdint │ │ │ ├── scp_download │ │ │ ├── senddata │ │ │ ├── ssh_server_fork │ │ │ └── sshnetcat │ │ ├── include │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ └── libssh │ │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ └── progress.marks │ │ │ │ ├── Makefile │ │ │ │ └── cmake_install.cmake │ │ ├── install_manifest.txt │ │ ├── libssh-build-tree-settings.cmake │ │ ├── libssh-config-version.cmake │ │ ├── libssh-config.cmake │ │ ├── libssh.pc │ │ ├── libssh_threads.pc │ │ └── src │ │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── progress.marks │ │ │ ├── ssh_shared.dir │ │ │ │ ├── C.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ └── ssh_static.dir │ │ │ │ ├── C.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── libssh.so │ │ │ ├── libssh.so.4 │ │ │ ├── libssh.so.4.4.1 │ │ │ └── threads │ │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── progress.marks │ │ │ ├── ssh_threads_shared.dir │ │ │ │ ├── C.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ └── ssh_threads_static.dir │ │ │ │ ├── C.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ └── progress.make │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── libssh_threads.so │ │ │ ├── libssh_threads.so.4 │ │ │ └── libssh_threads.so.4.4.1 │ ├── cmake │ │ └── Modules │ │ │ ├── AddCMockaTest.cmake │ │ │ ├── COPYING-CMAKE-SCRIPTS │ │ │ ├── CheckCCompilerFlagSSP.cmake │ │ │ ├── DefineCMakeDefaults.cmake │ │ │ ├── DefineCompilerFlags.cmake │ │ │ ├── DefineInstallationPaths.cmake │ │ │ ├── DefinePlatformDefaults.cmake │ │ │ ├── FindArgp.cmake │ │ │ ├── FindCMocka.cmake │ │ │ ├── FindGCrypt.cmake │ │ │ ├── FindGSSAPI.cmake │ │ │ ├── FindNSIS.cmake │ │ │ ├── FindNaCl.cmake │ │ │ ├── MacroEnsureOutOfSourceBuild.cmake │ │ │ └── UseDoxygen.cmake │ ├── config.h.cmake │ ├── doc │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── authentication.dox │ │ ├── command.dox │ │ ├── curve25519-sha256@libssh.org.txt │ │ ├── forwarding.dox │ │ ├── guided_tour.dox │ │ ├── introduction.dox │ │ ├── linking.dox │ │ ├── mainpage.dox │ │ ├── scp.dox │ │ ├── sftp.dox │ │ ├── shell.dox │ │ ├── tbd.dox │ │ └── threading.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── authentication.c │ │ ├── connect_ssh.c │ │ ├── examples_common.h │ │ ├── exec.c │ │ ├── knownhosts.c │ │ ├── libssh_scp.c │ │ ├── libsshpp.cpp │ │ ├── libsshpp_noexcept.cpp │ │ ├── proxy.c │ │ ├── sample.c │ │ ├── samplesftp.c │ │ ├── samplesshd-cb.c │ │ ├── samplesshd-kbdint.c │ │ ├── scp_download.c │ │ ├── senddata.c │ │ ├── ssh_server_fork.c │ │ └── sshnetcat.c │ ├── include │ │ ├── CMakeLists.txt │ │ └── libssh │ │ │ ├── CMakeLists.txt │ │ │ ├── agent.h │ │ │ ├── auth.h │ │ │ ├── bignum.h │ │ │ ├── bind.h │ │ │ ├── blf.h │ │ │ ├── buffer.h │ │ │ ├── callbacks.h │ │ │ ├── channels.h │ │ │ ├── crc32.h │ │ │ ├── crypto.h │ │ │ ├── curve25519.h │ │ │ ├── dh.h │ │ │ ├── ecdh.h │ │ │ ├── ed25519.h │ │ │ ├── fe25519.h │ │ │ ├── ge25519.h │ │ │ ├── gssapi.h │ │ │ ├── kex.h │ │ │ ├── keys.h │ │ │ ├── knownhosts.h │ │ │ ├── legacy.h │ │ │ ├── libcrypto.h │ │ │ ├── libgcrypt.h │ │ │ ├── libssh.h │ │ │ ├── libsshpp.hpp │ │ │ ├── messages.h │ │ │ ├── misc.h │ │ │ ├── options.h │ │ │ ├── packet.h │ │ │ ├── pcap.h │ │ │ ├── pki.h │ │ │ ├── pki_priv.h │ │ │ ├── poll.h │ │ │ ├── priv.h │ │ │ ├── sc25519.h │ │ │ ├── scp.h │ │ │ ├── server.h │ │ │ ├── session.h │ │ │ ├── sftp.h │ │ │ ├── socket.h │ │ │ ├── ssh1.h │ │ │ ├── ssh2.h │ │ │ ├── string.h │ │ │ ├── threads.h │ │ │ └── wrapper.h │ ├── libssh-build-tree-settings.cmake.in │ ├── libssh-config-version.cmake.in │ ├── libssh-config.cmake.in │ ├── libssh.pc.cmake │ ├── libssh_threads.pc.cmake │ ├── src │ │ ├── CMakeLists.txt │ │ ├── agent.c │ │ ├── auth.c │ │ ├── auth1.c │ │ ├── base64.c │ │ ├── bignum.c │ │ ├── bind.c │ │ ├── buffer.c │ │ ├── callbacks.c │ │ ├── channels.c │ │ ├── channels1.c │ │ ├── client.c │ │ ├── config.c │ │ ├── connect.c │ │ ├── crc32.c │ │ ├── curve25519.c │ │ ├── dh.c │ │ ├── ecdh.c │ │ ├── error.c │ │ ├── external │ │ │ ├── bcrypt_pbkdf.c │ │ │ ├── blowfish.c │ │ │ ├── curve25519_ref.c │ │ │ ├── ed25519.c │ │ │ ├── fe25519.c │ │ │ ├── ge25519.c │ │ │ ├── ge25519_base.data │ │ │ └── sc25519.c │ │ ├── gcrypt_missing.c │ │ ├── getpass.c │ │ ├── gssapi.c │ │ ├── gzip.c │ │ ├── init.c │ │ ├── kex.c │ │ ├── kex1.c │ │ ├── known_hosts.c │ │ ├── legacy.c │ │ ├── libcrypto.c │ │ ├── libgcrypt.c │ │ ├── log.c │ │ ├── match.c │ │ ├── messages.c │ │ ├── misc.c │ │ ├── options.c │ │ ├── packet.c │ │ ├── packet1.c │ │ ├── packet_cb.c │ │ ├── packet_crypt.c │ │ ├── pcap.c │ │ ├── pki.c │ │ ├── pki_container_openssh.c │ │ ├── pki_crypto.c │ │ ├── pki_ed25519.c │ │ ├── pki_gcrypt.c │ │ ├── poll.c │ │ ├── scp.c │ │ ├── server.c │ │ ├── session.c │ │ ├── sftp.c │ │ ├── sftpserver.c │ │ ├── socket.c │ │ ├── string.c │ │ ├── threads.c │ │ ├── threads │ │ │ ├── CMakeLists.txt │ │ │ └── pthread.c │ │ └── wrapper.c │ └── tests │ │ ├── CMakeLists.txt │ │ ├── authentication.c │ │ ├── benchmarks │ │ ├── CMakeLists.txt │ │ ├── bench1.sh │ │ ├── bench2.sh │ │ ├── bench_raw.c │ │ ├── bench_scp.c │ │ ├── bench_sftp.c │ │ ├── benchmarks.c │ │ ├── benchmarks.h │ │ └── latency.c │ │ ├── chmodtest.c │ │ ├── client │ │ ├── CMakeLists.txt │ │ ├── torture_algorithms.c │ │ ├── torture_auth.c │ │ ├── torture_connect.c │ │ ├── torture_forward.c │ │ ├── torture_knownhosts.c │ │ ├── torture_proxycommand.c │ │ ├── torture_request_env.c │ │ ├── torture_session.c │ │ ├── torture_sftp_dir.c │ │ ├── torture_sftp_read.c │ │ └── torture_sftp_static.c │ │ ├── cmdline.c │ │ ├── connection.c │ │ ├── ctest-default.cmake │ │ ├── generate.py │ │ ├── keys │ │ └── .ssh │ │ │ └── authorized_keys │ │ ├── pkd │ │ ├── CMakeLists.txt │ │ ├── pkd_client.h │ │ ├── pkd_daemon.c │ │ ├── pkd_daemon.h │ │ ├── pkd_hello.c │ │ ├── pkd_keyutil.c │ │ ├── pkd_keyutil.h │ │ ├── pkd_util.c │ │ └── pkd_util.h │ │ ├── sftp_stress │ │ └── main.c │ │ ├── test_exec.c │ │ ├── test_pcap.c │ │ ├── test_socket.c │ │ ├── test_ssh_bind_accept_fd.c │ │ ├── test_tunnel.c │ │ ├── tests.h │ │ ├── torture.c │ │ ├── torture.h │ │ ├── unittests │ │ ├── CMakeLists.txt │ │ ├── torture_buffer.c │ │ ├── torture_callbacks.c │ │ ├── torture_channel.c │ │ ├── torture_init.c │ │ ├── torture_isipaddr.c │ │ ├── torture_keyfiles.c │ │ ├── torture_list.c │ │ ├── torture_misc.c │ │ ├── torture_options.c │ │ ├── torture_pki.c │ │ ├── torture_pki_ed25519.c │ │ ├── torture_rand.c │ │ └── torture_server_x11.c │ │ └── valgrind.supp ├── loginutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── README │ ├── add-remove-shell.c │ ├── addgroup.c │ ├── adduser.c │ ├── chpasswd.c │ ├── cryptpw.c │ ├── deluser.c │ ├── getty.c │ ├── login.c │ ├── passwd.c │ ├── su.c │ ├── sulogin.c │ └── vlock.c ├── mailutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── mail.c │ ├── mail.h │ ├── makemime.c │ ├── popmaildir.c │ ├── reformime.c │ └── sendmail.c ├── mirai.list ├── miscutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── adjtimex.c │ ├── adler32.c │ ├── aescrypt.c │ ├── arcnet.h │ ├── atmuni31.h │ ├── authentication.c │ ├── bangrab.c │ ├── bbconfig.c │ ├── bcrypt.c │ ├── bd.c │ ├── beep.c │ ├── beer.c │ ├── beleth │ │ ├── Makefile │ │ ├── README.md │ │ ├── beleth.c │ │ ├── beleth.h │ │ ├── lists.c │ │ ├── lists.h │ │ ├── ssh.c │ │ ├── ssh.h │ │ └── wordlist.txt │ ├── bindtty.c │ ├── blacknurse.c │ ├── blowfish.c │ ├── blowfish.h │ ├── boink.c │ ├── bonk.c │ ├── bpf_dump.c │ ├── bpf_image.c │ ├── brute_ssh.c │ ├── chargen.c │ ├── chat.c │ ├── chrt.c │ ├── coke.c │ ├── compress.c │ ├── config.h │ ├── connect_ssh.c │ ├── conseal.c │ ├── conspy.c │ ├── cowroot.c │ ├── crc32.c │ ├── crc32.h │ ├── crond.c │ ├── crontab.c │ ├── crunch.c │ ├── crypthash.c │ ├── dc.c │ ├── dcd3c.c │ ├── defines.h │ ├── deflate.c │ ├── deflate.h │ ├── devfsd.c │ ├── devmem.c │ ├── dhclient.c │ ├── dhgenprime.c │ ├── dlpisubs.c │ ├── dlpisubs.h │ ├── dnsamp.c │ ├── dpsc.c │ ├── dpss.c │ ├── dtlsclient.c │ ├── dump.c │ ├── ecdsa.c │ ├── eject.c │ ├── endian.c │ ├── error.c │ ├── esen.c │ ├── etherent.c │ ├── ethertype.h │ ├── extract.h │ ├── fad-getad.c │ ├── fad-gifc.c │ ├── fad-glifc.c │ ├── fawx.c │ ├── fbsplash.c │ ├── fbsplash.cfg │ ├── fenc.c │ ├── file │ ├── flash_eraseall.c │ ├── flash_lock_unlock.c │ ├── flashcp.c │ ├── frozen.c │ ├── frozen.h │ ├── functions.h │ ├── gencode.c │ ├── gencode.h │ ├── genericsum.c │ ├── genkey.c │ ├── gewse.c │ ├── gewse5.c │ ├── goldeneye.c │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── hashtable.c │ ├── hashtable.h │ ├── hashtableseed.c │ ├── hdparm.c │ ├── hide.c │ ├── hole.c │ ├── hydra.c │ ├── hydra │ │ ├── bfg.c │ │ ├── bfg.h │ │ ├── crc32.c │ │ ├── crc32.h │ │ ├── d3des.c │ │ ├── d3des.h │ │ ├── hmacmd5.c │ │ ├── hmacmd5.h │ │ ├── hydra-afp.c │ │ ├── hydra-asterisk.c │ │ ├── hydra-cisco-enable.c │ │ ├── hydra-cisco.c │ │ ├── hydra-cvs.c │ │ ├── hydra-firebird.c │ │ ├── hydra-ftp.c │ │ ├── hydra-http-form.c │ │ ├── hydra-http-proxy-urlenum.c │ │ ├── hydra-http-proxy.c │ │ ├── hydra-http.c │ │ ├── hydra-icq.c │ │ ├── hydra-imap.c │ │ ├── hydra-irc.c │ │ ├── hydra-ldap.c │ │ ├── hydra-mod.c │ │ ├── hydra-mod.h │ │ ├── hydra-mssql.c │ │ ├── hydra-mysql.c │ │ ├── hydra-ncp.c │ │ ├── hydra-nntp.c │ │ ├── hydra-oracle-listener.c │ │ ├── hydra-oracle-sid.c │ │ ├── hydra-oracle.c │ │ ├── hydra-pcanywhere.c │ │ ├── hydra-pcnfs.c │ │ ├── hydra-pop3.c │ │ ├── hydra-postgres.c │ │ ├── hydra-rdp.c │ │ ├── hydra-redis.c │ │ ├── hydra-rexec.c │ │ ├── hydra-rlogin.c │ │ ├── hydra-rsh.c │ │ ├── hydra-rtsp.c │ │ ├── hydra-s7-300.c │ │ ├── hydra-sapr3.c │ │ ├── hydra-sip.c │ │ ├── hydra-smb.c │ │ ├── hydra-smtp-enum.c │ │ ├── hydra-smtp.c │ │ ├── hydra-snmp.c │ │ ├── hydra-socks5.c │ │ ├── hydra-ssh.c │ │ ├── hydra-sshkey.c │ │ ├── hydra-svn.c │ │ ├── hydra-teamspeak.c │ │ ├── hydra-telnet.c │ │ ├── hydra-time.c │ │ ├── hydra-vmauthd.c │ │ ├── hydra-vnc.c │ │ ├── hydra-xmpp.c │ │ ├── hydra.h │ │ ├── libpq-fe.h │ │ ├── ntlm.c │ │ ├── ntlm.h │ │ ├── performance.h │ │ ├── postgres_ext.h │ │ ├── pw-inspector.c │ │ ├── rdp.h │ │ ├── sasl.c │ │ └── sasl.h │ ├── i2c_tools.c │ ├── ieee80211.h │ ├── includes.h │ ├── inet.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── inotifyd.c │ ├── ionice.c │ ├── jansson.h │ ├── jansson_config.h │ ├── jansson_private.h │ ├── jolt.c │ ├── jshon.c │ ├── keys.c │ ├── kissofdeath.c │ ├── kkill.c │ ├── knbot.c │ ├── knownhosts.c │ ├── land.c │ ├── last.c │ ├── last_fancy.c │ ├── latierra.c │ ├── less.c │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── blacklist.c │ │ ├── blacklist.h │ │ ├── constraint.c │ │ ├── constraint.h │ │ ├── csv.c │ │ ├── csv.h │ │ ├── includes.h │ │ ├── lockfd.c │ │ ├── lockfd.h │ │ ├── logger.c │ │ ├── logger.h │ │ ├── pbm.c │ │ ├── pbm.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── random.c │ │ ├── random.h │ │ ├── redis.c │ │ ├── redis.h │ │ ├── rijndael-alg-fst.c │ │ ├── rijndael-alg-fst.h │ │ ├── types.h │ │ ├── util.c │ │ ├── util.h │ │ ├── xalloc.c │ │ └── xalloc.h │ ├── lizbot.c │ ├── lizserv.c │ ├── llc.h │ ├── load.c │ ├── lookup3.h │ ├── makedevs.c │ ├── man.c │ ├── med │ │ ├── listModules.c │ │ ├── medusa-net.c │ │ ├── medusa-net.h │ │ ├── medusa-thread-pool.c │ │ ├── medusa-thread-pool.h │ │ ├── medusa-thread-ssl.c │ │ ├── medusa-thread-ssl.h │ │ ├── medusa-trace.c │ │ ├── medusa-trace.h │ │ ├── medusa-utils.c │ │ ├── medusa-utils.h │ │ ├── medusa.h │ │ ├── modsrc │ │ │ ├── afp.c │ │ │ ├── cvs.c │ │ │ ├── d3des.c │ │ │ ├── d3des.h │ │ │ ├── ftp.c │ │ │ ├── hmacmd5.c │ │ │ ├── hmacmd5.h │ │ │ ├── http-digest.c │ │ │ ├── http-digest.h │ │ │ ├── http.c │ │ │ ├── imap.c │ │ │ ├── module.h │ │ │ ├── mssql.c │ │ │ ├── mysql.c │ │ │ ├── ncp.c │ │ │ ├── nntp.c │ │ │ ├── ntlm.c │ │ │ ├── ntlm.h │ │ │ ├── pcanywhere.c │ │ │ ├── pop3.c │ │ │ ├── postgres.c │ │ │ ├── rdp.c │ │ │ ├── rexec.c │ │ │ ├── rlogin.c │ │ │ ├── rsh.c │ │ │ ├── sha1.c │ │ │ ├── sha1.h │ │ │ ├── smbnt.c │ │ │ ├── smtp-vrfy.c │ │ │ ├── smtp.c │ │ │ ├── snmp.c │ │ │ ├── ssh.c │ │ │ ├── svn.c │ │ │ ├── telnet.c │ │ │ ├── vmauthd.c │ │ │ ├── vnc.c │ │ │ ├── web-form.c │ │ │ └── wrapper.c │ │ ├── test │ │ │ └── max_thread_test.c │ │ └── uthash.h │ ├── medusa.c │ ├── memory.c │ ├── microcom.c │ ├── mountpoint.c │ ├── mq.c │ ├── mq.c~ │ ├── mqsh.c │ ├── mqtte.c │ ├── mqtte.c~ │ ├── mscan.c │ ├── mscan │ │ ├── crypto-base64.c │ │ ├── crypto-base64.h │ │ ├── crypto-blackrock2.c │ │ ├── event-timeout.c │ │ ├── event-timeout.h │ │ ├── in-binary.c │ │ ├── in-binary.h │ │ ├── in-filter.c │ │ ├── in-filter.h │ │ ├── in-report.c │ │ ├── in-report.h │ │ ├── logger.c │ │ ├── logger.h │ │ ├── main-conf.c │ │ ├── main-dedup.c │ │ ├── main-dedup.h │ │ ├── main-globals.h │ │ ├── main-initadapter.c │ │ ├── main-listscan.c │ │ ├── main-ptrace.c │ │ ├── main-ptrace.h │ │ ├── main-readrange.c │ │ ├── main-readrange.h │ │ ├── main-src.c │ │ ├── main-src.h │ │ ├── main-status.c │ │ ├── main-status.h │ │ ├── main-throttle.c │ │ ├── main-throttle.h │ │ ├── masscan-app.c │ │ ├── masscan-app.h │ │ ├── masscan-status.h │ │ ├── masscan-version.h │ │ ├── masscan.h │ │ ├── out-binary.c │ │ ├── out-certs.c │ │ ├── out-grepable.c │ │ ├── out-json.c │ │ ├── out-null.c │ │ ├── out-record.h │ │ ├── out-redis.c │ │ ├── out-text.c │ │ ├── out-unicornscan.c │ │ ├── out-xml.c │ │ ├── output.c │ │ ├── output.h │ │ ├── packet-queue.h │ │ ├── pixie-backtrace.c │ │ ├── pixie-backtrace.h │ │ ├── pixie-file.c │ │ ├── pixie-file.h │ │ ├── pixie-sockets.h │ │ ├── pixie-threads.c │ │ ├── pixie-threads.h │ │ ├── pixie-timer.c │ │ ├── pixie-timer.h │ │ ├── proto-arp.c │ │ ├── proto-arp.h │ │ ├── proto-banner1.c │ │ ├── proto-banner1.h │ │ ├── proto-banout.c │ │ ├── proto-banout.h │ │ ├── proto-dns-parse.h │ │ ├── proto-dns.c │ │ ├── proto-dns.h │ │ ├── proto-ftp.c │ │ ├── proto-ftp.h │ │ ├── proto-http.c │ │ ├── proto-http.h │ │ ├── proto-icmp.c │ │ ├── proto-icmp.h │ │ ├── proto-imap4.c │ │ ├── proto-imap4.h │ │ ├── proto-interactive.c │ │ ├── proto-interactive.h │ │ ├── proto-netbios.c │ │ ├── proto-netbios.h │ │ ├── proto-ntp.c │ │ ├── proto-ntp.h │ │ ├── proto-pop3.c │ │ ├── proto-pop3.h │ │ ├── proto-preprocess.c │ │ ├── proto-preprocess.h │ │ ├── proto-sctp.c │ │ ├── proto-sctp.h │ │ ├── proto-smtp.c │ │ ├── proto-smtp.h │ │ ├── proto-snmp.c │ │ ├── proto-snmp.h │ │ ├── proto-ssh.c │ │ ├── proto-ssh.h │ │ ├── proto-ssl-test.c │ │ ├── proto-ssl.c │ │ ├── proto-ssl.h │ │ ├── proto-tcp-telnet.c │ │ ├── proto-tcp-telnet.h │ │ ├── proto-tcp.c │ │ ├── proto-tcp.h │ │ ├── proto-udp.c │ │ ├── proto-udp.h │ │ ├── proto-vnc.c │ │ ├── proto-vnc.h │ │ ├── proto-x509.c │ │ ├── proto-x509.h │ │ ├── proto-zeroaccess.c │ │ ├── proto-zeroaccess.h │ │ ├── rand-blackrock.c │ │ ├── rand-blackrock.h │ │ ├── rand-lcg.c │ │ ├── rand-lcg.h │ │ ├── rand-primegen.c │ │ ├── rand-primegen.h │ │ ├── ranges.c │ │ ├── ranges.h │ │ ├── rawsock-adapter.h │ │ ├── rawsock-arp.c │ │ ├── rawsock-getif.c │ │ ├── rawsock-getip.c │ │ ├── rawsock-getmac.c │ │ ├── rawsock-getroute.c │ │ ├── rawsock-pcapfile.c │ │ ├── rawsock-pcapfile.h │ │ ├── rawsock-pfring.c │ │ ├── rawsock-pfring.h │ │ ├── rawsock.c │ │ ├── rawsock.h │ │ ├── rte-ring.c │ │ ├── rte-ring.h │ │ ├── script-heartbleed.c │ │ ├── script-ntp-monlist.c │ │ ├── script-sslv3.c │ │ ├── script.c │ │ ├── script.h │ │ ├── siphash24.c │ │ ├── siphash24.h │ │ ├── smack.h │ │ ├── smack1.c │ │ ├── smackqueue.c │ │ ├── smackqueue.h │ │ ├── string_s.c │ │ ├── string_s.h │ │ ├── syn-cookie.c │ │ ├── syn-cookie.h │ │ ├── templ-payloads.c │ │ ├── templ-payloads.h │ │ ├── templ-pkt.c │ │ ├── templ-pkt.h │ │ ├── templ-port.h │ │ ├── unusedparm.h │ │ ├── xring.c │ │ └── xring.h │ ├── mt.c │ ├── nametoaddr.c │ ├── nametoaddr.h │ ├── nandwrite.c │ ├── ncrack │ │ ├── Buf.c │ │ ├── Buf.cc │ │ ├── Connection.c │ │ ├── Connection.cc │ │ ├── NcrackOps.c │ │ ├── NcrackOps.cc │ │ ├── NcrackOutputTable.c │ │ ├── NcrackOutputTable.cc │ │ ├── Service.c │ │ ├── Service.cc │ │ ├── ServiceGroup.c │ │ ├── ServiceGroup.cc │ │ ├── Target.c │ │ ├── Target.cc │ │ ├── TargetGroup.c │ │ ├── TargetGroup.cc │ │ ├── crypto.c │ │ ├── crypto.cc │ │ ├── file │ │ ├── http.c │ │ ├── http.cc │ │ ├── http_digest.c │ │ ├── http_digest.cc │ │ ├── nbase │ │ │ ├── CHANGELOG │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── acinclude.m4 │ │ │ ├── config.log │ │ │ ├── config.status │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── getaddrinfo.c │ │ │ ├── getnameinfo.c │ │ │ ├── getopt.c │ │ │ ├── getopt.h │ │ │ ├── inet_ntop.c │ │ │ ├── inet_pton.c │ │ │ ├── nbase.h │ │ │ ├── nbase.vcxproj │ │ │ ├── nbase_addrset.c │ │ │ ├── nbase_addrset.h │ │ │ ├── nbase_config.h │ │ │ ├── nbase_config.h.in │ │ │ ├── nbase_crc32ct.h │ │ │ ├── nbase_ipv6.h │ │ │ ├── nbase_memalloc.c │ │ │ ├── nbase_misc.c │ │ │ ├── nbase_rnd.c │ │ │ ├── nbase_str.c │ │ │ ├── nbase_time.c │ │ │ ├── nbase_winconfig.h │ │ │ ├── nbase_winunix.c │ │ │ ├── nbase_winunix.h │ │ │ ├── snprintf.c │ │ │ ├── strcasecmp.c │ │ │ └── test │ │ │ │ ├── nmakefile │ │ │ │ └── test-escape_windows_command_arg.c │ │ ├── ncrack.c │ │ ├── ncrack.cc │ │ ├── ncrack_error.c │ │ ├── ncrack_error.cc │ │ ├── ncrack_input.c │ │ ├── ncrack_input.cc │ │ ├── ncrack_resume.c │ │ ├── ncrack_resume.cc │ │ ├── ncrack_tty.c │ │ ├── ncrack_tty.cc │ │ ├── nsock │ │ │ ├── examples │ │ │ │ ├── Makefile │ │ │ │ ├── README │ │ │ │ ├── nsock_telnet.c │ │ │ │ └── nsock_test_timers.c │ │ │ ├── include │ │ │ │ ├── nsock.h │ │ │ │ ├── nsock_config.h │ │ │ │ ├── nsock_config.h.in │ │ │ │ └── nsock_winconfig.h │ │ │ ├── nsock.vcxproj │ │ │ ├── src │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── acinclude.m4 │ │ │ │ ├── aclocal.m4 │ │ │ │ ├── config.log │ │ │ │ ├── config.status │ │ │ │ ├── configure │ │ │ │ ├── configure.ac │ │ │ │ ├── engine_epoll.c │ │ │ │ ├── engine_kqueue.c │ │ │ │ ├── engine_poll.c │ │ │ │ ├── engine_select.c │ │ │ │ ├── error.c │ │ │ │ ├── error.h │ │ │ │ ├── filespace.c │ │ │ │ ├── filespace.h │ │ │ │ ├── gh_heap.c │ │ │ │ ├── gh_heap.h │ │ │ │ ├── gh_list.h │ │ │ │ ├── makefile.dep │ │ │ │ ├── netutils.c │ │ │ │ ├── netutils.h │ │ │ │ ├── nsock_connect.c │ │ │ │ ├── nsock_core.c │ │ │ │ ├── nsock_engines.c │ │ │ │ ├── nsock_event.c │ │ │ │ ├── nsock_internal.h │ │ │ │ ├── nsock_iod.c │ │ │ │ ├── nsock_log.c │ │ │ │ ├── nsock_log.h │ │ │ │ ├── nsock_pcap.c │ │ │ │ ├── nsock_pcap.h │ │ │ │ ├── nsock_pool.c │ │ │ │ ├── nsock_proxy.c │ │ │ │ ├── nsock_proxy.h │ │ │ │ ├── nsock_read.c │ │ │ │ ├── nsock_ssl.c │ │ │ │ ├── nsock_ssl.h │ │ │ │ ├── nsock_timers.c │ │ │ │ ├── nsock_write.c │ │ │ │ ├── proxy_http.c │ │ │ │ └── proxy_socks4.c │ │ │ └── tests │ │ │ │ ├── Makefile │ │ │ │ ├── Makefile.in │ │ │ │ ├── README │ │ │ │ ├── basic.c │ │ │ │ ├── cancel.c │ │ │ │ ├── connect.c │ │ │ │ ├── ghheaps.c │ │ │ │ ├── ghlists.c │ │ │ │ ├── logs.c │ │ │ │ ├── run_tests.sh │ │ │ │ ├── test-common.h │ │ │ │ ├── tests_main.c │ │ │ │ └── timer.c │ │ ├── opensshlib │ │ │ ├── Makefile │ │ │ ├── Makefile.in │ │ │ ├── aclocal.m4 │ │ │ ├── addrmatch.c │ │ │ ├── arc4random.c │ │ │ ├── audit.h │ │ │ ├── auth.h │ │ │ ├── authfd.h │ │ │ ├── authfile.h │ │ │ ├── base64.c │ │ │ ├── base64.h │ │ │ ├── bcrypt_pbkdf.c │ │ │ ├── blf.h │ │ │ ├── blocks.c │ │ │ ├── blowfish.c │ │ │ ├── bsd-asprintf.c │ │ │ ├── bsd-cray.h │ │ │ ├── bsd-cygwin_util.h │ │ │ ├── bsd-misc.c │ │ │ ├── bsd-misc.h │ │ │ ├── bsd-nextstep.h │ │ │ ├── bsd-poll.h │ │ │ ├── bsd-setres_id.h │ │ │ ├── bsd-snprintf.c │ │ │ ├── bsd-statvfs.h │ │ │ ├── bsd-waitpid.h │ │ │ ├── bufaux.c │ │ │ ├── bufbn.c │ │ │ ├── buffer.c │ │ │ ├── buffer.h │ │ │ ├── buildpkg.sh │ │ │ ├── buildpkg.sh.in │ │ │ ├── canohost.h │ │ │ ├── chacha.c │ │ │ ├── chacha.h │ │ │ ├── chacha_private.h │ │ │ ├── channels.h │ │ │ ├── charclass.h │ │ │ ├── cipher-3des1.c │ │ │ ├── cipher-aes.c │ │ │ ├── cipher-aesctr.c │ │ │ ├── cipher-aesctr.h │ │ │ ├── cipher-bf1.c │ │ │ ├── cipher-chachapoly.c │ │ │ ├── cipher-chachapoly.h │ │ │ ├── cipher-ctr.c │ │ │ ├── cipher.c │ │ │ ├── cipher.h │ │ │ ├── cleanup.c │ │ │ ├── compat.c │ │ │ ├── compat.h │ │ │ ├── config.guess │ │ │ ├── config.h │ │ │ ├── config.h.in │ │ │ ├── config.log │ │ │ ├── config.status │ │ │ ├── config.sub │ │ │ ├── configure │ │ │ ├── configure.ac │ │ │ ├── crc32.c │ │ │ ├── crc32.h │ │ │ ├── crypto_api.h │ │ │ ├── deattack.c │ │ │ ├── deattack.h │ │ │ ├── defines.h │ │ │ ├── dh.c │ │ │ ├── dh.h │ │ │ ├── digest-libc.c │ │ │ ├── digest-openssl.c │ │ │ ├── digest.h │ │ │ ├── dispatch.h │ │ │ ├── ed25519.c │ │ │ ├── entropy.h │ │ │ ├── explicit_bzero.c │ │ │ ├── fake-rfc2553.h │ │ │ ├── fatal.c │ │ │ ├── fe25519.c │ │ │ ├── fe25519.h │ │ │ ├── ge25519.c │ │ │ ├── ge25519.h │ │ │ ├── ge25519_base.data │ │ │ ├── getopt.h │ │ │ ├── getrrsetbyname.h │ │ │ ├── glob.h │ │ │ ├── hash.c │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ ├── hostfile.h │ │ │ ├── includes.h │ │ │ ├── install-sh │ │ │ ├── kex.c │ │ │ ├── kex.h │ │ │ ├── kexc25519.c │ │ │ ├── kexc25519c.c │ │ │ ├── kexdh.c │ │ │ ├── kexdhc.c │ │ │ ├── kexecdh.c │ │ │ ├── kexecdhc.c │ │ │ ├── kexgex.c │ │ │ ├── kexgexc.c │ │ │ ├── key.c │ │ │ ├── key.h │ │ │ ├── log.c │ │ │ ├── log.h │ │ │ ├── mac.c │ │ │ ├── mac.h │ │ │ ├── match.c │ │ │ ├── match.h │ │ │ ├── md-sha256.c │ │ │ ├── md5.h │ │ │ ├── misc.c │ │ │ ├── misc.h │ │ │ ├── moduli.c │ │ │ ├── monitor.h │ │ │ ├── msg.h │ │ │ ├── myproposal.h │ │ │ ├── opacket.c │ │ │ ├── opacket.h │ │ │ ├── openbsd-compat.h │ │ │ ├── openssh.h │ │ │ ├── openssh.vcxproj │ │ │ ├── opensshlib.h │ │ │ ├── openssl-compat.h │ │ │ ├── packet.c │ │ │ ├── packet.h │ │ │ ├── pathnames.h │ │ │ ├── platform.c │ │ │ ├── platform.h │ │ │ ├── poly1305.c │ │ │ ├── poly1305.h │ │ │ ├── port-aix.h │ │ │ ├── port-irix.h │ │ │ ├── port-linux.h │ │ │ ├── port-solaris.h │ │ │ ├── port-tun.h │ │ │ ├── port-uw.h │ │ │ ├── readconf.h │ │ │ ├── readpassphrase.h │ │ │ ├── reallocarray.c │ │ │ ├── rijndael.c │ │ │ ├── rijndael.h │ │ │ ├── rmd160.h │ │ │ ├── rsa.c │ │ │ ├── rsa.h │ │ │ ├── sc25519.c │ │ │ ├── sc25519.h │ │ │ ├── sha1.h │ │ │ ├── sha2.c │ │ │ ├── sha2.h │ │ │ ├── sigact.h │ │ │ ├── smult_curve25519_ref.c │ │ │ ├── ssh-dss.c │ │ │ ├── ssh-ecdsa.c │ │ │ ├── ssh-ed25519.c │ │ │ ├── ssh-rsa.c │ │ │ ├── ssh.c │ │ │ ├── ssh.h │ │ │ ├── ssh1.h │ │ │ ├── ssh2.h │ │ │ ├── sshbuf-getput-basic.c │ │ │ ├── sshbuf-getput-crypto.c │ │ │ ├── sshbuf-misc.c │ │ │ ├── sshbuf.c │ │ │ ├── sshbuf.h │ │ │ ├── sshconnect.c │ │ │ ├── sshconnect.h │ │ │ ├── sshconnect2.c │ │ │ ├── ssherr.c │ │ │ ├── ssherr.h │ │ │ ├── sshkey.c │ │ │ ├── sshkey.h │ │ │ ├── strlcat.c │ │ │ ├── strlcpy.c │ │ │ ├── strsep.c │ │ │ ├── strtonum.c │ │ │ ├── sys-queue.h │ │ │ ├── sys-tree.h │ │ │ ├── timingsafe_bcmp.c │ │ │ ├── uidswap.h │ │ │ ├── umac.c │ │ │ ├── umac.h │ │ │ ├── uuencode.c │ │ │ ├── uuencode.h │ │ │ ├── verify.c │ │ │ ├── vis.c │ │ │ ├── vis.h │ │ │ ├── winfixssh.h │ │ │ ├── xmalloc.c │ │ │ └── xmalloc.h │ │ ├── output.c │ │ ├── output.cc │ │ ├── services.c │ │ ├── services.cc │ │ ├── targets.c │ │ ├── targets.cc │ │ ├── timing.c │ │ ├── timing.cc │ │ ├── utils.c │ │ └── utils.cc │ ├── nestea.c │ ├── netscan.c │ ├── newtear.c │ ├── nlpid.h │ ├── ntpdos.c │ ├── optimize.c │ ├── orgasm.c │ ├── ottf.c │ ├── packunpack.c │ ├── patator.c │ ├── pcap-bpf.c │ ├── pcap-bpf.h │ ├── pcap-bt-linux.c │ ├── pcap-bt-linux.h │ ├── pcap-bt-monitor-linux.c │ ├── pcap-bt-monitor-linux.h │ ├── pcap-common.c │ ├── pcap-common.h │ ├── pcap-dag.c │ ├── pcap-dag.h │ ├── pcap-dbus.c │ ├── pcap-dbus.h │ ├── pcap-dlpi.c │ ├── pcap-dos.c │ ├── pcap-dos.h │ ├── pcap-enet.c │ ├── pcap-int.h │ ├── pcap-libdlpi.c │ ├── pcap-linux.c │ ├── pcap-namedb.h │ ├── pcap-netfilter-linux.c │ ├── pcap-netfilter-linux.h │ ├── pcap-new.c │ ├── pcap-nit.c │ ├── pcap-null.c │ ├── pcap-pf.c │ ├── pcap-rpcap.c │ ├── pcap-rpcap.h │ ├── pcap-septel.c │ ├── pcap-septel.h │ ├── pcap-sita.c │ ├── pcap-sita.h │ ├── pcap-snf.c │ ├── pcap-snf.h │ ├── pcap-snit.c │ ├── pcap-snoop.c │ ├── pcap-stdinc.h │ ├── pcap-tc.c │ ├── pcap-tc.h │ ├── pcap-usb-linux.c │ ├── pcap-usb-linux.h │ ├── pcap-win32.c │ ├── pcap.c │ ├── pcap.h │ ├── pel.c │ ├── pepsi.c │ ├── pkdecrypt.c │ ├── pkencrypt.c │ ├── pksign.c │ ├── pong.c │ ├── portability.h │ ├── ppp.h │ ├── prism.c │ ├── proxcat.c │ ├── pubclient.c │ ├── pud.c │ ├── raidautorun.c │ ├── randip.c │ ├── raped.c │ ├── readahead.c │ ├── readme │ ├── readme.md │ ├── readme.spike │ ├── remote-ext.h │ ├── rfkill.c │ ├── rsadecrypt.c │ ├── rsaencrypt.c │ ├── rsagenkey.c │ ├── rsasign.c │ ├── rsaverify.c │ ├── runlevel.c │ ├── rwfile.c │ ├── rx.c │ ├── savefile.c │ ├── scp.c │ ├── setserial.c │ ├── setsid.c │ ├── sevone.c │ ├── sf-pcap-ng.c │ ├── sf-pcap-ng.h │ ├── sf-pcap.c │ ├── sf-pcap.h │ ├── sftp.c │ ├── smurf.c │ ├── snmpdos.c │ ├── sockstress.c │ ├── sockutils.c │ ├── sockutils.h │ ├── spiffit.c │ ├── spike.sh │ ├── sping.c │ ├── ssh.c │ ├── sshtrix │ │ ├── checks.c │ │ ├── checks.h │ │ ├── error.c │ │ ├── error.h │ │ ├── file.c │ │ ├── file.h │ │ ├── help.c │ │ ├── help.h │ │ ├── init.c │ │ ├── init.h │ │ ├── job.c │ │ ├── job.h │ │ ├── report.c │ │ ├── report.h │ │ ├── signals.c │ │ ├── signals.h │ │ ├── ssh.c │ │ ├── ssh.h │ │ ├── sshtrix.c │ │ ├── sshtrix.h │ │ ├── verbose.h │ │ ├── wordlist.c │ │ ├── wordlist.h │ │ ├── wrapper.c │ │ └── wrapper.h │ ├── sslclient2.c │ ├── ssyn2.c │ ├── strbuffer.c │ ├── strbuffer.h │ ├── strconv.c │ ├── stream.c │ ├── strings.c │ ├── subclient.c │ ├── sudp.c │ ├── sunatmpos.h │ ├── syndrop.c │ ├── synk4 │ ├── synk4.c │ ├── synscan.c │ ├── taskset.c │ ├── teardrop.c │ ├── time.c │ ├── timeout.c │ ├── torloris.c │ ├── trees.c │ ├── trees.h │ ├── ts3.c │ ├── tsh.c │ ├── tsh │ │ ├── aes.h │ │ ├── pel.h │ │ ├── sha1.h │ │ ├── tsh.h │ │ └── tshd.h │ ├── tshaes.c │ ├── tshd.c │ ├── tshsha1.c │ ├── ttysize.c │ ├── ubi_tools.c │ ├── udpdata.c │ ├── udpspoof.c │ ├── uncompr.c │ ├── utf.c │ ├── utf.h │ ├── value.c │ ├── volname.c │ ├── wall.c │ ├── watchdog.c │ ├── wingatecrash.c │ ├── wrapbf.c │ ├── wrapzl.c │ ├── xersex.c │ ├── xersextcp.c │ ├── xorpipe.c │ ├── xxd.c │ ├── zconf.h │ ├── ziggy.c │ ├── zlib.h │ ├── zmap │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── CMakeVersion.txt │ │ ├── aesrand.c │ │ ├── aesrand.h │ │ ├── blacklist.c │ │ ├── blacklist.h │ │ ├── constraint.c │ │ ├── constraint.h │ │ ├── csv.c │ │ ├── csv.h │ │ ├── cyclic.c │ │ ├── cyclic.h │ │ ├── expression.c │ │ ├── expression.h │ │ ├── fieldset.c │ │ ├── fieldset.h │ │ ├── filter.c │ │ ├── filter.h │ │ ├── get_gateway-bsd.h │ │ ├── get_gateway-linux.h │ │ ├── get_gateway.c │ │ ├── get_gateway.h │ │ ├── includes.h │ │ ├── iterator.c │ │ ├── iterator.h │ │ ├── lexer.l │ │ ├── lockfd.c │ │ ├── lockfd.h │ │ ├── logger.c │ │ ├── logger.h │ │ ├── monitor.c │ │ ├── monitor.h │ │ ├── output_modules │ │ │ ├── module_csv.c │ │ │ ├── module_csv.h │ │ │ ├── module_json.c │ │ │ ├── module_json.h │ │ │ ├── module_mongodb.c │ │ │ ├── module_redis_csv.c │ │ │ ├── module_redis_csv.h │ │ │ ├── module_redis_packed.c │ │ │ ├── module_redis_packed.h │ │ │ ├── output_modules.c │ │ │ └── output_modules.h │ │ ├── parser.y │ │ ├── pbm.c │ │ ├── pbm.h │ │ ├── probe_modules │ │ │ ├── aesrand.h │ │ │ ├── blacklist.h │ │ │ ├── constraint.h │ │ │ ├── csv.h │ │ │ ├── cyclic.h │ │ │ ├── expression.h │ │ │ ├── fieldset.h │ │ │ ├── filter.h │ │ │ ├── get_gateway-bsd.h │ │ │ ├── get_gateway-linux.h │ │ │ ├── get_gateway.h │ │ │ ├── includes.h │ │ │ ├── iterator.h │ │ │ ├── lockfd.h │ │ │ ├── logger.h │ │ │ ├── module_bacnet.c │ │ │ ├── module_bacnet.h │ │ │ ├── module_dns.c │ │ │ ├── module_dns.h │ │ │ ├── module_icmp_echo.c │ │ │ ├── module_icmp_echo_time.c │ │ │ ├── module_ntp.c │ │ │ ├── module_ntp.h │ │ │ ├── module_tcp_cisco_backdoor.c │ │ │ ├── module_tcp_synackscan.c │ │ │ ├── module_tcp_synscan.c │ │ │ ├── module_tcp_synscan.h │ │ │ ├── module_udp.c │ │ │ ├── module_udp.h │ │ │ ├── module_upnp.c │ │ │ ├── monitor.h │ │ │ ├── packet.c │ │ │ ├── packet.h │ │ │ ├── pbm.h │ │ │ ├── probe_modules.c │ │ │ ├── probe_modules.h │ │ │ ├── queue.h │ │ │ ├── random.h │ │ │ ├── recv-internal.h │ │ │ ├── recv.h │ │ │ ├── redis.h │ │ │ ├── rijndael-alg-fst.h │ │ │ ├── send-bsd.h │ │ │ ├── send-linux.h │ │ │ ├── send-pfring.h │ │ │ ├── send.h │ │ │ ├── shard.h │ │ │ ├── socket.h │ │ │ ├── state.h │ │ │ ├── summary.h │ │ │ ├── types.h │ │ │ ├── util.h │ │ │ ├── validate.h │ │ │ └── xalloc.h │ │ ├── queue.c │ │ ├── queue.h │ │ ├── random.c │ │ ├── random.h │ │ ├── recv-internal.h │ │ ├── recv-pcap.c │ │ ├── recv-pfring.c │ │ ├── recv.c │ │ ├── recv.h │ │ ├── redis.c │ │ ├── redis.h │ │ ├── rijndael-alg-fst.c │ │ ├── rijndael-alg-fst.h │ │ ├── send-bsd.h │ │ ├── send-linux.h │ │ ├── send-pfring.h │ │ ├── send.c │ │ ├── send.h │ │ ├── shard.c │ │ ├── shard.h │ │ ├── socket-bsd.c │ │ ├── socket-linux.c │ │ ├── socket-pfring.c │ │ ├── socket.c │ │ ├── socket.h │ │ ├── state.c │ │ ├── state.h │ │ ├── summary.c │ │ ├── summary.h │ │ ├── tests │ │ │ └── test_harness.c │ │ ├── topt.c │ │ ├── topt.ggo.in │ │ ├── topt.h │ │ ├── topt_compat.c │ │ ├── types.h │ │ ├── util.c │ │ ├── util.h │ │ ├── validate.c │ │ ├── validate.h │ │ ├── xalloc.c │ │ ├── xalloc.h │ │ ├── zblacklist.1 │ │ ├── zblacklist.1.html │ │ ├── zblacklist.1.ronn │ │ ├── zblacklist.c │ │ ├── zbopt.c │ │ ├── zbopt.ggo.in │ │ ├── zbopt.h │ │ ├── zbopt_compat.c │ │ ├── ziterate.1 │ │ ├── ziterate.1.html │ │ ├── ziterate.1.ronn │ │ ├── ziterate.c │ │ ├── zitopt.c │ │ ├── zitopt.ggo.in │ │ ├── zitopt.h │ │ ├── zitopt_compat.c │ │ ├── zmap.1 │ │ ├── zmap.1.html │ │ ├── zmap.1.ronn │ │ ├── zmap.c │ │ ├── zmap_schema.py │ │ ├── zopt.c │ │ ├── zopt.ggo.in │ │ ├── zopt.h │ │ ├── zopt_compat.c │ │ ├── ztee.1 │ │ ├── ztee.1.html │ │ ├── ztee.1.ronn │ │ └── ztee.c │ ├── zutil.c │ └── zutil.h ├── modutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── depmod.c │ ├── depmod_process.sh │ ├── insmod.c │ ├── lsmod.c │ ├── modinfo.c │ ├── modprobe-small.c │ ├── modprobe.c │ ├── modutils-24.c │ ├── modutils.c │ ├── modutils.h │ └── rmmod.c ├── nc.c ├── networking │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── arp.c │ ├── arping.c │ ├── brctl.c │ ├── dnsd.c │ ├── ether-wake.c │ ├── ftpd.c │ ├── ftpgetput.c │ ├── hostname.c │ ├── httpd.c │ ├── httpd_indexcgi.c │ ├── httpd_post_upload.txt │ ├── httpd_ssi.c │ ├── ifconfig.c │ ├── ifenslave.c │ ├── ifplugd.c │ ├── ifupdown.c │ ├── inetd.c │ ├── interface.c │ ├── ip.c │ ├── ipcalc.c │ ├── isrv.c │ ├── isrv.h │ ├── isrv_identd.c │ ├── libiproute │ │ ├── Kbuild │ │ ├── Kbuild.src │ │ ├── ip_common.h │ │ ├── ip_parse_common_args.c │ │ ├── ipaddress.c │ │ ├── iplink.c │ │ ├── iproute.c │ │ ├── iprule.c │ │ ├── iptunnel.c │ │ ├── libnetlink.c │ │ ├── libnetlink.h │ │ ├── ll_addr.c │ │ ├── ll_map.c │ │ ├── ll_map.h │ │ ├── ll_proto.c │ │ ├── ll_types.c │ │ ├── rt_names.c │ │ ├── rt_names.h │ │ ├── rtm_map.c │ │ ├── rtm_map.h │ │ ├── utils.c │ │ └── utils.h │ ├── nameif.c │ ├── nbd-client.c │ ├── nc.c │ ├── nc_bloaty.c │ ├── netstat.c │ ├── nslookup.c │ ├── ntpd.c │ ├── ping.c │ ├── pscan.c │ ├── route.c │ ├── slattach.c │ ├── ssl_helper-wolfssl │ │ ├── 00cfg-wolfssl-3.6.8 │ │ ├── README │ │ ├── ssl_helper.c │ │ └── ssl_helper.sh │ ├── ssl_helper │ │ ├── README │ │ ├── ssl_helper.c │ │ └── ssl_helper.sh │ ├── tc.c │ ├── tcpudp.c │ ├── tcpudp_perhost.c │ ├── tcpudp_perhost.h │ ├── telnet.c │ ├── telnetd.c │ ├── telnetd.ctrlSQ.patch │ ├── tftp.c │ ├── traceroute.c │ ├── tunctl.c │ ├── udhcp │ │ ├── Config.in │ │ ├── Config.src │ │ ├── Kbuild │ │ ├── Kbuild.src │ │ ├── arpping.c │ │ ├── common.c │ │ ├── common.h │ │ ├── d6_common.h │ │ ├── d6_dhcpc.c │ │ ├── d6_packet.c │ │ ├── d6_socket.c │ │ ├── dhcpc.c │ │ ├── dhcpc.h │ │ ├── dhcpd.c │ │ ├── dhcpd.h │ │ ├── dhcprelay.c │ │ ├── domain_codec.c │ │ ├── dumpleases.c │ │ ├── files.c │ │ ├── leases.c │ │ ├── packet.c │ │ ├── signalpipe.c │ │ ├── socket.c │ │ └── static_leases.c │ ├── vconfig.c │ ├── wget.c │ ├── whois.c │ └── zcip.c ├── paused.conf ├── platform.h ├── printutils │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── lpd.c │ └── lpr.c ├── procps │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── free.c │ ├── fuser.c │ ├── iostat.c │ ├── kill.c │ ├── lsof.c │ ├── mpstat.c │ ├── nmeter.c │ ├── pgrep.c │ ├── pidof.c │ ├── pmap.c │ ├── powertop.c │ ├── ps.c │ ├── ps.posix │ ├── pstree.c │ ├── pwdx.c │ ├── renice.c │ ├── smemcap.c │ ├── sysctl.c │ ├── top.c │ ├── uptime.c │ └── watch.c ├── pw ├── qemu_multiarch_testing │ ├── README │ ├── extract_od_binary.sh │ ├── hdc.dir │ │ ├── build │ │ └── init │ ├── make-hdc-img.sh │ └── parallel-build-hdc-img.sh ├── runit │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── chpst.c │ ├── runit_lib.h │ ├── runsv.c │ ├── runsvdir.c │ ├── sv.c │ └── svlogd.c ├── scripts │ ├── Kbuild │ ├── Kbuild.include │ ├── Kbuild.src │ ├── Makefile.IMA │ ├── Makefile.build │ ├── Makefile.clean │ ├── Makefile.host │ ├── Makefile.lib │ ├── basic │ │ ├── Makefile │ │ ├── docproc │ │ ├── docproc.c │ │ ├── fixdep │ │ ├── fixdep.c │ │ ├── split-include │ │ └── split-include.c │ ├── bb_release │ ├── bloat-o-meter │ ├── checkhelp.awk │ ├── checkstack.pl │ ├── cleanup_printf2puts │ ├── ddos │ │ ├── dos.sh │ │ ├── dos2.sh │ │ ├── dos3.sh │ │ └── dos4.sh │ ├── echo.c │ ├── find_bad_common_bufsiz │ ├── find_stray_common_vars │ ├── find_stray_empty_lines │ ├── fix_ws.sh │ ├── gcc-version.sh │ ├── gen_build_files.sh │ ├── irc.sh │ ├── kconfig │ │ ├── Makefile │ │ ├── POTFILES.in │ │ ├── check.sh │ │ ├── conf │ │ ├── conf.c │ │ ├── confdata.c │ │ ├── expr.c │ │ ├── expr.h │ │ ├── gconf.c │ │ ├── gconf.glade │ │ ├── images.c │ │ ├── kconfig_load.c │ │ ├── kxgettext.c │ │ ├── lex.zconf.c │ │ ├── lex.zconf.c_shipped │ │ ├── lkc.h │ │ ├── lkc_proto.h │ │ ├── lxdialog │ │ │ ├── BIG.FAT.WARNING │ │ │ ├── Makefile │ │ │ ├── check-lxdialog.sh │ │ │ ├── checklist.c │ │ │ ├── colors.h │ │ │ ├── dialog.h │ │ │ ├── inputbox.c │ │ │ ├── lxdialog │ │ │ ├── lxdialog.c │ │ │ ├── menubox.c │ │ │ ├── msgbox.c │ │ │ ├── textbox.c │ │ │ ├── util.c │ │ │ └── yesno.c │ │ ├── mconf │ │ ├── mconf.c │ │ ├── menu.c │ │ ├── qconf.cc │ │ ├── qconf.h │ │ ├── symbol.c │ │ ├── util.c │ │ ├── zconf.gperf │ │ ├── zconf.hash.c │ │ ├── zconf.hash.c_shipped │ │ ├── zconf.l │ │ ├── zconf.tab.c │ │ ├── zconf.tab.c_shipped │ │ └── zconf.y │ ├── memusage │ ├── mkconfigs │ ├── mkdiff_obj │ ├── mkdiff_obj_bloat │ ├── mkmakefile │ ├── mqtte │ │ ├── exec.sh │ │ ├── handle.sh │ │ ├── mq.sh │ │ ├── mqsh.js │ │ └── run.sh │ ├── objsizes │ ├── randomtest │ ├── randomtest.loop │ ├── sample_pmap │ ├── showasm │ ├── test_make_O │ ├── test_make_clean │ └── trylink ├── selinux │ ├── .error │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── chcon.c │ ├── getenforce.c │ ├── getsebool.c │ ├── load_policy.c │ ├── matchpathcon.c │ ├── runcon.c │ ├── selinuxenabled.c │ ├── sestatus.c │ ├── setenforce.c │ ├── setfiles.c │ └── setsebool.c ├── shell │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── README │ ├── README.job │ ├── ash.c │ ├── ash_doc.txt │ ├── ash_ptr_hack.c │ ├── ash_test │ │ ├── ash-alias │ │ │ ├── alias.right │ │ │ └── alias.tests │ │ ├── ash-arith │ │ │ ├── README.ash │ │ │ ├── arith-bash1.right │ │ │ ├── arith-bash1.tests │ │ │ ├── arith-for.right │ │ │ ├── arith-for.testsx │ │ │ ├── arith.right │ │ │ ├── arith.tests │ │ │ ├── arith1.sub │ │ │ └── arith2.sub │ │ ├── ash-glob │ │ │ ├── glob1.right │ │ │ ├── glob1.tests │ │ │ ├── glob2.right │ │ │ ├── glob2.tests │ │ │ ├── glob3.right │ │ │ ├── glob3.tests │ │ │ ├── glob_and_assign.right │ │ │ ├── glob_and_assign.tests │ │ │ ├── glob_redir.right │ │ │ └── glob_redir.tests │ │ ├── ash-heredoc │ │ │ ├── heredoc.right │ │ │ ├── heredoc.tests │ │ │ ├── heredoc1.right │ │ │ └── heredoc1.tests │ │ ├── ash-invert │ │ │ ├── invert.right │ │ │ └── invert.tests │ │ ├── ash-misc │ │ │ ├── echo_write_error.right │ │ │ ├── echo_write_error.tests │ │ │ ├── last_amp.right │ │ │ ├── last_amp.tests │ │ │ ├── local1.right │ │ │ ├── local1.tests │ │ │ ├── nulltick1.right │ │ │ ├── nulltick1.tests │ │ │ ├── shift1.right │ │ │ ├── shift1.tests │ │ │ ├── source1.right │ │ │ ├── source1.tests │ │ │ ├── source2.right │ │ │ ├── source2.tests │ │ │ ├── tickquote1.right │ │ │ └── tickquote1.tests │ │ ├── ash-quoting │ │ │ ├── dollar_repl_slash_bash1.right │ │ │ ├── dollar_repl_slash_bash1.tests │ │ │ ├── dollar_squote_bash1.right │ │ │ └── dollar_squote_bash1.tests │ │ ├── ash-read │ │ │ ├── read_REPLY.right │ │ │ ├── read_REPLY.tests │ │ │ ├── read_ifs.right │ │ │ ├── read_ifs.tests │ │ │ ├── read_n.right │ │ │ ├── read_n.tests │ │ │ ├── read_r.right │ │ │ ├── read_r.tests │ │ │ ├── read_t.right │ │ │ └── read_t.tests │ │ ├── ash-redir │ │ │ ├── redir.right │ │ │ ├── redir.tests │ │ │ ├── redir2.right │ │ │ ├── redir2.tests │ │ │ ├── redir3.right │ │ │ ├── redir3.tests │ │ │ ├── redir4.right │ │ │ ├── redir4.tests │ │ │ ├── redir5.right │ │ │ ├── redir5.tests │ │ │ ├── redir6.right │ │ │ ├── redir6.tests │ │ │ ├── redir7.right │ │ │ ├── redir7.tests │ │ │ ├── redir8.right │ │ │ ├── redir8.tests │ │ │ ├── redir9.right │ │ │ ├── redir9.tests │ │ │ ├── redirA.right │ │ │ └── redirA.tests │ │ ├── ash-signals │ │ │ ├── reap1.right │ │ │ ├── reap1.tests │ │ │ ├── savetrap.right │ │ │ ├── savetrap.tests │ │ │ ├── sigint1.right │ │ │ ├── sigint1.tests │ │ │ ├── signal1.right │ │ │ ├── signal1.tests │ │ │ ├── signal2.right │ │ │ ├── signal2.tests │ │ │ ├── signal3.right │ │ │ ├── signal3.tests │ │ │ ├── signal4.right │ │ │ ├── signal4.tests │ │ │ ├── signal5.right │ │ │ ├── signal5.tests │ │ │ ├── signal6.right │ │ │ ├── signal6.tests │ │ │ ├── signal7.right │ │ │ ├── signal7.tests │ │ │ ├── signal8.right │ │ │ ├── signal8.tests │ │ │ ├── signal9.right │ │ │ └── signal9.tests │ │ ├── ash-standalone │ │ │ ├── noexec_gets_no_env.right │ │ │ ├── noexec_gets_no_env.tests │ │ │ ├── nofork_trashes_getopt.right │ │ │ ├── nofork_trashes_getopt.tests │ │ │ ├── var_standalone1.right │ │ │ └── var_standalone1.tests │ │ ├── ash-vars │ │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.right │ │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.tests │ │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right │ │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.tests │ │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.right │ │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.tests │ │ │ ├── var-expand-tilde-in-parameter-expansion.right │ │ │ ├── var-expand-tilde-in-parameter-expansion.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-1.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-1.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-2.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-2.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-3.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-3.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-4.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-4.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-5.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-5.tests │ │ │ ├── var-runtime-quote-detection.right │ │ │ ├── var-runtime-quote-detection.tests │ │ │ ├── var1.right │ │ │ ├── var1.tests │ │ │ ├── var2.right │ │ │ ├── var2.tests │ │ │ ├── var3.right │ │ │ ├── var3.tests │ │ │ ├── var_bash1.right │ │ │ ├── var_bash1.tests │ │ │ ├── var_bash2.right │ │ │ ├── var_bash2.tests │ │ │ ├── var_bash3.right │ │ │ ├── var_bash3.tests │ │ │ ├── var_bash4.right │ │ │ ├── var_bash4.tests │ │ │ ├── var_bash5.right │ │ │ ├── var_bash5.tests │ │ │ ├── var_leak.right │ │ │ ├── var_leak.tests │ │ │ ├── var_posix1.right │ │ │ └── var_posix1.tests │ │ ├── printenv.c │ │ ├── recho.c │ │ ├── run-all │ │ └── zecho.c │ ├── brace.txt │ ├── cttyhack.c │ ├── hush.c │ ├── hush_doc.txt │ ├── hush_leaktool.sh │ ├── hush_test │ │ ├── hush-arith │ │ │ ├── arith.right │ │ │ ├── arith.tests │ │ │ ├── arith1.sub │ │ │ └── arith2.sub │ │ ├── hush-bugs │ │ │ ├── and_or_and_backgrounding.right │ │ │ ├── and_or_and_backgrounding.tests │ │ │ ├── export_exp.right │ │ │ ├── export_exp.tests.disabled │ │ │ ├── var3.right │ │ │ └── var3.tests │ │ ├── hush-glob │ │ │ ├── bash_brace1.right │ │ │ ├── bash_brace1.tests │ │ │ ├── glob1.right │ │ │ ├── glob1.tests │ │ │ ├── glob2.right │ │ │ ├── glob2.tests │ │ │ ├── glob3.right │ │ │ ├── glob3.tests │ │ │ ├── glob_and_assign.right │ │ │ ├── glob_and_assign.tests │ │ │ ├── glob_redir.right │ │ │ └── glob_redir.tests │ │ ├── hush-leak │ │ │ ├── leak_argv1.right │ │ │ └── leak_argv1.tests │ │ ├── hush-misc │ │ │ ├── and-or.right │ │ │ ├── and-or.tests │ │ │ ├── assignment1.right │ │ │ ├── assignment1.tests │ │ │ ├── assignment2.rigth │ │ │ ├── assignment2.tests │ │ │ ├── assignment3.right │ │ │ ├── assignment3.tests │ │ │ ├── assignment4.right │ │ │ ├── assignment4.tests │ │ │ ├── break1.right │ │ │ ├── break1.tests │ │ │ ├── break2.right │ │ │ ├── break2.tests │ │ │ ├── break3.right │ │ │ ├── break3.tests │ │ │ ├── break4.right │ │ │ ├── break4.tests │ │ │ ├── break5.right │ │ │ ├── break5.tests │ │ │ ├── builtin1.right │ │ │ ├── builtin1.tests │ │ │ ├── case1.right │ │ │ ├── case1.tests │ │ │ ├── colon.right │ │ │ ├── colon.tests │ │ │ ├── compound.right │ │ │ ├── compound.tests │ │ │ ├── continue1.right │ │ │ ├── continue1.tests │ │ │ ├── continue2.right │ │ │ ├── continue2.tests │ │ │ ├── continue3.right │ │ │ ├── continue3.tests │ │ │ ├── echo_write_error.right │ │ │ ├── echo_write_error.tests │ │ │ ├── empty_args.right │ │ │ ├── empty_args.tests │ │ │ ├── empty_for.right │ │ │ ├── empty_for.tests │ │ │ ├── empty_for2.right │ │ │ ├── empty_for2.tests │ │ │ ├── env_and_func.right │ │ │ ├── env_and_func.tests │ │ │ ├── exec.right │ │ │ ├── exec.tests │ │ │ ├── exit1.right │ │ │ ├── exit1.tests │ │ │ ├── export-n.right │ │ │ ├── export-n.tests │ │ │ ├── export.right │ │ │ ├── export.tests │ │ │ ├── for_with_bslashes.right │ │ │ ├── for_with_bslashes.tests │ │ │ ├── for_with_keywords.right │ │ │ ├── for_with_keywords.tests │ │ │ ├── func1.right │ │ │ ├── func1.tests │ │ │ ├── func2.right │ │ │ ├── func2.tests │ │ │ ├── func3.right │ │ │ ├── func3.tests │ │ │ ├── func4.right │ │ │ ├── func4.tests │ │ │ ├── func5.right │ │ │ ├── func5.tests │ │ │ ├── func_args1.right │ │ │ ├── func_args1.tests │ │ │ ├── func_local1.right │ │ │ ├── func_local1.tests │ │ │ ├── func_local2.right │ │ │ ├── func_local2.tests │ │ │ ├── heredoc1.right │ │ │ ├── heredoc1.tests │ │ │ ├── heredoc2.right │ │ │ ├── heredoc2.tests │ │ │ ├── heredoc3.right │ │ │ ├── heredoc3.tests │ │ │ ├── heredoc_backslash1.right │ │ │ ├── heredoc_backslash1.tests │ │ │ ├── heredoc_huge.right │ │ │ ├── heredoc_huge.tests │ │ │ ├── if_false_exitcode.right │ │ │ ├── if_false_exitcode.tests │ │ │ ├── nommu1.right │ │ │ ├── nommu1.tests │ │ │ ├── nommu2.right │ │ │ ├── nommu2.tests │ │ │ ├── nommu3.right │ │ │ ├── nommu3.tests │ │ │ ├── opts1.right │ │ │ ├── opts1.tests │ │ │ ├── pid.right │ │ │ ├── pid.tests │ │ │ ├── pipefail.right │ │ │ ├── pipefail.tests │ │ │ ├── read.right │ │ │ ├── read.tests │ │ │ ├── redir1.right │ │ │ ├── redir1.tests │ │ │ ├── redir2.right │ │ │ ├── redir2.tests │ │ │ ├── redir3.right │ │ │ ├── redir3.tests │ │ │ ├── redir4.right │ │ │ ├── redir4.tests │ │ │ ├── redir5.right │ │ │ ├── redir5.tests │ │ │ ├── redir6.right │ │ │ ├── redir6.tests │ │ │ ├── return1.right │ │ │ ├── return1.tests │ │ │ ├── shift.right │ │ │ ├── shift.tests │ │ │ ├── sig_exitcode.right │ │ │ ├── sig_exitcode.tests │ │ │ ├── sigint1.right │ │ │ ├── sigint1.tests │ │ │ ├── source1.right │ │ │ ├── source1.tests │ │ │ ├── source2.right │ │ │ ├── source2.tests │ │ │ ├── syntax_err.right │ │ │ ├── syntax_err.tests │ │ │ ├── syntax_err_negate.right │ │ │ ├── syntax_err_negate.tests │ │ │ ├── unicode1.right │ │ │ ├── unicode1.tests │ │ │ ├── until1.right │ │ │ ├── until1.tests │ │ │ ├── while1.right │ │ │ ├── while1.tests │ │ │ ├── while2.right │ │ │ ├── while2.tests │ │ │ ├── while3.right │ │ │ ├── while3.tests │ │ │ ├── while4.right │ │ │ ├── while4.tests │ │ │ ├── while_in_subshell.right │ │ │ └── while_in_subshell.tests │ │ ├── hush-parsing │ │ │ ├── argv0.right │ │ │ ├── argv0.tests │ │ │ ├── brace1.right │ │ │ ├── brace1.tests │ │ │ ├── brace2.right │ │ │ ├── brace2.tests │ │ │ ├── comment1.right │ │ │ ├── comment1.tests │ │ │ ├── eol1.right │ │ │ ├── eol1.tests │ │ │ ├── escape1.right │ │ │ ├── escape1.tests │ │ │ ├── escape2.right │ │ │ ├── escape2.tests │ │ │ ├── escape3.right │ │ │ ├── escape3.tests │ │ │ ├── escape4.right │ │ │ ├── escape4.tests │ │ │ ├── escape5.right │ │ │ ├── escape5.tests │ │ │ ├── group1.right │ │ │ ├── group1.tests │ │ │ ├── group2.right │ │ │ ├── group2.tests │ │ │ ├── groups_and_keywords1.right │ │ │ ├── groups_and_keywords1.tests │ │ │ ├── negate.right │ │ │ ├── negate.tests │ │ │ ├── noeol.right │ │ │ ├── noeol.tests │ │ │ ├── noeol2.right │ │ │ ├── noeol2.tests │ │ │ ├── noeol3.right │ │ │ ├── noeol3.tests │ │ │ ├── process_subst.right │ │ │ ├── process_subst.tests │ │ │ ├── quote1.right │ │ │ ├── quote1.tests │ │ │ ├── quote2.right │ │ │ ├── quote2.tests │ │ │ ├── quote3.right │ │ │ ├── quote3.tests │ │ │ ├── quote4.right │ │ │ ├── quote4.tests │ │ │ ├── redir_space.right │ │ │ ├── redir_space.tests │ │ │ ├── starquoted.right │ │ │ ├── starquoted.tests │ │ │ ├── starquoted2.right │ │ │ └── starquoted2.tests │ │ ├── hush-psubst │ │ │ ├── emptytick.right │ │ │ ├── emptytick.tests │ │ │ ├── falsetick.right │ │ │ ├── falsetick.tests │ │ │ ├── tick.right │ │ │ ├── tick.tests │ │ │ ├── tick2.right │ │ │ ├── tick2.tests │ │ │ ├── tick3.right │ │ │ ├── tick3.tests │ │ │ ├── tick4.right │ │ │ ├── tick4.tests │ │ │ ├── tick5.right │ │ │ ├── tick5.tests │ │ │ ├── tick_huge.right │ │ │ └── tick_huge.tests │ │ ├── hush-read │ │ │ ├── read_REPLY.right │ │ │ ├── read_REPLY.tests │ │ │ ├── read_ifs.right │ │ │ ├── read_ifs.tests │ │ │ ├── read_n.right │ │ │ ├── read_n.tests │ │ │ ├── read_r.right │ │ │ ├── read_r.tests │ │ │ ├── read_t.right │ │ │ └── read_t.tests │ │ ├── hush-trap │ │ │ ├── catch.right │ │ │ ├── catch.tests │ │ │ ├── exit.right │ │ │ ├── exit.tests │ │ │ ├── save-ret.right │ │ │ ├── save-ret.tests │ │ │ ├── savetrap.right │ │ │ ├── savetrap.tests │ │ │ ├── signal7.right │ │ │ ├── signal7.tests │ │ │ ├── signal_read1.right │ │ │ ├── signal_read1.tests │ │ │ ├── signal_read2.right │ │ │ ├── signal_read2.tests │ │ │ ├── subshell.right │ │ │ ├── subshell.tests │ │ │ ├── usage.right │ │ │ └── usage.tests │ │ ├── hush-vars │ │ │ ├── empty.right │ │ │ ├── empty.tests │ │ │ ├── glob_and_vars.right │ │ │ ├── glob_and_vars.tests │ │ │ ├── param_expand_alt.right │ │ │ ├── param_expand_alt.tests │ │ │ ├── param_expand_assign.right │ │ │ ├── param_expand_assign.tests │ │ │ ├── param_expand_bash_substring.right │ │ │ ├── param_expand_bash_substring.tests │ │ │ ├── param_expand_default.right │ │ │ ├── param_expand_default.tests │ │ │ ├── param_expand_indicate_error.right │ │ │ ├── param_expand_indicate_error.tests │ │ │ ├── param_expand_len.right │ │ │ ├── param_expand_len.tests │ │ │ ├── param_glob.right │ │ │ ├── param_glob.tests │ │ │ ├── param_subshell.right │ │ │ ├── param_subshell.tests │ │ │ ├── star.right │ │ │ ├── star.tests │ │ │ ├── unset.right │ │ │ ├── unset.tests │ │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.right │ │ │ ├── var-do-not-collapse-arithmetic-expansion-at-parse-time.tests │ │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.right │ │ │ ├── var-do-not-expand-tilde-in-parameter-expansion-in-quotes.tests │ │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.right │ │ │ ├── var-do-not-quote-backslashes-in-parameter-expansions-outside-quotes.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-1.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-1.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-2.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-2.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-3.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-3.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-4.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-4.tests │ │ │ ├── var-pattern-replacement-in-parameter-expansion-5.right │ │ │ ├── var-pattern-replacement-in-parameter-expansion-5.tests │ │ │ ├── var-runtime-quote-detection.right │ │ │ ├── var-runtime-quote-detection.tests │ │ │ ├── var1.right │ │ │ ├── var1.tests │ │ │ ├── var2.right │ │ │ ├── var2.tests │ │ │ ├── var3.right │ │ │ ├── var3.tests │ │ │ ├── var_bash1.right │ │ │ ├── var_bash1.tests │ │ │ ├── var_bash2.right │ │ │ ├── var_bash2.tests │ │ │ ├── var_bash3.right │ │ │ ├── var_bash3.tests │ │ │ ├── var_bash4.right │ │ │ ├── var_bash4.tests │ │ │ ├── var_bash5.right │ │ │ ├── var_bash5.tests │ │ │ ├── var_bash6.right │ │ │ ├── var_bash6.tests │ │ │ ├── var_expand_in_assign.right │ │ │ ├── var_expand_in_assign.tests │ │ │ ├── var_expand_in_redir.right │ │ │ ├── var_expand_in_redir.tests │ │ │ ├── var_expand_on_ifs.right │ │ │ ├── var_expand_on_ifs.tests │ │ │ ├── var_in_pipes.right │ │ │ ├── var_in_pipes.tests │ │ │ ├── var_leaks.right │ │ │ ├── var_leaks.tests │ │ │ ├── var_posix1.right │ │ │ ├── var_posix1.tests │ │ │ ├── var_preserved.right │ │ │ ├── var_preserved.tests │ │ │ ├── var_serial.right │ │ │ ├── var_serial.tests │ │ │ ├── var_subst_in_for.right │ │ │ ├── var_subst_in_for.tests │ │ │ ├── var_unbackslash.right │ │ │ └── var_unbackslash.tests │ │ ├── hush-z_slow │ │ │ ├── leak_all1.right │ │ │ ├── leak_all1.tests │ │ │ ├── leak_all2.right │ │ │ ├── leak_all2.tests │ │ │ ├── leak_empty_tick.right │ │ │ ├── leak_empty_tick.tests │ │ │ ├── leak_heredoc1.right │ │ │ ├── leak_heredoc1.tests │ │ │ ├── leak_var.right │ │ │ ├── leak_var.tests │ │ │ ├── leak_var2.right │ │ │ ├── leak_var2.tests │ │ │ ├── leak_var3.right │ │ │ └── leak_var3.tests │ │ └── run-all │ ├── match.c │ ├── match.h │ ├── math.c │ ├── math.h │ ├── msh_test │ │ ├── msh-bugs │ │ │ ├── noeol3.right │ │ │ ├── noeol3.tests │ │ │ ├── process_subst.right │ │ │ ├── process_subst.tests │ │ │ ├── read.right │ │ │ ├── read.tests │ │ │ ├── shift.right │ │ │ ├── shift.tests │ │ │ ├── starquoted.right │ │ │ ├── starquoted.tests │ │ │ ├── syntax_err.right │ │ │ ├── syntax_err.tests │ │ │ ├── var_expand_in_assign.right │ │ │ ├── var_expand_in_assign.tests │ │ │ ├── var_expand_in_redir.right │ │ │ └── var_expand_in_redir.tests │ │ ├── msh-execution │ │ │ ├── exitcode_EACCES.right │ │ │ ├── exitcode_EACCES.tests │ │ │ ├── exitcode_ENOENT.right │ │ │ ├── exitcode_ENOENT.tests │ │ │ ├── many_continues.right │ │ │ ├── many_continues.tests │ │ │ ├── nested_break.right │ │ │ └── nested_break.tests │ │ ├── msh-misc │ │ │ ├── tick.right │ │ │ └── tick.tests │ │ ├── msh-parsing │ │ │ ├── argv0.right │ │ │ ├── argv0.tests │ │ │ ├── noeol.right │ │ │ ├── noeol.tests │ │ │ ├── noeol2.right │ │ │ ├── noeol2.tests │ │ │ ├── quote1.right │ │ │ ├── quote1.tests │ │ │ ├── quote2.right │ │ │ ├── quote2.tests │ │ │ ├── quote3.right │ │ │ ├── quote3.tests │ │ │ ├── quote4.right │ │ │ └── quote4.tests │ │ ├── msh-vars │ │ │ ├── star.right │ │ │ ├── star.tests │ │ │ ├── var.right │ │ │ ├── var.tests │ │ │ ├── var_subst_in_for.right │ │ │ └── var_subst_in_for.tests │ │ └── run-all │ ├── random.c │ ├── random.h │ ├── shell_common.c │ └── shell_common.h ├── sshscanner.sh ├── sysklogd │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── klogd.c │ ├── logger.c │ ├── logread.c │ ├── syslogd.c │ └── syslogd_and_logger.c ├── test.txt ├── testsuite │ ├── README │ ├── TODO │ ├── all_sourcecode.tests │ ├── ar.tests │ ├── ash.tests │ ├── awk.tests │ ├── awk_t1.tar.bz2 │ ├── basename │ │ ├── basename-does-not-remove-identical-extension │ │ └── basename-works │ ├── bunzip2.tests │ ├── bunzip2 │ │ ├── bunzip2-reads-from-standard-input │ │ ├── bunzip2-removes-compressed-file │ │ └── bzcat-does-not-remove-compressed-file │ ├── busybox.tests │ ├── bzcat.tests │ ├── cal.tests │ ├── cat │ │ ├── cat-prints-a-file │ │ └── cat-prints-a-file-and-standard-input │ ├── cmp │ │ └── cmp-detects-difference │ ├── comm.tests │ ├── cp.tests │ ├── cp │ │ ├── cp-RHL-does_not_preserve-links │ │ ├── cp-a-files-to-dir │ │ ├── cp-a-preserves-links │ │ ├── cp-copies-empty-file │ │ ├── cp-copies-large-file │ │ ├── cp-copies-small-file │ │ ├── cp-d-files-to-dir │ │ ├── cp-dev-file │ │ ├── cp-dir-create-dir │ │ ├── cp-dir-existing-dir │ │ ├── cp-does-not-copy-unreadable-file │ │ ├── cp-files-to-dir │ │ ├── cp-follows-links │ │ ├── cp-parents │ │ ├── cp-preserves-hard-links │ │ ├── cp-preserves-links │ │ └── cp-preserves-source-file │ ├── cpio.tests │ ├── cut.tests │ ├── cut │ │ ├── cut-cuts-a-character │ │ ├── cut-cuts-a-closed-range │ │ ├── cut-cuts-a-field │ │ ├── cut-cuts-an-open-range │ │ └── cut-cuts-an-unclosed-range │ ├── date │ │ ├── date-@-works │ │ ├── date-R-works │ │ ├── date-format-works │ │ ├── date-u-works │ │ ├── date-works │ │ └── date-works-1 │ ├── dc.tests │ ├── dd │ │ ├── dd-accepts-if │ │ ├── dd-accepts-of │ │ ├── dd-copies-from-standard-input-to-standard-output │ │ ├── dd-prints-count-to-standard-error │ │ └── dd-reports-write-errors │ ├── diff.tests │ ├── dirname │ │ ├── dirname-handles-absolute-path │ │ ├── dirname-handles-empty-path │ │ ├── dirname-handles-multiple-slashes │ │ ├── dirname-handles-relative-path │ │ ├── dirname-handles-root │ │ ├── dirname-handles-single-component │ │ └── dirname-works │ ├── du │ │ ├── du-h-works │ │ ├── du-k-works │ │ ├── du-l-works │ │ ├── du-m-works │ │ ├── du-s-works │ │ └── du-works │ ├── echo │ │ ├── echo-does-not-print-newline │ │ ├── echo-prints-argument │ │ ├── echo-prints-arguments │ │ ├── echo-prints-dash │ │ ├── echo-prints-newline │ │ ├── echo-prints-non-opts │ │ ├── echo-prints-slash-zero │ │ ├── echo-prints-slash_00041 │ │ ├── echo-prints-slash_0041 │ │ ├── echo-prints-slash_041 │ │ └── echo-prints-slash_41 │ ├── expand.tests │ ├── expand │ │ └── expand-works-like-GNU │ ├── expr │ │ ├── expr-big │ │ └── expr-works │ ├── false │ │ ├── false-is-silent │ │ └── false-returns-failure │ ├── find.tests │ ├── find │ │ └── find-supports-minus-xdev │ ├── fold.tests │ ├── grep.tests │ ├── gunzip.tests │ ├── gunzip │ │ └── gunzip-reads-from-standard-input │ ├── gzip │ │ ├── gzip-accepts-multiple-files │ │ ├── gzip-accepts-single-minus │ │ └── gzip-removes-original-file │ ├── head │ │ ├── head-n-works │ │ └── head-works │ ├── hostid │ │ └── hostid-works │ ├── hostname │ │ ├── hostname-d-works │ │ ├── hostname-i-works │ │ ├── hostname-s-works │ │ └── hostname-works │ ├── id │ │ ├── id-g-works │ │ ├── id-u-works │ │ ├── id-un-works │ │ └── id-ur-works │ ├── ln │ │ ├── ln-creates-hard-links │ │ ├── ln-creates-soft-links │ │ ├── ln-force-creates-hard-links │ │ ├── ln-force-creates-soft-links │ │ ├── ln-preserves-hard-links │ │ └── ln-preserves-soft-links │ ├── ls.mk_uni_tests │ ├── ls.tests │ ├── ls │ │ ├── ls-1-works │ │ ├── ls-h-works │ │ ├── ls-l-works │ │ └── ls-s-works │ ├── makedevs.device_table.txt │ ├── makedevs.tests │ ├── md5sum.tests │ ├── md5sum │ │ └── md5sum-verifies-non-binary-file │ ├── mdev.tests │ ├── mkdir │ │ ├── mkdir-makes-a-directory │ │ └── mkdir-makes-parent-directories │ ├── mkfs.minix.tests │ ├── mount.testroot │ ├── mount.tests │ ├── msh │ │ └── msh-supports-underscores-in-variable-names │ ├── mv │ │ ├── mv-files-to-dir │ │ ├── mv-follows-links │ │ ├── mv-moves-empty-file │ │ ├── mv-moves-file │ │ ├── mv-moves-hardlinks │ │ ├── mv-moves-large-file │ │ ├── mv-moves-small-file │ │ ├── mv-moves-symlinks │ │ ├── mv-moves-unreadable-files │ │ ├── mv-preserves-hard-links │ │ ├── mv-preserves-links │ │ ├── mv-refuses-mv-dir-to-subdir │ │ └── mv-removes-source-file │ ├── od.tests │ ├── parse.tests │ ├── patch.tests │ ├── pidof.tests │ ├── printf.tests │ ├── pwd │ │ └── pwd-prints-working-directory │ ├── readlink.tests │ ├── rm │ │ └── rm-removes-file │ ├── rmdir │ │ └── rmdir-removes-parent-directories │ ├── runtest │ ├── rx.tests │ ├── sed.tests │ ├── seq.tests │ ├── sha1sum.tests │ ├── sha256sum.tests │ ├── sha3sum.tests │ ├── sha512sum.tests │ ├── sort.tests │ ├── start-stop-daemon.tests │ ├── strings │ │ └── strings-works-like-GNU │ ├── sum.tests │ ├── tail.tests │ ├── tail │ │ ├── tail-n-works │ │ └── tail-works │ ├── tar.tests │ ├── tar │ │ ├── tar-archives-multiple-files │ │ ├── tar-complains-about-missing-file │ │ ├── tar-demands-at-least-one-ctx │ │ ├── tar-demands-at-most-one-ctx │ │ ├── tar-extracts-all-subdirs │ │ ├── tar-extracts-file │ │ ├── tar-extracts-from-standard-input │ │ ├── tar-extracts-multiple-files │ │ ├── tar-extracts-to-standard-output │ │ ├── tar-handles-cz-options │ │ ├── tar-handles-empty-include-and-non-empty-exclude-list │ │ ├── tar-handles-exclude-and-extract-lists │ │ ├── tar-handles-multiple-X-options │ │ ├── tar-handles-nested-exclude │ │ ├── tar_with_link_with_size │ │ └── tar_with_prefix_fields │ ├── taskset.tests │ ├── tee │ │ ├── tee-appends-input │ │ └── tee-tees-input │ ├── test.tests │ ├── testing.sh │ ├── touch │ │ ├── touch-creates-file │ │ ├── touch-does-not-create-file │ │ └── touch-touches-files-after-non-existent-file │ ├── tr.tests │ ├── tr │ │ ├── tr-d-alnum-works │ │ ├── tr-d-works │ │ ├── tr-non-gnu │ │ ├── tr-rejects-wrong-class │ │ └── tr-works │ ├── true │ │ ├── true-is-silent │ │ └── true-returns-success │ ├── umlwrapper.sh │ ├── uncompress.tests │ ├── unexpand.tests │ ├── unexpand │ │ └── unexpand-works-like-GNU │ ├── uniq.tests │ ├── unzip.tests │ ├── uptime │ │ └── uptime-works │ ├── uuencode.tests │ ├── wc │ │ ├── wc-counts-all │ │ ├── wc-counts-characters │ │ ├── wc-counts-lines │ │ ├── wc-counts-words │ │ └── wc-prints-longest-line-length │ ├── wget │ │ ├── wget--O-overrides--P │ │ ├── wget-handles-empty-path │ │ ├── wget-retrieves-google-index │ │ └── wget-supports--P │ ├── which │ │ └── which-uses-default-path │ ├── xargs.tests │ └── xargs │ │ └── xargs-works ├── util-linux │ ├── Config.in │ ├── Config.src │ ├── Kbuild │ ├── Kbuild.src │ ├── acpid.c │ ├── blkid.c │ ├── blockdev.c │ ├── dmesg.c │ ├── fatattr.c │ ├── fbset.c │ ├── fdformat.c │ ├── fdisk.c │ ├── fdisk_aix.c │ ├── fdisk_gpt.c │ ├── fdisk_osf.c │ ├── fdisk_sgi.c │ ├── fdisk_sun.c │ ├── findfs.c │ ├── flock.c │ ├── freeramdisk.c │ ├── fsck_minix.c │ ├── fstrim.c │ ├── getopt.c │ ├── hexdump.c │ ├── hwclock.c │ ├── ipcrm.c │ ├── ipcs.c │ ├── losetup.c │ ├── lspci.c │ ├── lsusb.c │ ├── mdev.c │ ├── minix.h │ ├── mkfs_ext2.c │ ├── mkfs_ext2.txt │ ├── mkfs_ext2_test.sh │ ├── mkfs_minix.c │ ├── mkfs_reiser.c │ ├── mkfs_vfat.c │ ├── mkswap.c │ ├── more.c │ ├── mount.c │ ├── pivot_root.c │ ├── rdate.c │ ├── rdev.c │ ├── readprofile.c │ ├── rev.c │ ├── rtcwake.c │ ├── script.c │ ├── scriptreplay.c │ ├── setarch.c │ ├── swaponoff.c │ ├── switch_root.c │ ├── uevent.c │ ├── umount.c │ └── volume_id │ │ ├── Config.in │ │ ├── Config.src │ │ ├── Kbuild │ │ ├── Kbuild.src │ │ ├── btrfs.c │ │ ├── cramfs.c │ │ ├── exfat.c │ │ ├── ext.c │ │ ├── f2fs.c │ │ ├── fat.c │ │ ├── get_devname.c │ │ ├── hfs.c │ │ ├── iso9660.c │ │ ├── jfs.c │ │ ├── linux_raid.c │ │ ├── linux_swap.c │ │ ├── luks.c │ │ ├── nilfs.c │ │ ├── ntfs.c │ │ ├── ocfs2.c │ │ ├── reiserfs.c │ │ ├── romfs.c │ │ ├── squashfs.c │ │ ├── sysv.c │ │ ├── udf.c │ │ ├── unused_highpoint.c │ │ ├── unused_hpfs.c │ │ ├── unused_isw_raid.c │ │ ├── unused_lsi_raid.c │ │ ├── unused_lvm.c │ │ ├── unused_mac.c │ │ ├── unused_minix.c │ │ ├── unused_msdos.c │ │ ├── unused_nvidia_raid.c │ │ ├── unused_promise_raid.c │ │ ├── unused_silicon_raid.c │ │ ├── unused_ufs.c │ │ ├── unused_via_raid.c │ │ ├── util.c │ │ ├── volume_id.c │ │ ├── volume_id_internal.h │ │ └── xfs.c └── z ├── lightaidra ├── Makefile ├── README.md ├── docs │ ├── CHANGELOG │ ├── HELP │ └── LICENSE ├── getbinaries.sh ├── include │ ├── attacks.h │ ├── config.h │ ├── headers.h │ ├── irc.h │ ├── main.h │ ├── requests.h │ ├── scan.h │ └── utils.h └── source │ ├── attacks.c │ ├── hide.c │ ├── irc.c │ ├── main.c │ ├── requests.c │ ├── scan.c │ └── utils.c ├── linux.wifatch ├── COPYING ├── README.md ├── bin │ ├── .net_bn │ └── .net_pl ├── bn │ ├── bnperl │ │ ├── Makefile.PL │ │ ├── bn.pm │ │ └── bn.xs │ ├── boot │ └── plpack.pm ├── cc │ ├── bin │ │ ├── backchannel │ │ ├── disinfect2 │ │ ├── domkpl │ │ ├── mkpl │ │ ├── mkseeds │ │ ├── mkwhisper │ │ ├── segscan │ │ ├── shscan │ │ ├── specimen-update │ │ ├── tnclient │ │ ├── tnget │ │ └── tnput │ └── bm │ │ ├── base.pm │ │ ├── crypto.pm │ │ ├── file.pm │ │ ├── nolimits.pm │ │ ├── plpacker.pm │ │ ├── pool.pm │ │ ├── socks.pm │ │ ├── specimen.pm │ │ └── tn.pm ├── pl │ ├── bn │ │ ├── auto.pm │ │ ├── back.pm │ │ ├── bnkill.pm │ │ ├── ccport.pm │ │ ├── cfg.pm │ │ ├── clean.pm │ │ ├── crypto.pm │ │ ├── db.pm │ │ ├── default.pm │ │ ├── dns.pm │ │ ├── event.pm │ │ ├── fileclient.pm │ │ ├── fileserver.pm │ │ ├── func.pm │ │ ├── hpv.pm │ │ ├── http.pm │ │ ├── io.pm │ │ ├── iptables.pm │ │ ├── lock.pm │ │ ├── log.pm │ │ ├── net.pm │ │ ├── ntp.pm │ │ ├── port.pm │ │ ├── proc.pm │ │ ├── random_init.pm │ │ ├── reexec.pm │ │ ├── run.pm │ │ ├── segscan.pm │ │ ├── ser.pm │ │ ├── speedtest.pm │ │ ├── storage.pm │ │ ├── synscan.pm │ │ ├── tcplex.pm │ │ ├── tnlogin.pm │ │ ├── watchdog.pm │ │ └── xx.pm │ ├── fn │ │ ├── bnkill.pl │ │ ├── cget.pl │ │ ├── check.pl │ │ ├── clean.pl │ │ ├── cset.pl │ │ ├── eval.pl │ │ ├── exec.pl │ │ ├── memeat.pl │ │ ├── random_init.pl │ │ ├── run.pl │ │ ├── sleep.pl │ │ ├── speedtest.pl │ │ ├── start.pl │ │ ├── tcptest.pl │ │ ├── test.pl │ │ └── unlink.pl │ ├── plinfo.pm │ ├── xx5 │ │ ├── load.pl │ │ └── upgrader.pm │ └── xx6 │ │ ├── dahua.pm │ │ ├── disinfect.pm │ │ ├── load.pl │ │ └── tn.pm └── tn │ ├── dl.c │ ├── keccak.c │ ├── pa.c │ ├── prconst.c.PL │ ├── rf.c │ ├── tinyutil.h │ ├── tn.c │ └── uclibc-tiny.h ├── lizkebab ├── Makefile ├── README.md └── src │ ├── Makefile │ ├── README.md │ ├── client.c │ └── server.c ├── mirai-botnet ├── ForumPost.md ├── ForumPost.txt ├── LICENSE.md ├── README.md ├── TUTORIAL.txt ├── dlr │ ├── build.sh │ ├── main.c │ └── release │ │ ├── dlr.arm │ │ ├── dlr.arm7 │ │ ├── dlr.m68k │ │ ├── dlr.mips │ │ ├── dlr.mpsl │ │ ├── dlr.ppc │ │ ├── dlr.sh4 │ │ └── dlr.spc ├── loader │ ├── bins │ │ ├── dlr.arm │ │ ├── dlr.arm7 │ │ ├── dlr.m68k │ │ ├── dlr.mips │ │ ├── dlr.mpsl │ │ ├── dlr.ppc │ │ ├── dlr.sh4 │ │ ├── dlr.spc │ │ └── dlr.x86 │ ├── build.debug.sh │ ├── build.sh │ └── src │ │ ├── binary.c │ │ ├── connection.c │ │ ├── headers │ │ ├── binary.h │ │ ├── connection.h │ │ ├── includes.h │ │ ├── server.h │ │ ├── telnet_info.h │ │ └── util.h │ │ ├── main.c │ │ ├── server.c │ │ ├── telnet_info.c │ │ └── util.c ├── mirai │ ├── bot │ │ ├── attack.c │ │ ├── attack.h │ │ ├── attack_app.c │ │ ├── attack_gre.c │ │ ├── attack_tcp.c │ │ ├── attack_udp.c │ │ ├── checksum.c │ │ ├── checksum.h │ │ ├── includes.h │ │ ├── killer.c │ │ ├── killer.h │ │ ├── main.c │ │ ├── protocol.h │ │ ├── rand.c │ │ ├── rand.h │ │ ├── resolv.c │ │ ├── resolv.h │ │ ├── scanner.c │ │ ├── scanner.h │ │ ├── table.c │ │ ├── table.h │ │ ├── util.c │ │ └── util.h │ ├── build.sh │ ├── cnc │ │ ├── admin.go │ │ ├── api.go │ │ ├── attack.go │ │ ├── bot.go │ │ ├── clientList.go │ │ ├── constants.go │ │ ├── database.go │ │ └── main.go │ ├── prompt.txt │ └── tools │ │ ├── badbot.c │ │ ├── enc.c │ │ ├── nogdb.c │ │ ├── scanListen.go │ │ ├── single_load.c │ │ └── wget.c └── scripts │ ├── cross-compile.sh │ ├── db.sql │ └── images │ └── BVc7qJs.png ├── pnscan ├── ChangeLog ├── LICENSE ├── Makefile ├── README ├── TODO ├── bm.c ├── bm.h ├── install-sh ├── ipsort ├── ipsort.1 ├── ipsort.sgml ├── pnscan.1 ├── pnscan.c ├── pnscan.sgml └── version.c └── randomware ├── LICENSE ├── QUESTIONS.md ├── README.md └── randomware.c /BASHLITE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/BASHLITE/README.md -------------------------------------------------------------------------------- /BASHLITE/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/BASHLITE/client.c -------------------------------------------------------------------------------- /BASHLITE/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/BASHLITE/server.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/README.md -------------------------------------------------------------------------------- /busybotnet/.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/.config -------------------------------------------------------------------------------- /busybotnet/.config.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/.config.old -------------------------------------------------------------------------------- /busybotnet/.config_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/.config_ -------------------------------------------------------------------------------- /busybotnet/.indent.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/.indent.pro -------------------------------------------------------------------------------- /busybotnet/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/AUTHORS -------------------------------------------------------------------------------- /busybotnet/Config.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/Config.in -------------------------------------------------------------------------------- /busybotnet/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/INSTALL -------------------------------------------------------------------------------- /busybotnet/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/LICENSE -------------------------------------------------------------------------------- /busybotnet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/Makefile -------------------------------------------------------------------------------- /busybotnet/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/README -------------------------------------------------------------------------------- /busybotnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/README.md -------------------------------------------------------------------------------- /busybotnet/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/TODO -------------------------------------------------------------------------------- /busybotnet/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/banner.txt -------------------------------------------------------------------------------- /busybotnet/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/build.sh -------------------------------------------------------------------------------- /busybotnet/creds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/creds -------------------------------------------------------------------------------- /busybotnet/examples/dnsd.conf: -------------------------------------------------------------------------------- 1 | thebox 192.168.1.5 2 | -------------------------------------------------------------------------------- /busybotnet/fjME: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/fjME -------------------------------------------------------------------------------- /busybotnet/hlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/hlog -------------------------------------------------------------------------------- /busybotnet/hme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/hme -------------------------------------------------------------------------------- /busybotnet/include/NUM_APPLETS.h: -------------------------------------------------------------------------------- 1 | #define NUM_APPLETS 447 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/MARKER: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybotnet/include/config/acpid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ACPID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/add/shell.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ADD_SHELL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/addgroup.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ADDGROUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/adduser.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ADDUSER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/adjtimex.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ADJTIMEX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/aescrypt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_AESCRYPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ar.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_AR 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/arp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ARP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/arping.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ARPING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/alias.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_ALIAS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/builtin/echo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_BUILTIN_ECHO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/builtin/printf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_BUILTIN_PRINTF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/builtin/test.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_BUILTIN_TEST 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/cmdcmd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_CMDCMD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/expand/prmt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_EXPAND_PRMT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/getopts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_GETOPTS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/help.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_HELP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/idle/timeout.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_IDLE_TIMEOUT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/job/control.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_JOB_CONTROL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/mail.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ASH_MAIL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/optimize/for/size.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_OPTIMIZE_FOR_SIZE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ash/random/support.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ASH_RANDOM_SUPPORT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/awk.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_AWK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bangrab.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_bangrab 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/base64.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BASE64 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/basename.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BASENAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bb/sysctl.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BB_SYSCTL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_bd 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/beep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BEEP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/beer.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BEER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/beleth.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BELETH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bindtty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BINDTTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/blacknurse.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BLACKNURSE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/blkid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BLKID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/blockdev.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BLOCKDEV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/boink.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BOINK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bonk.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BONK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bootchartd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BOOTCHARTD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/brctl.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BRCTL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/brute/ssh.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BRUTE_SSH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/build/libbusybox.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_BUILD_LIBBUSYBOX 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bunzip2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BUNZIP2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/bzip2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_BZIP2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cal.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CAL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/catv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CATV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chattr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHATTR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chcon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_CHCON 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chgrp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHGRP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chmod.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHMOD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chown.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHOWN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chpasswd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHPASSWD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chpst.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHPST 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chroot.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHROOT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chrt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHRT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/chvt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CHVT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cksum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CKSUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/clear.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CLEAR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cmp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/coke.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_COKE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/comm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_COMM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/conseal.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CONSEAL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/conspy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CONSPY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cowroot.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_cowroot 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cpio.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CPIO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/crond.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CROND 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/crontab.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CRONTAB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cross/compiler/prefix.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CROSS_COMPILER_PREFIX "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/crunch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CRUNCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/crypthash.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CRYPTHASH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cryptpw.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CRYPTPW 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cttyhack.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CTTYHACK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/cut.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_CUT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/date.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DATE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dcd3c.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DCD3C 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/deallocvt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DEALLOCVT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/debug.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEBUG 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/debug/pessimize.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEBUG_PESSIMIZE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/default/setfont/dir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DEFAULT_SETFONT_DIR "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/delgroup.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DELGROUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/deluser.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DELUSER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/depmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEPMOD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/desktop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DESKTOP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/devfsd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/devfsd/fg/np.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD_FG_NP 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/devfsd/modload.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD_MODLOAD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/devfsd/verbose.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DEVFSD_VERBOSE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/devmem.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DEVMEM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/df.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dhclient.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DHCLIENT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dhcprelay.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DHCPRELAY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dhgenprime.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DHGENPRIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/diff.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DIFF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dirname.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DIRNAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dmalloc.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DMALLOC 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dmesg.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DMESG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dnsamp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DNSAMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dnsd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DNSD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dos2unix.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DOS2UNIX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dpkg.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DPKG 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dpkg/deb.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DPKG_DEB 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dpsc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DPSC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dpss.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DPSS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dtlsclient.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_DTLSCLIENT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/du.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DU 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dumpkmap.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DUMPKMAP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/dumpleases.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_DUMPLEASES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ecdsa.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ECDSA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/echo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ECHO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ed.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ED 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/efence.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EFENCE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/eject.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EJECT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/env.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ENV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/envdir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ENVDIR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/envuidgid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ENVUIDGID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ether/wake.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ETHER_WAKE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/expand.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXPAND 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/expr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXPR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/expr/math/support/64.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXPR_MATH_SUPPORT_64 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/extra/cflags.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXTRA_CFLAGS "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/extra/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_EXTRA_COMPAT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/extra/ldflags.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXTRA_LDFLAGS "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/extra/ldlibs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_EXTRA_LDLIBS "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fakeidentd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FAKEIDENTD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/false.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FALSE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fatattr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FATATTR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fawx.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FAWX 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fbset.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FBSET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fbsplash.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FBSPLASH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fdflush.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FDFLUSH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fdformat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FDFORMAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fdisk.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FDISK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fdisk/support/large/disks.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FDISK_SUPPORT_LARGE_DISKS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/2/4/modules.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_2_4_MODULES 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/acpid/compat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_ACPID_COMPAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/adduser/to/group.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_ADDUSER_TO_GROUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/aix/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_AIX_LABEL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/allow/exec.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_ALLOW_EXEC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ar/create.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_AR_CREATE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ar/long/filenames.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_AR_LONG_FILENAMES 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/autowidth.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_AUTOWIDTH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/awk/libm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_AWK_LIBM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/bash/is/ash.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BASH_IS_ASH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/bash/is/hush.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BASH_IS_HUSH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/bash/is/none.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_BASH_IS_NONE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/beep/freq.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_BEEP_FREQ 4000 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/beep/length/ms.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_BEEP_LENGTH_MS 30 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/blkid/type.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BLKID_TYPE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/brctl/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_BRCTL_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/brctl/show.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_BRCTL_SHOW 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/buffers/go/in/bss.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_BUFFERS_GO_IN_BSS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/call/telinit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CALL_TELINIT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/chat/clr/abort.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CHAT_CLR_ABORT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/chat/implicit/cr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CHAT_IMPLICIT_CR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/chat/nofail.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CHAT_NOFAIL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/chat/tty/hifi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CHAT_TTY_HIFI 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/check/names.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CHECK_NAMES 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/clean/up.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_CLEAN_UP 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/compress/usage.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_COMPRESS_USAGE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/copybuf/kb.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_COPYBUF_KB 4 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/cp/long/options.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CP_LONG_OPTIONS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/cpio/o.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CPIO_O 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/cpio/p.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CPIO_P 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/crond/d.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_CROND_D 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/date/compat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DATE_COMPAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/date/isofmt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DATE_ISOFMT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/date/nano.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DATE_NANO 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/dc/libm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DC_LIBM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/dd/ibs/obs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DD_IBS_OBS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/dd/status.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DD_STATUS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/devfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_DEVFS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/devpts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DEVPTS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/df/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DF_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/diff/dir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DIFF_DIR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/dmesg/pretty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_DMESG_PRETTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/editing.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_EDITING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/editing/history.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_EDITING_HISTORY 255 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/editing/vi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_EDITING_VI 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/eject/scsi.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_EJECT_SCSI 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/env/long/options.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_ENV_LONG_OPTIONS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/etc/networks.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_ETC_NETWORKS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/extra/quiet.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_EXTRA_QUIET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fancy/echo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FANCY_ECHO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fancy/head.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FANCY_HEAD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fancy/ping.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FANCY_PING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fancy/sleep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FANCY_SLEEP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fancy/tail.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FANCY_TAIL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fast/top.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FAST_TOP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fbset/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FBSET_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fbset/readmode.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FBSET_READMODE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fdisk/advanced.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FDISK_ADVANCED 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/fdisk/writable.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FDISK_WRITABLE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/context.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_FIND_CONTEXT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/delete.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_DELETE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/depth.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_DEPTH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/exec.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_EXEC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/exec/plus.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_EXEC_PLUS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/group.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_GROUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/inum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_INUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/links.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_LINKS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/maxdepth.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_MAXDEPTH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/mmin.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_MMIN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/mtime.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_MTIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/newer.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_NEWER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/not.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_NOT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/paren.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_PAREN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/path.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_PATH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/perm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_PERM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/print0.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_PRINT0 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/prune.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_PRUNE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/regex.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_REGEX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/size.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_SIZE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/type.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_TYPE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/user.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_USER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/find/xdev.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FIND_XDEV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/float/sleep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FLOAT_SLEEP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ftp/write.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_FTP_WRITE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/getopt/long.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_GETOPT_LONG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/gpt/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GPT_LABEL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/grep/context.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_GREP_CONTEXT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/gzip/levels.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_GZIP_LEVELS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/have/rpc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HAVE_RPC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/hexdump/reverse.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HEXDUMP_REVERSE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/auth/md5.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_AUTH_MD5 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/basic/auth.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_BASIC_AUTH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/cgi.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_CGI 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/gzip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_GZIP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/proxy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_PROXY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/ranges.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_RANGES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/httpd/setuid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HTTPD_SETUID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/human/readable.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HUMAN_READABLE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/hwib.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_HWIB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ifupdown/ip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IFUPDOWN_IP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ifupdown/ipv4.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IFUPDOWN_IPV4 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ifupdown/ipv6.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IFUPDOWN_IPV6 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ifupdown/mapping.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IFUPDOWN_MAPPING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/individual.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INDIVIDUAL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/inetd/rpc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INETD_RPC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/init/coredumps.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INIT_COREDUMPS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/init/sctty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INIT_SCTTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/init/syslog.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INIT_SYSLOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/initrd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INITRD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/insmod/load/map.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INSMOD_LOAD_MAP 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/insmod/loadinkmem.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INSMOD_LOADINKMEM 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/insmod/try/mmap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_INSMOD_TRY_MMAP 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/installer.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_INSTALLER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ip/address.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IP_ADDRESS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ip/link.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IP_LINK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ip/rare/protocols.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_IP_RARE_PROTOCOLS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ip/route.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IP_ROUTE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ip/rule.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IP_RULE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ip/tunnel.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IP_TUNNEL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ipc/syslog.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IPC_SYSLOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ipcalc/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IPCALC_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ipv6.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_IPV6 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/kill/delay.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_KILL_DELAY 0 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/kill/removed.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_KILL_REMOVED 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/kmsg/syslog.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_KMSG_SYSLOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/last/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LAST_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/last/small.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LAST_SMALL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/brackets.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_BRACKETS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/dashcmd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_DASHCMD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/flags.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_FLAGS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/linenums.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_LINENUMS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/marks.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_MARKS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/regexp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_REGEXP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/truncate.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_TRUNCATE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/less/winch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LESS_WINCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/loadfont/psf2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LOADFONT_PSF2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/loadfont/raw.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LOADFONT_RAW 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ls/color.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_COLOR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ls/filetypes.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_FILETYPES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ls/recursive.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_RECURSIVE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ls/sortfiles.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_SORTFILES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ls/timestamps.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_TIMESTAMPS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ls/username.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_LS_USERNAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/lzma/fast.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_LZMA_FAST 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/makedevs/leaf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MAKEDEVS_LEAF 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mdev/conf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MDEV_CONF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mdev/exec.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MDEV_EXEC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mdev/rename.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MDEV_RENAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/minix2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MINIX2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mkswap/uuid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MKSWAP_UUID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/modutils/alias.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MODUTILS_ALIAS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/cifs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_CIFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/fake.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_FAKE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/flags.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_FLAGS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/fstab.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_FSTAB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/helpers.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MOUNT_HELPERS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/label.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_LABEL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/loop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_LOOP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/nfs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MOUNT_NFS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mount/verbose.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_MOUNT_VERBOSE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/mtab/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_MTAB_SUPPORT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/netstat/prg.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_NETSTAT_PRG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/netstat/wide.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_NETSTAT_WIDE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/nologin.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_NOLOGIN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/non/posix/cp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_NON_POSIX_CP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ntpd/conf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_NTPD_CONF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ntpd/server.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_NTPD_SERVER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/osf/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_OSF_LABEL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/pidfile.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_PIDFILE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/pidof/omit.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_PIDOF_OMIT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/pidof/single.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_PIDOF_SINGLE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/prefer/applets.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PREFER_APPLETS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ps/long.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PS_LONG 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ps/time.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_PS_TIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/ps/wide.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_PS_WIDE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/remote/log.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_REMOTE_LOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/resize/print.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_RESIZE_PRINT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/rtminmax.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_RTMINMAX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/runsvdir/log.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_RUNSVDIR_LOG 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/seamless/bz2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SEAMLESS_BZ2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/seamless/gz.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SEAMLESS_GZ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/seamless/lzma.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SEAMLESS_LZMA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/seamless/xz.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SEAMLESS_XZ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/seamless/z.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SEAMLESS_Z 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/securetty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SECURETTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sgi/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SGI_LABEL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sh/is/ash.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SH_IS_ASH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sh/is/hush.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_IS_HUSH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sh/is/none.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_IS_NONE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sh/nofork.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_NOFORK 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sh/standalone.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SH_STANDALONE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/shadowpasswds.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SHADOWPASSWDS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/shared/busybox.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SHARED_BUSYBOX 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/show/threads.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SHOW_THREADS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/skip/rootfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SKIP_ROOTFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sort/big.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SORT_BIG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/split/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SPLIT_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/stat/format.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_STAT_FORMAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/su/syslog.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SU_SYSLOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/suid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SUID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sun/label.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_SUN_LABEL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/swapon/pri.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SWAPON_PRI 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/sync/fancy.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SYNC_FANCY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/syslog.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SYSLOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/syslogd/cfg.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SYSLOGD_CFG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/syslogd/dup.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SYSLOGD_DUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/systemd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_SYSTEMD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tar/create.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TAR_CREATE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tar/from.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TAR_FROM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tar/selinux.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TAR_SELINUX 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/taskset/fancy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_TASKSET_FANCY 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/telnet/ttype.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TELNET_TTYPE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/test/64.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TEST_64 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tftp/get.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TFTP_GET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tftp/put.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TFTP_PUT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/top/decimals.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TOP_DECIMALS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/top/smp/cpu.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TOP_SMP_CPU 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/topmem.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TOPMEM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/touch/noderef.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TOUCH_NODEREF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/touch/susv3.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TOUCH_SUSV3 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tr/classes.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TR_CLASSES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tr/equiv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TR_EQUIV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/tunctl/ug.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_TUNCTL_UG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/udhcp/8021q.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_UDHCP_8021Q 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/udhcp/port.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UDHCP_PORT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/udhcp/rfc3397.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_UDHCP_RFC3397 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/udhcpc/arping.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_UDHCPC_ARPING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/umount/all.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_UMOUNT_ALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/unix/local.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_UNIX_LOCAL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/use/inittab.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_USE_INITTAB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/use/sendfile.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_USE_SENDFILE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/use/termios.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_USE_TERMIOS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/utmp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_UTMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/verbose.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VERBOSE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/verbose/usage.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VERBOSE_USAGE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/8bit.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_8BIT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/colon.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_COLON 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/dot/cmd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_DOT_CMD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/max/len.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_MAX_LEN 4096 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/readonly.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_READONLY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/regex/search.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FEATURE_VI_REGEX_SEARCH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/search.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_SEARCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/set.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_SET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/setopts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_SETOPTS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/undo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_UNDO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/undo/queue.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_UNDO_QUEUE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/win/resize.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_WIN_RESIZE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/vi/yankmark.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VI_YANKMARK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/ext.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_EXT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/f2fs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_F2FS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/fat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_FAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/hfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_HFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/jfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_JFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/luks.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_LUKS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/ntfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_NTFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/sysv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_SYSV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/udf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_UDF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/volumeid/xfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_VOLUMEID_XFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/wc/large.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_WC_LARGE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/wget/openssl.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_WGET_OPENSSL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/wget/timeout.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_WGET_TIMEOUT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/feature/wtmp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FEATURE_WTMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fenc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_fenc 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fgconsole.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FGCONSOLE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/find.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FIND 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/findfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FINDFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/first/system/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FIRST_SYSTEM_ID 100 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/flash/eraseall.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASH_ERASEALL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/flash/lock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASH_LOCK 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/flash/unlock.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASH_UNLOCK 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/flashcp.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_FLASHCP 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/flock.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FLOCK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fold.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FOLD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/free.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FREE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/freeramdisk.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FREERAMDISK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fsck.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FSCK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fsck/minix.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FSCK_MINIX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fstrim.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FSTRIM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fsync.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FSYNC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ftpd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FTPD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ftpget.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FTPGET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ftpput.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FTPPUT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/fuser.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_FUSER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/genericsum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GENERICSUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/genkey.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GENKEY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/getenforce.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GETENFORCE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/getopt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GETOPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/getsebool.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GETSEBOOL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/getty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GETTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/gewse.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GEWSE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/gewse5.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GEWSE5 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/goldeneye.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_GOLDENEYE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/grep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GREP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/groups.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GROUPS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/gunzip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GUNZIP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/gzip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GZIP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/gzip/fast.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_GZIP_FAST 0 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/halt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HALT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hdparm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HDPARM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/head.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HEAD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hexdump.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HEXDUMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hide.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_HIDE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hole.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_hole 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hostid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HOSTID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hostname.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HOSTNAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/httpd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HTTPD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/bash/compat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_BASH_COMPAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/brace/expansion.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_BRACE_EXPANSION 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/case.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_CASE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/export/n.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_EXPORT_N 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/functions.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_FUNCTIONS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/help.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_HELP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/if.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_IF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/interactive.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_INTERACTIVE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/job.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_JOB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/local.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_LOCAL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/loops.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_LOOPS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/mode/x.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_MODE_X 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/random/support.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_RANDOM_SUPPORT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/savehistory.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_SAVEHISTORY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hush/tick.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HUSH_TICK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hwclock.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HWCLOCK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/hydra.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_HYDRA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/i2cdetect.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_I2CDETECT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/i2cdump.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_I2CDUMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/i2cget.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_I2CGET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/i2cset.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_I2CSET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ifenslave.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IFENSLAVE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ifplugd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IFPLUGD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ifupdown.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IFUPDOWN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/include/susv2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INCLUDE_SUSv2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/inetd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INETD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/init.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INIT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/init/terminal/type.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INIT_TERMINAL_TYPE "linux" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/inotifyd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INOTIFYD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/insmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INSMOD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/install.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_INSTALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/install/applet/dont.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INSTALL_APPLET_DONT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/install/no/usr.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_INSTALL_NO_USR 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ioctl/hex2str/error.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IOCTL_HEX2STR_ERROR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ionice.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IONICE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/iostat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IOSTAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ipaddr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPADDR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ipcalc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPCALC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ipcrm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPCRM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ipcs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPCS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/iplink.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPLINK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/iproute.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPROUTE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/iprule.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPRULE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/iptunnel.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_IPTUNNEL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/jolt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_JOLT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/jshon.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_JSHON 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/kbd/mode.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KBD_MODE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/kill.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KILL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/killall.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KILLALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/killall5.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KILLALL5 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/kissofdeath.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KISSOFDEATH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/kkill.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KKILL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/klogd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KLOGD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/knbot.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_KNBOT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/land.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAND 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/last.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAST 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/last/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAST_ID 60000 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/last/supported/wchar.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAST_SUPPORTED_WCHAR 767 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/last/system/id.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LAST_SYSTEM_ID 999 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/latierra.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LATIERRA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/less.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LESS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lfs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LFS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lizbot.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LIZBOT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lizserv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LIZSERV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ln.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/load/policy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOAD_POLICY 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/loadfont.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOADFONT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/loadkmap.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOADKMAP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/locale/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOCALE_SUPPORT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/logger.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOGGER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/login.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOGIN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/login/scripts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOGIN_SCRIPTS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/login/session/as/child.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LOGIN_SESSION_AS_CHILD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/logname.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOGNAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/logread.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOGREAD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/long/opts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LONG_OPTS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/losetup.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LOSETUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lpd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LPD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lpq.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LPQ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lpr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LPR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ls.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lsattr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LSATTR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lsmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LSMOD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lsof.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LSOF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lspci.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LSPCI 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lsusb.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LSUSB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lzma.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LZMA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lzop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_LZOP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/lzop/compr/high.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_LZOP_COMPR_HIGH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/makedevs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MAKEDEVS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/makemime.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MAKEMIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/man.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MAN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/masscan.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MASSCAN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/matchpathcon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MATCHPATHCON 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/md5/small.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MD5_SMALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/md5sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MD5SUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mdev.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MDEV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/medusa.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MEDUSA 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mesg.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MESG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/microcom.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MICROCOM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkdir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKDIR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkfifo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKFIFO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkfs/ext2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKFS_EXT2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkfs/minix.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKFS_MINIX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkfs/reiser.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MKFS_REISER 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkfs/vfat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKFS_VFAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mknod.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKNOD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mkswap.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKSWAP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mktemp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MKTEMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/modinfo.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MODINFO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/modprobe.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MODPROBE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/modprobe/small.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MODPROBE_SMALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/monotonic/syscall.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MONOTONIC_SYSCALL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/more.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MORE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mount.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MOUNT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mountpoint.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MOUNTPOINT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mpstat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MPSTAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mq.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MQ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mqsh.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_mqsh 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mqtte.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MQTTE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/msh.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_MSH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/mv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_MV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nameif.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NAMEIF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nanddump.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NANDDUMP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nandwrite.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NANDWRITE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nbdclient.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NBDCLIENT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nc/110/compat.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NC_110_COMPAT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nc/extra.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NC_EXTRA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nc/server.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NC_SERVER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ncrack.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NCRACK 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nestea.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NESTEA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/netscan.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NETSCAN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/netstat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NETSTAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/newtear.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NEWTEAR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nice.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NICE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nmeter.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NMETER 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/no/debug/lib.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NO_DEBUG_LIB 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nohup.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NOHUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nommu.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_NOMMU 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/nslookup.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NSLOOKUP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ntpd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NTPD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ntpdos.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_NTPDOS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/od.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_OD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/openvt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_OPENVT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/orgasm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ORGASM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ottf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_OTTF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pam.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PAM 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/passwd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PASSWD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/password/minlen.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PASSWORD_MINLEN 6 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/patator.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PATATOR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/patch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PATCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pepsi.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PEPSI 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pgrep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PGREP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pid/file/path.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PID_FILE_PATH "/var/run" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pidof.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PIDOF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pie.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_PIE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ping.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ping6.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PING6 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pipe/progress.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PIPE_PROGRESS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pivot/root.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PIVOT_ROOT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pkdecrypt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PKDECRYPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pkencrypt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PKENCRYPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pkill.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PKILL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pksign.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PKSIGN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/platform/linux.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PLATFORM_LINUX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pmap.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PMAP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pong.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PONG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/popmaildir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_POPMAILDIR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/powertop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_POWERTOP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/prefix.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PREFIX "./_install" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/printenv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PRINTENV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/printf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PRINTF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/prism.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_prism 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/proxcat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_proxcat 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ps.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pscan.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PSCAN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pstree.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PSTREE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pubclient.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PUBCLIENT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pud.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PUD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pwd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PWD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/pwdx.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_PWDX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/raidautorun.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RAIDAUTORUN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/randip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RANDIP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/raped.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RAPED 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rdate.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RDATE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rdev.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RDEV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/readahead.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_READAHEAD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/readlink.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_READLINK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/readprofile.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_READPROFILE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/realpath.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_REALPATH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/reformime.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_REFORMIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/remove/shell.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_REMOVE_SHELL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/renice.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RENICE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/reset.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RESET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/resize.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RESIZE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/restorecon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RESTORECON 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rev.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_REV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rfkill.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RFKILL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rmdir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RMDIR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rmmod.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RMMOD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/route.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ROUTE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rpm.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RPM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rpm2cpio.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RPM2CPIO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rsadecrypt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RSADECRYPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rsaencrypt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RSAENCRYPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rsagenkey.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RSAGENKEY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rsasign.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RSASIGN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rsaverify.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RSAVERIFY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rtcwake.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RTCWAKE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/run/parts.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RUN_PARTS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/runcon.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_RUNCON 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/runlevel.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RUNLEVEL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/runsv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RUNSV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/runsvdir.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RUNSVDIR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/rx.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_RX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/scp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SCP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/script.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SCRIPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/scriptreplay.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SCRIPTREPLAY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sed.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SED 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/selinux.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SELINUX 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/selinuxenabled.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SELINUXENABLED 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sendmail.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SENDMAIL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/seq.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SEQ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sestatus.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SESTATUS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setarch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETARCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setconsole.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETCONSOLE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setenforce.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETENFORCE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setfiles.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETFILES 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setfont.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETFONT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setkeycodes.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETKEYCODES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setlogcons.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETLOGCONS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setsebool.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SETSEBOOL 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setserial.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETSERIAL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setsid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETSID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/setuidgid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SETUIDGID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sevone.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SEVONE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sftp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SFTP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sftpcli.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybotnet/include/config/sh/math/support.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SH_MATH_SUPPORT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sh/math/support/64.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SH_MATH_SUPPORT_64 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sha1sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA1SUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sha256sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA256SUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sha3/small.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA3_SMALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sha3sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA3SUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sha512sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHA512SUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/show/usage.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHOW_USAGE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/showkey.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHOWKEY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/shuf.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SHUF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/slattach.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SLATTACH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sleep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SLEEP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/smemcap.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SMEMCAP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/smurf.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SMURF 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/snmpdos.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SNMPDOS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sockstress.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SOCKSTRESS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/softlimit.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SOFTLIMIT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sort.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SORT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/spiffit.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SPIFFIT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sping.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SPING 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/split.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SPLIT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ssh.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SSH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sshcli.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybotnet/include/config/sshtrix.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SSHTRIX 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sslclient2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SSLCLIENT2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ssyn2.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SSYN2 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/start/stop/daemon.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_START_STOP_DAEMON 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/stat.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_STAT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/static.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_STATIC 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/stream.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_STREAM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/strings.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_STRINGS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/stty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_STTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/su.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SU 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/subclient.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SUBCLIENT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/subst/wchar.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SUBST_WCHAR 63 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sudp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SUDP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sulogin.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SULOGIN 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sum.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SUM 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sv.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SV 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/svlogd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SVLOGD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/swaponoff.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SWAPONOFF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/switch/root.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SWITCH_ROOT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sync.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SYNC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/syndrop.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_SYNDROP 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/synk4.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SYNK4 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/synscan.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_synscan 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/syslogd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SYSLOGD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/sysroot.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_SYSROOT "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tac.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TAC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tail.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TAIL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tar.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TAR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/taskset.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TASKSET 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tcpsvd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TCPSVD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/teardrop.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TEARDROP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tee.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TEE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/telinit/path.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TELINIT_PATH "" 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/telnet.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TELNET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/telnetd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TELNETD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/test.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TEST 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tftp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TFTP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tftp/debug.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TFTP_DEBUG 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tftpd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TFTPD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/time.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/timeout.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TIMEOUT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/top.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TOP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/torloris.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TORLORIS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/touch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TOUCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tr.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TR 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/traceroute.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TRACEROUTE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/traceroute6.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TRACEROUTE6 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/true.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TRUE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/truncate.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TRUNCATE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ts3.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TS3 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tsh.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TSH 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tshd.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TSHD 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tty.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TTY 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ttysize.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TTYSIZE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tunctl.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_TUNCTL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/tune2fs.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_TUNE2FS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ubiattach.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UBIATTACH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ubidetach.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UBIDETACH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ubimkvol.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UBIMKVOL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ubirmvol.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UBIRMVOL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ubirsvol.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UBIRSVOL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ubiupdatevol.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UBIUPDATEVOL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udhcp/debug.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDHCP_DEBUG 9 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udhcpc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDHCPC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udhcpc6.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UDHCPC6 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udhcpd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDHCPD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udpdata.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDPDATA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udpspoof.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDPSPOOF 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/udpsvd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UDPSVD 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uevent.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UEVENT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/umount.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UMOUNT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uname.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uncompress.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNCOMPRESS 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unexpand.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNEXPAND 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unicode/bidi/support.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNICODE_BIDI_SUPPORT 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unicode/neutral/table.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNICODE_NEUTRAL_TABLE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unicode/preserve/broken.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNICODE_PRESERVE_BROKEN 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unicode/support.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNICODE_SUPPORT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unicode/using/locale.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNICODE_USING_LOCALE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uniq.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNIQ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unit/test.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_UNIT_TEST 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unix2dos.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNIX2DOS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unlink.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNLINK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unlzma.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNLZMA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unxz.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNXZ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/unzip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UNZIP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uptime.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UPTIME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/use/bb/crypt.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_USE_BB_CRYPT 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/use/bb/crypt/sha.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_USE_BB_CRYPT_SHA 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/use/bb/pwd/grp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_USE_BB_PWD_GRP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/use/bb/shadow.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_USE_BB_SHADOW 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/use/portable/code.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_USE_PORTABLE_CODE 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/users.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_USERS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/usleep.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_USLEEP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uudecode.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UUDECODE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/uuencode.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_UUENCODE 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/vi.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_VI 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/vlock.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_VLOCK 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/volname.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_VOLNAME 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/volumeid.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_VOLUMEID 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/wall.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WALL 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/watch.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WATCH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/watchdog.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WATCHDOG 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/wc.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WC 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/werror.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_WERROR 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/wget.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WGET 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/which.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WHICH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/who.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WHO 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/whoami.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WHOAMI 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/whois.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WHOIS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/wingatecrash.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_WINGATECRASH 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/xargs.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_XARGS 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/xersex.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_XERSEX 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/xersextcp.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_XERSEXTCP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/xorpipe.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_xorpipe 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/xxd.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_xxd 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/xz.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_XZ 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/yes.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_YES 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/zcip.h: -------------------------------------------------------------------------------- 1 | #define CONFIG_ZCIP 1 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/ziggy.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ZIGGY 2 | -------------------------------------------------------------------------------- /busybotnet/include/config/zmap.h: -------------------------------------------------------------------------------- 1 | #undef CONFIG_ZMAP 2 | -------------------------------------------------------------------------------- /busybotnet/include/ip_udp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /busybotnet/ips: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybotnet/json-c/NEWS: -------------------------------------------------------------------------------- 1 | See the git repo. 2 | -------------------------------------------------------------------------------- /busybotnet/json-c/tests/test_charcase.expected: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/json-c/tests/valid.json: -------------------------------------------------------------------------------- 1 | {"foo":123} 2 | -------------------------------------------------------------------------------- /busybotnet/kek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/kek -------------------------------------------------------------------------------- /busybotnet/libbb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/libbb.h -------------------------------------------------------------------------------- /busybotnet/libpcap/VERSION: -------------------------------------------------------------------------------- 1 | 1.9.0-PRE-GIT 2 | -------------------------------------------------------------------------------- /busybotnet/libpcap/rpcapd/.gitignore: -------------------------------------------------------------------------------- 1 | Makefile 2 | *~ 3 | *.o 4 | rpcapd 5 | -------------------------------------------------------------------------------- /busybotnet/libpcap/tests/BPF/2.txt: -------------------------------------------------------------------------------- 1 | # common block merging 2 | port 80 3 | -------------------------------------------------------------------------------- /busybotnet/libpcap/tests/BPF/5.txt: -------------------------------------------------------------------------------- 1 | vlan 186 and ip 2 | -------------------------------------------------------------------------------- /busybotnet/libpcap/tests/BPF/7.txt: -------------------------------------------------------------------------------- 1 | not vlan and tcp port 80 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 100 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/doc/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/examples/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 62 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/include/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/include/libssh/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 73 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/src/libssh.so: -------------------------------------------------------------------------------- 1 | libssh.so.4 -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/src/libssh.so.4: -------------------------------------------------------------------------------- 1 | libssh.so.4.4.1 -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/src/threads/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 37 2 | -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/src/threads/libssh_threads.so: -------------------------------------------------------------------------------- 1 | libssh_threads.so.4 -------------------------------------------------------------------------------- /busybotnet/libssh-0.7.4/build/src/threads/libssh_threads.so.4: -------------------------------------------------------------------------------- 1 | libssh_threads.so.4.4.1 -------------------------------------------------------------------------------- /busybotnet/miscutils/synk4: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybotnet/nc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/nc.c -------------------------------------------------------------------------------- /busybotnet/pw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/busybotnet/pw -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-arith/arith-bash1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-misc/last_amp.right: -------------------------------------------------------------------------------- 1 | 3 2 | End 3 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-misc/source1.right: -------------------------------------------------------------------------------- 1 | Sourced ok 2 | Done 3 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-misc/source2.right: -------------------------------------------------------------------------------- 1 | Done: 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-misc/source2.tests: -------------------------------------------------------------------------------- 1 | false 2 | . /dev/null 3 | echo Done: $? 4 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-misc/tickquote1.tests: -------------------------------------------------------------------------------- 1 | echo `"pwd` 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-redir/redir2.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-redir/redir4.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-redir/redir6.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK 3 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-redir/redir7.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-redir/redir8.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Ok 3 | Done 4 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-redir/redir9.right: -------------------------------------------------------------------------------- 1 | Ok 2 | Done:0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-signals/reap1.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-signals/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-signals/signal6.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-signals/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-standalone/nofork_trashes_getopt.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-standalone/var_standalone1.right: -------------------------------------------------------------------------------- 1 | Done: 1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-vars/var-expand-tilde-in-parameter-expansion.right: -------------------------------------------------------------------------------- 1 | :/root 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-vars/var-runtime-quote-detection.right: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-vars/var2.right: -------------------------------------------------------------------------------- 1 | bus/usb/1/2 2 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-vars/var3.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /busybotnet/shell/ash_test/ash-vars/var_bash5.right: -------------------------------------------------------------------------------- 1 | a/ 2 | a/d 3 | a/e/f 4 | Done: 0 5 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-bugs/var3.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | 4 | 5 | 0 6 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-leak/leak_argv1.right: -------------------------------------------------------------------------------- 1 | Measuring memory leak... 2 | Ok 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/assignment3.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | abc=123 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/assignment4.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/break1.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/break2.right: -------------------------------------------------------------------------------- 1 | A 2 | AA 3 | OK:0 4 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/break3.right: -------------------------------------------------------------------------------- 1 | A 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/builtin1.right: -------------------------------------------------------------------------------- 1 | VARIABLE=export 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/colon.right: -------------------------------------------------------------------------------- 1 | 0 2 | OK: 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/continue2.right: -------------------------------------------------------------------------------- 1 | Ok:1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/continue3.right: -------------------------------------------------------------------------------- 1 | 0 2 | 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/empty_for.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/env_and_func.right: -------------------------------------------------------------------------------- 1 | var=val 2 | var=old 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/exit1.right: -------------------------------------------------------------------------------- 1 | Once 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/func4.right: -------------------------------------------------------------------------------- 1 | 24 2 | Done 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/func5.right: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/func_local1.right: -------------------------------------------------------------------------------- 1 | z=a 2 | z=z 3 | Done 4 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/heredoc1.right: -------------------------------------------------------------------------------- 1 | qwe 2 | asd 3 | 123 4 | 456 5 | Ok 6 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/if_false_exitcode.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/nommu3.right: -------------------------------------------------------------------------------- 1 | Ok 2 | 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/opts1.right: -------------------------------------------------------------------------------- 1 | Param1: >-10qwertyuiop< 2 | Done 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/pid.right: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/redir2.right: -------------------------------------------------------------------------------- 1 | Ok 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/redir2.tests: -------------------------------------------------------------------------------- 1 | echo NOT SHOWN \2>/dev/null 2 | echo Ok 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/return1.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/sigint1.right: -------------------------------------------------------------------------------- 1 | Sending SIGINT to main shell PID 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/unicode1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok 4 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/until1.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | Ok:0 4 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/while1.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/while2.right: -------------------------------------------------------------------------------- 1 | Hello 2 | OK:0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/while3.right: -------------------------------------------------------------------------------- 1 | OK:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/while4.right: -------------------------------------------------------------------------------- 1 | Ok:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-misc/while_in_subshell.right: -------------------------------------------------------------------------------- 1 | OK: 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/eol1.right: -------------------------------------------------------------------------------- 1 | Done:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/escape1.right: -------------------------------------------------------------------------------- 1 | \ 2 | a\b 3 | \\ 4 | c\\d 5 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/escape4.right: -------------------------------------------------------------------------------- 1 | Ok 2 | End 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/group1.right: -------------------------------------------------------------------------------- 1 | word} } 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/group1.tests: -------------------------------------------------------------------------------- 1 | { echo word} }; } 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/group2.right: -------------------------------------------------------------------------------- 1 | got TERM 2 | Done: 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/noeol3.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-psubst/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-psubst/tick2.right: -------------------------------------------------------------------------------- 1 | BAZ 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-psubst/tick5.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-psubst/tick5.tests: -------------------------------------------------------------------------------- 1 | true; echo `false` $? 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-trap/save-ret.right: -------------------------------------------------------------------------------- 1 | YEAH 2 | 0 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-trap/signal7.right: -------------------------------------------------------------------------------- 1 | Bug detected: 0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-trap/signal_read1.right: -------------------------------------------------------------------------------- 1 | Got HUP:0 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-trap/signal_read2.right: -------------------------------------------------------------------------------- 1 | HUP 2 | Done:129 3 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-vars/var-runtime-quote-detection.right: -------------------------------------------------------------------------------- 1 | <> 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-vars/var_leaks.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/shell/hush_test/hush-z_slow/leak_var.right: -------------------------------------------------------------------------------- 1 | Measuring memory leak... 2 | Ok 3 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-bugs/noeol3.right: -------------------------------------------------------------------------------- 1 | hush: syntax error: unterminated " 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-bugs/noeol3.tests: -------------------------------------------------------------------------------- 1 | # last line has no EOL! 2 | echo "unterminated -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-execution/exitcode_EACCES.right: -------------------------------------------------------------------------------- 1 | ./: can't execute 2 | 126 3 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-execution/exitcode_EACCES.tests: -------------------------------------------------------------------------------- 1 | ./ 2 | echo $? 3 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-execution/many_continues.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-misc/tick.right: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/argv0.right: -------------------------------------------------------------------------------- 1 | OK 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/noeol.right: -------------------------------------------------------------------------------- 1 | HELLO 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/noeol.tests: -------------------------------------------------------------------------------- 1 | # next line has no EOL! 2 | echo HELLO -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/noeol2.right: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/quote1.right: -------------------------------------------------------------------------------- 1 | '1' 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/quote1.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo "'$a'" 3 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/quote2.right: -------------------------------------------------------------------------------- 1 | >1 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/quote2.tests: -------------------------------------------------------------------------------- 1 | a=1 2 | echo ">$a" 3 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/quote4.right: -------------------------------------------------------------------------------- 1 | a b 2 | -------------------------------------------------------------------------------- /busybotnet/shell/msh_test/msh-parsing/quote4.tests: -------------------------------------------------------------------------------- 1 | a_b='a b' 2 | echo "$a_b" 3 | -------------------------------------------------------------------------------- /busybotnet/test.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /busybotnet/testsuite/cut/cut-cuts-a-character: -------------------------------------------------------------------------------- 1 | test $(echo abcd | busybox cut -c 3) = c 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/dirname/dirname-handles-empty-path: -------------------------------------------------------------------------------- 1 | test $(busybox dirname '') = . 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/dirname/dirname-handles-root: -------------------------------------------------------------------------------- 1 | test $(busybox dirname /) = / 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/echo/echo-prints-newline: -------------------------------------------------------------------------------- 1 | test `busybox echo word | wc -c` -eq 5 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/false/false-is-silent: -------------------------------------------------------------------------------- 1 | busybox false 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/false/false-returns-failure: -------------------------------------------------------------------------------- 1 | ! busybox false 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/gunzip.tests: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | . ./bunzip2.tests 4 | -------------------------------------------------------------------------------- /busybotnet/testsuite/gzip/gzip-accepts-single-minus: -------------------------------------------------------------------------------- 1 | echo foo | busybox gzip - >/dev/null 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/tar/tar-demands-at-least-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar v 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/tar/tar-demands-at-most-one-ctx: -------------------------------------------------------------------------------- 1 | ! busybox tar tx 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/true/true-is-silent: -------------------------------------------------------------------------------- 1 | busybox true 2>&1 | cmp - /dev/null 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/true/true-returns-success: -------------------------------------------------------------------------------- 1 | busybox true 2 | -------------------------------------------------------------------------------- /busybotnet/testsuite/uptime/uptime-works: -------------------------------------------------------------------------------- 1 | busybox uptime 2 | -------------------------------------------------------------------------------- /busybotnet/z: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lightaidra/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/lightaidra/Makefile -------------------------------------------------------------------------------- /lizkebab/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/lizkebab/Makefile -------------------------------------------------------------------------------- /lizkebab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/lizkebab/README.md -------------------------------------------------------------------------------- /mirai-botnet/mirai/prompt.txt: -------------------------------------------------------------------------------- 1 | я люблю куриные наггетсы 2 | -------------------------------------------------------------------------------- /pnscan/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/ChangeLog -------------------------------------------------------------------------------- /pnscan/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/LICENSE -------------------------------------------------------------------------------- /pnscan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/Makefile -------------------------------------------------------------------------------- /pnscan/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/README -------------------------------------------------------------------------------- /pnscan/TODO: -------------------------------------------------------------------------------- 1 | IPv6 support? 2 | UDP scans? 3 | 4 | -------------------------------------------------------------------------------- /pnscan/bm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/bm.c -------------------------------------------------------------------------------- /pnscan/bm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/bm.h -------------------------------------------------------------------------------- /pnscan/install-sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/install-sh -------------------------------------------------------------------------------- /pnscan/ipsort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/ipsort -------------------------------------------------------------------------------- /pnscan/ipsort.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/ipsort.1 -------------------------------------------------------------------------------- /pnscan/ipsort.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/ipsort.sgml -------------------------------------------------------------------------------- /pnscan/pnscan.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/pnscan.1 -------------------------------------------------------------------------------- /pnscan/pnscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/pnscan.c -------------------------------------------------------------------------------- /pnscan/pnscan.sgml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/pnscan/pnscan.sgml -------------------------------------------------------------------------------- /pnscan/version.c: -------------------------------------------------------------------------------- 1 | char version[] = "1.11"; 2 | -------------------------------------------------------------------------------- /randomware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ifding/iot-malware/HEAD/randomware/LICENSE --------------------------------------------------------------------------------