mirror of
https://github.com/oSoWoSo/DistroHopper.git
synced 2026-06-14 17:36:40 +00:00
30 lines
969 B
Text
30 lines
969 B
Text
athenaos
|
|
|
|
athenaos v23.06.23: https://github.com/Athena-OS/athena/releases/download/v23.06.23/athena-rolling-x86_64.iso
|
|
athenaos v23.11: https://github.com/Athena-OS/athena/releases/download/v23.11/athena-rolling-x86_64.iso
|
|
|
|
# Template file for 'athenaos'
|
|
OSNAME="athenaos"
|
|
PRETTY="Athena OS"
|
|
BASEDOF="Arch"
|
|
DESCRIPTION="Offer a different experience than the most used pentesting distributions by providing only tools that fit with the user needs and improving the access to hacking resources and learning materials"
|
|
HOMEPAGE="https://athenaos.org"
|
|
CREDENTIALS="-"
|
|
|
|
|
|
RELEASES="v23.11 v23.06.23"
|
|
|
|
|
|
function get_() {
|
|
local HASH=""
|
|
local URL="https://github.com/Athena-OS/athena/releases/download/${RELEASE}"
|
|
local ISO="athena-rolling-x86_64.iso"
|
|
HASH=$(web_pipe "${URL}/${ISO}.sha256" | cut -d' ' -f1)
|
|
echo "${URL}/${ISO} ${HASH}"
|
|
}
|
|
|
|
function specific_tweaks() {
|
|
echo "disk_size=\"32G\"" >> "${CONF_FILE}"
|
|
}
|
|
|
|
|