This is my personal list of Javascript Emulator
- [Apple II+] (http://porkrind.org/a2/)
- [Apple II js] (http://www.scullinsteel.com/apple2/)
This is my personal list of Javascript Emulator
| 127.0.0.1 api.ak.facebook.com | |
| 127.0.0.1 api.connect.facebook.com | |
| 127.0.0.1 api.facebook.com | |
| 127.0.0.1 app.facebook.com | |
| 127.0.0.1 apps.facebook.com | |
| 127.0.0.1 ar-ar.facebook.com | |
| 127.0.0.1 badge.facebook.com | |
| 127.0.0.1 blog.facebook.com | |
| 127.0.0.1 connect.facebook.com | |
| 127.0.0.1 connect.facebook.net |
| ''' | |
| hactool key verifier v0.2 by Khangaroo | |
| a very badly made script to verify your hactool keys | |
| Hash sources: | |
| https://gist.github.com/roblabla/d8358ab058bbe3b00614740dcba4f208 | |
| My own console | |
| https://github.com/SocraticBliss/hactool/blob/4169184c88a10cde0db8eaa83d38bd32a7f35751/KEYS.md | |
| Some places that I can't link | |
| ''' |
https://gbatemp.net/threads/nintendo-switch-sd-to-nsp-dumper.514816/ for a more automated and easier way to do this
This guide assumes you have previous experience with hactool and messing with your NAND. You aren't supposed to blindly copy commands in this, so read before pasting!
Also, the Python sections require Python 2.7 and pycrypto. Make sure your hactool is v1.2 or above.
| #include <stdlib.h> | |
| #include <stdio.h> | |
| #include <stdint.h> | |
| #include <string.h> | |
| #include <stdbool.h> | |
| typedef uint32_t u32; | |
| typedef uint8_t u8; | |
| #!/usr/bin/env python3 | |
| import gzip | |
| import os | |
| import shutil | |
| import subprocess | |
| import tarfile | |
| import zipfile | |
| from defusedxml import ElementTree | |
| import yaml |
| #!/usr/bin/env python3 | |
| import argparse | |
| import io | |
| import os | |
| import string | |
| import sys | |
| import tempfile | |
| import zipfile | |
| import bs4 # pip install bs4 |
| #!/usr/bin/env python3 | |
| import argparse | |
| import sys | |
| try: | |
| from defusedxml import ElementTree | |
| except (ImportError, AttributeError): | |
| from xml.etree import ElementTree | |
| import requests |
| 0.0.0.0 ads.doubleclick.net | |
| 0.0.0.0 s.ytimg.com | |
| 0.0.0.0 ad.youtube.com | |
| 0.0.0.0 ads.youtube.com | |
| 0.0.0.0 www.gstatic.com | |
| 0.0.0.0 gstatic.com | |
| 0.0.0.0 clients1.google.com | |
| 0.0.0.0 dts.innovid.com | |
| 0.0.0.0 googleads.g.doubleclick.net | |
| 0.0.0.0 googleads4.g.doubleclick.net |
| #!/bin/bash | |
| # Based on https://www.xda-developers.com/how-to-restore-mobile-data-quick-settings-tile-toggle-on-samsung-galaxy-devices/ | |
| # This will work with minor adjustments to your installation of the Android SDK or wherever you put adb. | |
| # Should work on Linux and Mac, but only tested on Linux | |
| PATH=../android-sdk-linux/platform-tools:$PATH | |
| outfile=list.$(date +%F) | |
| adb devices | |
| echo "Do you see your device? [y|N]" |