This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| Disable SSL certificate verification for the ABC Listen app | |
| https://www.abc.net.au/listen/listenapp | |
| Tested on ABC listen/2024.11.5197 Android API 28 x86 | |
| */ | |
| Java.perform(function () { | |
| // classes4.dex |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This file demonstrates how to effectively use Git in whitelist mode. All | |
| # files and directories are ignored unless explicitly allowed by lines starting | |
| # with a !. | |
| # As an example, below is a .gitignore file that can be used to track modified | |
| # config files in the user's home directory. | |
| # Ignore all files and directories at the root level | |
| # Note: * doesn't descend into subdirectories | |
| /* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Give IPv6 access to WireGuard peers in OpenWrt using NPTv6 | |
| # This is necessary because many ISPs only assign dynamic IPv6 prefixes, which makes it impractical to configure static, globally routable addresses for peers. | |
| # Tested on OpenWrt 24.10.2 (fw4 compatible) | |
| # | |
| # Adapted from https://gist.github.com/MisakaMikoto-35c5/93d7a32860bbb31b47a05a8c8a0152b8 | |
| # | |
| # License: 0BSD | |
| # |