├── Makefile ├── app_configs ├── Microsoft.PowerShell_profile.ps1 ├── config.fish ├── nanorc ├── openssl.cnf ├── sysinit.vim ├── vimrc └── zshrc ├── bin ├── firefox-selector ├── parrot-upgrade └── sihup ├── dconf-htb └── db │ └── local.d │ └── htb-config ├── dconf-lite └── db │ └── local.d │ └── lite-config ├── dconf └── db │ └── local.d │ └── parrot-skel ├── debian ├── changelog ├── compat ├── control ├── copyright ├── parrot-configs-zsh.folders ├── parrot-configs-zsh.install ├── parrot-core-htb.folders ├── parrot-core-htb.install ├── parrot-core-lite.folders ├── parrot-core-lite.install ├── parrot-core.folders ├── parrot-core.install ├── postinst ├── postrm ├── preinst ├── rules └── source │ └── format ├── localbin └── apt ├── makefile-go-example ├── skel ├── .BurpSuite │ └── UserConfigCommunity.json ├── .bashrc ├── .config │ ├── KDE │ │ └── Sonnet.conf │ ├── Trolltech.conf │ ├── VSCodium │ │ └── product.json │ ├── akregatorrc │ ├── autostart │ │ ├── mate-user-share-obexftp.desktop │ │ ├── mate-user-share-obexpush.desktop │ │ ├── mate-user-share-webdav.desktop │ │ └── mate-user-share.desktop │ ├── baloofilerc │ ├── bleachbit │ │ └── bleachbit.ini │ ├── breezerc │ ├── caja │ │ └── desktop-metadata │ ├── clipit │ │ └── clipitrc │ ├── dolphinrc │ ├── geany │ │ └── geany.conf │ ├── gtk-2.0 │ │ └── gtkfilechooser.ini │ ├── gtk-3.0 │ │ ├── colors.css │ │ ├── gtk.css │ │ └── settings.ini │ ├── gtk-4.0 │ │ ├── colors.css │ │ ├── gtk.css │ │ └── settings.ini │ ├── gtkrc │ ├── gtkrc-2.0 │ ├── i3 │ │ ├── .gitkeep │ │ └── config │ ├── kactivitymanagerd-pluginsrc │ ├── kactivitymanagerd-statsrc │ ├── kactivitymanagerdrc │ ├── kate-externaltoolspluginrc │ ├── katepartrc │ ├── katerc │ ├── kateschemarc │ ├── katesyntaxhighlightingrc │ ├── katevirc │ ├── kcmdisplayrc │ ├── kcminputrc │ ├── kconf_updaterc │ ├── kded5rc │ ├── kded6rc │ ├── kdedefaults │ │ ├── kcminputrc │ │ ├── kdeglobals │ │ ├── ksplashrc │ │ ├── kwinrc │ │ ├── package │ │ └── plasmarc │ ├── kdeglobals │ ├── keepassxc │ │ └── keepassxc.ini │ ├── kgammarc │ ├── kglobalshortcutsrc │ ├── khelpcenterrc │ ├── khotkeysrc │ ├── kiorc │ ├── klaunchrc │ ├── konsolerc │ ├── konsolesshconfig │ ├── kscreenlockerrc │ ├── kservicemenurc │ ├── ksmserverrc │ ├── ksplashrc │ ├── ktrashrc │ ├── kwalletrc │ ├── kwinrc │ ├── libinput-gestures.conf │ ├── lxpanel │ │ ├── LXDE │ │ │ ├── config │ │ │ └── panels │ │ │ │ └── panel │ │ └── launchtaskbar.cfg │ ├── lxterminal │ │ └── lxterminal.conf │ ├── mimeapps.list │ ├── openbox │ │ └── lxde-rc.xml │ ├── pcmanfm │ │ └── LXDE │ │ │ └── pcmanfm.conf │ ├── plasma-org.kde.plasma.desktop-appletsrc │ ├── plasma-welcomerc │ ├── plasmarc │ ├── plasmashellrc │ ├── polybar │ │ ├── .gitkeep │ │ ├── config │ │ └── launch.sh │ ├── powerdevilrc │ ├── powermanagementprofilesrc │ ├── spectaclerc │ ├── startupconfig │ ├── touchpadrc │ ├── touchpadxlibinputrc │ ├── user-dirs.dirs │ ├── user-dirs.locale │ ├── xfce4 │ │ ├── help.rc │ │ ├── helpers.rc │ │ ├── panel │ │ │ ├── launcher-10 │ │ │ │ ├── 16321537241.desktop │ │ │ │ ├── 16321537242.desktop │ │ │ │ ├── 16321537243.desktop │ │ │ │ └── 16321537244.desktop │ │ │ ├── launcher-11 │ │ │ │ └── 16321537245.desktop │ │ │ ├── launcher-12 │ │ │ │ └── 16321537246.desktop │ │ │ ├── systemload-11.rc │ │ │ ├── systemload-5.rc │ │ │ ├── systemload-6.rc │ │ │ ├── whiskermenu-15.rc │ │ │ ├── whiskermenu-6.rc │ │ │ └── whiskermenu-9.rc │ │ ├── terminal │ │ │ ├── accels.scm │ │ │ └── terminalrc │ │ ├── xfce4-taskmanager.rc │ │ └── xfconf │ │ │ └── xfce-perchannel-xml │ │ │ ├── xfce4-desktop.xml │ │ │ ├── xfce4-keyboard-shortcuts.xml │ │ │ ├── xfce4-mixer.xml │ │ │ ├── xfce4-panel.xml │ │ │ ├── xfce4-screensaver.xml │ │ │ ├── xfce4-session.xml │ │ │ ├── xfwm4.xml │ │ │ └── xsettings.xml │ └── xsettingsd │ │ └── xsettingsd.conf ├── .dbeaver4 │ └── .metadata │ │ └── .plugins │ │ └── org.eclipse.core.runtime │ │ └── .settings │ │ └── org.eclipse.e4.ui.css.swt.theme.prefs ├── .dmrc ├── .emacs ├── .gtkrc-2.0 ├── .java │ └── .userPrefs │ │ └── burp │ │ └── prefs.xml ├── .kde │ └── share │ │ ├── apps │ │ └── color-schemes │ │ │ └── Echo.colors │ │ └── config │ │ ├── kdeglobals │ │ └── kdesurc ├── .local │ ├── share │ │ ├── applications │ │ │ ├── codium.desktop │ │ │ ├── firefox.desktop │ │ │ ├── org.kde.dolphin.desktop │ │ │ ├── org.kde.konsole.desktop │ │ │ └── org.kde.kwrite.desktop │ │ ├── konsole │ │ │ ├── GreenOnBlack.colorscheme │ │ │ └── Parrot.profile │ │ └── plasma-systemmonitor │ │ │ └── overview.page │ └── state │ │ ├── dolphinstaterc │ │ ├── katestaterc │ │ ├── konsolestaterc │ │ ├── lesshst │ │ ├── plasmashellstaterc │ │ └── systemsettingsstaterc ├── .msf4 │ └── config ├── .profile ├── Desktop │ └── README.license └── Templates │ ├── prog │ ├── ObjC.m │ ├── assembly.asm │ ├── bash-sh.sh │ ├── c#.cs │ ├── c++.cpp │ ├── c.c │ ├── falcon.fal │ ├── golang.go │ ├── header.h │ ├── java.java │ ├── nim.nim │ ├── perl.pl │ ├── perl6.pl │ ├── perlModule.pm │ ├── python3.py │ ├── ruby.rb │ ├── rust.rs │ └── shellcode.s │ ├── text │ ├── document.odt │ ├── plaintext.txt │ ├── presentation.odp │ └── spreadsheet.ods │ └── web │ ├── css.css │ ├── html.html │ ├── javascript.js │ ├── php.php │ └── xml.xml └── system_configs ├── Xsession.d └── 52noautomount ├── applications └── firefox-selector.desktop ├── apt ├── apt.conf.d │ └── 99retry-on-error ├── preferences.d │ └── parrot-pinning └── sources.list.d │ └── parrot.list ├── etc ├── NetworkManager │ └── conf.d │ │ └── 90-dns-none.conf └── cloud │ └── cloud.cfg.d │ └── 20_parrot.cfg ├── grub.cfg ├── pipewire ├── pipewire-pulse.service.d │ └── parrot.conf ├── pipewire-pulse.socket.d │ └── parrot.conf ├── pipewire.service.d │ └── parrot.conf └── pipewire.socket.d │ └── parrot.conf ├── postgresql ├── parrot_postgresql.conf └── postgresql_reduce_shared_buffers ├── profile.d └── ZZparrot.sh ├── samba └── smb.conf ├── udev-rules ├── 50-u2f-hyperfido.rules └── 73-usb-net-by-mac.rules └── xrdp ├── parrot.bmp └── xrdp.ini /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/Makefile -------------------------------------------------------------------------------- /app_configs/Microsoft.PowerShell_profile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/Microsoft.PowerShell_profile.ps1 -------------------------------------------------------------------------------- /app_configs/config.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/config.fish -------------------------------------------------------------------------------- /app_configs/nanorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/nanorc -------------------------------------------------------------------------------- /app_configs/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/openssl.cnf -------------------------------------------------------------------------------- /app_configs/sysinit.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/sysinit.vim -------------------------------------------------------------------------------- /app_configs/vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/vimrc -------------------------------------------------------------------------------- /app_configs/zshrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/app_configs/zshrc -------------------------------------------------------------------------------- /bin/firefox-selector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/bin/firefox-selector -------------------------------------------------------------------------------- /bin/parrot-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/bin/parrot-upgrade -------------------------------------------------------------------------------- /bin/sihup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/bin/sihup -------------------------------------------------------------------------------- /dconf-htb/db/local.d/htb-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/dconf-htb/db/local.d/htb-config -------------------------------------------------------------------------------- /dconf-lite/db/local.d/lite-config: -------------------------------------------------------------------------------- 1 | [org/mate/marco/general] 2 | reduced-resources=true 3 | -------------------------------------------------------------------------------- /dconf/db/local.d/parrot-skel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/dconf/db/local.d/parrot-skel -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 13 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/parrot-configs-zsh.folders: -------------------------------------------------------------------------------- 1 | /etc/zsh/ 2 | -------------------------------------------------------------------------------- /debian/parrot-configs-zsh.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/parrot-configs-zsh.install -------------------------------------------------------------------------------- /debian/parrot-core-htb.folders: -------------------------------------------------------------------------------- 1 | usr/lib/parrot-skel/etc/dconf/db/local.d/ 2 | -------------------------------------------------------------------------------- /debian/parrot-core-htb.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/parrot-core-htb.install -------------------------------------------------------------------------------- /debian/parrot-core-lite.folders: -------------------------------------------------------------------------------- 1 | usr/lib/parrot-skel/etc/dconf/db/local.d/ 2 | -------------------------------------------------------------------------------- /debian/parrot-core-lite.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/parrot-core-lite.install -------------------------------------------------------------------------------- /debian/parrot-core.folders: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/parrot-core.folders -------------------------------------------------------------------------------- /debian/parrot-core.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/parrot-core.install -------------------------------------------------------------------------------- /debian/postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/postinst -------------------------------------------------------------------------------- /debian/postrm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/postrm -------------------------------------------------------------------------------- /debian/preinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/preinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /localbin/apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/localbin/apt -------------------------------------------------------------------------------- /makefile-go-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/makefile-go-example -------------------------------------------------------------------------------- /skel/.BurpSuite/UserConfigCommunity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.BurpSuite/UserConfigCommunity.json -------------------------------------------------------------------------------- /skel/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.bashrc -------------------------------------------------------------------------------- /skel/.config/KDE/Sonnet.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/KDE/Sonnet.conf -------------------------------------------------------------------------------- /skel/.config/Trolltech.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/Trolltech.conf -------------------------------------------------------------------------------- /skel/.config/VSCodium/product.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/VSCodium/product.json -------------------------------------------------------------------------------- /skel/.config/akregatorrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/akregatorrc -------------------------------------------------------------------------------- /skel/.config/autostart/mate-user-share-obexftp.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/autostart/mate-user-share-obexftp.desktop -------------------------------------------------------------------------------- /skel/.config/autostart/mate-user-share-obexpush.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/autostart/mate-user-share-obexpush.desktop -------------------------------------------------------------------------------- /skel/.config/autostart/mate-user-share-webdav.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/autostart/mate-user-share-webdav.desktop -------------------------------------------------------------------------------- /skel/.config/autostart/mate-user-share.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/autostart/mate-user-share.desktop -------------------------------------------------------------------------------- /skel/.config/baloofilerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/baloofilerc -------------------------------------------------------------------------------- /skel/.config/bleachbit/bleachbit.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/bleachbit/bleachbit.ini -------------------------------------------------------------------------------- /skel/.config/breezerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/breezerc -------------------------------------------------------------------------------- /skel/.config/caja/desktop-metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/caja/desktop-metadata -------------------------------------------------------------------------------- /skel/.config/clipit/clipitrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/clipit/clipitrc -------------------------------------------------------------------------------- /skel/.config/dolphinrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/dolphinrc -------------------------------------------------------------------------------- /skel/.config/geany/geany.conf: -------------------------------------------------------------------------------- 1 | [geany] 2 | color_scheme=alt.conf 3 | -------------------------------------------------------------------------------- /skel/.config/gtk-2.0/gtkfilechooser.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/gtk-2.0/gtkfilechooser.ini -------------------------------------------------------------------------------- /skel/.config/gtk-3.0/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/gtk-3.0/colors.css -------------------------------------------------------------------------------- /skel/.config/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import 'colors.css'; -------------------------------------------------------------------------------- /skel/.config/gtk-3.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/gtk-3.0/settings.ini -------------------------------------------------------------------------------- /skel/.config/gtk-4.0/colors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/gtk-4.0/colors.css -------------------------------------------------------------------------------- /skel/.config/gtk-4.0/gtk.css: -------------------------------------------------------------------------------- 1 | @import 'colors.css'; -------------------------------------------------------------------------------- /skel/.config/gtk-4.0/settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/gtk-4.0/settings.ini -------------------------------------------------------------------------------- /skel/.config/gtkrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/gtkrc -------------------------------------------------------------------------------- /skel/.config/gtkrc-2.0: -------------------------------------------------------------------------------- 1 | # created by KDE Plasma, Wed Dec 3 03:01:04 2025 2 | # 3 | 4 | gtk-alternative-button-order = 1 5 | 6 | -------------------------------------------------------------------------------- /skel/.config/i3/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skel/.config/i3/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/i3/config -------------------------------------------------------------------------------- /skel/.config/kactivitymanagerd-pluginsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kactivitymanagerd-pluginsrc -------------------------------------------------------------------------------- /skel/.config/kactivitymanagerd-statsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kactivitymanagerd-statsrc -------------------------------------------------------------------------------- /skel/.config/kactivitymanagerdrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kactivitymanagerdrc -------------------------------------------------------------------------------- /skel/.config/kate-externaltoolspluginrc: -------------------------------------------------------------------------------- 1 | [Global] 2 | firststart=false 3 | -------------------------------------------------------------------------------- /skel/.config/katepartrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/katepartrc -------------------------------------------------------------------------------- /skel/.config/katerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/katerc -------------------------------------------------------------------------------- /skel/.config/kateschemarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kateschemarc -------------------------------------------------------------------------------- /skel/.config/katesyntaxhighlightingrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/katesyntaxhighlightingrc -------------------------------------------------------------------------------- /skel/.config/katevirc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/katevirc -------------------------------------------------------------------------------- /skel/.config/kcmdisplayrc: -------------------------------------------------------------------------------- 1 | [X11] 2 | exportKDEColors=true 3 | -------------------------------------------------------------------------------- /skel/.config/kcminputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kcminputrc -------------------------------------------------------------------------------- /skel/.config/kconf_updaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kconf_updaterc -------------------------------------------------------------------------------- /skel/.config/kded5rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kded5rc -------------------------------------------------------------------------------- /skel/.config/kded6rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kded6rc -------------------------------------------------------------------------------- /skel/.config/kdedefaults/kcminputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kdedefaults/kcminputrc -------------------------------------------------------------------------------- /skel/.config/kdedefaults/kdeglobals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kdedefaults/kdeglobals -------------------------------------------------------------------------------- /skel/.config/kdedefaults/ksplashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kdedefaults/ksplashrc -------------------------------------------------------------------------------- /skel/.config/kdedefaults/kwinrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kdedefaults/kwinrc -------------------------------------------------------------------------------- /skel/.config/kdedefaults/package: -------------------------------------------------------------------------------- 1 | org.echo.desktop -------------------------------------------------------------------------------- /skel/.config/kdedefaults/plasmarc: -------------------------------------------------------------------------------- 1 | [Theme] 2 | name=default 3 | -------------------------------------------------------------------------------- /skel/.config/kdeglobals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kdeglobals -------------------------------------------------------------------------------- /skel/.config/keepassxc/keepassxc.ini: -------------------------------------------------------------------------------- 1 | [General] 2 | ConfigVersion=1 3 | 4 | [GUI] 5 | ApplicationTheme=dark 6 | 7 | -------------------------------------------------------------------------------- /skel/.config/kgammarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kgammarc -------------------------------------------------------------------------------- /skel/.config/kglobalshortcutsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kglobalshortcutsrc -------------------------------------------------------------------------------- /skel/.config/khelpcenterrc: -------------------------------------------------------------------------------- 1 | [MainWindowState] 2 | Splitter=220,579 3 | 4 | [Search] 5 | ScopeSelection=0 6 | -------------------------------------------------------------------------------- /skel/.config/khotkeysrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/khotkeysrc -------------------------------------------------------------------------------- /skel/.config/kiorc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kiorc -------------------------------------------------------------------------------- /skel/.config/klaunchrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/klaunchrc -------------------------------------------------------------------------------- /skel/.config/konsolerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/konsolerc -------------------------------------------------------------------------------- /skel/.config/konsolesshconfig: -------------------------------------------------------------------------------- 1 | [Global plugin config] 2 | manageProfile=false 3 | -------------------------------------------------------------------------------- /skel/.config/kscreenlockerrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kscreenlockerrc -------------------------------------------------------------------------------- /skel/.config/kservicemenurc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kservicemenurc -------------------------------------------------------------------------------- /skel/.config/ksmserverrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/ksmserverrc -------------------------------------------------------------------------------- /skel/.config/ksplashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/ksplashrc -------------------------------------------------------------------------------- /skel/.config/ktrashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/ktrashrc -------------------------------------------------------------------------------- /skel/.config/kwalletrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kwalletrc -------------------------------------------------------------------------------- /skel/.config/kwinrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/kwinrc -------------------------------------------------------------------------------- /skel/.config/libinput-gestures.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/libinput-gestures.conf -------------------------------------------------------------------------------- /skel/.config/lxpanel/LXDE/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/lxpanel/LXDE/config -------------------------------------------------------------------------------- /skel/.config/lxpanel/LXDE/panels/panel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/lxpanel/LXDE/panels/panel -------------------------------------------------------------------------------- /skel/.config/lxpanel/launchtaskbar.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/lxpanel/launchtaskbar.cfg -------------------------------------------------------------------------------- /skel/.config/lxterminal/lxterminal.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/lxterminal/lxterminal.conf -------------------------------------------------------------------------------- /skel/.config/mimeapps.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/mimeapps.list -------------------------------------------------------------------------------- /skel/.config/openbox/lxde-rc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/openbox/lxde-rc.xml -------------------------------------------------------------------------------- /skel/.config/pcmanfm/LXDE/pcmanfm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/pcmanfm/LXDE/pcmanfm.conf -------------------------------------------------------------------------------- /skel/.config/plasma-org.kde.plasma.desktop-appletsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/plasma-org.kde.plasma.desktop-appletsrc -------------------------------------------------------------------------------- /skel/.config/plasma-welcomerc: -------------------------------------------------------------------------------- 1 | [General] 2 | LastSeenVersion=6.3.4 3 | -------------------------------------------------------------------------------- /skel/.config/plasmarc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/plasmarc -------------------------------------------------------------------------------- /skel/.config/plasmashellrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/plasmashellrc -------------------------------------------------------------------------------- /skel/.config/polybar/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skel/.config/polybar/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/polybar/config -------------------------------------------------------------------------------- /skel/.config/polybar/launch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/polybar/launch.sh -------------------------------------------------------------------------------- /skel/.config/powerdevilrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/powerdevilrc -------------------------------------------------------------------------------- /skel/.config/powermanagementprofilesrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/powermanagementprofilesrc -------------------------------------------------------------------------------- /skel/.config/spectaclerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/spectaclerc -------------------------------------------------------------------------------- /skel/.config/startupconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/startupconfig -------------------------------------------------------------------------------- /skel/.config/touchpadrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/touchpadrc -------------------------------------------------------------------------------- /skel/.config/touchpadxlibinputrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/touchpadxlibinputrc -------------------------------------------------------------------------------- /skel/.config/user-dirs.dirs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/user-dirs.dirs -------------------------------------------------------------------------------- /skel/.config/user-dirs.locale: -------------------------------------------------------------------------------- 1 | en_US -------------------------------------------------------------------------------- /skel/.config/xfce4/help.rc: -------------------------------------------------------------------------------- 1 | auto-online=false 2 | 3 | -------------------------------------------------------------------------------- /skel/.config/xfce4/helpers.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/helpers.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/launcher-10/16321537241.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/launcher-10/16321537241.desktop -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/launcher-10/16321537242.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/launcher-10/16321537242.desktop -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/launcher-10/16321537243.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/launcher-10/16321537243.desktop -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/launcher-10/16321537244.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/launcher-10/16321537244.desktop -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/launcher-11/16321537245.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/launcher-11/16321537245.desktop -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/launcher-12/16321537246.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/launcher-12/16321537246.desktop -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/systemload-11.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/systemload-11.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/systemload-5.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/systemload-5.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/systemload-6.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/systemload-6.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/whiskermenu-15.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/whiskermenu-15.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/whiskermenu-6.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/whiskermenu-6.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/panel/whiskermenu-9.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/panel/whiskermenu-9.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/terminal/accels.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/terminal/accels.scm -------------------------------------------------------------------------------- /skel/.config/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /skel/.config/xfce4/xfce4-taskmanager.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfce4-taskmanager.rc -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-desktop.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-keyboard-shortcuts.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mixer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-mixer.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-panel.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-screensaver.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfce4-session.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml -------------------------------------------------------------------------------- /skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xfce4/xfconf/xfce-perchannel-xml/xsettings.xml -------------------------------------------------------------------------------- /skel/.config/xsettingsd/xsettingsd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.config/xsettingsd/xsettingsd.conf -------------------------------------------------------------------------------- /skel/.dbeaver4/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.e4.ui.css.swt.theme.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.dbeaver4/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.e4.ui.css.swt.theme.prefs -------------------------------------------------------------------------------- /skel/.dmrc: -------------------------------------------------------------------------------- 1 | [Desktop] 2 | Session=plasma 3 | -------------------------------------------------------------------------------- /skel/.emacs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.emacs -------------------------------------------------------------------------------- /skel/.gtkrc-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.gtkrc-2.0 -------------------------------------------------------------------------------- /skel/.java/.userPrefs/burp/prefs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.java/.userPrefs/burp/prefs.xml -------------------------------------------------------------------------------- /skel/.kde/share/apps/color-schemes/Echo.colors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.kde/share/apps/color-schemes/Echo.colors -------------------------------------------------------------------------------- /skel/.kde/share/config/kdeglobals: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.kde/share/config/kdeglobals -------------------------------------------------------------------------------- /skel/.kde/share/config/kdesurc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.kde/share/config/kdesurc -------------------------------------------------------------------------------- /skel/.local/share/applications/codium.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/applications/codium.desktop -------------------------------------------------------------------------------- /skel/.local/share/applications/firefox.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/applications/firefox.desktop -------------------------------------------------------------------------------- /skel/.local/share/applications/org.kde.dolphin.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/applications/org.kde.dolphin.desktop -------------------------------------------------------------------------------- /skel/.local/share/applications/org.kde.konsole.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/applications/org.kde.konsole.desktop -------------------------------------------------------------------------------- /skel/.local/share/applications/org.kde.kwrite.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/applications/org.kde.kwrite.desktop -------------------------------------------------------------------------------- /skel/.local/share/konsole/GreenOnBlack.colorscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/konsole/GreenOnBlack.colorscheme -------------------------------------------------------------------------------- /skel/.local/share/konsole/Parrot.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/konsole/Parrot.profile -------------------------------------------------------------------------------- /skel/.local/share/plasma-systemmonitor/overview.page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/share/plasma-systemmonitor/overview.page -------------------------------------------------------------------------------- /skel/.local/state/dolphinstaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/state/dolphinstaterc -------------------------------------------------------------------------------- /skel/.local/state/katestaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/state/katestaterc -------------------------------------------------------------------------------- /skel/.local/state/konsolestaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/state/konsolestaterc -------------------------------------------------------------------------------- /skel/.local/state/lesshst: -------------------------------------------------------------------------------- 1 | .less-history-file: 2 | -------------------------------------------------------------------------------- /skel/.local/state/plasmashellstaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/state/plasmashellstaterc -------------------------------------------------------------------------------- /skel/.local/state/systemsettingsstaterc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.local/state/systemsettingsstaterc -------------------------------------------------------------------------------- /skel/.msf4/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.msf4/config -------------------------------------------------------------------------------- /skel/.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/.profile -------------------------------------------------------------------------------- /skel/Desktop/README.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Desktop/README.license -------------------------------------------------------------------------------- /skel/Templates/prog/ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/ObjC.m -------------------------------------------------------------------------------- /skel/Templates/prog/assembly.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/assembly.asm -------------------------------------------------------------------------------- /skel/Templates/prog/bash-sh.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | echo "give me a bottle of rum!" 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/c#.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | Console.WriteLine("Give me a bottle of rum!"); 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/c++.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/c++.cpp -------------------------------------------------------------------------------- /skel/Templates/prog/c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/c.c -------------------------------------------------------------------------------- /skel/Templates/prog/falcon.fal: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env falcon 2 | 3 | > "give me a bottle of rum!" 4 | 5 | -------------------------------------------------------------------------------- /skel/Templates/prog/golang.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/golang.go -------------------------------------------------------------------------------- /skel/Templates/prog/header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/header.h -------------------------------------------------------------------------------- /skel/Templates/prog/java.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/java.java -------------------------------------------------------------------------------- /skel/Templates/prog/nim.nim: -------------------------------------------------------------------------------- 1 | echo "Hello World" 2 | -------------------------------------------------------------------------------- /skel/Templates/prog/perl.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl 2 | 3 | print("give me a bottle of rum!"); 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/perl6.pl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/perl6 2 | 3 | say "give me a bottle of rum!"; 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/perlModule.pm: -------------------------------------------------------------------------------- 1 | package foobar; 2 | 3 | 1; 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/python3.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/python3 2 | 3 | print("give me a bottle of rum!") 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/ruby.rb: -------------------------------------------------------------------------------- 1 | #!/usr/bin/ruby 2 | 3 | puts "give me a bottle of rum!" 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/rust.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("give me a bottle of rum!"); 3 | } 4 | -------------------------------------------------------------------------------- /skel/Templates/prog/shellcode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/prog/shellcode.s -------------------------------------------------------------------------------- /skel/Templates/text/document.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/text/document.odt -------------------------------------------------------------------------------- /skel/Templates/text/plaintext.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skel/Templates/text/presentation.odp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/text/presentation.odp -------------------------------------------------------------------------------- /skel/Templates/text/spreadsheet.ods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/text/spreadsheet.ods -------------------------------------------------------------------------------- /skel/Templates/web/css.css: -------------------------------------------------------------------------------- 1 | .class 2 | { 3 | display: block; 4 | color: #00ff00; 5 | } 6 | -------------------------------------------------------------------------------- /skel/Templates/web/html.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/web/html.html -------------------------------------------------------------------------------- /skel/Templates/web/javascript.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /skel/Templates/web/php.php: -------------------------------------------------------------------------------- 1 | 4 | -------------------------------------------------------------------------------- /skel/Templates/web/xml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/skel/Templates/web/xml.xml -------------------------------------------------------------------------------- /system_configs/Xsession.d/52noautomount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/Xsession.d/52noautomount -------------------------------------------------------------------------------- /system_configs/applications/firefox-selector.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/applications/firefox-selector.desktop -------------------------------------------------------------------------------- /system_configs/apt/apt.conf.d/99retry-on-error: -------------------------------------------------------------------------------- 1 | Acquire::Retries "3"; 2 | -------------------------------------------------------------------------------- /system_configs/apt/preferences.d/parrot-pinning: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/apt/preferences.d/parrot-pinning -------------------------------------------------------------------------------- /system_configs/apt/sources.list.d/parrot.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/apt/sources.list.d/parrot.list -------------------------------------------------------------------------------- /system_configs/etc/NetworkManager/conf.d/90-dns-none.conf: -------------------------------------------------------------------------------- 1 | #[main] 2 | #dns=none 3 | -------------------------------------------------------------------------------- /system_configs/etc/cloud/cloud.cfg.d/20_parrot.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/etc/cloud/cloud.cfg.d/20_parrot.cfg -------------------------------------------------------------------------------- /system_configs/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/grub.cfg -------------------------------------------------------------------------------- /system_configs/pipewire/pipewire-pulse.service.d/parrot.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionUser= 3 | -------------------------------------------------------------------------------- /system_configs/pipewire/pipewire-pulse.socket.d/parrot.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionUser= 3 | -------------------------------------------------------------------------------- /system_configs/pipewire/pipewire.service.d/parrot.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionUser= 3 | -------------------------------------------------------------------------------- /system_configs/pipewire/pipewire.socket.d/parrot.conf: -------------------------------------------------------------------------------- 1 | [Unit] 2 | ConditionUser= 3 | -------------------------------------------------------------------------------- /system_configs/postgresql/parrot_postgresql.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/postgresql/parrot_postgresql.conf -------------------------------------------------------------------------------- /system_configs/postgresql/postgresql_reduce_shared_buffers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/postgresql/postgresql_reduce_shared_buffers -------------------------------------------------------------------------------- /system_configs/profile.d/ZZparrot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/profile.d/ZZparrot.sh -------------------------------------------------------------------------------- /system_configs/samba/smb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/samba/smb.conf -------------------------------------------------------------------------------- /system_configs/udev-rules/50-u2f-hyperfido.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/udev-rules/50-u2f-hyperfido.rules -------------------------------------------------------------------------------- /system_configs/udev-rules/73-usb-net-by-mac.rules: -------------------------------------------------------------------------------- 1 | /dev/null -------------------------------------------------------------------------------- /system_configs/xrdp/parrot.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/xrdp/parrot.bmp -------------------------------------------------------------------------------- /system_configs/xrdp/xrdp.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-core/HEAD/system_configs/xrdp/xrdp.ini --------------------------------------------------------------------------------