Initial Commit

This commit is contained in:
niklascfw 2026-02-03 17:42:58 +01:00
parent 0245f15049
commit 7ef0c5fe49
No known key found for this signature in database
1573 changed files with 62270 additions and 0 deletions

103
.github/workflows/build-packs.yml vendored Normal file
View file

@ -0,0 +1,103 @@
name: Build OmniNX Packs
on:
push:
tags:
- '*.*.*'
workflow_dispatch:
inputs:
version:
description: 'Version number (e.g., 1.0.0)'
required: true
default: '1.0.0'
hotfix:
description: 'Hotfix mode - update existing release instead of creating new one'
required: false
type: boolean
default: false
hotfix_tag:
description: 'Tag of existing release to update (required if hotfix is true)'
required: false
type: string
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write # Required to create releases and tags
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
lfs: true # Checkout LFS files needed for build
- name: Set version from tag
if: startsWith(github.ref, 'refs/tags/')
run: |
VERSION=${GITHUB_REF#refs/tags/}
echo "VERSION=$VERSION" >> $GITHUB_ENV
echo "Version from tag: $VERSION"
- name: Set version from input
if: github.event_name == 'workflow_dispatch'
run: |
echo "VERSION=${{ github.event.inputs.version }}" >> $GITHUB_ENV
echo "HOTFIX=${{ github.event.inputs.hotfix }}" >> $GITHUB_ENV
echo "HOTFIX_TAG=${{ github.event.inputs.hotfix_tag }}" >> $GITHUB_ENV
echo "Version from input: ${{ github.event.inputs.version }}"
if [ "${{ github.event.inputs.hotfix }}" == "true" ]; then
echo "Hotfix mode: Will update release with tag ${{ github.event.inputs.hotfix_tag }}"
fi
- name: Make build scripts executable
run: |
chmod +x scripts/build-pack.sh
chmod +x scripts/build-all.sh
- name: Build all variants
run: |
./scripts/build-all.sh $VERSION
- name: Create release artifacts
run: |
mkdir -p release
cp output/*.zip release/ || true
- name: Set release tag name
id: set_tag
run: |
if [ "${{ env.HOTFIX }}" == "true" ] && [ -n "${{ env.HOTFIX_TAG }}" ]; then
# Hotfix mode: use the specified tag
echo "tag=${{ env.HOTFIX_TAG }}" >> $GITHUB_OUTPUT
echo "mode=update" >> $GITHUB_OUTPUT
elif [ -n "${{ github.ref_name }}" ]; then
# Tag push: use the tag
echo "tag=${{ github.ref_name }}" >> $GITHUB_OUTPUT
echo "mode=create" >> $GITHUB_OUTPUT
else
# Manual run (non-hotfix): create new tag
echo "tag=${{ env.VERSION }}" >> $GITHUB_OUTPUT
echo "mode=create" >> $GITHUB_OUTPUT
fi
- name: Create or Update GitHub Release
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.set_tag.outputs.tag }}
name: OmniNX Release ${{ env.VERSION }}
draft: false
prerelease: false
generate_release_notes: false
files: |
release/OmniNX-Standard-${{ env.VERSION }}.zip
release/OmniNX-Light-${{ env.VERSION }}.zip
release/OmniNX-OC-${{ env.VERSION }}.zip
body: |
## Changelog
See the [changelog](https://github.com/${{ github.repository }}/blob/main/CHANGELOG.md) for details.
${{ steps.set_tag.outputs.mode == 'update' && '**Hotfix Update** - This release has been updated with new builds.' || '' }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

BIN
.pics/hekate.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 160 KiB

21
LICENSE Normal file
View file

@ -0,0 +1,21 @@
MIT License
Copyright (c) NiklasCFW & Woody-NX
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

202
README.md Normal file
View file

@ -0,0 +1,202 @@
# OmniNX CFW Pack
![](.pics/hekate.png)
OmniNX ist ein vollständiges Custom-Firmware-Setup für die Nintendo Switch, verfügbar in drei Varianten mit Fokus auf Flexibilität und Modularität.
## Features von OmniNX
* **Drei Varianten** Standard (voll), Light (minimal) und OC (Overclocking + SaltySD)
* **Vollständiges CFW-Setup** Sofort einsatzbereit mit Atmosphere, Hekate und wichtigen Tools
* **Modernes Homebrew-Menü** Sphaira mit OmniNX-Theme und FTP-/MTP-Unterstützung
* **Ultrahand Reload** Overlay-Menü und Package-System (Alchemist, RAM Patcher, OmniNX Downloader)
* **Vorkonfigurierte Payloads** Lockpick RCM (Pro), TegraExplorer, Modchip-Toolboxen
* **Sicherheit und Patches** sys-patch, DNS-MitM, USB 3.0 Force
* **Modulare Struktur** Build-Skripte und Git LFS für überschaubare Repo-Größe
* **RAM-Patcher-Packages** Optionale Speicher-Konfigurationen (Default, RAM Patch, 4GB Kip, etc.)
## Varianten
| Variante | Beschreibung |
|----------|---------------|
| **Standard** | Volles Pack: alle Homebrew-Apps, Overlays, Themes und Packages |
| **Light** | Minimales Pack: nur Kern-Apps und Overlays (Daybreak, DBI, JKSV, Sphaira, Ultrahand, etc.) |
| **OC** | Volles Pack plus Overclocking: OC Toolkit, sys-clk EOS, SaltySD-Integration |
## Inhalt von OmniNX
### **1. Kern-CFW-Komponenten**
1. **[Atmosphere](https://github.com/Atmosphere-NX/Atmosphere)** Custom Firmware für Nintendo Switch
2. **[Hekate](https://github.com/CTCaer/hekate)** Bootloader mit grafischer Oberfläche und Nyx
3. **[sys-patch](https://github.com/impeeza/sys-patch)** System-Patches für unsigned Software
4. **[Ultrahand Reload](https://github.com/ppkantorski/Ultrahand-Overlay)** Overlay-Menü und Package-System
### **2. Payloads**
* **[Lockpick RCM](https://github.com/saneki/Lockpick_RCM)** / **Lockpick RCM** Konsolen-Key-Extraktion
* **[TegraExplorer](https://github.com/suchmememanyskill/TegraExplorer)** Low-Level-Dateimanager
* **[hwfly_toolbox](https://github.com/hwfly-nx/hwfly-toolbox)** hwfly-Modchip-Toolbox
* **[Instinct_toolbox](https://github.com/Xnopyt/HWFLY-Instinct)** Instinct-Modchip-Toolbox
* **[PicoFly_Toolbox](https://github.com/Ansem-SoD/Picofly)** PicoFly-Modchip-Toolbox
* **[OmniNX Installer](https://github.com/OmniNX/OmniNX-Installer-Payload)** Pack-Installer-Payload (Staging)
### **3. Homebrew-Apps (Standard / OC; Light hat eine Teilmenge)**
* **[Sphaira](https://github.com/ITotalJustice/sphaira)** Modernes Homebrew-Menü (Standard-Launcher)
* **[DBI](https://github.com/rashevskyv/DBI)** Dateimanager, Save-Manager, Installer
* **[Daybreak](https://github.com/Atmosphere-NX/Atmosphere)** HOS-Update-Tool
* **[JKSV](https://github.com/J-D-K/JKSV)** Save-Manager
* **[Linkalho](https://github.com/impeeza/linkalho)** Account-Verknüpfung
* **[Chiaki](https://git.sr.ht/~thestr4ng3r/chiaki/)** PlayStation Remote Play
* **[SimpleModDownloader](https://github.com/PoloNX/SimpleModDownloader)** Mod-Downloader
* **[SimpleModAlchemist](https://github.com/ppkantorski/Alchemist)** Mod-Manager
* **[Switch Theme Installer](https://github.com/exelix11/SwitchThemeInjector)** Theme-Installer
* **[ThemezerNX](https://github.com/suchmememanyskill/themezer-nx)** Themezer-Client
* **[tinwoo](https://github.com/nicoboss/tinwoo)** Installer
* **[NXGallery](https://github.com/iUltimateLP/NXGallery)** Medien-Galerie
* **[Breeze](https://github.com/tomvita/Breeze-Beta)** Cheat-Manager
* **[DNS_mitm Tester](https://github.com/meganukebmp/Switch_90DNS_tester)** DNS-Test-Tool
### **4. Overlays und Packages**
* **nx-ovlloader** Overlay-Loader für Tesla-artiges Menü
* **Ultrahand Reload** Overlay-System und Packages:
- **Status Monitor** Echtzeit-Systemüberwachung
- **sys-patch Overlay** Patch-Verwaltung
- **EdiZon Overlay** Cheats
- **sysmodules** Modul-Verwaltung
- **DNS-MitM Manager** DNS-Konfiguration
- **QuickNTP** Zeitsynchronisation
* **RAM Patcher** Speicher-Konfiguration (Default, RAM Patch, RAM Patch Kip, 4GB Kip)
* **Memory Kit / Memory Config** Mesosphere- und Speicher-Optionen
* **Alchemist** pchtxt- und Contents-Verwaltung
* **OmniNX Downloader** Apps, Overlays, Sysmodules, OS, Updater
* **OC Toolkit** (OC-Variante) sys-clk EOS und Overclock-Konfiguration
### **5. Konfiguration und Themes**
* **OmniNX-Theme** Sphaira-Theme (`/config/sphaira/themes/omninx.ini`) in allen Varianten
* **Boot-Logos** Einheitliches CFW-Boot-Logo (`bootlogo_cfw.bmp`)
* **Hekate** Vorkonfigurierte Boot-Einträge (CFW-EmuMMC, OFW, Payloads)
* **Nyx** Theming und UI (z. B. `themecolor=197`)
### **6. Sicherheit und System**
* **DNS-MitM** DNS-Weiterleitung und Blocking
* **sys-patch** Automatische System-Patches
* **USB 3.0 Force** Verbesserte USB-Performance
* **exosphere.ini** Optionale Exosphere-Konfiguration pro Variante
## Repository-Struktur
```
OmniNX/
├── staging/ # Gemeinsame Install-Stage-Dateien (Bootloader, Payloads, Nyx, etc.)
├── standard/ # Standard-Variante (voll)
├── light/ # Light-Variante (minimal)
├── oc/ # OC-Variante (Overclocking + SaltySD)
└── scripts/ # Build-Skripte (build-pack.sh, build-all.sh)
```
## Repository-Setup (Git LFS)
Dieses Repository nutzt **Git LFS** für Binärdateien. Ohne LFS wäre das Repo sehr groß und würde mit jedem Update wachsen.
### Ersteinrichtung
```bash
# Git LFS installieren (z. B. macOS)
brew install git-lfs
# Im Repo initialisieren
git lfs install
```
### Klonen
```bash
git clone <repository-url>
cd OmniNX
```
Falls das Repo bereits ohne LFS geklont wurde:
```bash
git lfs install
git lfs pull
```
Siehe `.gitattributes` für LFS-Track-Muster. Zu GitHub-Quota und Bandbreiten-Limits siehe Projekt-Docs oder SETUP.md.
## Packs bauen
### Voraussetzungen
- Bash, `zip`, Git LFS
### Einzelne Variante bauen
```bash
./scripts/build-pack.sh [standard|light|oc] [version]
```
Beispiel: `./scripts/build-pack.sh standard 1.0.0`
### Alle Varianten bauen
```bash
./scripts/build-all.sh [version]
```
Die Skripte kopieren Staging- und Varianten-Inhalt, aktualisieren `manifest.ini` mit der Version und erstellen ZIP-Archive.
Die Version steht in `{variant}/config/omninx/manifest.ini`.
## Installation
1. **SD-Karte vorbereiten** Als FAT32 formatieren
2. **Dateien kopieren** Gewünschtes Varianten-ZIP auf die SD-Root entpacken (oder OmniNX Installer nutzen)
3. **Booten** Hekate oder Fusee per RCM laden
4. **Optional** Einstellungen in `config/` anpassen (Sphaira, Ultrahand, etc.)
## Verwendung
### Boot-Optionen (Hekate)
- **CFW-EmuMMC** Custom Firmware mit EmuMMC
- **OFW** Original-Firmware
- **TegraExplorer** Dateisystem-Explorer
- **Lockpick RCM** Key-Extraktion
- **Modchip-Toolboxen** hwfly, Instinct, PicoFly (variantenabhängig)
### Overlay-Menü
- **L + R + PLUS** Ultrahand-Reload-Overlay öffnen
### Homebrew-Menü
- **Album** Sphaira starten (OmniNX-Theme)
## Lizenz
Die verwendeten Projekte unterliegen ihren jeweiligen Lizenzen. Das OmniNX-Pack selbst steht unter der MIT-Lizenz.
**[GPL 2.0](https://github.com/Atmosphere-NX/Atmosphere/blob/master/LICENSE):**
* [Atmosphere](https://github.com/Atmosphere-NX/Atmosphere)
## Credits
* **Atmosphere Team** Custom Firmware
* **CTCaer** Hekate Bootloader
* **ppkantorski** Ultrahand Overlay & sys-clk
* **ITotalJustice** Sphaira, DNS_mitm Tester, Modchip-Toolboxen und mehr
* **WerWolv** Tesla-Menü & EdiZon
* **Sthetix** Lockpick RCM Pro
* **NiklasCFW** & **Woody-NX** OmniNX-Pack-Erstellung; Vorgänger NiklasCFW Pack
## Support
* **Discord:** [NiklasCFW Modding Community](https://discord.gg/niklascfw)
* **GitHub:** [Woody-NX](https://github.com/Woody-NX) · **[NiklasCFW](https://github.com/Niklas080208)**
* **Releases:** [OmniNX](https://github.com/Woody-NX/OmniNX/releases)
---
<div align="center">
[![OmniNX](https://img.shields.io/badge/OmniNX-CFW%20Pack-7d7d7d?style=for-the-badge)](https://github.com/OmniNX/OmniNX/releases)
[![Variants](https://img.shields.io/badge/Varianten-Standard%20%7C%20Light%20%7C%20OC-7d7d7d?style=for-the-badge)](https://github.com/OmniNX/OmniNX)
</div>

1
VERSION Normal file
View file

@ -0,0 +1 @@
1.0.0

66
scripts/build-all.sh Executable file
View file

@ -0,0 +1,66 @@
#!/bin/bash
set -e
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
PROJECT_ROOT="$(cd "$SCRIPT_DIR/.." && pwd)"
OUTPUT_DIR="$PROJECT_ROOT/output"
STAGING_DIR="$PROJECT_ROOT/staging"
VARIANTS_DIR="$PROJECT_ROOT/varients"
VERSION="$(tr -d '[:space:]' < "$PROJECT_ROOT/VERSION")"
# Clear output directory
clear_output_directory() {
echo "Lösche Output-Verzeichnis..."
rm -rf "$OUTPUT_DIR"
mkdir -p "$OUTPUT_DIR"
echo "Output-Verzeichnis gelöscht."
}
# Light: Staging (Root) + Ordner "OmniNX Light" = varients/light
build_light() {
local build_dir
build_dir="$(mktemp -d)"
echo "Baue OmniNX Light..."
cp -R "$STAGING_DIR/." "$build_dir/"
mkdir -p "$build_dir/OmniNX Light"
cp -R "$VARIANTS_DIR/light/." "$build_dir/OmniNX Light/"
mkdir -p "$OUTPUT_DIR"
cd "$build_dir" && zip -q -r "$OUTPUT_DIR/OmniNX-Light-$VERSION.zip" . && cd "$PROJECT_ROOT"
rm -rf "$build_dir"
}
# Standard: Staging (Root) + Ordner "OmniNX Standard" = light, dann standard drüber
build_standard() {
local build_dir
build_dir="$(mktemp -d)"
echo "Baue OmniNX Standard..."
cp -R "$STAGING_DIR/." "$build_dir/"
mkdir -p "$build_dir/OmniNX Standard"
cp -R "$VARIANTS_DIR/light/." "$build_dir/OmniNX Standard/"
cp -R "$VARIANTS_DIR/standard/." "$build_dir/OmniNX Standard/"
mkdir -p "$OUTPUT_DIR"
cd "$build_dir" && zip -q -r "$OUTPUT_DIR/OmniNX-Standard-$VERSION.zip" . && cd "$PROJECT_ROOT"
rm -rf "$build_dir"
}
# OC: Staging (Root) + Ordner "OmniNX OC" = light, dann standard, dann oc drüber
build_oc() {
local build_dir
build_dir="$(mktemp -d)"
echo "Baue OmniNX OC..."
cp -R "$STAGING_DIR/." "$build_dir/"
mkdir -p "$build_dir/OmniNX OC"
cp -R "$VARIANTS_DIR/light/." "$build_dir/OmniNX OC/"
cp -R "$VARIANTS_DIR/standard/." "$build_dir/OmniNX OC/"
cp -R "$VARIANTS_DIR/oc/." "$build_dir/OmniNX OC/"
mkdir -p "$OUTPUT_DIR"
cd "$build_dir" && zip -q -r "$OUTPUT_DIR/OmniNX-OC-$VERSION.zip" . && cd "$PROJECT_ROOT"
rm -rf "$build_dir"
}
mkdir -p "$OUTPUT_DIR"
clear_output_directory
build_light
build_standard
build_oc
echo "Alle Varianten gebaut."

BIN
staging/boot.dat Normal file

Binary file not shown.

View file

@ -0,0 +1,48 @@
[config]
autoboot=0
autoboot_list=0
bootwait=3
backlight=100
autohosoff=2
updater2p=1
bootprotect=0
noticker=0
[]
payload=bootloader/payloads/Tegra_Explorer.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Lockpick_RCM.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Hekate.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Hekate.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Hekate.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Hekate.bin
icon=bootloader/res/empty_nobox.bmp
[OmniNX Installer]
payload=bootloader/payloads/OmniNX-Installer.bin
icon=bootloader/res/Tegra_Explorer_hue.bmp
[]
payload=bootloader/payloads/hekate.bin
icon=bootloader/res/empty_nobox.bmp
--------------------------------------------------------------
;{OmniNX Ein Nintendo Switch CFW Pack}
;{Created by Woody2408 @ https://github.com/Woody-NX}
;{NiklasCFW Discord Server @ https://discord.gg/KBmq9TGA}

View file

@ -0,0 +1,12 @@
[config]
themebg=0
themecolor=197
entries5col=0
timeoffset=1
timedst=1
homescreen=2
verification=1
umsemmcrw=0
jcdisable=0
jcforceright=0
bpmpclock=2

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
staging/loader.bin Normal file

Binary file not shown.

BIN
staging/payload.bin Normal file

Binary file not shown.

View file

@ -0,0 +1,40 @@
[eupld]
; Disable uploading error reports to Nintendo
; upload_enabled = u8!0x0
[usb]
; Enable USB 3.0 superspeed for homebrew
; 0 = USB 3.0 support is system default (usually disabled), 1 = USB 3.0 support is enabled.
usb30_force_enabled = u8!0x1
[ro]
; Control whether RO should ease its validation of NROs.
; (note: this is normally not necessary, and ips patches can be used.)
; ease_nro_restriction = u8!0x1
[lm]
; Control whether lm should log to the SD card.
; Note that this setting does nothing when log manager is not enabled.
; enable_sd_card_logging = u8!0x1
; Control the output directory for SD card logs.
; Note that this setting does nothing when log manager is not enabled/sd card logging is not enabled.
; sd_card_log_output_directory = str!atmosphere/binlogs
; Atmosphere custom settings
[erpt]
; Control whether erpt reports should always be preserved, instead of automatically cleaning periodically.
; disable_automatic_report_cleanup = u8!0x0
[atmosphere]
; Make the power menu's "reboot" button reboot to payload.
; Set to "normal" for normal reboot, "rcm" for rcm reboot.
power_menu_reboot_function = str!payload
; Controls whether dmnt cheats should be toggled on or off by
; default. 1 = toggled on by default, 0 = toggled off by default.
dmnt_cheats_enabled_by_default = u8!0x0
; Controls whether dns.mitm is enabled
; 0 = Disabled, 1 = Enabled
enable_dns_mitm = u8!0x1
; Controls whether dns.mitm uses the default redirections in addition to
; whatever is specified in the user's hosts file.
; 0 = Disabled (use hosts file contents), 1 = Enabled (use defaults and hosts file contents)
add_defaults_to_dns_hosts = u8!0x1
; Controls whether the bluetooth pairing database is redirected to the SD card (shared across sysmmc/all emummcs)
; NOTE: On <13.0.0, the database size was 10 instead of 20; booting pre-13.0.0 will truncate the database.
; 0 = Disabled, 1 = Enabled
enable_external_bluetooth_db = u8!0x1

View file

@ -0,0 +1,59 @@
# Key: debugmode, default: 1.
# Desc: Controls whether kernel is debug mode.
# Disabling this will break Atmosphere.
# Key: debugmode_user, default: 0.
# Desc: Controls whether userland is debug mode.
# Key: disable_user_exception_handlers, default: 0.
# Desc: Controls whether user exception handlers are executed on error.
# NOTE: This will cause atmosphere to not fail gracefully.
# Support may not be provided to users tho disable these.
# If you do not know what you are doing, leave them on.
# Key: enable_user_pmu_access, default: 0.
# Desc: Controls whether userland has access to the PMU registers.
# NOTE: It is unknown what effects this has on official code.
# Key: blank_prodinfo_sysmmc, default: 0.
# Desc: Controls whether PRODINFO should be blanked in sysmmc.
# This will cause the system to see dummied out keys and
# serial number information.
# NOTE: This is not known to be safe, as data may be
# cached elsewhere in the system. Usage is not encouraged.
# Key: blank_prodinfo_emummc, default: 0.
# Desc: Controls whether PRODINFO should be blanked in emummc.
# NOTE: This is not known to be safe, as data may be
# cached elsewhere in the system. Usage is not encouraged.
# Key: allow_writing_to_cal_sysmmc, default: 0.
# Desc: Controls whether PRODINFO can be written by homebrew in sysmmc.
# NOTE: Usage of this setting is strongly discouraged without
# a safe backup elsewhere. Turning this on will also cause Atmosphere
# to ensure a safe backup of calibration data is stored in unused
# mmc space, encrypted to prevent detection. This backup can be used
# to prevent unrecoverable edits in emergencies.
# Key: log_port, default: 0.
# Desc: Controls what uart port exosphere will set up for logging.
# NOTE: 0 = UART-A, 1 = UART-B, 2 = UART-C, 3 = UART-D
# Key: log_baud_rate, default: 115200
# Desc: Controls the baud rate exosphere will set up for logging.
# NOTE: 0 is treated as equivalent to 115200.
# Key: log_inverted, default: 0.
# Desc: Controls whether the logging uart port is inverted.
[exosphere]
debugmode=1
debugmode_user=0
disable_user_exception_handlers=0
enable_user_pmu_access=0
blank_prodinfo_sysmmc=0
blank_prodinfo_emummc=0
allow_writing_to_cal_sysmmc=0
log_port=0
log_baud_rate=115200
log_inverted=0

View file

@ -0,0 +1,21 @@
[hbl_config]
; Program Specific Config
; Up to 8 program-specific configurations can be set.
; These use `program_id_#`, `override_address_space_#`, and `override_key_#`
; where # is in range [0,7].
; program_id_0=010000000000100D
; override_address_space=39_bit
; override_key_0=!R
; Any Application Config
; Note that this will only apply to program IDs that
; are both applications and not specified above
; by a program specific config.
; override_any_app=true
; override_any_app_key=R
; override_any_app_address_space=39_bit
; path=atmosphere/hbl.nsp
[default_config]
; override_key=!L
; cheat_enable_key=!L

View file

@ -0,0 +1,4 @@
[stratosphere]
; To force-enable nogc, add nogc = 1
; To force-disable nogc, add nogc = 0

View file

@ -0,0 +1,82 @@
[eupld]
; Disable uploading error reports to Nintendo
; upload_enabled = u8!0x0
[usb]
; Enable USB 3.0 superspeed for homebrew
; 0 = USB 3.0 support is system default (usually disabled), 1 = USB 3.0 support is enabled.
; usb30_force_enabled = u8!0x0
[ro]
; Control whether RO should ease its validation of NROs.
; (note: this is normally not necessary, and ips patches can be used.)
; ease_nro_restriction = u8!0x1
[lm]
; Control whether lm should log to the SD card.
; Note that this setting does nothing when log manager is not enabled.
; enable_sd_card_logging = u8!0x1
; Control the output directory for SD card logs.
; Note that this setting does nothing when log manager is not enabled/sd card logging is not enabled.
; sd_card_log_output_directory = str!atmosphere/binlogs
; Atmosphere custom settings
[erpt]
; Control whether erpt reports should always be preserved, instead of automatically cleaning periodically.
; disable_automatic_report_cleanup = u8!0x0
[atmosphere]
; Reboot from fatal automatically after some number of milliseconds.
; If field is not present or 0, fatal will wait indefinitely for user input.
; fatal_auto_reboot_interval = u64!0x0
; Make the power menu's "reboot" button reboot to payload.
; Set to "normal" for normal reboot, "rcm" for rcm reboot.
; power_menu_reboot_function = str!payload
; Controls whether dmnt cheats should be toggled on or off by
; default. 1 = toggled on by default, 0 = toggled off by default.
; dmnt_cheats_enabled_by_default = u8!0x1
; Controls whether dmnt should always save cheat toggle state
; for restoration on new game launch. 1 = always save toggles,
; 0 = only save toggles if toggle file exists.
; dmnt_always_save_cheat_toggles = u8!0x0
; Enable writing to BIS partitions for HBL.
; This is probably undesirable for normal usage.
; enable_hbl_bis_write = u8!0x0
; Enable reading the CAL0 partition for HBL.
; This is probably undesirable for normal usage.
; enable_hbl_cal_read = u8!0x0
; Controls whether fs.mitm should redirect save files
; to directories on the sd card.
; 0 = Do not redirect, 1 = Redirect.
; NOTE: EXPERIMENTAL
; If you do not know what you are doing, do not touch this yet.
; fsmitm_redirect_saves_to_sd = u8!0x0
; Controls whether am sees system settings "DebugModeFlag" as
; enabled or disabled.
; 0 = Disabled (not debug mode), 1 = Enabled (debug mode)
; enable_am_debug_mode = u8!0x0
; Controls whether dns.mitm is enabled
; 0 = Disabled, 1 = Enabled
; enable_dns_mitm = u8!0x1
; Controls whether dns.mitm uses the default redirections in addition to
; whatever is specified in the user's hosts file.
; 0 = Disabled (use hosts file contents), 1 = Enabled (use defaults and hosts file contents)
; add_defaults_to_dns_hosts = u8!0x1
; Controls whether dns.mitm logs to the sd card for debugging
; 0 = Disabled, 1 = Enabled
; enable_dns_mitm_debug_log = u8!0x0
; Controls whether htc is enabled
; 0 = Disabled, 1 = Enabled
; enable_htc = u8!0x0
; Controls whether atmosphere's log manager is enabled
; Note that this setting is ignored (and treated as 1) when htc is enabled.
; 0 = Disabled, 1 = Enabled
; enable_log_manager = u8!0x0
; Controls whether the bluetooth pairing database is redirected to the SD card (shared across sysmmc/all emummcs)
; NOTE: On <13.0.0, the database size was 10 instead of 20; booting pre-13.0.0 will truncate the database.
; 0 = Disabled, 1 = Enabled
; enable_external_bluetooth_db = u8!0x0
[hbloader]
; Controls the size of the homebrew heap when running as applet.
; If set to zero, all available applet memory is used as heap.
; The default is zero.
; applet_heap_size = u64!0x0
; Controls the amount of memory to reserve when running as applet
; for usage by other applets. This setting has no effect if
; applet_heap_size is non-zero. The default is 0x8600000.
; applet_heap_reservation_size = u64!0x8600000

View file

@ -0,0 +1,5 @@
{
"name" : "sys-patch",
"tid" : "420000000000000B",
"requires_reboot": false
}

View file

@ -0,0 +1,6 @@
{
"name" : "nx-ovlloader",
"tid" : "420000000007E51A",
"requires_reboot": false,
"version": "2.0.0"
}

Binary file not shown.

View file

@ -0,0 +1 @@
^http*

View file

@ -0,0 +1,661 @@
##### NINTENDO GLOBAL #####
127.0.0.1 nintendo.*
127.0.0.1 nintendo*.*
127.0.0.1 *nintendo.*
127.0.0.1 *nintendo*.*
127.0.0.1 switch.*
127.0.0.1 switch*.*
127.0.0.1 *switch.*
127.0.0.1 *switch*.*
##### NINTENDO TELEMETRIE-SERVER #####
127.0.0.1 receive-%.dg.srv.nintendo.net receive-%.er.srv.nintendo.net
##### NINTENDO CDN-SERVER #####
95.216.149.205 conntest.nintendowifi.net
95.216.149.205 ctest.cdn.nintendo.net
# 90 dns
95.216.149.205 *90dns.test
# 90DNS
127.0.0.1 *nintendo.com
127.0.0.1 *nintendo.net
127.0.0.1 *nintendo.jp
127.0.0.1 *nintendo.co.jp
127.0.0.1 *nintendo.co.uk
127.0.0.1 *nintendo-europe.com
127.0.0.1 *nintendowifi.net
127.0.0.1 *nintendo.es
127.0.0.1 *nintendo.co.kr
127.0.0.1 *nintendo.tw
127.0.0.1 *nintendo.com.hk
127.0.0.1 *nintendo.com.au
127.0.0.1 *nintendo.co.nz
127.0.0.1 *nintendo.at
127.0.0.1 *nintendo.be
127.0.0.1 *nintendods.cz
127.0.0.1 *nintendo.dk
127.0.0.1 *nintendo.de
127.0.0.1 *nintendo.fi
127.0.0.1 *nintendo.fr
127.0.0.1 *nintendo.gr
127.0.0.1 *nintendo.hu
127.0.0.1 *nintendo.it
127.0.0.1 *nintendo.nl
127.0.0.1 *nintendo.no
127.0.0.1 *nintendo.pt
127.0.0.1 *nintendo.ru
127.0.0.1 *nintendo.co.za
127.0.0.1 *nintendo.se
127.0.0.1 *nintendo.ch
127.0.0.1 *nintendo.pl
127.0.0.1 *nintendoswitch.com
127.0.0.1 *nintendoswitch.com.cn
127.0.0.1 *nintendoswitch.cn
Block Nintendo Servers
127.0.0.1 *nintendo.*
127.0.0.1 *nintendo-europe.com
127.0.0.1 *nintendoswitch.*
# Bypass connect and browser
127.0.0.1 be*.nintendo.*
127.0.0.1 bu*.nintendo.*
127.0.0.1 con*.nintendo.*
127.0.0.1 cap*.nintendo.*
# block nintendo
127.0.0.1 a*.nintendo.*
127.0.0.1 d*.nintendo.*
127.0.0.1 e*.nintendo.*
127.0.0.1 f*.nintendo.*
127.0.0.1 g*.nintendo.*
127.0.0.1 h*.nintendo.*
127.0.0.1 i*.nintendo.*
127.0.0.1 j*.nintendo.*
127.0.0.1 k*.nintendo.*
127.0.0.1 l*.nintendo.*
127.0.0.1 m*.nintendo.*
127.0.0.1 n*.nintendo.*
127.0.0.1 o*.nintendo.*
127.0.0.1 p*.nintendo.*
127.0.0.1 q*.nintendo.*
127.0.0.1 r*.nintendo.*
127.0.0.1 s*.nintendo.*
127.0.0.1 t*.nintendo.*
127.0.0.1 u*.nintendo.*
127.0.0.1 v*.nintendo.*
127.0.0.1 w*.nintendo.*
127.0.0.1 x*.nintendo.*
127.0.0.1 y*.nintendo.*
127.0.0.1 z*.nintendo.*
127.0.0.1 1*.nintendo.*
127.0.0.1 2*.nintendo.*
127.0.0.1 3*.nintendo.*
127.0.0.1 4*.nintendo.*
127.0.0.1 5*.nintendo.*
127.0.0.1 6*.nintendo.*
127.0.0.1 7*.nintendo.*
127.0.0.1 8*.nintendo.*
127.0.0.1 9*.nintendo.*
127.0.0.1 0*.nintendo.*
# Ads
127.0.0.1 *.doubleclick.net
127.0.0.1 s.ytimg.com
127.0.0.1 ad.youtube.com
127.0.0.1 ads.youtube.com
127.0.0.1 clients1.google.com
127.0.0.1 asccdn.com
127.0.0.1 youradexchange.com
127.0.0.1 *addthis.com
127.0.0.1 *culturedischargenarcotic*
127.0.0.1 *google-analytics*
##### GOOGLE ANALYSE, TRACKING UND ADS #####
# This project was created and is maintained by: Evan Pratten (@ewpratten)
# More Info at: https://github.com/Ewpratten/youtube_ad_blocklist
#
0.0.0.0 2975c.v.fwmrm.net
0.0.0.0 2mdn.net
0.0.0.0 ad.doubleclick.net
0.0.0.0 ad-g.doubleclick.net
0.0.0.0 ad.mo.doubleclick.net
0.0.0.0 ads.doubleclick.net
0.0.0.0 adservice.google.com
0.0.0.0 ads.youtube.com
0.0.0.0 ad.youtube.com
0.0.0.0 analytic-google.com
0.0.0.0 doubleclick.net
0.0.0.0 dts.innovid.com
0.0.0.0 files.adform.net
0.0.0.0 fls.doubleclick.net
0.0.0.0 fwmrm.net
0.0.0.0 g.doubleclick.net
0.0.0.0 googleadapis.l.google.com
0.0.0.0 googleads4.g.doubleclick.net
0.0.0.0 googleadservices.com
0.0.0.0 googleads.g.doubleclick.net
0.0.0.0 innovid.com
0.0.0.0 manifest.googlevideo.com
0.0.0.0 pagead1.googlesyndication.com
0.0.0.0 pagead2.googlesyndication.com
0.0.0.0 pagead.googlesyndication.com
0.0.0.0 pagead.l.doubleclick.net
0.0.0.0 pixel.moatads.com
0.0.0.0 pubads.g.doubleclick.net
0.0.0.0 r10---sn-3c27snel.googlevideo.com
0.0.0.0 r10.sn-4g5ednzz.googlevideo.com
0.0.0.0 r10---sn-4g5ednzz.googlevideo.com
0.0.0.0 r10---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r11.sn-4g5ednzz.googlevideo.com
0.0.0.0 r11---sn-4g5ednzz.googlevideo.com
0.0.0.0 r11---sn-4gxx-25ge7.googlevideo.com
0.0.0.0 r12---sn-3c27sn7z.googlevideo.com
0.0.0.0 r13---sn-3c27sn7z.googlevideo.com
0.0.0.0 r15.sn-4g5ednzz.googlevideo.com
0.0.0.0 r15---sn-4g5ednzz.googlevideo.com
0.0.0.0 r16---sn-4gxx-25ge7.googlevideo.com
0.0.0.0 r1---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r1---sn-05goxu-afvs.googlevideo.com
0.0.0.0 r1---sn-25glen7y.googlevideo.com
0.0.0.0 r1---sn-25glenez.googlevideo.com
0.0.0.0 r1.sn-4g5e6ne6.googlevideo.com
0.0.0.0 r1---sn-4g5e6ne6.googlevideo.com
0.0.0.0 r1.sn-4g5e6nez.googlevideo.com
0.0.0.0 r1---sn-4g5e6nez.googlevideo.com
0.0.0.0 r1.sn-4g5e6nl6.googlevideo.com
0.0.0.0 r1---sn-4g5e6nl6.googlevideo.com
0.0.0.0 r1.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r1---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r1.sn-4g5e6ns7.googlevideo.com
0.0.0.0 r1---sn-4g5e6ns7.googlevideo.com
0.0.0.0 r1.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r1---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r1.sn-4g5e6nz7.googlevideo.com
0.0.0.0 r1---sn-4g5e6nz7.googlevideo.com
0.0.0.0 r1.sn-4g5e6nzz.googlevideo.com
0.0.0.0 r1---sn-4g5e6nzz.googlevideo.com
0.0.0.0 r1.sn-4g5edne6.googlevideo.com
0.0.0.0 r1---sn-4g5edne6.googlevideo.com
0.0.0.0 r1.sn-4g5edned.googlevideo.com
0.0.0.0 r1---sn-4g5edned.googlevideo.com
0.0.0.0 r1.sn-4g5ednll.googlevideo.com
0.0.0.0 r1---sn-4g5ednll.googlevideo.com
0.0.0.0 r1.sn-4g5ednly.googlevideo.com
0.0.0.0 r1---sn-4g5ednly.googlevideo.com
0.0.0.0 r1.sn-4g5ednsd.googlevideo.com
0.0.0.0 r1---sn-4g5ednsd.googlevideo.com
0.0.0.0 r1.sn-4g5ednse.googlevideo.com
0.0.0.0 r1---sn-4g5ednse.googlevideo.com
0.0.0.0 r1.sn-4g5ednsl.googlevideo.com
0.0.0.0 r1---sn-4g5ednsl.googlevideo.com
0.0.0.0 r1.sn-4g5ednsr.googlevideo.com
0.0.0.0 r1---sn-4g5ednsr.googlevideo.com
0.0.0.0 r1---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r1---sn-8p8v-nn5e.googlevideo.com
0.0.0.0 r1---sn-8p8v-nn5l.googlevideo.com
0.0.0.0 r1---sn-gpv7dne6.googlevideo.com
0.0.0.0 r1---sn-gpv7dned.googlevideo.com
0.0.0.0 r1.sn-h0jeen76.googlevideo.com
0.0.0.0 r1---sn-h0jeen76.googlevideo.com
0.0.0.0 r1.sn-h0jeened.googlevideo.com
0.0.0.0 r1---sn-h0jeened.googlevideo.com
0.0.0.0 r1---sn-h0jeenle.googlevideo.com
0.0.0.0 r1.sn-h0jeln7e.googlevideo.com
0.0.0.0 r1---sn-h0jeln7e.googlevideo.com
0.0.0.0 r1---sn-h0jeln7l.googlevideo.com
0.0.0.0 r1---sn-h0jelne7.googlevideo.com
0.0.0.0 r1---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r2---sn-25ge7nsd.googlevideo.com
0.0.0.0 r2.sn-4g5e6ney.googlevideo.com
0.0.0.0 r2---sn-4g5e6ney.googlevideo.com
0.0.0.0 r2.sn-4g5e6nez.googlevideo.com
0.0.0.0 r2---sn-4g5e6nez.googlevideo.com
0.0.0.0 r2.sn-4g5e6nl7.googlevideo.com
0.0.0.0 r2---sn-4g5e6nl7.googlevideo.com
0.0.0.0 r2.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r2---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r2.sn-4g5e6nsk.googlevideo.com
0.0.0.0 r2---sn-4g5e6nsk.googlevideo.com
0.0.0.0 r2.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r2---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r2.sn-4g5e6nsz.googlevideo.com
0.0.0.0 r2---sn-4g5e6nsz.googlevideo.com
0.0.0.0 r2.sn-4g5e6nzl.googlevideo.com
0.0.0.0 r2---sn-4g5e6nzl.googlevideo.com
0.0.0.0 r2.sn-4g5edn7y.googlevideo.com
0.0.0.0 r2---sn-4g5edn7y.googlevideo.com
0.0.0.0 r2.sn-4g5edned.googlevideo.com
0.0.0.0 r2---sn-4g5edned.googlevideo.com
0.0.0.0 r2.sn-4g5ednee.googlevideo.com
0.0.0.0 r2---sn-4g5ednee.googlevideo.com
0.0.0.0 r2.sn-4g5ednld.googlevideo.com
0.0.0.0 r2---sn-4g5ednld.googlevideo.com
0.0.0.0 r2.sn-4g5ednle.googlevideo.com
0.0.0.0 r2---sn-4g5ednle.googlevideo.com
0.0.0.0 r2.sn-4g5ednls.googlevideo.com
0.0.0.0 r2---sn-4g5ednls.googlevideo.com
0.0.0.0 r2.sn-4g5ednly.googlevideo.com
0.0.0.0 r2---sn-4g5ednly.googlevideo.com
0.0.0.0 r2.sn-4g5ednse.googlevideo.com
0.0.0.0 r2---sn-4g5ednse.googlevideo.com
0.0.0.0 r2.sn-4g5ednzz.googlevideo.com
0.0.0.0 r2---sn-4g5ednzz.googlevideo.com
0.0.0.0 r2---sn-5hne6n7z.googlevideo.com
0.0.0.0 r2---sn-8p8v-nn5e.googlevideo.com
0.0.0.0 r2---sn-8p8v-nn5l.googlevideo.com
0.0.0.0 r2---sn-b8u-8pml.googlevideo.com
0.0.0.0 r2---sn-b8u-nn5e.googlevideo.com
0.0.0.0 r2---sn-gpv7dne6.googlevideo.com
0.0.0.0 r2.sn-h0jeen76.googlevideo.com
0.0.0.0 r2---sn-h0jeen76.googlevideo.com
0.0.0.0 r2---sn-h0jeened.googlevideo.com
0.0.0.0 r2---sn-h0jeenek.googlevideo.com
0.0.0.0 r2.sn-h0jeener.googlevideo.com
0.0.0.0 r2---sn-h0jeener.googlevideo.com
0.0.0.0 r2---sn-h0jeenle.googlevideo.com
0.0.0.0 r2.sn-h0jeln7e.googlevideo.com
0.0.0.0 r2---sn-h0jeln7e.googlevideo.com
0.0.0.0 r2---sn-h0jeln7l.googlevideo.com
0.0.0.0 r2---sn-h0jelne7.googlevideo.com
0.0.0.0 r2.sn-hp57kn6e.googlevideo.com
0.0.0.0 r2---sn-hp57kn6e.googlevideo.com
0.0.0.0 r2---sn-n4g-nmc6.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8px6.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxd.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxs.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxz.googlevideo.com
0.0.0.0 r3---sn-05goxu-3c2s.googlevideo.com
0.0.0.0 r3---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r3---sn-3c27sn7e.googlevideo.com
0.0.0.0 r3---sn-3c27sne7.googlevideo.com
0.0.0.0 r3.sn-4g5e6nl7.googlevideo.com
0.0.0.0 r3---sn-4g5e6nl7.googlevideo.com
0.0.0.0 r3.sn-4g5e6nld.googlevideo.com
0.0.0.0 r3---sn-4g5e6nld.googlevideo.com
0.0.0.0 r3.sn-4g5e6nle.googlevideo.com
0.0.0.0 r3---sn-4g5e6nle.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsk.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsk.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsr.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsr.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsz.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsz.googlevideo.com
0.0.0.0 r3.sn-4g5e6nzs.googlevideo.com
0.0.0.0 r3---sn-4g5e6nzs.googlevideo.com
0.0.0.0 r3.sn-4g5e6nzz.googlevideo.com
0.0.0.0 r3---sn-4g5e6nzz.googlevideo.com
0.0.0.0 r3.sn-4g5edne6.googlevideo.com
0.0.0.0 r3---sn-4g5edne6.googlevideo.com
0.0.0.0 r3.sn-4g5edne7.googlevideo.com
0.0.0.0 r3---sn-4g5edne7.googlevideo.com
0.0.0.0 r3.sn-4g5edned.googlevideo.com
0.0.0.0 r3---sn-4g5edned.googlevideo.com
0.0.0.0 r3.sn-4g5ednee.googlevideo.com
0.0.0.0 r3---sn-4g5ednee.googlevideo.com
0.0.0.0 r3.sn-4g5ednld.googlevideo.com
0.0.0.0 r3---sn-4g5ednld.googlevideo.com
0.0.0.0 r3.sn-4g5ednll.googlevideo.com
0.0.0.0 r3---sn-4g5ednll.googlevideo.com
0.0.0.0 r3.sn-4g5ednls.googlevideo.com
0.0.0.0 r3---sn-4g5ednls.googlevideo.com
0.0.0.0 r3.sn-4g5edns6.googlevideo.com
0.0.0.0 r3---sn-4g5edns6.googlevideo.com
0.0.0.0 r3.sn-4g5ednsd.googlevideo.com
0.0.0.0 r3---sn-4g5ednsd.googlevideo.com
0.0.0.0 r3.sn-4g5ednss.googlevideo.com
0.0.0.0 r3---sn-4g5ednss.googlevideo.com
0.0.0.0 r3.sn-4g5ednsz.googlevideo.com
0.0.0.0 r3---sn-4g5ednsz.googlevideo.com
0.0.0.0 r3.sn-4g5ednz7.googlevideo.com
0.0.0.0 r3---sn-4g5ednz7.googlevideo.com
0.0.0.0 r3.sn-4g5ednzz.googlevideo.com
0.0.0.0 r3---sn-4g5ednzz.googlevideo.com
0.0.0.0 r3---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r3---sn-gpv7dned.googlevideo.com
0.0.0.0 r3---sn-h0jeened.googlevideo.com
0.0.0.0 r3---sn-h0jeenek.googlevideo.com
0.0.0.0 r3---sn-h0jeenle.googlevideo.com
0.0.0.0 r3---sn-h0jeln7l.googlevideo.com
0.0.0.0 r3---sn-h0jelne7.googlevideo.com
0.0.0.0 r3---sn-n4g-nmc6.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8px6.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxd.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxe.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxs.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxz.googlevideo.com
0.0.0.0 r4---sn-05goxu-3c2s.googlevideo.com
0.0.0.0 r4---sn-25ge7nsk.googlevideo.com
0.0.0.0 r4---sn-3c27snel.googlevideo.com
0.0.0.0 r4.sn-4g5e6nez.googlevideo.com
0.0.0.0 r4---sn-4g5e6nez.googlevideo.com
0.0.0.0 r4.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r4---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r4.sn-4g5e6nzs.googlevideo.com
0.0.0.0 r4---sn-4g5e6nzs.googlevideo.com
0.0.0.0 r4.sn-4g5edney.googlevideo.com
0.0.0.0 r4---sn-4g5edney.googlevideo.com
0.0.0.0 r4.sn-4g5ednld.googlevideo.com
0.0.0.0 r4---sn-4g5ednld.googlevideo.com
0.0.0.0 r4.sn-4g5ednly.googlevideo.com
0.0.0.0 r4---sn-4g5ednly.googlevideo.com
0.0.0.0 r4.sn-4g5edns7.googlevideo.com
0.0.0.0 r4---sn-4g5edns7.googlevideo.com
0.0.0.0 r4.sn-4g5ednsd.googlevideo.com
0.0.0.0 r4---sn-4g5ednsd.googlevideo.com
0.0.0.0 r4.sn-4g5ednsk.googlevideo.com
0.0.0.0 r4---sn-4g5ednsk.googlevideo.com
0.0.0.0 r4.sn-4g5ednsy.googlevideo.com
0.0.0.0 r4---sn-4g5ednsy.googlevideo.com
0.0.0.0 r4.sn-4g5ednz7.googlevideo.com
0.0.0.0 r4---sn-4g5ednz7.googlevideo.com
0.0.0.0 r4.sn-4g5ednzz.googlevideo.com
0.0.0.0 r4---sn-4g5ednzz.googlevideo.com
0.0.0.0 r4---sn-4gxx-25gee.googlevideo.com
0.0.0.0 r4---sn-a5mlrn7y.googlevideo.com
0.0.0.0 r4---sn-gpv7dn7k.googlevideo.com
0.0.0.0 r4---sn-gpv7dne6.googlevideo.com
0.0.0.0 r4---sn-gpv7dned.googlevideo.com
0.0.0.0 r4.sn-h0jeened.googlevideo.com
0.0.0.0 r4---sn-h0jeened.googlevideo.com
0.0.0.0 r4---sn-h0jeenek.googlevideo.com
0.0.0.0 r4---sn-h0jeener.googlevideo.com
0.0.0.0 r4---sn-h0jeenle.googlevideo.com
0.0.0.0 r4.sn-h0jeln7e.googlevideo.com
0.0.0.0 r4---sn-h0jeln7e.googlevideo.com
0.0.0.0 r4.sn-h0jeln7l.googlevideo.com
0.0.0.0 r4---sn-h0jeln7l.googlevideo.com
0.0.0.0 r4---sn-h0jelne7.googlevideo.com
0.0.0.0 r4---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r4---sn-uigxx50n-8pxs.googlevideo.com
0.0.0.0 r5---sn-05goxu-3c2s.googlevideo.com
0.0.0.0 r5---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r5.sn-4g5e6n7k.googlevideo.com
0.0.0.0 r5---sn-4g5e6n7k.googlevideo.com
0.0.0.0 r5.sn-4g5e6n7r.googlevideo.com
0.0.0.0 r5---sn-4g5e6n7r.googlevideo.com
0.0.0.0 r5.sn-4g5e6ney.googlevideo.com
0.0.0.0 r5---sn-4g5e6ney.googlevideo.com
0.0.0.0 r5.sn-4g5e6nls.googlevideo.com
0.0.0.0 r5---sn-4g5e6nls.googlevideo.com
0.0.0.0 r5.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r5---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r5.sn-4g5e6ns7.googlevideo.com
0.0.0.0 r5---sn-4g5e6ns7.googlevideo.com
0.0.0.0 r5.sn-4g5e6nsk.googlevideo.com
0.0.0.0 r5---sn-4g5e6nsk.googlevideo.com
0.0.0.0 r5.sn-4g5e6nss.googlevideo.com
0.0.0.0 r5---sn-4g5e6nss.googlevideo.com
0.0.0.0 r5.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r5---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r5.sn-4g5e6nsz.googlevideo.com
0.0.0.0 r5---sn-4g5e6nsz.googlevideo.com
0.0.0.0 r5.sn-4g5e6nz7.googlevideo.com
0.0.0.0 r5---sn-4g5e6nz7.googlevideo.com
0.0.0.0 r5.sn-4g5e6nze.googlevideo.com
0.0.0.0 r5---sn-4g5e6nze.googlevideo.com
0.0.0.0 r5.sn-4g5e6nzl.googlevideo.com
0.0.0.0 r5---sn-4g5e6nzl.googlevideo.com
0.0.0.0 r5.sn-4g5edn7s.googlevideo.com
0.0.0.0 r5---sn-4g5edn7s.googlevideo.com
0.0.0.0 r5.sn-4g5ednly.googlevideo.com
0.0.0.0 r5---sn-4g5ednly.googlevideo.com
0.0.0.0 r5.sn-4g5edns6.googlevideo.com
0.0.0.0 r5---sn-4g5edns6.googlevideo.com
0.0.0.0 r5.sn-4g5ednsd.googlevideo.com
0.0.0.0 r5---sn-4g5ednsd.googlevideo.com
0.0.0.0 r5.sn-4g5ednsl.googlevideo.com
0.0.0.0 r5---sn-4g5ednsl.googlevideo.com
0.0.0.0 r5.sn-4g5ednsr.googlevideo.com
0.0.0.0 r5---sn-4g5ednsr.googlevideo.com
0.0.0.0 r5.sn-4g5ednsy.googlevideo.com
0.0.0.0 r5---sn-4g5ednsy.googlevideo.com
0.0.0.0 r5.sn-4g5ednsz.googlevideo.com
0.0.0.0 r5---sn-4g5ednsz.googlevideo.com
0.0.0.0 r5.sn-4g5ednzz.googlevideo.com
0.0.0.0 r5---sn-4g5ednzz.googlevideo.com
0.0.0.0 r5---sn-gpv7dne6.googlevideo.com
0.0.0.0 r5---sn-gpv7dned.googlevideo.com
0.0.0.0 r5.sn-h0jeenek.googlevideo.com
0.0.0.0 r5---sn-h0jeenek.googlevideo.com
0.0.0.0 r5---sn-h0jeener.googlevideo.com
0.0.0.0 r5---sn-h0jeenle.googlevideo.com
0.0.0.0 r5---sn-h0jeln7e.googlevideo.com
0.0.0.0 r5---sn-h0jeln7l.googlevideo.com
0.0.0.0 r5---sn-h0jelne7.googlevideo.com
0.0.0.0 r5.sn-hp57yn7y.googlevideo.com
0.0.0.0 r5---sn-hp57yn7y.googlevideo.com
0.0.0.0 r5---sn-vgqskn76.googlevideo.com
0.0.0.0 r6---sn-25ge7nsl.googlevideo.com
0.0.0.0 r6---sn-4g5e6nes.googlevideo.com
0.0.0.0 r6.sn-4g5e6nez.googlevideo.com
0.0.0.0 r6---sn-4g5e6nez.googlevideo.com
0.0.0.0 r6.sn-4g5edn7e.googlevideo.com
0.0.0.0 r6---sn-4g5edn7e.googlevideo.com
0.0.0.0 r6.sn-4g5edne7.googlevideo.com
0.0.0.0 r6---sn-4g5edne7.googlevideo.com
0.0.0.0 r6.sn-4g5ednee.googlevideo.com
0.0.0.0 r6---sn-4g5ednee.googlevideo.com
0.0.0.0 r6.sn-4g5ednek.googlevideo.com
0.0.0.0 r6---sn-4g5ednek.googlevideo.com
0.0.0.0 r6.sn-4g5edney.googlevideo.com
0.0.0.0 r6---sn-4g5edney.googlevideo.com
0.0.0.0 r6.sn-4g5ednll.googlevideo.com
0.0.0.0 r6---sn-4g5ednll.googlevideo.com
0.0.0.0 r7---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r8---sn-05goxu-afvs.googlevideo.com
0.0.0.0 r8.sn-4g5ednzz.googlevideo.com
0.0.0.0 r8---sn-4g5ednzz.googlevideo.com
0.0.0.0 r8.sn-n02xgoxufvg3-2gbs.googlevideo.com
0.0.0.0 r8---sn-n02xgoxufvg3-2gbs.googlevideo.com
0.0.0.0 r9---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r9---sn-4gxx-25gy.googlevideo.com
0.0.0.0 rtd.tubemogul.com
0.0.0.0 s0.2mdn.net
0.0.0.0 secure-ds.serving-sys.com
0.0.0.0 securepubads.g.doubleclick.net
0.0.0.0 s.innovid.com
0.0.0.0 ssl.google-analytics.com
0.0.0.0 static.doubleclick.net
0.0.0.0 stats.g.doubleclick.net
0.0.0.0 tpc.googlesyndication.com
0.0.0.0 www.analytic-google.com
0.0.0.0 www.googleadservices.com
0.0.0.0 www-google-analytics.l.google.com
0.0.0.0 www-googletagmanager.l.google.com
0.0.0.0 www.googletagservices.com
0.0.0.0 r1---sn-n8v7kne6.googlevideo.com
0.0.0.0 r1---sn-n8v7kn7r.googlevideo.com
0.0.0.0 r7---sn-n8v7znz7.googlevideo.com
0.0.0.0 r9---sn-n8v7knes.googlevideo.com
0.0.0.0 r3---sn-n8v7kn7k.googlevideo.com
0.0.0.0 r14---sn-n8v7knel.googlevideo.com
0.0.0.0 r13---sn-n8v7znsl.googlevideo.com
0.0.0.0 r3---sn-8ph2xajvh-axql.googlevideo.com
0.0.0.0 r2---sn-8ph2xajvh-axql.googlevideo.com
0.0.0.0 r1---sn-8ph2xajvh-axql.googlevideo.com
0.0.0.0 r5---sn-ci5gup-qxaee.googlevideo.com
##### SPIELE SERVER #####
#generic telemetry (used by obsidian games, possibly others)
127.0.0.1 func-tools-motelemetry.azurewebsites.net
127.0.0.1 signin.rockstargames.com
127.0.0.1 irc.larianstudios.com
127.0.0.1 natpunch*.larian.com
127.0.0.1 see-cerberus-dev.staging.os.eidos.com
#51 World Games
#-
#Absolute Drift
#-
#Bioshock Infinite
127.0.0.1 *.2kcoretch.online
127.0.0.1 *.2k.com
#Child of Light
#-
#Coffee Talk
#-
#Disco Elysium
#-
#FEZ
#-
#Golf Club Wasteland
#-
#Grid
127.0.0.1 *.stackpathcdn.com
127.0.0.1 *.aquiris.com.br
127.0.0.1 *.cloudfront.net
#Horizon Chase Turbo
#-
#Hot Wheels Unleashed
127.0.0.1 *epicgames.*
#Kingdoms of Amalur Re-Reckoning
#-
#Laytons Mystery Journey
127.0.0.1 consent.google.com
127.0.0.1 google.com
#Lego City Undercover
#-
#Little Nightmares
#-
#Minecraft Dungeons
127.0.0.1 launchercontent.mojang.com
#Minecraft
127.0.0.1 launchercontent.mojang.com
#N+
#-
#Ori and the blind Forest
127.0.0.1 vortex.data.microsoft.com
#Ori and the will of the wisps
127.0.0.1 *.playfabapi.com
#Picross S5
#-
#Picross S6
#-
#Pikmin 3 Deluxe
#-
#Pixark
#-
#Pleague Inc
#-
#Quake
#-
#Raymen Legends
#-
#Road 96
#-
#Saints Row The Third
#-
#Serious Sam Collection
#-
#SnowRunner
127.0.0.1 hydrapi.net
#South Park Der Stab der Wahrheit
#-
#Spelunky
#-
#Spelunky 2
#-
#Spongebob Squarepants Battle for Bikini Bottom Rehydraded
#-
#Spyro Reignited Trilogy
#-
#Summer in Mara
#-
#Super Meat Boy
#-
#Super Meat Boy Forever
#-
#Tetris Effect
#-
#The Dungone of Crawl RPG
#-
#The Elder Scrolls V Skyrim
#-
#The Escapists 2
#-
#The Witcher 3 Wild Hunt - Complete Edition
#-
#This War of Mine Complete Edition
#-
#Tony Hawks Pro Skater 1+2
127.0.0.1 stun.au.demonware.net
127.0.0.1 stun.jp.demonware.net
127.0.0.1 stun.eu.demonware.net
127.0.0.1 stun.us.demonware.net
#Trials Rising
#-
#Undertale
#-
#wb games (hogwarts legacy)
127.0.0.1 phoenix-api.wbagora.com
127.0.0.1 wb-agora-hydra-file-storage-phoenix.s3.amazonaws.com
#What the Golf?
#-
#Worms W.M.D
127.0.0.1 *.t17service.com

View file

@ -0,0 +1,570 @@
##### amsPLUS #####
##### NINTENDO GLOBAL #####
127.0.0.1 nintendo.*
127.0.0.1 nintendo*.*
127.0.0.1 *nintendo.*
127.0.0.1 *nintendo*.*
127.0.0.1 switch.*
127.0.0.1 switch*.*
127.0.0.1 *switch.*
127.0.0.1 *switch*.*
##### HB-APPSTORE AUSSCHLIESSEN #####
92.204.211.16 *switchbru*.*
169.150.247.35 *switch.cdn.fortheusers*.*
##### NINTENDO TELEMETRIE-SERVER #####
127.0.0.1 receive-%.dg.srv.nintendo.net receive-%.er.srv.nintendo.net
##### NINTENDO CDN-SERVER #####
95.216.149.205 conntest.nintendowifi.net
95.216.149.205 ctest.cdn.nintendo.net
##### GOOGLE ANALYSE, TRACKING UND ADS #####
# This project was created and is maintained by: Evan Pratten (@ewpratten)
# More Info at: https://github.com/Ewpratten/youtube_ad_blocklist
#
0.0.0.0 2975c.v.fwmrm.net
0.0.0.0 2mdn.net
0.0.0.0 ad.doubleclick.net
0.0.0.0 ad-g.doubleclick.net
0.0.0.0 ad.mo.doubleclick.net
0.0.0.0 ads.doubleclick.net
0.0.0.0 adservice.google.com
0.0.0.0 ads.youtube.com
0.0.0.0 ad.youtube.com
0.0.0.0 analytic-google.com
0.0.0.0 doubleclick.net
0.0.0.0 dts.innovid.com
0.0.0.0 files.adform.net
0.0.0.0 fls.doubleclick.net
0.0.0.0 fwmrm.net
0.0.0.0 g.doubleclick.net
0.0.0.0 googleadapis.l.google.com
0.0.0.0 googleads4.g.doubleclick.net
0.0.0.0 googleadservices.com
0.0.0.0 googleads.g.doubleclick.net
0.0.0.0 innovid.com
0.0.0.0 manifest.googlevideo.com
0.0.0.0 pagead1.googlesyndication.com
0.0.0.0 pagead2.googlesyndication.com
0.0.0.0 pagead.googlesyndication.com
0.0.0.0 pagead.l.doubleclick.net
0.0.0.0 pixel.moatads.com
0.0.0.0 pubads.g.doubleclick.net
0.0.0.0 r10---sn-3c27snel.googlevideo.com
0.0.0.0 r10.sn-4g5ednzz.googlevideo.com
0.0.0.0 r10---sn-4g5ednzz.googlevideo.com
0.0.0.0 r10---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r11.sn-4g5ednzz.googlevideo.com
0.0.0.0 r11---sn-4g5ednzz.googlevideo.com
0.0.0.0 r11---sn-4gxx-25ge7.googlevideo.com
0.0.0.0 r12---sn-3c27sn7z.googlevideo.com
0.0.0.0 r13---sn-3c27sn7z.googlevideo.com
0.0.0.0 r15.sn-4g5ednzz.googlevideo.com
0.0.0.0 r15---sn-4g5ednzz.googlevideo.com
0.0.0.0 r16---sn-4gxx-25ge7.googlevideo.com
0.0.0.0 r1---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r1---sn-05goxu-afvs.googlevideo.com
0.0.0.0 r1---sn-25glen7y.googlevideo.com
0.0.0.0 r1---sn-25glenez.googlevideo.com
0.0.0.0 r1.sn-4g5e6ne6.googlevideo.com
0.0.0.0 r1---sn-4g5e6ne6.googlevideo.com
0.0.0.0 r1.sn-4g5e6nez.googlevideo.com
0.0.0.0 r1---sn-4g5e6nez.googlevideo.com
0.0.0.0 r1.sn-4g5e6nl6.googlevideo.com
0.0.0.0 r1---sn-4g5e6nl6.googlevideo.com
0.0.0.0 r1.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r1---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r1.sn-4g5e6ns7.googlevideo.com
0.0.0.0 r1---sn-4g5e6ns7.googlevideo.com
0.0.0.0 r1.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r1---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r1.sn-4g5e6nz7.googlevideo.com
0.0.0.0 r1---sn-4g5e6nz7.googlevideo.com
0.0.0.0 r1.sn-4g5e6nzz.googlevideo.com
0.0.0.0 r1---sn-4g5e6nzz.googlevideo.com
0.0.0.0 r1.sn-4g5edne6.googlevideo.com
0.0.0.0 r1---sn-4g5edne6.googlevideo.com
0.0.0.0 r1.sn-4g5edned.googlevideo.com
0.0.0.0 r1---sn-4g5edned.googlevideo.com
0.0.0.0 r1.sn-4g5ednll.googlevideo.com
0.0.0.0 r1---sn-4g5ednll.googlevideo.com
0.0.0.0 r1.sn-4g5ednly.googlevideo.com
0.0.0.0 r1---sn-4g5ednly.googlevideo.com
0.0.0.0 r1.sn-4g5ednsd.googlevideo.com
0.0.0.0 r1---sn-4g5ednsd.googlevideo.com
0.0.0.0 r1.sn-4g5ednse.googlevideo.com
0.0.0.0 r1---sn-4g5ednse.googlevideo.com
0.0.0.0 r1.sn-4g5ednsl.googlevideo.com
0.0.0.0 r1---sn-4g5ednsl.googlevideo.com
0.0.0.0 r1.sn-4g5ednsr.googlevideo.com
0.0.0.0 r1---sn-4g5ednsr.googlevideo.com
0.0.0.0 r1---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r1---sn-8p8v-nn5e.googlevideo.com
0.0.0.0 r1---sn-8p8v-nn5l.googlevideo.com
0.0.0.0 r1---sn-gpv7dne6.googlevideo.com
0.0.0.0 r1---sn-gpv7dned.googlevideo.com
0.0.0.0 r1.sn-h0jeen76.googlevideo.com
0.0.0.0 r1---sn-h0jeen76.googlevideo.com
0.0.0.0 r1.sn-h0jeened.googlevideo.com
0.0.0.0 r1---sn-h0jeened.googlevideo.com
0.0.0.0 r1---sn-h0jeenle.googlevideo.com
0.0.0.0 r1.sn-h0jeln7e.googlevideo.com
0.0.0.0 r1---sn-h0jeln7e.googlevideo.com
0.0.0.0 r1---sn-h0jeln7l.googlevideo.com
0.0.0.0 r1---sn-h0jelne7.googlevideo.com
0.0.0.0 r1---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r2---sn-25ge7nsd.googlevideo.com
0.0.0.0 r2.sn-4g5e6ney.googlevideo.com
0.0.0.0 r2---sn-4g5e6ney.googlevideo.com
0.0.0.0 r2.sn-4g5e6nez.googlevideo.com
0.0.0.0 r2---sn-4g5e6nez.googlevideo.com
0.0.0.0 r2.sn-4g5e6nl7.googlevideo.com
0.0.0.0 r2---sn-4g5e6nl7.googlevideo.com
0.0.0.0 r2.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r2---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r2.sn-4g5e6nsk.googlevideo.com
0.0.0.0 r2---sn-4g5e6nsk.googlevideo.com
0.0.0.0 r2.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r2---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r2.sn-4g5e6nsz.googlevideo.com
0.0.0.0 r2---sn-4g5e6nsz.googlevideo.com
0.0.0.0 r2.sn-4g5e6nzl.googlevideo.com
0.0.0.0 r2---sn-4g5e6nzl.googlevideo.com
0.0.0.0 r2.sn-4g5edn7y.googlevideo.com
0.0.0.0 r2---sn-4g5edn7y.googlevideo.com
0.0.0.0 r2.sn-4g5edned.googlevideo.com
0.0.0.0 r2---sn-4g5edned.googlevideo.com
0.0.0.0 r2.sn-4g5ednee.googlevideo.com
0.0.0.0 r2---sn-4g5ednee.googlevideo.com
0.0.0.0 r2.sn-4g5ednld.googlevideo.com
0.0.0.0 r2---sn-4g5ednld.googlevideo.com
0.0.0.0 r2.sn-4g5ednle.googlevideo.com
0.0.0.0 r2---sn-4g5ednle.googlevideo.com
0.0.0.0 r2.sn-4g5ednls.googlevideo.com
0.0.0.0 r2---sn-4g5ednls.googlevideo.com
0.0.0.0 r2.sn-4g5ednly.googlevideo.com
0.0.0.0 r2---sn-4g5ednly.googlevideo.com
0.0.0.0 r2.sn-4g5ednse.googlevideo.com
0.0.0.0 r2---sn-4g5ednse.googlevideo.com
0.0.0.0 r2.sn-4g5ednzz.googlevideo.com
0.0.0.0 r2---sn-4g5ednzz.googlevideo.com
0.0.0.0 r2---sn-5hne6n7z.googlevideo.com
0.0.0.0 r2---sn-8p8v-nn5e.googlevideo.com
0.0.0.0 r2---sn-8p8v-nn5l.googlevideo.com
0.0.0.0 r2---sn-b8u-8pml.googlevideo.com
0.0.0.0 r2---sn-b8u-nn5e.googlevideo.com
0.0.0.0 r2---sn-gpv7dne6.googlevideo.com
0.0.0.0 r2.sn-h0jeen76.googlevideo.com
0.0.0.0 r2---sn-h0jeen76.googlevideo.com
0.0.0.0 r2---sn-h0jeened.googlevideo.com
0.0.0.0 r2---sn-h0jeenek.googlevideo.com
0.0.0.0 r2.sn-h0jeener.googlevideo.com
0.0.0.0 r2---sn-h0jeener.googlevideo.com
0.0.0.0 r2---sn-h0jeenle.googlevideo.com
0.0.0.0 r2.sn-h0jeln7e.googlevideo.com
0.0.0.0 r2---sn-h0jeln7e.googlevideo.com
0.0.0.0 r2---sn-h0jeln7l.googlevideo.com
0.0.0.0 r2---sn-h0jelne7.googlevideo.com
0.0.0.0 r2.sn-hp57kn6e.googlevideo.com
0.0.0.0 r2---sn-hp57kn6e.googlevideo.com
0.0.0.0 r2---sn-n4g-nmc6.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8px6.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxd.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxs.googlevideo.com
0.0.0.0 r2---sn-uigxx50n-8pxz.googlevideo.com
0.0.0.0 r3---sn-05goxu-3c2s.googlevideo.com
0.0.0.0 r3---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r3---sn-3c27sn7e.googlevideo.com
0.0.0.0 r3---sn-3c27sne7.googlevideo.com
0.0.0.0 r3.sn-4g5e6nl7.googlevideo.com
0.0.0.0 r3---sn-4g5e6nl7.googlevideo.com
0.0.0.0 r3.sn-4g5e6nld.googlevideo.com
0.0.0.0 r3---sn-4g5e6nld.googlevideo.com
0.0.0.0 r3.sn-4g5e6nle.googlevideo.com
0.0.0.0 r3---sn-4g5e6nle.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsk.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsk.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsr.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsr.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r3.sn-4g5e6nsz.googlevideo.com
0.0.0.0 r3---sn-4g5e6nsz.googlevideo.com
0.0.0.0 r3.sn-4g5e6nzs.googlevideo.com
0.0.0.0 r3---sn-4g5e6nzs.googlevideo.com
0.0.0.0 r3.sn-4g5e6nzz.googlevideo.com
0.0.0.0 r3---sn-4g5e6nzz.googlevideo.com
0.0.0.0 r3.sn-4g5edne6.googlevideo.com
0.0.0.0 r3---sn-4g5edne6.googlevideo.com
0.0.0.0 r3.sn-4g5edne7.googlevideo.com
0.0.0.0 r3---sn-4g5edne7.googlevideo.com
0.0.0.0 r3.sn-4g5edned.googlevideo.com
0.0.0.0 r3---sn-4g5edned.googlevideo.com
0.0.0.0 r3.sn-4g5ednee.googlevideo.com
0.0.0.0 r3---sn-4g5ednee.googlevideo.com
0.0.0.0 r3.sn-4g5ednld.googlevideo.com
0.0.0.0 r3---sn-4g5ednld.googlevideo.com
0.0.0.0 r3.sn-4g5ednll.googlevideo.com
0.0.0.0 r3---sn-4g5ednll.googlevideo.com
0.0.0.0 r3.sn-4g5ednls.googlevideo.com
0.0.0.0 r3---sn-4g5ednls.googlevideo.com
0.0.0.0 r3.sn-4g5edns6.googlevideo.com
0.0.0.0 r3---sn-4g5edns6.googlevideo.com
0.0.0.0 r3.sn-4g5ednsd.googlevideo.com
0.0.0.0 r3---sn-4g5ednsd.googlevideo.com
0.0.0.0 r3.sn-4g5ednss.googlevideo.com
0.0.0.0 r3---sn-4g5ednss.googlevideo.com
0.0.0.0 r3.sn-4g5ednsz.googlevideo.com
0.0.0.0 r3---sn-4g5ednsz.googlevideo.com
0.0.0.0 r3.sn-4g5ednz7.googlevideo.com
0.0.0.0 r3---sn-4g5ednz7.googlevideo.com
0.0.0.0 r3.sn-4g5ednzz.googlevideo.com
0.0.0.0 r3---sn-4g5ednzz.googlevideo.com
0.0.0.0 r3---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r3---sn-gpv7dned.googlevideo.com
0.0.0.0 r3---sn-h0jeened.googlevideo.com
0.0.0.0 r3---sn-h0jeenek.googlevideo.com
0.0.0.0 r3---sn-h0jeenle.googlevideo.com
0.0.0.0 r3---sn-h0jeln7l.googlevideo.com
0.0.0.0 r3---sn-h0jelne7.googlevideo.com
0.0.0.0 r3---sn-n4g-nmc6.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8px6.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxd.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxe.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxs.googlevideo.com
0.0.0.0 r3---sn-uigxx50n-8pxz.googlevideo.com
0.0.0.0 r4---sn-05goxu-3c2s.googlevideo.com
0.0.0.0 r4---sn-25ge7nsk.googlevideo.com
0.0.0.0 r4---sn-3c27snel.googlevideo.com
0.0.0.0 r4.sn-4g5e6nez.googlevideo.com
0.0.0.0 r4---sn-4g5e6nez.googlevideo.com
0.0.0.0 r4.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r4---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r4.sn-4g5e6nzs.googlevideo.com
0.0.0.0 r4---sn-4g5e6nzs.googlevideo.com
0.0.0.0 r4.sn-4g5edney.googlevideo.com
0.0.0.0 r4---sn-4g5edney.googlevideo.com
0.0.0.0 r4.sn-4g5ednld.googlevideo.com
0.0.0.0 r4---sn-4g5ednld.googlevideo.com
0.0.0.0 r4.sn-4g5ednly.googlevideo.com
0.0.0.0 r4---sn-4g5ednly.googlevideo.com
0.0.0.0 r4.sn-4g5edns7.googlevideo.com
0.0.0.0 r4---sn-4g5edns7.googlevideo.com
0.0.0.0 r4.sn-4g5ednsd.googlevideo.com
0.0.0.0 r4---sn-4g5ednsd.googlevideo.com
0.0.0.0 r4.sn-4g5ednsk.googlevideo.com
0.0.0.0 r4---sn-4g5ednsk.googlevideo.com
0.0.0.0 r4.sn-4g5ednsy.googlevideo.com
0.0.0.0 r4---sn-4g5ednsy.googlevideo.com
0.0.0.0 r4.sn-4g5ednz7.googlevideo.com
0.0.0.0 r4---sn-4g5ednz7.googlevideo.com
0.0.0.0 r4.sn-4g5ednzz.googlevideo.com
0.0.0.0 r4---sn-4g5ednzz.googlevideo.com
0.0.0.0 r4---sn-4gxx-25gee.googlevideo.com
0.0.0.0 r4---sn-a5mlrn7y.googlevideo.com
0.0.0.0 r4---sn-gpv7dn7k.googlevideo.com
0.0.0.0 r4---sn-gpv7dne6.googlevideo.com
0.0.0.0 r4---sn-gpv7dned.googlevideo.com
0.0.0.0 r4.sn-h0jeened.googlevideo.com
0.0.0.0 r4---sn-h0jeened.googlevideo.com
0.0.0.0 r4---sn-h0jeenek.googlevideo.com
0.0.0.0 r4---sn-h0jeener.googlevideo.com
0.0.0.0 r4---sn-h0jeenle.googlevideo.com
0.0.0.0 r4.sn-h0jeln7e.googlevideo.com
0.0.0.0 r4---sn-h0jeln7e.googlevideo.com
0.0.0.0 r4.sn-h0jeln7l.googlevideo.com
0.0.0.0 r4---sn-h0jeln7l.googlevideo.com
0.0.0.0 r4---sn-h0jelne7.googlevideo.com
0.0.0.0 r4---sn-uigxx50n-8pxk.googlevideo.com
0.0.0.0 r4---sn-uigxx50n-8pxs.googlevideo.com
0.0.0.0 r5---sn-05goxu-3c2s.googlevideo.com
0.0.0.0 r5---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r5.sn-4g5e6n7k.googlevideo.com
0.0.0.0 r5---sn-4g5e6n7k.googlevideo.com
0.0.0.0 r5.sn-4g5e6n7r.googlevideo.com
0.0.0.0 r5---sn-4g5e6n7r.googlevideo.com
0.0.0.0 r5.sn-4g5e6ney.googlevideo.com
0.0.0.0 r5---sn-4g5e6ney.googlevideo.com
0.0.0.0 r5.sn-4g5e6nls.googlevideo.com
0.0.0.0 r5---sn-4g5e6nls.googlevideo.com
0.0.0.0 r5.sn-4g5e6ns6.googlevideo.com
0.0.0.0 r5---sn-4g5e6ns6.googlevideo.com
0.0.0.0 r5.sn-4g5e6ns7.googlevideo.com
0.0.0.0 r5---sn-4g5e6ns7.googlevideo.com
0.0.0.0 r5.sn-4g5e6nsk.googlevideo.com
0.0.0.0 r5---sn-4g5e6nsk.googlevideo.com
0.0.0.0 r5.sn-4g5e6nss.googlevideo.com
0.0.0.0 r5---sn-4g5e6nss.googlevideo.com
0.0.0.0 r5.sn-4g5e6nsy.googlevideo.com
0.0.0.0 r5---sn-4g5e6nsy.googlevideo.com
0.0.0.0 r5.sn-4g5e6nsz.googlevideo.com
0.0.0.0 r5---sn-4g5e6nsz.googlevideo.com
0.0.0.0 r5.sn-4g5e6nz7.googlevideo.com
0.0.0.0 r5---sn-4g5e6nz7.googlevideo.com
0.0.0.0 r5.sn-4g5e6nze.googlevideo.com
0.0.0.0 r5---sn-4g5e6nze.googlevideo.com
0.0.0.0 r5.sn-4g5e6nzl.googlevideo.com
0.0.0.0 r5---sn-4g5e6nzl.googlevideo.com
0.0.0.0 r5.sn-4g5edn7s.googlevideo.com
0.0.0.0 r5---sn-4g5edn7s.googlevideo.com
0.0.0.0 r5.sn-4g5ednly.googlevideo.com
0.0.0.0 r5---sn-4g5ednly.googlevideo.com
0.0.0.0 r5.sn-4g5edns6.googlevideo.com
0.0.0.0 r5---sn-4g5edns6.googlevideo.com
0.0.0.0 r5.sn-4g5ednsd.googlevideo.com
0.0.0.0 r5---sn-4g5ednsd.googlevideo.com
0.0.0.0 r5.sn-4g5ednsl.googlevideo.com
0.0.0.0 r5---sn-4g5ednsl.googlevideo.com
0.0.0.0 r5.sn-4g5ednsr.googlevideo.com
0.0.0.0 r5---sn-4g5ednsr.googlevideo.com
0.0.0.0 r5.sn-4g5ednsy.googlevideo.com
0.0.0.0 r5---sn-4g5ednsy.googlevideo.com
0.0.0.0 r5.sn-4g5ednsz.googlevideo.com
0.0.0.0 r5---sn-4g5ednsz.googlevideo.com
0.0.0.0 r5.sn-4g5ednzz.googlevideo.com
0.0.0.0 r5---sn-4g5ednzz.googlevideo.com
0.0.0.0 r5---sn-gpv7dne6.googlevideo.com
0.0.0.0 r5---sn-gpv7dned.googlevideo.com
0.0.0.0 r5.sn-h0jeenek.googlevideo.com
0.0.0.0 r5---sn-h0jeenek.googlevideo.com
0.0.0.0 r5---sn-h0jeener.googlevideo.com
0.0.0.0 r5---sn-h0jeenle.googlevideo.com
0.0.0.0 r5---sn-h0jeln7e.googlevideo.com
0.0.0.0 r5---sn-h0jeln7l.googlevideo.com
0.0.0.0 r5---sn-h0jelne7.googlevideo.com
0.0.0.0 r5.sn-hp57yn7y.googlevideo.com
0.0.0.0 r5---sn-hp57yn7y.googlevideo.com
0.0.0.0 r5---sn-vgqskn76.googlevideo.com
0.0.0.0 r6---sn-25ge7nsl.googlevideo.com
0.0.0.0 r6---sn-4g5e6nes.googlevideo.com
0.0.0.0 r6.sn-4g5e6nez.googlevideo.com
0.0.0.0 r6---sn-4g5e6nez.googlevideo.com
0.0.0.0 r6.sn-4g5edn7e.googlevideo.com
0.0.0.0 r6---sn-4g5edn7e.googlevideo.com
0.0.0.0 r6.sn-4g5edne7.googlevideo.com
0.0.0.0 r6---sn-4g5edne7.googlevideo.com
0.0.0.0 r6.sn-4g5ednee.googlevideo.com
0.0.0.0 r6---sn-4g5ednee.googlevideo.com
0.0.0.0 r6.sn-4g5ednek.googlevideo.com
0.0.0.0 r6---sn-4g5ednek.googlevideo.com
0.0.0.0 r6.sn-4g5edney.googlevideo.com
0.0.0.0 r6---sn-4g5edney.googlevideo.com
0.0.0.0 r6.sn-4g5ednll.googlevideo.com
0.0.0.0 r6---sn-4g5ednll.googlevideo.com
0.0.0.0 r7---sn-05goxu-afvl.googlevideo.com
0.0.0.0 r8---sn-05goxu-afvs.googlevideo.com
0.0.0.0 r8.sn-4g5ednzz.googlevideo.com
0.0.0.0 r8---sn-4g5ednzz.googlevideo.com
0.0.0.0 r8.sn-n02xgoxufvg3-2gbs.googlevideo.com
0.0.0.0 r8---sn-n02xgoxufvg3-2gbs.googlevideo.com
0.0.0.0 r9---sn-4gxx-25gel.googlevideo.com
0.0.0.0 r9---sn-4gxx-25gy.googlevideo.com
0.0.0.0 rtd.tubemogul.com
0.0.0.0 s0.2mdn.net
0.0.0.0 secure-ds.serving-sys.com
0.0.0.0 securepubads.g.doubleclick.net
0.0.0.0 s.innovid.com
0.0.0.0 ssl.google-analytics.com
0.0.0.0 static.doubleclick.net
0.0.0.0 stats.g.doubleclick.net
0.0.0.0 tpc.googlesyndication.com
0.0.0.0 www.analytic-google.com
0.0.0.0 www.googleadservices.com
0.0.0.0 www-google-analytics.l.google.com
0.0.0.0 www-googletagmanager.l.google.com
0.0.0.0 www.googletagservices.com
0.0.0.0 r1---sn-n8v7kne6.googlevideo.com
0.0.0.0 r1---sn-n8v7kn7r.googlevideo.com
0.0.0.0 r7---sn-n8v7znz7.googlevideo.com
0.0.0.0 r9---sn-n8v7knes.googlevideo.com
0.0.0.0 r3---sn-n8v7kn7k.googlevideo.com
0.0.0.0 r14---sn-n8v7knel.googlevideo.com
0.0.0.0 r13---sn-n8v7znsl.googlevideo.com
0.0.0.0 r3---sn-8ph2xajvh-axql.googlevideo.com
0.0.0.0 r2---sn-8ph2xajvh-axql.googlevideo.com
0.0.0.0 r1---sn-8ph2xajvh-axql.googlevideo.com
0.0.0.0 r5---sn-ci5gup-qxaee.googlevideo.com
##### SPIELE SERVER #####
#generic telemetry (used by obsidian games, possibly others)
127.0.0.1 func-tools-motelemetry.azurewebsites.net
127.0.0.1 signin.rockstargames.com
127.0.0.1 irc.larianstudios.com
127.0.0.1 natpunch*.larian.com
127.0.0.1 see-cerberus-dev.staging.os.eidos.com
#51 World Games
#-
#Absolute Drift
#-
#Bioshock Infinite
127.0.0.1 *.2kcoretch.online
127.0.0.1 *.2k.com
#Child of Light
#-
#Coffee Talk
#-
#Disco Elysium
#-
#FEZ
#-
#Golf Club Wasteland
#-
#Grid
127.0.0.1 *.stackpathcdn.com
127.0.0.1 *.aquiris.com.br
127.0.0.1 *.cloudfront.net
#Horizon Chase Turbo
#-
#Hot Wheels Unleashed
127.0.0.1 *epicgames.*
#Kingdoms of Amalur Re-Reckoning
#-
#Laytons Mystery Journey
127.0.0.1 consent.google.com
127.0.0.1 google.com
#Lego City Undercover
#-
#Little Nightmares
#-
#Minecraft Dungeons
127.0.0.1 launchercontent.mojang.com
#Minecraft
127.0.0.1 launchercontent.mojang.com
#N+
#-
#Ori and the blind Forest
127.0.0.1 vortex.data.microsoft.com
#Ori and the will of the wisps
127.0.0.1 *.playfabapi.com
#Picross S5
#-
#Picross S6
#-
#Pikmin 3 Deluxe
#-
#Pixark
#-
#Pleague Inc
#-
#Quake
#-
#Raymen Legends
#-
#Road 96
#-
#Saints Row The Third
#-
#Serious Sam Collection
#-
#SnowRunner
127.0.0.1 hydrapi.net
#South Park Der Stab der Wahrheit
#-
#Spelunky
#-
#Spelunky 2
#-
#Spongebob Squarepants Battle for Bikini Bottom Rehydraded
#-
#Spyro Reignited Trilogy
#-
#Summer in Mara
#-
#Super Meat Boy
#-
#Super Meat Boy Forever
#-
#Tetris Effect
#-
#The Dungone of Crawl RPG
#-
#The Elder Scrolls V Skyrim
#-
#The Escapists 2
#-
#The Witcher 3 Wild Hunt - Complete Edition
#-
#This War of Mine Complete Edition
#-
#Tony Hawks Pro Skater 1+2
127.0.0.1 stun.au.demonware.net
127.0.0.1 stun.jp.demonware.net
127.0.0.1 stun.eu.demonware.net
127.0.0.1 stun.us.demonware.net
#Trials Rising
#-
#Undertale
#-
#wb games (hogwarts legacy)
127.0.0.1 phoenix-api.wbagora.com
127.0.0.1 wb-agora-hydra-file-storage-phoenix.s3.amazonaws.com
#What the Golf?
#-
#Worms W.M.D
127.0.0.1 *.t17service.com

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
varients/light/boot.dat Normal file

Binary file not shown.

2
varients/light/boot.ini Normal file
View file

@ -0,0 +1,2 @@
[payload]
file=payload.bin

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

View file

@ -0,0 +1,55 @@
[config]
autoboot=0
autoboot_list=0
bootwait=4
backlight=90
autohosoff=2
updater2p=1
bootprotect=0
noticker=0
[CFW-EmuMMC]
pkg3=atmosphere/package3
emummcforce=1
cal0blank=1
usb3force=1
logopath=bootloader/bootlogo/bootlogo_cfw.bmp
icon=bootloader/res/atmosphere_hue.bmp
[OFW]
pkg3=atmosphere/package3
stock=1
cal0blank=0
emummc_force_disable=1
logopath=bootloader/bootlogo/bootlogo_stock.bmp
icon=bootloader/res/icon_switch_hue.bmp
[]
payload=bootloader/payloads/Tegra_Explorer.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Lockpick_RCM.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Hekate.bin
icon=bootloader/res/empty_nobox.bmp
[]
payload=bootloader/payloads/Hekate.bin
icon=bootloader/res/empty_nobox.bmp
[Tegra_Explorer]
payload=bootloader/payloads/Tegra_Explorer.bin
icon=bootloader/res/Tegra_Explorer_hue.bmp
[Lockpick_RCM]
payload=bootloader/payloads/Lockpick_RCM.bin
icon=bootloader/res/lockpick_hue.bmp
--------------------------------------------------------------
;{NiklasCFW Ein Nintendo Switch CFW Pack}
;{Created by Woody2408 @ https://github.com/Woody-NX}
;{Niklas Discord Server @ https://discord.gg/KBmq9TGA}

View file

@ -0,0 +1,11 @@
[config]
themebg=0
themecolor=197
entries5col=0
timeoffset=
homescreen=2
verification=1
umsemmcrw=0
jcdisable=0
jcforceright=0
bpmpclock=2

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.5 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 150 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 144 KiB

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show more