├── browser ├── 00parrot.js ├── README ├── distribution.ini ├── firefox.js └── policies.json ├── debian ├── changelog ├── compat ├── control ├── copyright ├── parrot-displaymanager.install ├── parrot-firefox-profiles.install ├── parrot-firefox-profiles.postinst ├── parrot-firefox-profiles.triggers ├── parrot-interface-common.install ├── parrot-interface-common.postinst ├── rules └── source │ └── format ├── etc └── xdg │ └── xfce4 │ └── terminal │ └── terminalrc ├── lightdm ├── htb-alt.jpg ├── htb.jpg ├── lightdm.conf ├── login-alt.jpg ├── login.jpg ├── slick-greeter-home.conf ├── slick-greeter-htb.conf ├── slick-greeter-security.conf └── slick-greeter.conf └── usr └── share └── parrot-defaults ├── localstore.rdf └── postgresql_reduce_shared_buffers /browser/00parrot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/browser/00parrot.js -------------------------------------------------------------------------------- /browser/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/browser/README -------------------------------------------------------------------------------- /browser/distribution.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/browser/distribution.ini -------------------------------------------------------------------------------- /browser/firefox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/browser/firefox.js -------------------------------------------------------------------------------- /browser/policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/browser/policies.json -------------------------------------------------------------------------------- /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 11 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/control -------------------------------------------------------------------------------- /debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/copyright -------------------------------------------------------------------------------- /debian/parrot-displaymanager.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/parrot-displaymanager.install -------------------------------------------------------------------------------- /debian/parrot-firefox-profiles.install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/parrot-firefox-profiles.install -------------------------------------------------------------------------------- /debian/parrot-firefox-profiles.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/parrot-firefox-profiles.postinst -------------------------------------------------------------------------------- /debian/parrot-firefox-profiles.triggers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/parrot-firefox-profiles.triggers -------------------------------------------------------------------------------- /debian/parrot-interface-common.install: -------------------------------------------------------------------------------- 1 | etc/xdg/xfce4/terminal/* 2 | usr/share/parrot-defaults/* 3 | -------------------------------------------------------------------------------- /debian/parrot-interface-common.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/debian/parrot-interface-common.postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- 1 | #!/usr/bin/make -f 2 | 3 | %: 4 | dh $@ 5 | 6 | -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /etc/xdg/xfce4/terminal/terminalrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/etc/xdg/xfce4/terminal/terminalrc -------------------------------------------------------------------------------- /lightdm/htb-alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/htb-alt.jpg -------------------------------------------------------------------------------- /lightdm/htb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/htb.jpg -------------------------------------------------------------------------------- /lightdm/lightdm.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/lightdm.conf -------------------------------------------------------------------------------- /lightdm/login-alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/login-alt.jpg -------------------------------------------------------------------------------- /lightdm/login.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/login.jpg -------------------------------------------------------------------------------- /lightdm/slick-greeter-home.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/slick-greeter-home.conf -------------------------------------------------------------------------------- /lightdm/slick-greeter-htb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/slick-greeter-htb.conf -------------------------------------------------------------------------------- /lightdm/slick-greeter-security.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/slick-greeter-security.conf -------------------------------------------------------------------------------- /lightdm/slick-greeter.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/lightdm/slick-greeter.conf -------------------------------------------------------------------------------- /usr/share/parrot-defaults/localstore.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/usr/share/parrot-defaults/localstore.rdf -------------------------------------------------------------------------------- /usr/share/parrot-defaults/postgresql_reduce_shared_buffers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-interface/HEAD/usr/share/parrot-defaults/postgresql_reduce_shared_buffers --------------------------------------------------------------------------------