├── Config ├── Automation │ └── Install.cfg ├── Linux │ ├── Custom │ │ └── install.txt │ ├── Development │ │ ├── Exploit_Development │ │ │ └── full.txt │ │ ├── Malware_Development │ │ │ └── full.txt │ │ ├── Reverse_Engineering │ │ │ └── full.txt │ │ └── Source_Code_Analysis │ │ │ └── full.txt │ ├── Forensic │ │ ├── Cloud │ │ │ └── full.txt │ │ ├── Crypto │ │ │ └── full.txt │ │ ├── Infrastructure │ │ │ ├── full.txt │ │ │ └── minimal.txt │ │ └── Mobile │ │ │ └── full.txt │ ├── General │ │ ├── gui.txt │ │ └── standard.txt │ ├── Hardening │ │ ├── Cloud │ │ │ └── full.txt │ │ └── Infrastructure │ │ │ └── full.txt │ ├── Pentest │ │ ├── Cloud │ │ │ └── full.txt │ │ ├── IOT │ │ │ └── full.txt │ │ ├── Infrastructure │ │ │ ├── full.txt │ │ │ └── minimal.txt │ │ ├── Mobile │ │ │ └── full.txt │ │ └── Web │ │ │ └── full.txt │ ├── Red_Teaming │ │ ├── Active_Directory │ │ │ └── full.txt │ │ ├── OSINT │ │ │ └── full.txt │ │ ├── Phishing │ │ │ └── full.txt │ │ └── Physical_Pentesting │ │ │ └── full.txt │ └── Training │ │ └── full.txt └── Windows │ ├── Custom │ └── PLATZHALTER │ ├── Forensic │ └── PLATZHALTER │ ├── General │ └── full.txt │ └── Pentest │ ├── IOT │ └── full.txt │ ├── Infrastructure │ └── full.txt │ ├── Mobile │ └── PLATZHALTER │ ├── Red_Teaming │ └── PLATZHALTER │ └── Web │ └── full.txt ├── Custom ├── burp_install.sh ├── covenant_install.sh ├── display-driver.sh ├── edge-install.sh ├── old-kali-wallpapers.sh ├── sliver_install.exp └── wlan-driver.sh ├── Information ├── Changelog │ └── full.md ├── Info │ ├── forensic.txt │ ├── red_teaming.txt │ └── training.txt ├── Pages │ ├── Active_Directory.txt │ ├── Custom.txt │ ├── Education.txt │ ├── Forensic.txt │ ├── Hardening.txt │ ├── Infrastructure.txt │ ├── Mobile.txt │ ├── OSINT.txt │ ├── Phishing.txt │ └── Web.txt └── info.txt ├── LICENSE ├── README.md ├── Resources ├── Auto │ ├── Linux │ │ ├── Burp │ │ │ ├── burp_install_01.jpg │ │ │ ├── burp_install_02.jpg │ │ │ ├── burp_install_03.jpg │ │ │ ├── burp_install_04.jpg │ │ │ ├── burp_install_05.jpg │ │ │ ├── burp_install_06.jpg │ │ │ ├── burp_install_07.jpg │ │ │ └── burp_install_08.jpg │ │ ├── Firefox │ │ │ └── Firefox_ADD.jpg │ │ └── Transparency │ │ │ ├── terminal_transparency_01.jpg │ │ │ ├── terminal_transparency_02.jpg │ │ │ └── terminal_transparency_03.jpg │ └── Windows │ │ └── PLATZHALTER ├── Python │ ├── Standard_Operations │ │ ├── ArgParser.py │ │ ├── Colors.py │ │ ├── Libraries.py │ │ ├── Logger.py │ │ └── Standard.py │ ├── auto.py │ ├── browse.py │ ├── clean.py │ ├── filter.py │ ├── install.py │ ├── nic.py │ └── zip.py ├── URL_Opener │ └── index.html └── Workfiles │ ├── configurator.ps1 │ └── configurator.sh └── yggdrasil.py /Config/Automation/Install.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Automation/Install.cfg -------------------------------------------------------------------------------- /Config/Linux/Custom/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Custom/install.txt -------------------------------------------------------------------------------- /Config/Linux/Development/Exploit_Development/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Development/Exploit_Development/full.txt -------------------------------------------------------------------------------- /Config/Linux/Development/Malware_Development/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Development/Malware_Development/full.txt -------------------------------------------------------------------------------- /Config/Linux/Development/Reverse_Engineering/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Development/Reverse_Engineering/full.txt -------------------------------------------------------------------------------- /Config/Linux/Development/Source_Code_Analysis/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Development/Source_Code_Analysis/full.txt -------------------------------------------------------------------------------- /Config/Linux/Forensic/Cloud/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Forensic/Cloud/full.txt -------------------------------------------------------------------------------- /Config/Linux/Forensic/Crypto/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Forensic/Crypto/full.txt -------------------------------------------------------------------------------- /Config/Linux/Forensic/Infrastructure/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Forensic/Infrastructure/full.txt -------------------------------------------------------------------------------- /Config/Linux/Forensic/Infrastructure/minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Forensic/Infrastructure/minimal.txt -------------------------------------------------------------------------------- /Config/Linux/Forensic/Mobile/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Forensic/Mobile/full.txt -------------------------------------------------------------------------------- /Config/Linux/General/gui.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/General/gui.txt -------------------------------------------------------------------------------- /Config/Linux/General/standard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/General/standard.txt -------------------------------------------------------------------------------- /Config/Linux/Hardening/Cloud/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Hardening/Cloud/full.txt -------------------------------------------------------------------------------- /Config/Linux/Hardening/Infrastructure/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Hardening/Infrastructure/full.txt -------------------------------------------------------------------------------- /Config/Linux/Pentest/Cloud/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Pentest/Cloud/full.txt -------------------------------------------------------------------------------- /Config/Linux/Pentest/IOT/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Pentest/IOT/full.txt -------------------------------------------------------------------------------- /Config/Linux/Pentest/Infrastructure/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Pentest/Infrastructure/full.txt -------------------------------------------------------------------------------- /Config/Linux/Pentest/Infrastructure/minimal.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Pentest/Infrastructure/minimal.txt -------------------------------------------------------------------------------- /Config/Linux/Pentest/Mobile/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Pentest/Mobile/full.txt -------------------------------------------------------------------------------- /Config/Linux/Pentest/Web/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Pentest/Web/full.txt -------------------------------------------------------------------------------- /Config/Linux/Red_Teaming/Active_Directory/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Red_Teaming/Active_Directory/full.txt -------------------------------------------------------------------------------- /Config/Linux/Red_Teaming/OSINT/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Red_Teaming/OSINT/full.txt -------------------------------------------------------------------------------- /Config/Linux/Red_Teaming/Phishing/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Red_Teaming/Phishing/full.txt -------------------------------------------------------------------------------- /Config/Linux/Red_Teaming/Physical_Pentesting/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Red_Teaming/Physical_Pentesting/full.txt -------------------------------------------------------------------------------- /Config/Linux/Training/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Linux/Training/full.txt -------------------------------------------------------------------------------- /Config/Windows/Custom/PLATZHALTER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Config/Windows/Forensic/PLATZHALTER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Config/Windows/General/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Windows/General/full.txt -------------------------------------------------------------------------------- /Config/Windows/Pentest/IOT/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Windows/Pentest/IOT/full.txt -------------------------------------------------------------------------------- /Config/Windows/Pentest/Infrastructure/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Windows/Pentest/Infrastructure/full.txt -------------------------------------------------------------------------------- /Config/Windows/Pentest/Mobile/PLATZHALTER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Config/Windows/Pentest/Red_Teaming/PLATZHALTER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Config/Windows/Pentest/Web/full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Config/Windows/Pentest/Web/full.txt -------------------------------------------------------------------------------- /Custom/burp_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/burp_install.sh -------------------------------------------------------------------------------- /Custom/covenant_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/covenant_install.sh -------------------------------------------------------------------------------- /Custom/display-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/display-driver.sh -------------------------------------------------------------------------------- /Custom/edge-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/edge-install.sh -------------------------------------------------------------------------------- /Custom/old-kali-wallpapers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/old-kali-wallpapers.sh -------------------------------------------------------------------------------- /Custom/sliver_install.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/sliver_install.exp -------------------------------------------------------------------------------- /Custom/wlan-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Custom/wlan-driver.sh -------------------------------------------------------------------------------- /Information/Changelog/full.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Changelog/full.md -------------------------------------------------------------------------------- /Information/Info/forensic.txt: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /Information/Info/red_teaming.txt: -------------------------------------------------------------------------------- 1 | lorem ipsum 2 | -------------------------------------------------------------------------------- /Information/Info/training.txt: -------------------------------------------------------------------------------- 1 | PLATZHALTER 2 | -------------------------------------------------------------------------------- /Information/Pages/Active_Directory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Pages/Active_Directory.txt -------------------------------------------------------------------------------- /Information/Pages/Custom.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Information/Pages/Education.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Pages/Education.txt -------------------------------------------------------------------------------- /Information/Pages/Forensic.txt: -------------------------------------------------------------------------------- 1 | https://www.virustotal.com/gui/home/upload 2 | -------------------------------------------------------------------------------- /Information/Pages/Hardening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Pages/Hardening.txt -------------------------------------------------------------------------------- /Information/Pages/Infrastructure.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Pages/Infrastructure.txt -------------------------------------------------------------------------------- /Information/Pages/Mobile.txt: -------------------------------------------------------------------------------- 1 | https://owasp.org/www-project-mobile-app-security/ 2 | -------------------------------------------------------------------------------- /Information/Pages/OSINT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Pages/OSINT.txt -------------------------------------------------------------------------------- /Information/Pages/Phishing.txt: -------------------------------------------------------------------------------- 1 | https://www.pinvoke.net/ 2 | -------------------------------------------------------------------------------- /Information/Pages/Web.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/Pages/Web.txt -------------------------------------------------------------------------------- /Information/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Information/info.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/README.md -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_01.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_02.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_03.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_04.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_05.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_06.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_07.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Burp/burp_install_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Burp/burp_install_08.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Firefox/Firefox_ADD.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Firefox/Firefox_ADD.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Transparency/terminal_transparency_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Transparency/terminal_transparency_01.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Transparency/terminal_transparency_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Transparency/terminal_transparency_02.jpg -------------------------------------------------------------------------------- /Resources/Auto/Linux/Transparency/terminal_transparency_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Auto/Linux/Transparency/terminal_transparency_03.jpg -------------------------------------------------------------------------------- /Resources/Auto/Windows/PLATZHALTER: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Resources/Python/Standard_Operations/ArgParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/Standard_Operations/ArgParser.py -------------------------------------------------------------------------------- /Resources/Python/Standard_Operations/Colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/Standard_Operations/Colors.py -------------------------------------------------------------------------------- /Resources/Python/Standard_Operations/Libraries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/Standard_Operations/Libraries.py -------------------------------------------------------------------------------- /Resources/Python/Standard_Operations/Logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/Standard_Operations/Logger.py -------------------------------------------------------------------------------- /Resources/Python/Standard_Operations/Standard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/Standard_Operations/Standard.py -------------------------------------------------------------------------------- /Resources/Python/auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/auto.py -------------------------------------------------------------------------------- /Resources/Python/browse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/browse.py -------------------------------------------------------------------------------- /Resources/Python/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/clean.py -------------------------------------------------------------------------------- /Resources/Python/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/filter.py -------------------------------------------------------------------------------- /Resources/Python/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/install.py -------------------------------------------------------------------------------- /Resources/Python/nic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/nic.py -------------------------------------------------------------------------------- /Resources/Python/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Python/zip.py -------------------------------------------------------------------------------- /Resources/URL_Opener/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/URL_Opener/index.html -------------------------------------------------------------------------------- /Resources/Workfiles/configurator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Workfiles/configurator.ps1 -------------------------------------------------------------------------------- /Resources/Workfiles/configurator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/Resources/Workfiles/configurator.sh -------------------------------------------------------------------------------- /yggdrasil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jarl-Bjoern/Yggdrasil/HEAD/yggdrasil.py --------------------------------------------------------------------------------