├── .gitmodules ├── COPYING ├── DEVELOPERS ├── README.md ├── automake.sh ├── autotest.sh ├── clean.sh ├── resources ├── autotest │ └── basic.exp ├── boot │ ├── grub │ │ ├── grub.cfg.casper │ │ ├── grub.cfg.doublesword │ │ └── theme │ │ │ ├── background.jpg │ │ │ ├── select_c.png │ │ │ ├── slider_c.png │ │ │ ├── slider_n.png │ │ │ ├── slider_s.png │ │ │ ├── terminal_box_c.png │ │ │ ├── terminal_box_e.png │ │ │ ├── terminal_box_n.png │ │ │ ├── terminal_box_ne.png │ │ │ ├── terminal_box_nw.png │ │ │ ├── terminal_box_s.png │ │ │ ├── terminal_box_se.png │ │ │ ├── terminal_box_sw.png │ │ │ ├── terminal_box_w.png │ │ │ └── theme.txt │ └── memtest ├── casper │ └── bin │ │ └── casper-md5check ├── etc │ ├── apt │ │ ├── sources.list.binary │ │ └── sources.list.source │ ├── dialogrc │ ├── historian.profile │ ├── internet.dialogrc │ ├── netplan │ │ ├── 01-network-container.yaml │ │ └── 01-network-host.yaml │ ├── ngircd │ │ └── ngircd.conf │ ├── scout-manage.conf │ ├── security │ │ └── limits.conf │ ├── sudo.conf │ ├── sysctl.d │ │ └── 60-net-congestion-control.conf │ ├── systemd │ │ ├── networkd.conf │ │ ├── nspawn │ │ │ └── container.nspawn │ │ └── system │ │ │ ├── container-setup.service │ │ │ ├── historian.service │ │ │ ├── host-setup.service │ │ │ ├── internet-indicator.service │ │ │ ├── internet-indicator.timer │ │ │ ├── memwatchdog.service │ │ │ ├── privexec.service │ │ │ ├── supervise.service │ │ │ └── systemd-nspawn@container.service.d │ │ │ └── override.conf │ └── vtrgb ├── gpg │ └── 871920D1991BC93C.asc ├── initrd │ └── scripts │ │ ├── casper-bottom │ │ └── 01wrtblk_all │ │ ├── doublesword │ │ └── doublesword-bottom │ │ └── 01wrtblk_all ├── irssi │ └── irssi.conf.client ├── lib │ └── udev │ │ └── 01-readonly-disks.rules ├── openvpn │ ├── ip_pool.lst │ ├── scout.conf.client │ ├── scout.conf.expert │ └── scout.conf.server ├── sbin │ ├── container-setup │ ├── historian.sh │ ├── host-iptables │ ├── host-setup │ ├── memwatchdog.sh │ ├── privexecd.sh │ └── supervised.sh ├── squashfs │ └── exclude.list ├── usr │ ├── bin │ │ ├── container-resume.sh │ │ ├── container-suspend.sh │ │ ├── internet-indicator.sh │ │ ├── privexec │ │ ├── scout-manage │ │ ├── scout-monitor │ │ ├── supervised-shell │ │ └── torcustomconfig.sh │ ├── sbin │ │ ├── wrtblk │ │ ├── wrtblk-disable │ │ └── wrtblk-ioerr │ └── share │ │ ├── bitscout │ │ ├── introduction │ │ └── scout-manage.service │ │ └── vim │ │ └── vimrc └── wireguard │ ├── wg0.conf.client │ ├── wg0.conf.expert │ └── wg0.conf.server └── scripts ├── chroot.devel_enter.sh ├── chroot_add_managementtool.sh ├── chroot_configure.sh ├── chroot_configure_irc.sh ├── chroot_configure_ssh.sh ├── chroot_configure_syslog.sh ├── chroot_configure_vpn.sh ├── chroot_create_container.sh ├── chroot_create_user.sh ├── chroot_customize.sh ├── chroot_download.sh ├── chroot_enter.sh ├── chroot_enter_devel.sh ├── chroot_install_base.sh ├── chroot_install_forensics.sh ├── chroot_install_forensics_extra.sh ├── chroot_install_kernel.sh ├── chroot_install_remoteaccess.sh ├── chroot_internet_indicator.sh ├── chroot_postdownload_setup.sh ├── chrootscreen_end.sh ├── chrootscreen_start.sh ├── deb_pack.sh ├── deb_unpack.sh ├── export_generate.sh ├── functions ├── image_build-nosquashfs-rebuild.sh ├── image_build.sh ├── image_prebuild_cleanup.sh ├── image_prepare.sh ├── initrd_doublesword.sh ├── initrd_findlivefs_fix.sh ├── initrd_integritycheck_fix.sh ├── initrd_pack.sh ├── initrd_unpack.sh ├── initrd_writeblocker.sh ├── interrupted_clean.sh ├── nspawn_container_spawn.sh ├── nspawn_enter.sh ├── nspawn_session.exp ├── skeleton.sh ├── submodules_fetch.sh └── welcome.sh /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/COPYING -------------------------------------------------------------------------------- /DEVELOPERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/DEVELOPERS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/README.md -------------------------------------------------------------------------------- /automake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/automake.sh -------------------------------------------------------------------------------- /autotest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/autotest.sh -------------------------------------------------------------------------------- /clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/clean.sh -------------------------------------------------------------------------------- /resources/autotest/basic.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/autotest/basic.exp -------------------------------------------------------------------------------- /resources/boot/grub/grub.cfg.casper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/grub.cfg.casper -------------------------------------------------------------------------------- /resources/boot/grub/grub.cfg.doublesword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/grub.cfg.doublesword -------------------------------------------------------------------------------- /resources/boot/grub/theme/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/background.jpg -------------------------------------------------------------------------------- /resources/boot/grub/theme/select_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/select_c.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/slider_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/slider_c.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/slider_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/slider_n.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/slider_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/slider_s.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_c.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_e.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_n.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_ne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_ne.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_nw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_nw.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_s.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_se.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_se.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_sw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_sw.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/terminal_box_w.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/terminal_box_w.png -------------------------------------------------------------------------------- /resources/boot/grub/theme/theme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/grub/theme/theme.txt -------------------------------------------------------------------------------- /resources/boot/memtest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/boot/memtest -------------------------------------------------------------------------------- /resources/casper/bin/casper-md5check: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/casper/bin/casper-md5check -------------------------------------------------------------------------------- /resources/etc/apt/sources.list.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/apt/sources.list.binary -------------------------------------------------------------------------------- /resources/etc/apt/sources.list.source: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/apt/sources.list.source -------------------------------------------------------------------------------- /resources/etc/dialogrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/dialogrc -------------------------------------------------------------------------------- /resources/etc/historian.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/historian.profile -------------------------------------------------------------------------------- /resources/etc/internet.dialogrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/internet.dialogrc -------------------------------------------------------------------------------- /resources/etc/netplan/01-network-container.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/netplan/01-network-container.yaml -------------------------------------------------------------------------------- /resources/etc/netplan/01-network-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/netplan/01-network-host.yaml -------------------------------------------------------------------------------- /resources/etc/ngircd/ngircd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/ngircd/ngircd.conf -------------------------------------------------------------------------------- /resources/etc/scout-manage.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/scout-manage.conf -------------------------------------------------------------------------------- /resources/etc/security/limits.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/security/limits.conf -------------------------------------------------------------------------------- /resources/etc/sudo.conf: -------------------------------------------------------------------------------- 1 | Set disable_coredump false 2 | -------------------------------------------------------------------------------- /resources/etc/sysctl.d/60-net-congestion-control.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/sysctl.d/60-net-congestion-control.conf -------------------------------------------------------------------------------- /resources/etc/systemd/networkd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/networkd.conf -------------------------------------------------------------------------------- /resources/etc/systemd/nspawn/container.nspawn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/nspawn/container.nspawn -------------------------------------------------------------------------------- /resources/etc/systemd/system/container-setup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/container-setup.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/historian.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/historian.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/host-setup.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/host-setup.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/internet-indicator.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/internet-indicator.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/internet-indicator.timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/internet-indicator.timer -------------------------------------------------------------------------------- /resources/etc/systemd/system/memwatchdog.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/memwatchdog.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/privexec.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/privexec.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/supervise.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/supervise.service -------------------------------------------------------------------------------- /resources/etc/systemd/system/systemd-nspawn@container.service.d/override.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/systemd/system/systemd-nspawn@container.service.d/override.conf -------------------------------------------------------------------------------- /resources/etc/vtrgb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/etc/vtrgb -------------------------------------------------------------------------------- /resources/gpg/871920D1991BC93C.asc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/gpg/871920D1991BC93C.asc -------------------------------------------------------------------------------- /resources/initrd/scripts/casper-bottom/01wrtblk_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/initrd/scripts/casper-bottom/01wrtblk_all -------------------------------------------------------------------------------- /resources/initrd/scripts/doublesword: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/initrd/scripts/doublesword -------------------------------------------------------------------------------- /resources/initrd/scripts/doublesword-bottom/01wrtblk_all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/initrd/scripts/doublesword-bottom/01wrtblk_all -------------------------------------------------------------------------------- /resources/irssi/irssi.conf.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/irssi/irssi.conf.client -------------------------------------------------------------------------------- /resources/lib/udev/01-readonly-disks.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/lib/udev/01-readonly-disks.rules -------------------------------------------------------------------------------- /resources/openvpn/ip_pool.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/openvpn/ip_pool.lst -------------------------------------------------------------------------------- /resources/openvpn/scout.conf.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/openvpn/scout.conf.client -------------------------------------------------------------------------------- /resources/openvpn/scout.conf.expert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/openvpn/scout.conf.expert -------------------------------------------------------------------------------- /resources/openvpn/scout.conf.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/openvpn/scout.conf.server -------------------------------------------------------------------------------- /resources/sbin/container-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/container-setup -------------------------------------------------------------------------------- /resources/sbin/historian.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/historian.sh -------------------------------------------------------------------------------- /resources/sbin/host-iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/host-iptables -------------------------------------------------------------------------------- /resources/sbin/host-setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/host-setup -------------------------------------------------------------------------------- /resources/sbin/memwatchdog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/memwatchdog.sh -------------------------------------------------------------------------------- /resources/sbin/privexecd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/privexecd.sh -------------------------------------------------------------------------------- /resources/sbin/supervised.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/sbin/supervised.sh -------------------------------------------------------------------------------- /resources/squashfs/exclude.list: -------------------------------------------------------------------------------- 1 | boot/* 2 | -------------------------------------------------------------------------------- /resources/usr/bin/container-resume.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/container-resume.sh -------------------------------------------------------------------------------- /resources/usr/bin/container-suspend.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | machinectl kill container --signal=STOP 3 | -------------------------------------------------------------------------------- /resources/usr/bin/internet-indicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/internet-indicator.sh -------------------------------------------------------------------------------- /resources/usr/bin/privexec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/privexec -------------------------------------------------------------------------------- /resources/usr/bin/scout-manage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/scout-manage -------------------------------------------------------------------------------- /resources/usr/bin/scout-monitor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/scout-monitor -------------------------------------------------------------------------------- /resources/usr/bin/supervised-shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/supervised-shell -------------------------------------------------------------------------------- /resources/usr/bin/torcustomconfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/bin/torcustomconfig.sh -------------------------------------------------------------------------------- /resources/usr/sbin/wrtblk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/sbin/wrtblk -------------------------------------------------------------------------------- /resources/usr/sbin/wrtblk-disable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/sbin/wrtblk-disable -------------------------------------------------------------------------------- /resources/usr/sbin/wrtblk-ioerr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/sbin/wrtblk-ioerr -------------------------------------------------------------------------------- /resources/usr/share/bitscout/introduction: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/share/bitscout/introduction -------------------------------------------------------------------------------- /resources/usr/share/bitscout/scout-manage.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/share/bitscout/scout-manage.service -------------------------------------------------------------------------------- /resources/usr/share/vim/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/usr/share/vim/vimrc -------------------------------------------------------------------------------- /resources/wireguard/wg0.conf.client: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/wireguard/wg0.conf.client -------------------------------------------------------------------------------- /resources/wireguard/wg0.conf.expert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/wireguard/wg0.conf.expert -------------------------------------------------------------------------------- /resources/wireguard/wg0.conf.server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/resources/wireguard/wg0.conf.server -------------------------------------------------------------------------------- /scripts/chroot.devel_enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot.devel_enter.sh -------------------------------------------------------------------------------- /scripts/chroot_add_managementtool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_add_managementtool.sh -------------------------------------------------------------------------------- /scripts/chroot_configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_configure.sh -------------------------------------------------------------------------------- /scripts/chroot_configure_irc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_configure_irc.sh -------------------------------------------------------------------------------- /scripts/chroot_configure_ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_configure_ssh.sh -------------------------------------------------------------------------------- /scripts/chroot_configure_syslog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_configure_syslog.sh -------------------------------------------------------------------------------- /scripts/chroot_configure_vpn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_configure_vpn.sh -------------------------------------------------------------------------------- /scripts/chroot_create_container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_create_container.sh -------------------------------------------------------------------------------- /scripts/chroot_create_user.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_create_user.sh -------------------------------------------------------------------------------- /scripts/chroot_customize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_customize.sh -------------------------------------------------------------------------------- /scripts/chroot_download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_download.sh -------------------------------------------------------------------------------- /scripts/chroot_enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_enter.sh -------------------------------------------------------------------------------- /scripts/chroot_enter_devel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_enter_devel.sh -------------------------------------------------------------------------------- /scripts/chroot_install_base.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_install_base.sh -------------------------------------------------------------------------------- /scripts/chroot_install_forensics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_install_forensics.sh -------------------------------------------------------------------------------- /scripts/chroot_install_forensics_extra.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_install_forensics_extra.sh -------------------------------------------------------------------------------- /scripts/chroot_install_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_install_kernel.sh -------------------------------------------------------------------------------- /scripts/chroot_install_remoteaccess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_install_remoteaccess.sh -------------------------------------------------------------------------------- /scripts/chroot_internet_indicator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_internet_indicator.sh -------------------------------------------------------------------------------- /scripts/chroot_postdownload_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chroot_postdownload_setup.sh -------------------------------------------------------------------------------- /scripts/chrootscreen_end.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chrootscreen_end.sh -------------------------------------------------------------------------------- /scripts/chrootscreen_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/chrootscreen_start.sh -------------------------------------------------------------------------------- /scripts/deb_pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/deb_pack.sh -------------------------------------------------------------------------------- /scripts/deb_unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/deb_unpack.sh -------------------------------------------------------------------------------- /scripts/export_generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/export_generate.sh -------------------------------------------------------------------------------- /scripts/functions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/functions -------------------------------------------------------------------------------- /scripts/image_build-nosquashfs-rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/image_build-nosquashfs-rebuild.sh -------------------------------------------------------------------------------- /scripts/image_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/image_build.sh -------------------------------------------------------------------------------- /scripts/image_prebuild_cleanup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/image_prebuild_cleanup.sh -------------------------------------------------------------------------------- /scripts/image_prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/image_prepare.sh -------------------------------------------------------------------------------- /scripts/initrd_doublesword.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/initrd_doublesword.sh -------------------------------------------------------------------------------- /scripts/initrd_findlivefs_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/initrd_findlivefs_fix.sh -------------------------------------------------------------------------------- /scripts/initrd_integritycheck_fix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/initrd_integritycheck_fix.sh -------------------------------------------------------------------------------- /scripts/initrd_pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/initrd_pack.sh -------------------------------------------------------------------------------- /scripts/initrd_unpack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/initrd_unpack.sh -------------------------------------------------------------------------------- /scripts/initrd_writeblocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/initrd_writeblocker.sh -------------------------------------------------------------------------------- /scripts/interrupted_clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/interrupted_clean.sh -------------------------------------------------------------------------------- /scripts/nspawn_container_spawn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/nspawn_container_spawn.sh -------------------------------------------------------------------------------- /scripts/nspawn_enter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/nspawn_enter.sh -------------------------------------------------------------------------------- /scripts/nspawn_session.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/nspawn_session.exp -------------------------------------------------------------------------------- /scripts/skeleton.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/skeleton.sh -------------------------------------------------------------------------------- /scripts/submodules_fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/submodules_fetch.sh -------------------------------------------------------------------------------- /scripts/welcome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KasperskyLab/bitscout/HEAD/scripts/welcome.sh --------------------------------------------------------------------------------