Skip to content
  • Categories
  • Recent
  • Groups
  • Users
  • Tags
  • Popular
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (Zephyr)
  • No Skin
Collapse
Brand Logo
VGMooseundefined

VGMoose

@VGMoose
Admin
About
Posts
704
Topics
86
Shares
0
Groups
17
Followers
168
Following
0
Medals

Posts

Recent Best Controversial

  • Best pizza topic?
    VGMooseundefined VGMoose

    @Lukeissmall jalapeno

    General

  • BrowseDNS unusable
    VGMooseundefined VGMoose

    Is this still happening? Also is it only browsedns the site, or all websites?

    Do you make it at least the full 20 min before the timeout hits?

    Bug Reports

  • 3DS & WII U IMPORTANT ESHOP NEWS
    VGMooseundefined VGMoose

    this is unfortunate

    3DS

  • [feature request] Disable BrowseDNS from settings
    VGMooseundefined VGMoose

    Also for those curious about how this works, if you remove the /manage portion of the URL, you're hitting the actual same-redirect service (lanechange) that the Switch will hit during the connection test.

    So when enabled, that domain will redirect to switchbru/browsedns, but when disabled it returns only "ok" with Nintendo headers (X-Organization: Nintendo, which is what the Switch expects a valid connection test to do)

    BrowseDNS Tech Support

  • [feature request] Disable BrowseDNS from settings
    VGMooseundefined VGMoose

    It's not perfect, but I have now added similar lanechange controller endpoints for the two browseDNS IPs.

    That means through the following three pages, you can configure whether or not each DNS redirects or not:

    • Switchbru DNS (45.55.142.122): http://lanechange-controller.fortheusers.org/manage/
    • BrowseDNS US (45.55.112.11): http://lanechange-us.browsedns.net/manage/
    • BrowseDNS UK (46.101.65.164): http://lanechange-uk.browsedns.net/manage/

    For convenience, these pages all link to each other. I ultimately still want this to be an easier / less confusing process in the future.

    Finally I should note that this redirect info is stored in memory– when the DNS restarts the preferences on these pages are reset. We do rarely restart this component, but that is another area that needs improvement.

    BrowseDNS Tech Support

  • [POLL] Do you use dark themes, or light
    VGMooseundefined VGMoose

    IMG_7240.PNG

    General poll

  • What features do you wish the Nintendo Switch had?
    VGMooseundefined VGMoose

    BROWSEEEEEEEEER and home screen themes

    General

  • I’d shoutbox broken?
    VGMooseundefined VGMoose

    Soo, long story short is the server had not been updated in a while, and so when a few innocuous looking plugins upgraded, a lot of other stuff broke.

    Now the forums themselves are upgraded to a newer version, and should be easier to upgrade in the future. This also means some old bugs are fixed (like the account deletion one), and some other stuff might look different.

    General

  • [feature request] Disable BrowseDNS from settings
    VGMooseundefined VGMoose

    Requested by @ForgetMeNot49, the browseDNS IPs do not currently support "disable DNS" like Switchbru DNS does (eg. from http://lanechange-controller.fortheusers.org/manage/ ).

    BrowseDNS Tech Support

  • I’d shoutbox broken?
    VGMooseundefined VGMoose

    Oh jeez, hi, working on it now.

    General

  • Petition to Nintendo: Expose the Switch's hidden web browser
    VGMooseundefined VGMoose

    We got to 15k signatures!... And change.org accordingly updated the goal:

    Screen Shot 2022-07-15 at 10.25.59 PM.png

    I knew they'd give us another goal (really, the goal is "always" just "more" signatures...) but it still just says "becomes one of the top signed", which I guess will never stop being false.

    Thanks anyway everyone! I may post an update to the petition within the week. I'm hoping to get to the point where other sites start covering the petition to increase the public pressure on Nintendo to add a real browser.

    I should also note that the browser is powered by NetFront, which is maintained by Access Co Ltd. Maybe it's worth sending some love / attention their way as well.

    I don't know what kind of deal they have with Nintendo, but it seems straightforward enough to imagine that there's potential revenue they're missing out on by not being a fully fledged browser app.

    Switch

  • Atmospheric Majora's Mask clips
    VGMooseundefined VGMoose

    This is a cool channel with lots of Majora's Mask (and other games) ambiance / cutscenes.

    by Cirquet on youtube

    Gaming Hangout

  • Discord port talk
    VGMooseundefined VGMoose

    This repo appears to allow for some web inspector / debugging tools through DNS + PC, but it may not work on latest firmware. I have not checked yet: https://github.com/sudofox/switch-browser

    BrowseDNS Tech Support

  • Discord port talk
    VGMooseundefined VGMoose

    Depending on what the actual issues are with Discord, it may be possible to get it working (in the normal DNS browser applet) by injecting javascript into the page that attempts to fix whatever the loading issues are.

    So there's two main problems with that, the first is: how do you actual inject the JS? It is technically doable via DNS override to bypass CORS restrictions, however there will be an HTTPS security issue. That though, can also be bypassed by the user (It will prompt and say page is insecure, but in login applet you can accept this warning and load the page anyway). This part is technically doable, even if it's a little flakey.

    The next problem is discovering what the actual issues preventing Discord from loading in the first place even are. If it's like, some newer javascript method that just needs to be polyfilled, there would be a pretty decent chance of success. But as of this time of writing, I don't even know where to start debugging that. You would need something like a webkit developer console / inspector that's accessible via Homebrew. Again, it should be possible to debug these issues (something like BrowseNX -> web inspector for instance) just not sure where to start.

    Finally there's likely to be a third issue with something like, the page size being too large for memory. This too however potentially be patched via custom JS as well, to try to keep in-memory size low. This is another area where custom homebrew or emulating the web applet on PC would be useful to debug what the custom JS looks like.

    From a user perspective, injecting "custom JS" like this is just essentially just acting as a browser extension, besides the part where you load it insecurely from overridden DNS settings. Disclaimer: this is all hypothetical!

    tldr: 1. it's possible to inject custom scripts (aka "browser extensions") over DNS + accept security warning without homebrew, so 2. technically may be able to patch whatever issues there are with discord. But 3. need to figure out what those issues are in the first place, in order to know what to patch (which 4. may need custom homebrew or an emulator to debug).

    BrowseDNS Tech Support

  • what are your favorite ships?
    VGMooseundefined VGMoose

    zutara

    Writing and RP

  • My YouTube Videos
    VGMooseundefined VGMoose

    @NoahAbc12345 @lollapalooza Thank you both!

    It's crazy how much traction that particular video got. Kotaku covered it, and I got to talk about the reasoning behind the hack.

    Video Editing & Music

  • every 20 minutes it says this screen will be closed
    VGMooseundefined VGMoose

    Also here's the video @lollapalooza was referring to!

    It is cool if you have the time/interest, and a hackable Switch! But it may not be an option for most people.

    BrowseDNS Tech Support

  • every 20 minutes it says this screen will be closed
    VGMooseundefined VGMoose

    We did some tests in another thread: https://browsedns.net/topic/25/browser-timeout-this-screen-will-be-closed/34?_=1654097213810

    TLDR: Every 3 seconds it checks to see if the browser should be dismissed, and after 400 of these checks (so 400*3/60 = 20 minutes) it dismisses. The checks do not occur while in sleep mode, but that isn't really that useful.

    The best advice is probably to add more custom "useful links" on Switchbru Dashboard via computer, to then visit them faster on your Switch, just to spend as little time searching and maximize usage time.

    BrowseDNS Tech Support

  • PSA: The Switch has USB Keyboard support
    VGMooseundefined VGMoose

    If you plug in a USB keyboard, either via usbc or through the dock USB ports, it Just Works! Makes using the browser a lot easier, and combined with the dock + controller makes for a decent computer-like experience.

    Unfortunately a mouse doesn't seem to do anything.

    Tips and Tricks

  • Deactivate Switchbru for kids
    VGMooseundefined VGMoose

    @mmninja92 I'll try to bring this back today. After the DNS outage, that feature stopped working, so I removed the button until I could debug further.

    Suggestions / Requests
  • 1
  • 2
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 31 / 36
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Groups
  • Users
  • Tags
  • Popular