├── .gitignore ├── LICENSE ├── README.md ├── build └── .gitignore ├── config ├── pentest-distro-builder.chroot └── software.list.chroot ├── convert.sh ├── debs └── get-debs.sh ├── filesystem ├── etc │ ├── gdm3 │ │ └── daemon.conf │ ├── resolv.conf │ ├── resolvconf │ │ └── run │ │ │ └── resolv.conf │ ├── skel │ │ ├── .bashrc │ │ ├── .config │ │ │ ├── autostart │ │ │ │ └── guake.desktop │ │ │ ├── caja │ │ │ │ └── accels │ │ │ ├── dconf │ │ │ │ └── user │ │ │ ├── enchant │ │ │ │ ├── en_US.dic │ │ │ │ └── en_US.exc │ │ │ ├── gedit │ │ │ │ └── accels │ │ │ ├── gtk-2.0 │ │ │ │ └── gtkfilechooser.ini │ │ │ ├── guake │ │ │ │ └── session.json │ │ │ ├── mate │ │ │ │ ├── backgrounds.xml │ │ │ │ └── panel2.d │ │ │ │ │ └── default │ │ │ │ │ └── launchers │ │ │ │ │ ├── codium-1.desktop │ │ │ │ │ └── mate-terminal-1.desktop │ │ │ ├── menus │ │ │ │ └── mate-applications-merged │ │ │ ├── mimeapps.list │ │ │ ├── pluma │ │ │ │ ├── accels │ │ │ │ └── pluma.ini │ │ │ ├── terminator │ │ │ │ └── config │ │ │ ├── user-dirs.dirs │ │ │ ├── user-dirs.locale │ │ │ └── xfce4 │ │ │ │ ├── desktop │ │ │ │ ├── icons.screen.latest.rc │ │ │ │ └── icons.screen0-1902x881.rc │ │ │ │ ├── panel │ │ │ │ ├── cpugraph-22.rc │ │ │ │ ├── launcher-6 │ │ │ │ │ └── 15754966573.desktop │ │ │ │ ├── launcher-7 │ │ │ │ │ └── 15754958142.desktop │ │ │ │ └── whiskermenu-1.rc │ │ │ │ ├── xfce4-taskmanager.rc │ │ │ │ └── xfconf │ │ │ │ └── xfce-perchannel-xml │ │ │ │ ├── displays.xml │ │ │ │ ├── thunar.xml │ │ │ │ ├── xfce4-desktop.xml │ │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ │ ├── xfce4-notifyd.xml │ │ │ │ ├── xfce4-panel.xml │ │ │ │ ├── xfce4-power-manager.xml │ │ │ │ ├── xfwm4.xml │ │ │ │ └── xsettings.xml │ │ ├── .nanorc │ │ ├── .tmux.conf │ │ ├── .tmux │ │ │ └── plugins │ │ │ │ ├── tmux-battery │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── battery.tmux │ │ │ │ ├── screenshots │ │ │ │ │ ├── battery_charging.png │ │ │ │ │ ├── battery_discharging.png │ │ │ │ │ ├── battery_full.png │ │ │ │ │ ├── battery_remain.png │ │ │ │ │ ├── battery_status_bg_green.png │ │ │ │ │ ├── battery_status_bg_orange.png │ │ │ │ │ ├── battery_status_bg_red.png │ │ │ │ │ └── battery_status_bg_yellow.png │ │ │ │ └── scripts │ │ │ │ │ ├── battery_graph.sh │ │ │ │ │ ├── battery_icon.sh │ │ │ │ │ ├── battery_percentage.sh │ │ │ │ │ ├── battery_remain.sh │ │ │ │ │ ├── battery_status_bg.sh │ │ │ │ │ ├── battery_status_fg.sh │ │ │ │ │ └── helpers.sh │ │ │ │ ├── tmux-continuum │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── continuum.tmux │ │ │ │ ├── docs │ │ │ │ │ ├── automatic_start.md │ │ │ │ │ ├── continuum_status.md │ │ │ │ │ ├── faq.md │ │ │ │ │ ├── multiple_tmux_servers.md │ │ │ │ │ └── systemd_details.md │ │ │ │ └── scripts │ │ │ │ │ ├── check_tmux_version.sh │ │ │ │ │ ├── continuum_restore.sh │ │ │ │ │ ├── continuum_save.sh │ │ │ │ │ ├── continuum_status.sh │ │ │ │ │ ├── handle_tmux_automatic_start.sh │ │ │ │ │ ├── handle_tmux_automatic_start │ │ │ │ │ ├── README.md │ │ │ │ │ ├── osx_disable.sh │ │ │ │ │ ├── osx_enable.sh │ │ │ │ │ ├── osx_iterm_start_tmux.sh │ │ │ │ │ ├── osx_terminal_start_tmux.sh │ │ │ │ │ ├── systemd_disable.sh │ │ │ │ │ └── systemd_enable.sh │ │ │ │ │ ├── helpers.sh │ │ │ │ │ ├── shared.sh │ │ │ │ │ └── variables.sh │ │ │ │ ├── tmux-cpu │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cpu.tmux │ │ │ │ └── scripts │ │ │ │ │ ├── cpu_icon.sh │ │ │ │ │ ├── cpu_percentage.sh │ │ │ │ │ └── helpers.sh │ │ │ │ ├── tmux-net-speed │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── init.sh │ │ │ │ ├── net_speed.tmux │ │ │ │ ├── run-tests.sh │ │ │ │ ├── scripts │ │ │ │ │ ├── download_speed.sh │ │ │ │ │ ├── helpers.sh │ │ │ │ │ ├── net_speed.sh │ │ │ │ │ └── upload_speed.sh │ │ │ │ └── tests │ │ │ │ │ ├── suites │ │ │ │ │ └── helpers.test.sh │ │ │ │ │ └── test_utils.sh │ │ │ │ ├── tmux-prefix-highlight │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── prefix_highlight.tmux │ │ │ │ └── screenshots │ │ │ │ │ ├── prefix_off.png │ │ │ │ │ └── prefix_on.png │ │ │ │ ├── tmux-resurrect │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ │ ├── custom_key_bindings.md │ │ │ │ │ ├── migrating_from_tmuxinator.md │ │ │ │ │ ├── restoring_bash_history.md │ │ │ │ │ ├── restoring_pane_contents.md │ │ │ │ │ ├── restoring_programs.md │ │ │ │ │ ├── restoring_vim_and_neovim_sessions.md │ │ │ │ │ └── save_dir.md │ │ │ │ ├── lib │ │ │ │ │ └── tmux-test │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── Vagrantfile │ │ │ │ │ │ ├── run_framework_tests │ │ │ │ │ │ ├── run_tests │ │ │ │ │ │ ├── setup │ │ │ │ │ │ ├── tests │ │ │ │ │ │ ├── helpers │ │ │ │ │ │ │ └── helpers.sh │ │ │ │ │ │ ├── run_tests_in_isolation │ │ │ │ │ │ ├── test_basic_script_execution.sh │ │ │ │ │ │ ├── test_default_session_name.sh │ │ │ │ │ │ └── test_tmux_scripting.sh │ │ │ │ │ │ ├── vagrant_centos_provisioning.sh │ │ │ │ │ │ └── vagrant_ubuntu_provisioning.sh │ │ │ │ ├── resurrect.tmux │ │ │ │ ├── run_tests │ │ │ │ ├── save_command_strategies │ │ │ │ │ ├── gdb.sh │ │ │ │ │ ├── pgrep.sh │ │ │ │ │ └── ps.sh │ │ │ │ ├── scripts │ │ │ │ │ ├── check_tmux_version.sh │ │ │ │ │ ├── helpers.sh │ │ │ │ │ ├── process_restore_helpers.sh │ │ │ │ │ ├── restore.exp │ │ │ │ │ ├── restore.sh │ │ │ │ │ ├── save.sh │ │ │ │ │ ├── spinner_helpers.sh │ │ │ │ │ ├── tmux_spinner.sh │ │ │ │ │ └── variables.sh │ │ │ │ ├── strategies │ │ │ │ │ ├── irb_default_strategy.sh │ │ │ │ │ ├── nvim_session.sh │ │ │ │ │ └── vim_session.sh │ │ │ │ ├── tests │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── restore_file.txt │ │ │ │ │ │ └── save_file.txt │ │ │ │ │ ├── helpers │ │ │ │ │ │ ├── create_and_save_tmux_test_environment.exp │ │ │ │ │ │ ├── expect_helpers.exp │ │ │ │ │ │ ├── helpers.sh │ │ │ │ │ │ ├── restore_and_save_tmux_test_environment.exp │ │ │ │ │ │ └── resurrect_helpers.sh │ │ │ │ │ ├── run_tests_in_isolation │ │ │ │ │ ├── test_resurrect_restore.sh │ │ │ │ │ └── test_resurrect_save.sh │ │ │ │ └── video │ │ │ │ │ ├── issue_vid.png │ │ │ │ │ ├── screencast_img.png │ │ │ │ │ └── script.md │ │ │ │ ├── tmux-sensible │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── sensible.tmux │ │ │ │ └── tpm │ │ │ │ ├── .travis.yml │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── HOW_TO_PLUGIN.md │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ ├── clean_plugins │ │ │ │ ├── install_plugins │ │ │ │ └── update_plugins │ │ │ │ ├── bindings │ │ │ │ ├── clean_plugins │ │ │ │ ├── install_plugins │ │ │ │ └── update_plugins │ │ │ │ ├── docs │ │ │ │ ├── automatic_tpm_installation.md │ │ │ │ ├── changing_plugins_install_dir.md │ │ │ │ ├── how_to_create_plugin.md │ │ │ │ ├── managing_plugins_via_cmd_line.md │ │ │ │ └── tpm_not_working.md │ │ │ │ ├── scripts │ │ │ │ ├── check_tmux_version.sh │ │ │ │ ├── clean_plugins.sh │ │ │ │ ├── helpers │ │ │ │ │ ├── plugin_functions.sh │ │ │ │ │ ├── shell_echo_functions.sh │ │ │ │ │ ├── tmux_echo_functions.sh │ │ │ │ │ ├── tmux_utils.sh │ │ │ │ │ └── utility.sh │ │ │ │ ├── install_plugins.sh │ │ │ │ ├── source_plugins.sh │ │ │ │ ├── update_plugin.sh │ │ │ │ ├── update_plugin_prompt_handler.sh │ │ │ │ └── variables.sh │ │ │ │ ├── tests │ │ │ │ ├── expect_failed_plugin_download │ │ │ │ ├── expect_successful_clean_plugins │ │ │ │ ├── expect_successful_multiple_plugins_download │ │ │ │ ├── expect_successful_plugin_download │ │ │ │ ├── expect_successful_update_of_a_single_plugin │ │ │ │ ├── expect_successful_update_of_all_plugins │ │ │ │ ├── helpers │ │ │ │ │ └── tpm.sh │ │ │ │ ├── test_plugin_clean.sh │ │ │ │ ├── test_plugin_installation.sh │ │ │ │ ├── test_plugin_installation_legacy.sh │ │ │ │ ├── test_plugin_sourcing.sh │ │ │ │ └── test_plugin_update.sh │ │ │ │ └── tpm │ │ ├── .zshenv │ │ ├── Desktop │ │ │ └── .gitignore │ │ ├── Documents │ │ │ └── .gitignore │ │ ├── Downloads │ │ │ └── .gitignore │ │ ├── Pictures │ │ │ └── .gitignore │ │ ├── Templates │ │ │ ├── prog │ │ │ │ ├── ObjC.m │ │ │ │ ├── assembly.asm │ │ │ │ ├── bash-sh.sh │ │ │ │ ├── c++.cpp │ │ │ │ ├── c.c │ │ │ │ ├── falcon.fal │ │ │ │ ├── header.h │ │ │ │ ├── java.java │ │ │ │ ├── perl.pl │ │ │ │ ├── perlModule.pm │ │ │ │ ├── python.py │ │ │ │ ├── ruby.rb │ │ │ │ └── shellcode.s │ │ │ ├── text │ │ │ │ ├── calc.ods │ │ │ │ ├── impress.odp │ │ │ │ ├── txt.txt │ │ │ │ └── writer.odt │ │ │ └── web │ │ │ │ ├── css.css │ │ │ │ ├── html.html │ │ │ │ ├── javascript.js │ │ │ │ ├── php.php │ │ │ │ └── xml.xml │ │ ├── Videos │ │ │ └── .gitignore │ │ ├── bin │ │ │ └── fw │ │ ├── payloads │ │ │ └── .gitignore │ │ ├── post-install │ │ │ ├── install-autopsy.sh │ │ │ └── install-resilio.sh │ │ └── scripts │ │ │ ├── duck_installer_v1.1.1_debian.sh │ │ │ ├── duckencoder.jar │ │ │ ├── encode.sh │ │ │ ├── ezsploit.sh │ │ │ ├── lazy.sh │ │ │ ├── pingsweep.sh │ │ │ └── wp6.sh │ └── ssh │ │ └── sshd_config ├── root │ └── .gitignore └── usr │ └── share │ └── backgrounds │ ├── 13l3sob.png │ ├── 1489388.jpg │ ├── 1TjKhEI.png │ ├── 680427.png │ ├── 7JOa81n.png │ ├── BT-Wallpaper.png │ ├── Backtrack.jpg │ ├── Earth-from-Space.jpg │ ├── Hacker.jpg │ ├── Hackerfree.jpg │ ├── Hooded-Hacker.jpg │ ├── Kali 1.png │ ├── Kali.JPG │ ├── Kali1.jpg │ ├── Kali10.gif │ ├── Kali3.jpg │ ├── Kali4.png │ ├── Kali6.jpg │ ├── Kali7.jpg │ ├── Kali9.png │ ├── OUe6WiC.jpg │ ├── SCorp2.png │ ├── SecurityHacker.jpg │ ├── Starman_Tesla.png │ ├── UJVbxVY.png │ ├── bt4-logo-wallpaper.png │ ├── computer-hacker.jpg │ ├── hacker_2621842b.jpg │ ├── hackers impossible is nothing 1920x1080 wallpaper_www.wallpapername.com_74.jpg │ ├── kali11.png │ ├── kali12.jpg │ ├── kali13.png │ ├── kali14.jpg │ ├── kali15.png │ ├── kali16.jpg │ ├── kali17.jpg │ ├── kali19.jpg │ ├── kali20.jpg │ ├── kali21.jpg │ ├── kali5.jpg │ ├── kali8.jpg │ ├── mPdVG3P.png │ ├── pluto_twilight.jpg │ ├── scripttheworld.png │ ├── shatter-backtrack_00000.jpg │ └── untitled.png ├── images └── .gitignore ├── logs └── .gitignore ├── modules ├── live-build-config │ ├── .getopt.sh │ ├── .gitignore │ ├── README.md │ ├── auto │ │ ├── clean │ │ └── config │ ├── build.sh │ ├── build_all.sh │ └── kali-config │ │ ├── common │ │ ├── bootloaders │ │ │ └── grub-pc │ │ │ │ ├── dejavu-bold-14.pf2 │ │ │ │ ├── dejavu-bold-16.pf2 │ │ │ │ ├── grub.cfg │ │ │ │ ├── live-theme │ │ │ │ └── theme.txt │ │ │ │ └── splash.png │ │ ├── hooks │ │ │ └── live │ │ │ │ ├── accessibility-menu.binary │ │ │ │ ├── forensic-menu.binary │ │ │ │ ├── kali-hacks.chroot │ │ │ │ ├── persistence-menu.binary │ │ │ │ └── sleep.chroot │ │ ├── includes.binary │ │ │ └── isolinux │ │ │ │ ├── splash.png │ │ │ │ └── stdmenu.cfg │ │ ├── includes.chroot │ │ │ ├── root │ │ │ │ └── .bashrc │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── live │ │ │ │ └── config │ │ │ │ ├── 0031-kali-password │ │ │ │ └── 1165-fix-openssh-server │ │ ├── includes.installer │ │ │ ├── preseed.cfg │ │ │ └── usr │ │ │ │ └── lib │ │ │ │ └── live-installer.d │ │ │ │ └── unhold │ │ ├── package-lists │ │ │ ├── firmware.list.chroot │ │ │ ├── kali.list.binary │ │ │ ├── linux-headers.list.chroot │ │ │ └── standard.list.chroot │ │ └── preseed │ │ │ └── kali.cfg.chroot │ │ ├── variant-e17 │ │ ├── hooks │ │ │ └── live │ │ │ │ └── tweak-enlightenment-config.chroot │ │ ├── includes.chroot │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── enlightenment │ │ │ │ └── data │ │ │ │ └── backgrounds │ │ │ │ └── kali-wallpaper_1920x1200.edj │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-gnome │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-i3wm │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-kde │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-light │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-lxde │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-mate │ │ └── package-lists │ │ │ └── kali.list.chroot │ │ ├── variant-minimal │ │ └── .empty │ │ └── variant-xfce │ │ └── package-lists │ │ └── kali.list.chroot └── parrot-build │ ├── .gitignore │ ├── README │ ├── auto │ ├── build │ ├── clean │ └── config │ ├── build.sh │ ├── raspberry │ ├── LICENSE.txt │ ├── boot │ │ ├── cmdline.txt │ │ └── config.txt │ ├── bootstrap.sh │ ├── customize.sh │ ├── etc │ │ ├── apt │ │ │ ├── apt.conf.d │ │ │ │ └── 50raspi │ │ │ └── sources.list │ │ ├── default │ │ │ └── rng-tools │ │ ├── fstab │ │ ├── modules │ │ ├── network │ │ │ └── interfaces │ │ └── systemd │ │ │ └── system │ │ │ └── regen-ssh-keys.service │ └── parrotsec.gpg │ ├── templates │ ├── common │ │ ├── archives │ │ │ ├── parrot.key │ │ │ └── parrot.list │ │ ├── bootloaders │ │ │ └── grub-pc │ │ │ │ ├── dejavu-bold-14.pf2 │ │ │ │ ├── dejavu-bold-16.pf2 │ │ │ │ ├── grub.cfg │ │ │ │ ├── live-theme │ │ │ │ └── theme.txt │ │ │ │ ├── splash.png │ │ │ │ ├── splash4.2.png │ │ │ │ └── splash4.7.png │ │ ├── hooks │ │ │ ├── normal │ │ │ │ ├── parrot-hooks.hook.chroot │ │ │ │ └── sleep.hook.chroot │ │ │ ├── parrot-hooks.hook.chroot │ │ │ └── sleep.hook.chroot │ │ ├── includes.binary │ │ │ ├── boot │ │ │ │ ├── efi.img │ │ │ │ └── grub │ │ │ │ │ ├── dejavu-bold-14.pf2 │ │ │ │ │ ├── dejavu-bold-16.pf2 │ │ │ │ │ ├── efi.img │ │ │ │ │ ├── grub.cfg │ │ │ │ │ ├── i386-efi │ │ │ │ │ ├── acpi.mod │ │ │ │ │ ├── adler32.mod │ │ │ │ │ ├── ahci.mod │ │ │ │ │ ├── all_video.mod │ │ │ │ │ ├── aout.mod │ │ │ │ │ ├── appleldr.mod │ │ │ │ │ ├── archelp.mod │ │ │ │ │ ├── at_keyboard.mod │ │ │ │ │ ├── ata.mod │ │ │ │ │ ├── backtrace.mod │ │ │ │ │ ├── bfs.mod │ │ │ │ │ ├── bitmap.mod │ │ │ │ │ ├── bitmap_scale.mod │ │ │ │ │ ├── blocklist.mod │ │ │ │ │ ├── boot.mod │ │ │ │ │ ├── bsd.mod │ │ │ │ │ ├── bswap_test.mod │ │ │ │ │ ├── btrfs.mod │ │ │ │ │ ├── bufio.mod │ │ │ │ │ ├── cat.mod │ │ │ │ │ ├── cbfs.mod │ │ │ │ │ ├── cbls.mod │ │ │ │ │ ├── cbmemc.mod │ │ │ │ │ ├── cbtable.mod │ │ │ │ │ ├── cbtime.mod │ │ │ │ │ ├── chain.mod │ │ │ │ │ ├── cmdline_cat_test.mod │ │ │ │ │ ├── cmp.mod │ │ │ │ │ ├── cmp_test.mod │ │ │ │ │ ├── command.lst │ │ │ │ │ ├── cpio.mod │ │ │ │ │ ├── cpio_be.mod │ │ │ │ │ ├── cpuid.mod │ │ │ │ │ ├── crc64.mod │ │ │ │ │ ├── crypto.lst │ │ │ │ │ ├── crypto.mod │ │ │ │ │ ├── cryptodisk.mod │ │ │ │ │ ├── cs5536.mod │ │ │ │ │ ├── ctz_test.mod │ │ │ │ │ ├── date.mod │ │ │ │ │ ├── datehook.mod │ │ │ │ │ ├── datetime.mod │ │ │ │ │ ├── disk.mod │ │ │ │ │ ├── diskfilter.mod │ │ │ │ │ ├── div.mod │ │ │ │ │ ├── div_test.mod │ │ │ │ │ ├── dm_nv.mod │ │ │ │ │ ├── echo.mod │ │ │ │ │ ├── efi_gop.mod │ │ │ │ │ ├── efi_uga.mod │ │ │ │ │ ├── efifwsetup.mod │ │ │ │ │ ├── efinet.mod │ │ │ │ │ ├── ehci.mod │ │ │ │ │ ├── elf.mod │ │ │ │ │ ├── eval.mod │ │ │ │ │ ├── exfat.mod │ │ │ │ │ ├── exfctest.mod │ │ │ │ │ ├── ext2.mod │ │ │ │ │ ├── extcmd.mod │ │ │ │ │ ├── fat.mod │ │ │ │ │ ├── file.mod │ │ │ │ │ ├── fixvideo.mod │ │ │ │ │ ├── font.mod │ │ │ │ │ ├── fs.lst │ │ │ │ │ ├── gcry_arcfour.mod │ │ │ │ │ ├── gcry_blowfish.mod │ │ │ │ │ ├── gcry_camellia.mod │ │ │ │ │ ├── gcry_cast5.mod │ │ │ │ │ ├── gcry_crc.mod │ │ │ │ │ ├── gcry_des.mod │ │ │ │ │ ├── gcry_dsa.mod │ │ │ │ │ ├── gcry_idea.mod │ │ │ │ │ ├── gcry_md4.mod │ │ │ │ │ ├── gcry_md5.mod │ │ │ │ │ ├── gcry_rfc2268.mod │ │ │ │ │ ├── gcry_rijndael.mod │ │ │ │ │ ├── gcry_rmd160.mod │ │ │ │ │ ├── gcry_rsa.mod │ │ │ │ │ ├── gcry_seed.mod │ │ │ │ │ ├── gcry_serpent.mod │ │ │ │ │ ├── gcry_sha1.mod │ │ │ │ │ ├── gcry_sha256.mod │ │ │ │ │ ├── gcry_sha512.mod │ │ │ │ │ ├── gcry_tiger.mod │ │ │ │ │ ├── gcry_twofish.mod │ │ │ │ │ ├── gcry_whirlpool.mod │ │ │ │ │ ├── gdb.mod │ │ │ │ │ ├── geli.mod │ │ │ │ │ ├── gettext.mod │ │ │ │ │ ├── gfxmenu.mod │ │ │ │ │ ├── gfxterm.mod │ │ │ │ │ ├── gfxterm_background.mod │ │ │ │ │ ├── gfxterm_menu.mod │ │ │ │ │ ├── gptsync.mod │ │ │ │ │ ├── grub.cfg │ │ │ │ │ ├── gzio.mod │ │ │ │ │ ├── halt.mod │ │ │ │ │ ├── hashsum.mod │ │ │ │ │ ├── hdparm.mod │ │ │ │ │ ├── help.mod │ │ │ │ │ ├── hexdump.mod │ │ │ │ │ ├── hfs.mod │ │ │ │ │ ├── hfsplus.mod │ │ │ │ │ ├── hfspluscomp.mod │ │ │ │ │ ├── http.mod │ │ │ │ │ ├── iorw.mod │ │ │ │ │ ├── jfs.mod │ │ │ │ │ ├── jpeg.mod │ │ │ │ │ ├── keylayouts.mod │ │ │ │ │ ├── keystatus.mod │ │ │ │ │ ├── ldm.mod │ │ │ │ │ ├── legacy_password_test.mod │ │ │ │ │ ├── legacycfg.mod │ │ │ │ │ ├── linux.mod │ │ │ │ │ ├── linux16.mod │ │ │ │ │ ├── linuxefi.mod │ │ │ │ │ ├── loadbios.mod │ │ │ │ │ ├── loadenv.mod │ │ │ │ │ ├── loopback.mod │ │ │ │ │ ├── ls.mod │ │ │ │ │ ├── lsacpi.mod │ │ │ │ │ ├── lsefi.mod │ │ │ │ │ ├── lsefimmap.mod │ │ │ │ │ ├── lsefisystab.mod │ │ │ │ │ ├── lsmmap.mod │ │ │ │ │ ├── lspci.mod │ │ │ │ │ ├── lssal.mod │ │ │ │ │ ├── luks.mod │ │ │ │ │ ├── lvm.mod │ │ │ │ │ ├── lzopio.mod │ │ │ │ │ ├── macbless.mod │ │ │ │ │ ├── macho.mod │ │ │ │ │ ├── mdraid09.mod │ │ │ │ │ ├── mdraid09_be.mod │ │ │ │ │ ├── mdraid1x.mod │ │ │ │ │ ├── memrw.mod │ │ │ │ │ ├── minicmd.mod │ │ │ │ │ ├── minix2.mod │ │ │ │ │ ├── minix2_be.mod │ │ │ │ │ ├── minix3.mod │ │ │ │ │ ├── minix3_be.mod │ │ │ │ │ ├── minix_be.mod │ │ │ │ │ ├── mmap.mod │ │ │ │ │ ├── moddep.lst │ │ │ │ │ ├── morse.mod │ │ │ │ │ ├── mpi.mod │ │ │ │ │ ├── msdospart.mod │ │ │ │ │ ├── mul_test.mod │ │ │ │ │ ├── multiboot.mod │ │ │ │ │ ├── multiboot2.mod │ │ │ │ │ ├── nativedisk.mod │ │ │ │ │ ├── net.mod │ │ │ │ │ ├── newc.mod │ │ │ │ │ ├── normal.mod │ │ │ │ │ ├── ntfs.mod │ │ │ │ │ ├── ntfscomp.mod │ │ │ │ │ ├── odc.mod │ │ │ │ │ ├── offsetio.mod │ │ │ │ │ ├── ohci.mod │ │ │ │ │ ├── part_acorn.mod │ │ │ │ │ ├── part_amiga.mod │ │ │ │ │ ├── part_apple.mod │ │ │ │ │ ├── part_bsd.mod │ │ │ │ │ ├── part_dfly.mod │ │ │ │ │ ├── part_dvh.mod │ │ │ │ │ ├── part_gpt.mod │ │ │ │ │ ├── part_msdos.mod │ │ │ │ │ ├── part_plan.mod │ │ │ │ │ ├── part_sun.mod │ │ │ │ │ ├── part_sunpc.mod │ │ │ │ │ ├── partmap.lst │ │ │ │ │ ├── parttool.lst │ │ │ │ │ ├── parttool.mod │ │ │ │ │ ├── password.mod │ │ │ │ │ ├── password_pbkdf2.mod │ │ │ │ │ ├── pata.mod │ │ │ │ │ ├── pbkdf2.mod │ │ │ │ │ ├── pbkdf2_test.mod │ │ │ │ │ ├── pcidump.mod │ │ │ │ │ ├── play.mod │ │ │ │ │ ├── png.mod │ │ │ │ │ ├── priority_queue.mod │ │ │ │ │ ├── probe.mod │ │ │ │ │ ├── procfs.mod │ │ │ │ │ ├── progress.mod │ │ │ │ │ ├── raid5rec.mod │ │ │ │ │ ├── raid6rec.mod │ │ │ │ │ ├── random.mod │ │ │ │ │ ├── read.mod │ │ │ │ │ ├── reboot.mod │ │ │ │ │ ├── regexp.mod │ │ │ │ │ ├── reiserfs.mod │ │ │ │ │ ├── relocator.mod │ │ │ │ │ ├── romfs.mod │ │ │ │ │ ├── scsi.mod │ │ │ │ │ ├── serial.mod │ │ │ │ │ ├── setjmp.mod │ │ │ │ │ ├── setjmp_test.mod │ │ │ │ │ ├── setpci.mod │ │ │ │ │ ├── shift_test.mod │ │ │ │ │ ├── signature_test.mod │ │ │ │ │ ├── sleep.mod │ │ │ │ │ ├── sleep_test.mod │ │ │ │ │ ├── spkmodem.mod │ │ │ │ │ ├── squash4.mod │ │ │ │ │ ├── syslinuxcfg.mod │ │ │ │ │ ├── terminal.lst │ │ │ │ │ ├── terminal.mod │ │ │ │ │ ├── terminfo.mod │ │ │ │ │ ├── test.mod │ │ │ │ │ ├── test_blockarg.mod │ │ │ │ │ ├── testload.mod │ │ │ │ │ ├── testspeed.mod │ │ │ │ │ ├── tftp.mod │ │ │ │ │ ├── tga.mod │ │ │ │ │ ├── time.mod │ │ │ │ │ ├── tr.mod │ │ │ │ │ ├── trig.mod │ │ │ │ │ ├── true.mod │ │ │ │ │ ├── udf.mod │ │ │ │ │ ├── ufs1.mod │ │ │ │ │ ├── ufs1_be.mod │ │ │ │ │ ├── ufs2.mod │ │ │ │ │ ├── uhci.mod │ │ │ │ │ ├── usb.mod │ │ │ │ │ ├── usb_keyboard.mod │ │ │ │ │ ├── usbms.mod │ │ │ │ │ ├── usbserial_common.mod │ │ │ │ │ ├── usbserial_ftdi.mod │ │ │ │ │ ├── usbserial_pl2303.mod │ │ │ │ │ ├── usbserial_usbdebug.mod │ │ │ │ │ ├── usbtest.mod │ │ │ │ │ ├── verify.mod │ │ │ │ │ ├── video.lst │ │ │ │ │ ├── video.mod │ │ │ │ │ ├── video_bochs.mod │ │ │ │ │ ├── video_cirrus.mod │ │ │ │ │ ├── video_colors.mod │ │ │ │ │ ├── video_fb.mod │ │ │ │ │ ├── videoinfo.mod │ │ │ │ │ ├── videotest.mod │ │ │ │ │ ├── videotest_checksum.mod │ │ │ │ │ ├── xfs.mod │ │ │ │ │ ├── xnu.mod │ │ │ │ │ ├── xnu_uuid.mod │ │ │ │ │ ├── xnu_uuid_test.mod │ │ │ │ │ ├── xzio.mod │ │ │ │ │ └── zfscrypt.mod │ │ │ │ │ ├── live-theme │ │ │ │ │ └── theme.txt │ │ │ │ │ ├── loopback.cfg │ │ │ │ │ ├── splash.png │ │ │ │ │ ├── unicode.pf2 │ │ │ │ │ └── x86_64-efi │ │ │ │ │ ├── acpi.mod │ │ │ │ │ ├── adler32.mod │ │ │ │ │ ├── ahci.mod │ │ │ │ │ ├── all_video.mod │ │ │ │ │ ├── aout.mod │ │ │ │ │ ├── appleldr.mod │ │ │ │ │ ├── archelp.mod │ │ │ │ │ ├── at_keyboard.mod │ │ │ │ │ ├── ata.mod │ │ │ │ │ ├── backtrace.mod │ │ │ │ │ ├── bfs.mod │ │ │ │ │ ├── bitmap.mod │ │ │ │ │ ├── bitmap_scale.mod │ │ │ │ │ ├── blocklist.mod │ │ │ │ │ ├── boot.mod │ │ │ │ │ ├── bsd.mod │ │ │ │ │ ├── bswap_test.mod │ │ │ │ │ ├── btrfs.mod │ │ │ │ │ ├── bufio.mod │ │ │ │ │ ├── cat.mod │ │ │ │ │ ├── cbfs.mod │ │ │ │ │ ├── cbls.mod │ │ │ │ │ ├── cbmemc.mod │ │ │ │ │ ├── cbtable.mod │ │ │ │ │ ├── cbtime.mod │ │ │ │ │ ├── chain.mod │ │ │ │ │ ├── cmdline_cat_test.mod │ │ │ │ │ ├── cmp.mod │ │ │ │ │ ├── cmp_test.mod │ │ │ │ │ ├── command.lst │ │ │ │ │ ├── cpio.mod │ │ │ │ │ ├── cpio_be.mod │ │ │ │ │ ├── cpuid.mod │ │ │ │ │ ├── crc64.mod │ │ │ │ │ ├── crypto.lst │ │ │ │ │ ├── crypto.mod │ │ │ │ │ ├── cryptodisk.mod │ │ │ │ │ ├── cs5536.mod │ │ │ │ │ ├── ctz_test.mod │ │ │ │ │ ├── date.mod │ │ │ │ │ ├── datehook.mod │ │ │ │ │ ├── datetime.mod │ │ │ │ │ ├── disk.mod │ │ │ │ │ ├── diskfilter.mod │ │ │ │ │ ├── div.mod │ │ │ │ │ ├── div_test.mod │ │ │ │ │ ├── dm_nv.mod │ │ │ │ │ ├── echo.mod │ │ │ │ │ ├── efi_gop.mod │ │ │ │ │ ├── efi_uga.mod │ │ │ │ │ ├── efifwsetup.mod │ │ │ │ │ ├── efinet.mod │ │ │ │ │ ├── ehci.mod │ │ │ │ │ ├── elf.mod │ │ │ │ │ ├── eval.mod │ │ │ │ │ ├── exfat.mod │ │ │ │ │ ├── exfctest.mod │ │ │ │ │ ├── ext2.mod │ │ │ │ │ ├── extcmd.mod │ │ │ │ │ ├── fat.mod │ │ │ │ │ ├── file.mod │ │ │ │ │ ├── fixvideo.mod │ │ │ │ │ ├── font.mod │ │ │ │ │ ├── fs.lst │ │ │ │ │ ├── gcry_arcfour.mod │ │ │ │ │ ├── gcry_blowfish.mod │ │ │ │ │ ├── gcry_camellia.mod │ │ │ │ │ ├── gcry_cast5.mod │ │ │ │ │ ├── gcry_crc.mod │ │ │ │ │ ├── gcry_des.mod │ │ │ │ │ ├── gcry_dsa.mod │ │ │ │ │ ├── gcry_idea.mod │ │ │ │ │ ├── gcry_md4.mod │ │ │ │ │ ├── gcry_md5.mod │ │ │ │ │ ├── gcry_rfc2268.mod │ │ │ │ │ ├── gcry_rijndael.mod │ │ │ │ │ ├── gcry_rmd160.mod │ │ │ │ │ ├── gcry_rsa.mod │ │ │ │ │ ├── gcry_seed.mod │ │ │ │ │ ├── gcry_serpent.mod │ │ │ │ │ ├── gcry_sha1.mod │ │ │ │ │ ├── gcry_sha256.mod │ │ │ │ │ ├── gcry_sha512.mod │ │ │ │ │ ├── gcry_tiger.mod │ │ │ │ │ ├── gcry_twofish.mod │ │ │ │ │ ├── gcry_whirlpool.mod │ │ │ │ │ ├── geli.mod │ │ │ │ │ ├── gettext.mod │ │ │ │ │ ├── gfxmenu.mod │ │ │ │ │ ├── gfxterm.mod │ │ │ │ │ ├── gfxterm_background.mod │ │ │ │ │ ├── gfxterm_menu.mod │ │ │ │ │ ├── gptsync.mod │ │ │ │ │ ├── grub.cfg │ │ │ │ │ ├── gzio.mod │ │ │ │ │ ├── halt.mod │ │ │ │ │ ├── hashsum.mod │ │ │ │ │ ├── hdparm.mod │ │ │ │ │ ├── help.mod │ │ │ │ │ ├── hexdump.mod │ │ │ │ │ ├── hfs.mod │ │ │ │ │ ├── hfsplus.mod │ │ │ │ │ ├── hfspluscomp.mod │ │ │ │ │ ├── http.mod │ │ │ │ │ ├── iorw.mod │ │ │ │ │ ├── jfs.mod │ │ │ │ │ ├── jpeg.mod │ │ │ │ │ ├── keylayouts.mod │ │ │ │ │ ├── keystatus.mod │ │ │ │ │ ├── ldm.mod │ │ │ │ │ ├── legacy_password_test.mod │ │ │ │ │ ├── legacycfg.mod │ │ │ │ │ ├── linux.mod │ │ │ │ │ ├── linux16.mod │ │ │ │ │ ├── linuxefi.mod │ │ │ │ │ ├── loadbios.mod │ │ │ │ │ ├── loadenv.mod │ │ │ │ │ ├── loopback.mod │ │ │ │ │ ├── ls.mod │ │ │ │ │ ├── lsacpi.mod │ │ │ │ │ ├── lsefi.mod │ │ │ │ │ ├── lsefimmap.mod │ │ │ │ │ ├── lsefisystab.mod │ │ │ │ │ ├── lsmmap.mod │ │ │ │ │ ├── lspci.mod │ │ │ │ │ ├── lssal.mod │ │ │ │ │ ├── luks.mod │ │ │ │ │ ├── lvm.mod │ │ │ │ │ ├── lzopio.mod │ │ │ │ │ ├── macbless.mod │ │ │ │ │ ├── macho.mod │ │ │ │ │ ├── mdraid09.mod │ │ │ │ │ ├── mdraid09_be.mod │ │ │ │ │ ├── mdraid1x.mod │ │ │ │ │ ├── memrw.mod │ │ │ │ │ ├── minicmd.mod │ │ │ │ │ ├── minix2.mod │ │ │ │ │ ├── minix2_be.mod │ │ │ │ │ ├── minix3.mod │ │ │ │ │ ├── minix3_be.mod │ │ │ │ │ ├── minix_be.mod │ │ │ │ │ ├── mmap.mod │ │ │ │ │ ├── moddep.lst │ │ │ │ │ ├── morse.mod │ │ │ │ │ ├── mpi.mod │ │ │ │ │ ├── msdospart.mod │ │ │ │ │ ├── mul_test.mod │ │ │ │ │ ├── multiboot.mod │ │ │ │ │ ├── multiboot2.mod │ │ │ │ │ ├── nativedisk.mod │ │ │ │ │ ├── net.mod │ │ │ │ │ ├── newc.mod │ │ │ │ │ ├── normal.mod │ │ │ │ │ ├── ntfs.mod │ │ │ │ │ ├── ntfscomp.mod │ │ │ │ │ ├── odc.mod │ │ │ │ │ ├── offsetio.mod │ │ │ │ │ ├── ohci.mod │ │ │ │ │ ├── part_acorn.mod │ │ │ │ │ ├── part_amiga.mod │ │ │ │ │ ├── part_apple.mod │ │ │ │ │ ├── part_bsd.mod │ │ │ │ │ ├── part_dfly.mod │ │ │ │ │ ├── part_dvh.mod │ │ │ │ │ ├── part_gpt.mod │ │ │ │ │ ├── part_msdos.mod │ │ │ │ │ ├── part_plan.mod │ │ │ │ │ ├── part_sun.mod │ │ │ │ │ ├── part_sunpc.mod │ │ │ │ │ ├── partmap.lst │ │ │ │ │ ├── parttool.lst │ │ │ │ │ ├── parttool.mod │ │ │ │ │ ├── password.mod │ │ │ │ │ ├── password_pbkdf2.mod │ │ │ │ │ ├── pata.mod │ │ │ │ │ ├── pbkdf2.mod │ │ │ │ │ ├── pbkdf2_test.mod │ │ │ │ │ ├── pcidump.mod │ │ │ │ │ ├── play.mod │ │ │ │ │ ├── png.mod │ │ │ │ │ ├── priority_queue.mod │ │ │ │ │ ├── probe.mod │ │ │ │ │ ├── procfs.mod │ │ │ │ │ ├── progress.mod │ │ │ │ │ ├── raid5rec.mod │ │ │ │ │ ├── raid6rec.mod │ │ │ │ │ ├── random.mod │ │ │ │ │ ├── read.mod │ │ │ │ │ ├── reboot.mod │ │ │ │ │ ├── regexp.mod │ │ │ │ │ ├── reiserfs.mod │ │ │ │ │ ├── relocator.mod │ │ │ │ │ ├── romfs.mod │ │ │ │ │ ├── scsi.mod │ │ │ │ │ ├── serial.mod │ │ │ │ │ ├── setjmp.mod │ │ │ │ │ ├── setjmp_test.mod │ │ │ │ │ ├── setpci.mod │ │ │ │ │ ├── shift_test.mod │ │ │ │ │ ├── signature_test.mod │ │ │ │ │ ├── sleep.mod │ │ │ │ │ ├── sleep_test.mod │ │ │ │ │ ├── spkmodem.mod │ │ │ │ │ ├── squash4.mod │ │ │ │ │ ├── syslinuxcfg.mod │ │ │ │ │ ├── terminal.lst │ │ │ │ │ ├── terminal.mod │ │ │ │ │ ├── terminfo.mod │ │ │ │ │ ├── test.mod │ │ │ │ │ ├── test_blockarg.mod │ │ │ │ │ ├── testload.mod │ │ │ │ │ ├── testspeed.mod │ │ │ │ │ ├── tftp.mod │ │ │ │ │ ├── tga.mod │ │ │ │ │ ├── time.mod │ │ │ │ │ ├── tr.mod │ │ │ │ │ ├── trig.mod │ │ │ │ │ ├── true.mod │ │ │ │ │ ├── udf.mod │ │ │ │ │ ├── ufs1.mod │ │ │ │ │ ├── ufs1_be.mod │ │ │ │ │ ├── ufs2.mod │ │ │ │ │ ├── uhci.mod │ │ │ │ │ ├── usb.mod │ │ │ │ │ ├── usb_keyboard.mod │ │ │ │ │ ├── usbms.mod │ │ │ │ │ ├── usbserial_common.mod │ │ │ │ │ ├── usbserial_ftdi.mod │ │ │ │ │ ├── usbserial_pl2303.mod │ │ │ │ │ ├── usbserial_usbdebug.mod │ │ │ │ │ ├── usbtest.mod │ │ │ │ │ ├── verify.mod │ │ │ │ │ ├── video.lst │ │ │ │ │ ├── video.mod │ │ │ │ │ ├── video_bochs.mod │ │ │ │ │ ├── video_cirrus.mod │ │ │ │ │ ├── video_colors.mod │ │ │ │ │ ├── video_fb.mod │ │ │ │ │ ├── videoinfo.mod │ │ │ │ │ ├── videotest.mod │ │ │ │ │ ├── videotest_checksum.mod │ │ │ │ │ ├── xfs.mod │ │ │ │ │ ├── xnu.mod │ │ │ │ │ ├── xnu_uuid.mod │ │ │ │ │ ├── xnu_uuid_test.mod │ │ │ │ │ ├── xzio.mod │ │ │ │ │ └── zfscrypt.mod │ │ │ ├── efi │ │ │ │ └── boot │ │ │ │ │ ├── bootia32.efi │ │ │ │ │ └── bootx64.efi │ │ │ └── isolinux │ │ │ │ ├── advanced.cfg │ │ │ │ ├── install.cfg │ │ │ │ ├── isolinux.cfg │ │ │ │ ├── live.cfg │ │ │ │ ├── live.de.cfg │ │ │ │ ├── live.es.cfg │ │ │ │ ├── live.fr.cfg │ │ │ │ ├── live.it.cfg │ │ │ │ ├── menu.cfg │ │ │ │ ├── splash.png │ │ │ │ └── stdmenu.cfg │ │ ├── includes.chroot │ │ │ ├── etc │ │ │ │ └── resolv.conf │ │ │ ├── lib │ │ │ │ └── live │ │ │ │ │ └── config │ │ │ │ │ └── 0031-user-password │ │ │ └── root │ │ │ │ └── .config │ │ │ │ └── bleachbit │ │ │ │ └── bleachbit.ini │ │ ├── includes.installer │ │ │ ├── etc │ │ │ │ └── hostname │ │ │ ├── preseed.cfg │ │ │ ├── preseed.cfg.kali │ │ │ ├── preseed.cfg.orig │ │ │ └── usr │ │ │ │ ├── lib │ │ │ │ └── live-installer.d │ │ │ │ │ ├── firecfg-hook │ │ │ │ │ ├── initramfs-update │ │ │ │ │ ├── kernel-unhold │ │ │ │ │ └── repo-config │ │ │ │ └── share │ │ │ │ └── graphics │ │ │ │ ├── logo_debian.png │ │ │ │ ├── logo_installer.png │ │ │ │ ├── logo_installer_dark.png │ │ │ │ └── logo_parrot.png │ │ ├── package-lists │ │ │ ├── generic.list.binary │ │ │ ├── grub-efi-amd64.list.binary │ │ │ ├── grub-efi-ia32.list.binary │ │ │ ├── grub-pc.list.binary │ │ │ └── standard.list.chroot │ │ └── preseed │ │ │ ├── firmware │ │ │ ├── inetd.cfg.chroot │ │ │ ├── live-boot │ │ │ └── wireshark │ ├── parrot-home │ │ ├── hooks │ │ │ ├── home-hooks.hook.chroot │ │ │ └── normal │ │ │ │ └── home-hooks.hook.chroot │ │ ├── includes.chroot │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── applications │ │ │ │ └── debian-installer-launcher.desktop │ │ └── package-lists │ │ │ └── parrot-home.list.chroot │ ├── parrot-htb │ │ ├── hooks │ │ │ ├── normal │ │ │ │ └── security-hooks.hook.chroot │ │ │ └── security-hooks.hook.chroot │ │ ├── includes.chroot │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── applications │ │ │ │ └── debian-installer-launcher.desktop │ │ └── package-lists │ │ │ └── parrot-security.list.chroot │ ├── parrot-kde-home │ │ ├── hooks │ │ │ ├── home-hooks.hook.chroot │ │ │ └── normal │ │ │ │ └── home-hooks.hook.chroot │ │ └── package-lists │ │ │ └── parrot-kde.list.chroot │ ├── parrot-kde-security │ │ ├── hooks │ │ │ ├── normal │ │ │ │ └── security-hooks.hook.chroot │ │ │ └── security-hooks.hook.chroot │ │ └── package-lists │ │ │ └── parrot-kde.list.chroot │ ├── parrot-security │ │ ├── hooks │ │ │ ├── normal │ │ │ │ └── security-hooks.hook.chroot │ │ │ └── security-hooks.hook.chroot │ │ ├── includes.chroot │ │ │ └── usr │ │ │ │ └── share │ │ │ │ └── applications │ │ │ │ └── debian-installer-launcher.desktop │ │ └── package-lists │ │ │ └── parrot-security.list.chroot │ ├── parrot-studio │ │ ├── hooks │ │ │ ├── normal │ │ │ │ └── studio-hooks.hook.chroot │ │ │ └── studio-hooks.hook.chroot │ │ └── package-lists │ │ │ └── parrot-studio.list.chroot │ ├── parrot-variant-cinnamon │ │ └── package-lists │ │ │ └── parrot-cinnamon.list.chroot │ ├── parrot-variant-gnome │ │ └── package-lists │ │ │ └── parrot-gnome.list.chroot │ ├── parrot-variant-kde │ │ └── package-lists │ │ │ └── parrot-kde.list.chroot │ ├── parrot-variant-lxde │ │ └── package-lists │ │ │ └── parrot-lxde.list.chroot │ ├── parrot-variant-mate │ └── parrot-variant-xfce │ │ └── package-lists │ │ └── parrot-xfce.list.chroot │ └── torrent-generator.sh └── runme.sh /.gitignore: -------------------------------------------------------------------------------- 1 | build/* 2 | images/* 3 | .vscode/* 4 | -------------------------------------------------------------------------------- /build/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | resolvconf/run/resolv.conf -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/autostart/guake.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Type=Application 3 | Exec=guake 4 | Hidden=false 5 | X-MATE-Autostart-enabled=true 6 | Name[en_US]=Guake Terminal 7 | Name=Guake Terminal 8 | Comment[en_US]= 9 | Comment= 10 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/dconf/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.config/dconf/user -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/enchant/en_US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.config/enchant/en_US.dic -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/enchant/en_US.exc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.config/enchant/en_US.exc -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/gedit/accels: -------------------------------------------------------------------------------- 1 | ; org.gnome.gedit GtkAccelMap rc-file -*- scheme -*- 2 | ; this file is an automated accelerator map dump 3 | ; 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/menus/mate-applications-merged: -------------------------------------------------------------------------------- 1 | /root/.config/menus/applications-merged -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/mimeapps.list: -------------------------------------------------------------------------------- 1 | [Default Applications] 2 | inode/directory=thunar.desktop; 3 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/pluma/pluma.ini: -------------------------------------------------------------------------------- 1 | [window] 2 | width=650 3 | height=500 4 | state=128 5 | side_panel_active_page=827629879 6 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/user-dirs.locale: -------------------------------------------------------------------------------- 1 | en_US -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/xfce4/desktop/icons.screen.latest.rc: -------------------------------------------------------------------------------- 1 | /root/.config/xfce4/desktop/icons.screen0-1902x881.rc -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/xfce4/desktop/icons.screen0-1902x881.rc: -------------------------------------------------------------------------------- 1 | [xfdesktop-version-4.10.3+-rcfile_format] 2 | 4.10.3+=true 3 | 4 | [Trash] 5 | row=0 6 | col=0 7 | 8 | [/] 9 | row=1 10 | col=0 11 | 12 | [/root] 13 | row=2 14 | col=0 15 | 16 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.config/xfce4/xfconf/xfce-perchannel-xml/displays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.nanorc: -------------------------------------------------------------------------------- 1 | set smooth 2 | set linenumbers 3 | set morespace 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_charging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_charging.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_discharging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_discharging.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_full.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_remain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_remain.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_green.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_orange.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_red.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-battery/screenshots/battery_status_bg_yellow.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-continuum/scripts/handle_tmux_automatic_start/README.md: -------------------------------------------------------------------------------- 1 | docs/automatic_start.md -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-continuum/scripts/shared.sh: -------------------------------------------------------------------------------- 1 | current_timestamp() { 2 | echo "$(date +%s)" 3 | } 4 | 5 | set_last_save_timestamp() { 6 | set_tmux_option "$last_auto_save_option" "$(current_timestamp)" 7 | } 8 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-net-speed/run-tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash - 2 | CURRENT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" 3 | 4 | for testSuite in $CURRENT_DIR/tests/suites/* ; do 5 | $testSuite 6 | done 7 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_off.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-prefix-highlight/screenshots/prefix_on.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/docs/save_dir.md: -------------------------------------------------------------------------------- 1 | # Resurrect save dir 2 | 3 | By default Tmux environment is saved to a file in `~/.tmux/resurrect` dir. 4 | Change this with: 5 | 6 | set -g @resurrect-dir '/some/path' 7 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/lib/tmux-test/.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant/ 2 | lib/ 3 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/lib/tmux-test/tests/test_basic_script_execution.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/run_tests: -------------------------------------------------------------------------------- 1 | lib/tmux-test/run_tests -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/scripts/spinner_helpers.sh: -------------------------------------------------------------------------------- 1 | start_spinner() { 2 | $CURRENT_DIR/tmux_spinner.sh "$1" "$2" & 3 | export SPINNER_PID=$! 4 | } 5 | 6 | stop_spinner() { 7 | kill $SPINNER_PID 8 | } 9 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/tests/helpers/helpers.sh: -------------------------------------------------------------------------------- 1 | ../../lib/tmux-test/tests/helpers/helpers.sh -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/tests/run_tests_in_isolation: -------------------------------------------------------------------------------- 1 | ../lib/tmux-test/tests/run_tests_in_isolation -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/video/issue_vid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-resurrect/video/issue_vid.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tmux-resurrect/video/screencast_img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/.tmux/plugins/tmux-resurrect/video/screencast_img.png -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tpm/HOW_TO_PLUGIN.md: -------------------------------------------------------------------------------- 1 | Instructions moved to 2 | [docs/how_to_create_plugin.md](docs/how_to_create_plugin.md). 3 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tpm/scripts/helpers/shell_echo_functions.sh: -------------------------------------------------------------------------------- 1 | echo_ok() { 2 | echo "$*" 3 | } 4 | 5 | echo_err() { 6 | fail_helper "$*" 7 | } 8 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.tmux/plugins/tpm/scripts/helpers/tmux_utils.sh: -------------------------------------------------------------------------------- 1 | reload_tmux_environment() { 2 | tmux source-file ~/.tmux.conf >/dev/null 2>&1 3 | } 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/.zshenv: -------------------------------------------------------------------------------- 1 | export PATH=~/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games:/usr/share/games:/usr/local/sbin:/usr/sbin:/sbin:~/local/bin 2 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Desktop/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Documents/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Downloads/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Pictures/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/bash-sh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "Hello, World!" 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/c++.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | main() 6 | { 7 | cout << "Hello, World!" << endl; 8 | return 0; 9 | } 10 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/c.c: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | int main(int argc, char **argv) 4 | { 5 | printf("Hello, World!\n"); 6 | return 0; 7 | } 8 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/falcon.fal: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env falcon 2 | 3 | > "Hello, World!" 4 | 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/header.h: -------------------------------------------------------------------------------- 1 | #ifndef _HEADER_FILE_H_ 2 | #define _HEADER_FILE_H_ 3 | 4 | #endif //_HEADER_FILE_H_ 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/java.java: -------------------------------------------------------------------------------- 1 | public class HelloWorld { 2 | 3 | public static void main(String[] args) { 4 | System.out.println("Hello, World!"); 5 | } 6 | 7 | } 8 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/perl.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | print("Hello, World!"); 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/perlModule.pm: -------------------------------------------------------------------------------- 1 | package foobar; 2 | 3 | 1; 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/python.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python 2 | 3 | print "Hello, World!" 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/prog/ruby.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | 3 | say "Hello, World!" 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/text/calc.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/Templates/text/calc.ods -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/text/impress.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/Templates/text/impress.odp -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/text/txt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/Templates/text/txt.txt -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/text/writer.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/Templates/text/writer.odt -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/web/css.css: -------------------------------------------------------------------------------- 1 | .class 2 | { 3 | display: block; 4 | color: #00ff00; 5 | } 6 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/web/javascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/Templates/web/javascript.js -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/web/php.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Templates/web/xml.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /filesystem/etc/skel/Videos/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/payloads/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/etc/skel/post-install/install-resilio.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | wget https://download-cdn.resilio.com/2.6.4.1344/Debian/resilio-sync_2.6.4.1344-1_amd64.deb 4 | apt install ./resilio-sync_2.6.4.1344-1_amd64.deb -y -------------------------------------------------------------------------------- /filesystem/etc/skel/scripts/duckencoder.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/etc/skel/scripts/duckencoder.jar -------------------------------------------------------------------------------- /filesystem/etc/skel/scripts/encode.sh: -------------------------------------------------------------------------------- 1 | java -jar duckencode.jar -i payload.txt 2 | -------------------------------------------------------------------------------- /filesystem/etc/skel/scripts/lazy.sh: -------------------------------------------------------------------------------- 1 | cd .. 2 | git clone https://github.com/arismelachroinos/lscript 3 | 4 | -------------------------------------------------------------------------------- /filesystem/etc/skel/scripts/pingsweep.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | for ip in $(seq 1 254); do 3 | ping -c 1 172.30.0.$ip |grep "bytes from" |cut -d" " -f4|cut -d";" -f1& 4 | sleep 0.01 5 | done 6 | -------------------------------------------------------------------------------- /filesystem/root/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/13l3sob.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/13l3sob.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/1489388.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/1489388.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/1TjKhEI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/1TjKhEI.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/680427.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/680427.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/7JOa81n.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/7JOa81n.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/BT-Wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/BT-Wallpaper.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Backtrack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Backtrack.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Earth-from-Space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Earth-from-Space.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Hacker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Hacker.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Hackerfree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Hackerfree.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Hooded-Hacker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Hooded-Hacker.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali 1.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali.JPG -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali1.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali10.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali10.gif -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali3.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali4.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali6.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali7.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Kali9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Kali9.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/OUe6WiC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/OUe6WiC.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/SCorp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/SCorp2.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/SecurityHacker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/SecurityHacker.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/Starman_Tesla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/Starman_Tesla.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/UJVbxVY.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/UJVbxVY.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/bt4-logo-wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/bt4-logo-wallpaper.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/computer-hacker.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/computer-hacker.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/hacker_2621842b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/hacker_2621842b.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali11.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali12.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali13.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali14.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali15.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali16.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali17.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali19.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali20.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali21.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali5.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/kali8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/kali8.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/mPdVG3P.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/mPdVG3P.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/pluto_twilight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/pluto_twilight.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/scripttheworld.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/scripttheworld.png -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/shatter-backtrack_00000.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/shatter-backtrack_00000.jpg -------------------------------------------------------------------------------- /filesystem/usr/share/backgrounds/untitled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/filesystem/usr/share/backgrounds/untitled.png -------------------------------------------------------------------------------- /images/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /modules/live-build-config/README.md: -------------------------------------------------------------------------------- 1 | # live-build configuration for Kali ISO images 2 | 3 | Have a look at https://docs.kali.org/development/live-build-a-custom-kali-iso 4 | for explanations on how to use this repository. 5 | -------------------------------------------------------------------------------- /modules/live-build-config/build_all.sh: -------------------------------------------------------------------------------- 1 | build.sh -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/bootloaders/grub-pc/dejavu-bold-14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/live-build-config/kali-config/common/bootloaders/grub-pc/dejavu-bold-14.pf2 -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/bootloaders/grub-pc/dejavu-bold-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/live-build-config/kali-config/common/bootloaders/grub-pc/dejavu-bold-16.pf2 -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/bootloaders/grub-pc/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/live-build-config/kali-config/common/bootloaders/grub-pc/splash.png -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/includes.binary/isolinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/live-build-config/kali-config/common/includes.binary/isolinux/splash.png -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/includes.chroot/usr/lib/live/config/0031-kali-password: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Set "kali" as password for the user kali 4 | usermod -p 'AqLUsDitNnTsw' kali 5 | -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/includes.chroot/usr/lib/live/config/1165-fix-openssh-server: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Allow PasswordAuthentification in sshd config 4 | sed -i -e 's|#\?\(PasswordAuthentication\) no|\1 yes|' /etc/ssh/sshd_config 5 | -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/package-lists/standard.list.chroot: -------------------------------------------------------------------------------- 1 | ! Packages Priority standard 2 | -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/common/preseed/kali.cfg.chroot: -------------------------------------------------------------------------------- 1 | # Various preseeding for auto-installed packages 2 | 3 | # Do not register it in inetd so that its status can be controlled 4 | # individually 5 | atftpd atftpd/use_inetd boolean false 6 | -------------------------------------------------------------------------------- /modules/live-build-config/kali-config/variant-minimal/.empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/live-build-config/kali-config/variant-minimal/.empty -------------------------------------------------------------------------------- /modules/parrot-build/.gitignore: -------------------------------------------------------------------------------- 1 | binary.* 2 | prepare.log 3 | binary 4 | images 5 | cache 6 | chroot 7 | chroot.packages.install 8 | chroot.packages.live 9 | .stage 10 | .lock 11 | .build/ 12 | config/binary 13 | config/bootstrap 14 | config/common 15 | config/source 16 | -------------------------------------------------------------------------------- /modules/parrot-build/README: -------------------------------------------------------------------------------- 1 | Parrot Build config scripts 2 | 3 | 4 | this configuration folder for live-build is used 5 | to build our official ISO images 6 | 7 | the arm build scripts will be replaced with the official one of the ARM team 8 | -------------------------------------------------------------------------------- /modules/parrot-build/auto/build: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | lb build noauto "$@" 2>&1 | tee logfile.log 4 | -------------------------------------------------------------------------------- /modules/parrot-build/auto/clean: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | lb clean noauto "$@" 4 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/boot/cmdline.txt: -------------------------------------------------------------------------------- 1 | net.ifnames=0 dwc_otg.lpm_enable=0 console=ttyAMA0,115200 kgdboc=ttyAMA0,115200 console=tty1 root=/dev/mmcblk0p2 rootfstype=ext4 rootwait 2 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/etc/apt/apt.conf.d/50raspi: -------------------------------------------------------------------------------- 1 | # Never use pdiffs. Current implementation is very slow on low-powered devices. 2 | Acquire::PDiffs "0"; 3 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/etc/apt/sources.list: -------------------------------------------------------------------------------- 1 | deb http://deb.parrotsec.org/parrot parrot main contrib non-free 2 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/etc/default/rng-tools: -------------------------------------------------------------------------------- 1 | HRNGDEVICE=/dev/hwrng 2 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/etc/fstab: -------------------------------------------------------------------------------- 1 | /dev/mmcblk0p1 /boot vfat defaults 0 0 2 | /dev/mmcblk0p2 / ext4 noatime,nodiratime,relatime,discard 0 0 3 | proc /proc proc defaults 0 0 4 | tmpfs /tmp tmpfs defaults,size=100M 0 0 5 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/etc/modules: -------------------------------------------------------------------------------- 1 | vchiq 2 | snd_bcm2835 3 | bcm2708-rng 4 | btrfs 5 | xfs 6 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/etc/network/interfaces: -------------------------------------------------------------------------------- 1 | auto lo 2 | iface lo inet loopback 3 | 4 | auto eth0 5 | allow-hotplug eth0 6 | iface eth0 inet dhcp 7 | iface eth0 inet6 auto 8 | -------------------------------------------------------------------------------- /modules/parrot-build/raspberry/parrotsec.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/raspberry/parrotsec.gpg -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/archives/parrot.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/archives/parrot.key -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/bootloaders/grub-pc/dejavu-bold-14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/bootloaders/grub-pc/dejavu-bold-14.pf2 -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/bootloaders/grub-pc/dejavu-bold-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/bootloaders/grub-pc/dejavu-bold-16.pf2 -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/bootloaders/grub-pc/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/bootloaders/grub-pc/splash.png -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/bootloaders/grub-pc/splash4.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/bootloaders/grub-pc/splash4.2.png -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/bootloaders/grub-pc/splash4.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/bootloaders/grub-pc/splash4.7.png -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/hooks/normal/sleep.hook.chroot: -------------------------------------------------------------------------------- 1 | ../sleep.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/hooks/parrot-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/parrot-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/hooks/sleep.hook.chroot: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | sleep 60 3 | while pgrep -f update-parrot-menu >/dev/null; do 4 | echo "Sleeping 60 seconds as update-parrot-menu is still running..." 5 | sleep 60 6 | done 7 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/efi.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/efi.img -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/dejavu-bold-14.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/dejavu-bold-14.pf2 -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/dejavu-bold-16.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/dejavu-bold-16.pf2 -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/efi.img: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/efi.img -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/acpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/acpi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/adler32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/adler32.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ahci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ahci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/all_video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/all_video.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/aout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/aout.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/appleldr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/appleldr.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/archelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/archelp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/at_keyboard.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/at_keyboard.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ata.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/backtrace.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/backtrace.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bitmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bitmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bitmap_scale.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bitmap_scale.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/blocklist.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/blocklist.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/boot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/boot.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bsd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bswap_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bswap_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/btrfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/btrfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bufio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/bufio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cat.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbls.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbmemc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbmemc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbtable.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbtable.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbtime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cbtime.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/chain.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/chain.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cmp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cmp_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cmp_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cpio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cpio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cpio_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cpio_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cpuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cpuid.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/crc64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/crc64.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/crypto.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/crypto.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cryptodisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cryptodisk.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cs5536.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/cs5536.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ctz_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ctz_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/date.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/date.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/datehook.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/datehook.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/datetime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/datetime.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/disk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/disk.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/diskfilter.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/diskfilter.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/div.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/div.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/div_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/div_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/dm_nv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/dm_nv.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/echo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/echo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efi_gop.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efi_gop.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efi_uga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efi_uga.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efifwsetup.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efifwsetup.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efinet.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/efinet.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ehci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ehci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/elf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/elf.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/eval.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/eval.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/exfat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/exfat.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/exfctest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/exfctest.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ext2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ext2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/extcmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/extcmd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/fat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/fat.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/file.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/file.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/fixvideo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/fixvideo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/font.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/font.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_arcfour.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_arcfour.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_blowfish.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_blowfish.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_camellia.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_camellia.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_cast5.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_cast5.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_crc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_des.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_des.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_dsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_dsa.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_idea.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_idea.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_md4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_md4.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_md5.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_md5.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rfc2268.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rfc2268.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rijndael.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rijndael.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rmd160.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rmd160.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_rsa.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_seed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_seed.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_serpent.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_serpent.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_sha1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_sha1.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_sha256.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_sha256.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_sha512.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_sha512.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_tiger.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_tiger.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_twofish.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gcry_twofish.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gdb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gdb.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/geli.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/geli.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gettext.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gettext.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gfxmenu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gfxmenu.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gfxterm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gfxterm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gfxterm_menu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gfxterm_menu.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gptsync.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gptsync.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/gzio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/halt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/halt.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hashsum.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hashsum.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hdparm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hdparm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/help.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/help.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hexdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hexdump.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hfsplus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hfsplus.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hfspluscomp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/hfspluscomp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/http.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/http.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/iorw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/iorw.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/jfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/jfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/jpeg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/jpeg.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/keylayouts.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/keylayouts.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/keystatus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/keystatus.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ldm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ldm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/legacycfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/legacycfg.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/linux.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/linux.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/linux16.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/linux16.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/linuxefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/linuxefi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/loadbios.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/loadbios.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/loadenv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/loadenv.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/loopback.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/loopback.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ls.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsacpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsacpi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsefi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsefimmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsefimmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsefisystab.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsefisystab.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsmmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lsmmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lspci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lspci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lssal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lssal.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/luks.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/luks.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lvm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lvm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lzopio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/lzopio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/macbless.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/macbless.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/macho.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/macho.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mdraid09.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mdraid09.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mdraid09_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mdraid09_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mdraid1x.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mdraid1x.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/memrw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/memrw.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minicmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minicmd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix2_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix2_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix3.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix3_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix3_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/minix_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/morse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/morse.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mpi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/msdospart.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/msdospart.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mul_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/mul_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/multiboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/multiboot.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/multiboot2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/multiboot2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/nativedisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/nativedisk.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/net.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/net.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/newc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/newc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/normal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/normal.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ntfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ntfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ntfscomp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ntfscomp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/odc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/odc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/offsetio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/offsetio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ohci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ohci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_acorn.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_acorn.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_amiga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_amiga.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_apple.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_apple.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_bsd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_dfly.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_dfly.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_dvh.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_dvh.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_gpt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_gpt.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_msdos.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_msdos.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_plan.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_plan.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_sun.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_sun.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_sunpc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/part_sunpc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/partmap.lst: -------------------------------------------------------------------------------- 1 | part_acorn 2 | part_amiga 3 | part_apple 4 | part_bsd 5 | part_dfly 6 | part_dvh 7 | part_gpt 8 | part_msdos 9 | part_plan 10 | part_sun 11 | part_sunpc 12 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/parttool.lst: -------------------------------------------------------------------------------- 1 | msdos: msdospart 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/parttool.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/parttool.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/password.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/password.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pata.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pbkdf2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pbkdf2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pbkdf2_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pbkdf2_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pcidump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/pcidump.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/play.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/play.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/png.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/png.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/probe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/probe.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/procfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/procfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/progress.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/progress.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/raid5rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/raid5rec.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/raid6rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/raid6rec.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/random.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/random.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/read.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/read.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/reboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/reboot.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/regexp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/regexp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/reiserfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/reiserfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/relocator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/relocator.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/romfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/romfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/scsi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/scsi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/serial.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/serial.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/setjmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/setjmp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/setjmp_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/setjmp_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/setpci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/setpci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/shift_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/shift_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/sleep.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/sleep.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/sleep_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/sleep_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/spkmodem.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/spkmodem.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/squash4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/squash4.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/syslinuxcfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/syslinuxcfg.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/terminal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/terminal.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/terminfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/terminfo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/test_blockarg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/test_blockarg.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/testload.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/testload.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/testspeed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/testspeed.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/tftp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/tftp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/tga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/tga.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/time.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/time.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/tr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/tr.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/trig.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/trig.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/true.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/true.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/udf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/udf.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ufs1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ufs1.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ufs1_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ufs1_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ufs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/ufs2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/uhci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/uhci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usb.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usb_keyboard.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usb_keyboard.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usbms.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usbms.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usbtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/usbtest.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/verify.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/verify.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video.lst: -------------------------------------------------------------------------------- 1 | efi_gop 2 | efi_uga 3 | video_bochs 4 | video_cirrus 5 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_bochs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_bochs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_cirrus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_cirrus.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_colors.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_colors.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_fb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/video_fb.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/videoinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/videoinfo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/videotest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/videotest.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xnu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xnu.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xnu_uuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xnu_uuid.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xnu_uuid_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xnu_uuid_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/xzio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/zfscrypt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/i386-efi/zfscrypt.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/loopback.cfg: -------------------------------------------------------------------------------- 1 | source /boot/grub/grub.cfg 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/splash.png -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/unicode.pf2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/unicode.pf2 -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/acpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/acpi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/adler32.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/adler32.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ahci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ahci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/all_video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/all_video.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/aout.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/aout.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/appleldr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/appleldr.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/archelp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/archelp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/at_keyboard.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/at_keyboard.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ata.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/backtrace.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/backtrace.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bitmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bitmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/blocklist.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/blocklist.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/boot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/boot.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bsd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bswap_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bswap_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/btrfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/btrfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bufio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/bufio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cat.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbls.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbmemc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbmemc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbtable.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbtable.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbtime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cbtime.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/chain.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/chain.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cmp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cmp_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cmp_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cpio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cpio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cpio_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cpio_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cpuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cpuid.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/crc64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/crc64.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/crypto.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/crypto.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cryptodisk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cryptodisk.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cs5536.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/cs5536.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ctz_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ctz_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/date.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/date.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/datehook.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/datehook.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/datetime.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/datetime.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/disk.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/disk.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/div.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/div.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/div_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/div_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/dm_nv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/dm_nv.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/echo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/echo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/efi_gop.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/efi_gop.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/efi_uga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/efi_uga.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/efinet.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/efinet.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ehci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ehci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/elf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/elf.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/eval.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/eval.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/exfat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/exfat.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/exfctest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/exfctest.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ext2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ext2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/extcmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/extcmd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/fat.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/fat.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/file.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/file.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/fixvideo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/fixvideo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/font.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/font.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_crc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_crc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_des.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_des.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_dsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_dsa.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_idea.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_idea.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_md4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_md4.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_md5.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_md5.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_rsa.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_rsa.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_seed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_seed.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_sha1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gcry_sha1.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/geli.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/geli.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gettext.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gettext.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gfxmenu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gfxmenu.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gfxterm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gfxterm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gptsync.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gptsync.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/gzio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/halt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/halt.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hashsum.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hashsum.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hdparm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hdparm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/help.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/help.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hexdump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hexdump.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hfsplus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/hfsplus.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/http.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/http.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/iorw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/iorw.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/jfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/jfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/jpeg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/jpeg.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/keystatus.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/keystatus.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ldm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ldm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/legacycfg.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/legacycfg.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/linux.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/linux.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/linux16.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/linux16.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/linuxefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/linuxefi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/loadbios.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/loadbios.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/loadenv.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/loadenv.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/loopback.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/loopback.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ls.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ls.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsacpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsacpi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsefi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsefi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsefimmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsefimmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsmmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lsmmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lspci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lspci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lssal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lssal.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/luks.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/luks.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lvm.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lvm.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lzopio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/lzopio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/macbless.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/macbless.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/macho.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/macho.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mdraid09.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mdraid09.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mdraid1x.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mdraid1x.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/memrw.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/memrw.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minicmd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minicmd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix2_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix2_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix3.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix3.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix3_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix3_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/minix_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mmap.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mmap.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/morse.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/morse.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mpi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mpi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/msdospart.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/msdospart.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mul_test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/mul_test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/multiboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/multiboot.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/net.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/net.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/newc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/newc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/normal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/normal.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ntfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ntfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ntfscomp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ntfscomp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/odc.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/odc.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/offsetio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/offsetio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ohci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ohci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_bsd.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_bsd.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_dfly.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_dfly.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_dvh.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_dvh.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_gpt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_gpt.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_plan.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_plan.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_sun.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/part_sun.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/partmap.lst: -------------------------------------------------------------------------------- 1 | part_acorn 2 | part_amiga 3 | part_apple 4 | part_bsd 5 | part_dfly 6 | part_dvh 7 | part_gpt 8 | part_msdos 9 | part_plan 10 | part_sun 11 | part_sunpc 12 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/parttool.lst: -------------------------------------------------------------------------------- 1 | msdos: msdospart 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/parttool.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/parttool.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/password.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/password.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/pata.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/pata.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/pbkdf2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/pbkdf2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/pcidump.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/pcidump.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/play.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/play.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/png.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/png.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/probe.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/probe.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/procfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/procfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/progress.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/progress.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/raid5rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/raid5rec.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/raid6rec.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/raid6rec.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/random.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/random.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/read.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/read.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/reboot.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/reboot.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/regexp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/regexp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/reiserfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/reiserfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/relocator.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/relocator.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/romfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/romfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/scsi.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/scsi.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/serial.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/serial.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/setjmp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/setjmp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/setpci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/setpci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/sleep.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/sleep.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/spkmodem.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/spkmodem.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/squash4.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/squash4.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/terminal.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/terminal.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/terminfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/terminfo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/test.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/test.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/testload.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/testload.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/testspeed.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/testspeed.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/tftp.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/tftp.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/tga.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/tga.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/time.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/time.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/tr.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/tr.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/trig.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/trig.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/true.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/true.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/udf.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/udf.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ufs1.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ufs1.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ufs1_be.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ufs1_be.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ufs2.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/ufs2.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/uhci.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/uhci.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/usb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/usb.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/usbms.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/usbms.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/usbtest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/usbtest.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/verify.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/verify.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/video.lst: -------------------------------------------------------------------------------- 1 | efi_gop 2 | efi_uga 3 | video_bochs 4 | video_cirrus 5 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/video.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/video.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/video_fb.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/video_fb.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/videoinfo.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/videoinfo.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/videotest.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/videotest.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xfs.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xfs.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xnu.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xnu.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xnu_uuid.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xnu_uuid.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xzio.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/xzio.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/zfscrypt.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/boot/grub/x86_64-efi/zfscrypt.mod -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/efi/boot/bootia32.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/efi/boot/bootia32.efi -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/efi/boot/bootx64.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/efi/boot/bootx64.efi -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/isolinux/isolinux.cfg: -------------------------------------------------------------------------------- 1 | include menu.cfg 2 | default vesamenu.c32 3 | prompt 0 4 | timeout 300 5 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.binary/isolinux/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kforney/pentest-distro-builder/4e36f6e507c471cc4a20890adf8838817c022b2a/modules/parrot-build/templates/common/includes.binary/isolinux/splash.png -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.chroot/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | /etc/resolvconf/run/resolv.conf -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.chroot/lib/live/config/0031-user-password: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Set "toor" as user password 4 | usermod -p 'X014elvznJq7E' user 5 | 6 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.installer/etc/hostname: -------------------------------------------------------------------------------- 1 | parrot 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.installer/usr/lib/live-installer.d/initramfs-update: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | # Update initramfs 6 | in-target sh -c "/usr/sbin/update-initramfs -u" 7 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/includes.installer/usr/lib/live-installer.d/kernel-unhold: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | set -e 4 | 5 | # Unhold pinned packages on target system 6 | in-target sh -c 'apt-mark showhold | while read pkg; do apt-mark unhold $pkg; done' 7 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/package-lists/generic.list.binary: -------------------------------------------------------------------------------- 1 | refind 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/package-lists/grub-efi-amd64.list.binary: -------------------------------------------------------------------------------- 1 | grub-efi 2 | grub-efi-amd64 3 | grub-efi-amd64-bin 4 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/package-lists/grub-efi-ia32.list.binary: -------------------------------------------------------------------------------- 1 | grub-efi-ia32 2 | grub-efi-ia32-bin 3 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/package-lists/grub-pc.list.binary: -------------------------------------------------------------------------------- 1 | grub-pc 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/preseed/inetd.cfg.chroot: -------------------------------------------------------------------------------- 1 | # Do not register it in inetd so that its status can be controlled 2 | # individually 3 | atftpd atftpd/use_inetd boolean false 4 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/preseed/live-boot: -------------------------------------------------------------------------------- 1 | live-boot live-boot/smem boolean true 2 | live-boot live-boot/sdmem boolean true 3 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/common/preseed/wireshark: -------------------------------------------------------------------------------- 1 | wireshark wireshark-common/install-setuid: true 2 | -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-home/hooks/home-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/home-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-htb/hooks/security-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/security-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-kde-home/hooks/home-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/home-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-kde-security/hooks/security-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/security-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-security/hooks/security-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/security-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-studio/hooks/studio-hooks.hook.chroot: -------------------------------------------------------------------------------- 1 | normal/studio-hooks.hook.chroot -------------------------------------------------------------------------------- /modules/parrot-build/templates/parrot-variant-mate: -------------------------------------------------------------------------------- 1 | parrot-security --------------------------------------------------------------------------------