Search results

  1. CosmoCortney

    Hacking Question about ASLR regarding Yuzu and real Nintendo Switch

    Hi there, I've been working on an All-In-One Game Enhancer for multiple emulators, PC games (and maybe even real consoles via TCP in the future). As of now, it allows searching for cheats, executing cheats as Lua scripts with many useful custom functions, and scanning memory dumps for pointers...
  2. CosmoCortney

    Hacking Homebrew Misc How do I create a TCP server?

    Hey folks, I've been trying to make a TCP server based on instructions provided by the OpenBSD documentation and noexs repo. Sadly the function socket() always returns -1. errno stays 0. sockfd = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if(sockfd < 0) {...
  3. CosmoCortney

    [Win] Customizing Japanese keyboard layout

    Hello, for some time I've been using Microsoft's Keyboard Layout Creator (MSKLC) to modify the German input layout. I had no troubles so far. But this tool doesn't seem to be able to export custom Japanese layouts (even though it works perfectly fine in test mode). This is the log: This is...
  4. CosmoCortney

    Any good Forums dedicated to Neural Networks and Deep Learning?

    Hello, does anyone know some decent Forum dedicated to Neural Networks and Deep Learning? (please no Facebook groups) Been following a book on that subject but it's based on Python. So I implemented the logic behind it in C++. Well, my Neural Network DOES something. But not what it should be...
  5. CosmoCortney

    Hacking Need help patching a game to be playable on PSTV

    Hello, a few weeks ago I acquired a modded PSTV. Sadly I don't know much about the Vita Homebrew scene. I also have a physical copy of Touch My Katamari which is not compatible with the PSTV. However, I have found a patch online that should make it playable. But I'm clueless about installing...
  6. CosmoCortney

    Bought a used XBOX. Turns out to be modded, but...

    Hello, a few weeks ago I bought a used XBOX. When I tested it today I noticed a red boot logo instead of the green one and it started playing a game. There was a burned copy of Burnout 3 in it. For some reason, the controller is broken and I can't do much with the console. The system sometimes...
  7. CosmoCortney

    Homebrew Question Can anyone show me how to use syscall 0x6A & 0x6B in a C++ project?

    Hello, the title says all... I need some examples on how to read/write data from/into memory using syscalls svcReadDebugProcessMemory and svcWriteDebugProcessMemory. I'm very uncertain about how to implement everything in my C++ project and how to use the parameters. (this is related to an...
  8. CosmoCortney

    Hardware Problem setting up my NDEV

    Hello, I received my NDEV yesterday and wanted to test it today. Installed the drivers, SDK, get a text-based interface on my screen. Now I'm at the point where I have to copy the "dlt" folder to the root of my C:\ drive. But where do I find it? It's nowhere in the SDK... Not asking for...
  9. CosmoCortney

    Homebrew Question System Calls... header file?

    Hello, been working on a codehandler for cheatcodes (like I did on the Wii U) but this time in C/C++. In order to write into memory I'd like to use svcWriteDebugProcessMemory(). But where do I find the required header files?
  10. CosmoCortney

    Hardware I'm looking for some face/motion tracking tools. Any recommendations?

    Hello, I've been recently working with the Tobii Eye-Tracking device and created some interactive software with Unity and C# for it. Also messed with it in Qt and C++ which is really fun! Now I'm looking for something similar that can record the user's head motion, lips/mouth and eye lashes...
  11. CosmoCortney

    Homebrew WIP Porting over Codehandler + Code Types to the Switch + Cheat Database. But need a little bit of help

    Hello, I just thought it'd be cool if I could port the Codehandler and Code Types from my Lynx Code Manager to the Switch. But before I do that I need a few things to be clarified: What's the effective/logical range of the general purpose memory? (e.g. Wii U has 10000000 - 50000000) Is the...
  12. CosmoCortney

    Hardware Looking for a Wiimote holder that supports wired Wiimotes

    Hello, I just happened to get my hands on some Wii U Kiosk Units including Wiimotes and Nunchuks. But I find it annoying how the cables and Wiimotes lay around so I thought it'd be nice to have a sort of Wiimote Holder which can support wired Wiimotes and Nunchuks. I'd be ready to modify the...
  13. CosmoCortney

    Share your Cleverbot experience!

    Just had a hilarious conversation with Cleverbot... Show us yours :D
  14. CosmoCortney

    Hacking What do I need to search for cheats in RAM?

    Hello! I'm completely new to the PS3 stuff and got my PS3 Slim yesterday which I have upgraded to REBUG 4.81.2 REX CFW and would like to create new cheat codes for the community. Is there anything like JGecko U for the PS3 that allows me to browse the RAM for certain values? I have heard about...
  15. CosmoCortney

    Hacking Question Does this Tweet cause your Nintendo Switch to freeze?

    I just found some people noticing that it is possible to exceed the 140 char length of tweets if it looks like a YouTube url. I probed with it a bit and made a tweet that causes my Webbrowser (latest Google Chrome) to either freeze or crash when the Tweet shows up on Twitter's front page. Here's...
  16. CosmoCortney

    Homebrew Can't extract a .wud image of a kiosk disc

    Hello, I put the Wii U dev menu on my Kiosk Unit to dump contents of the system. I used wudump to dump an interactive demo disc which worked fine. But both, wud2app.exe and disc2app.elf give me the same error: "Invalid FST!" Is there a way to fix this? @FIX94 @dimok @NWPlayer123 @crediar
  17. CosmoCortney

    Hacking Is there a way to get otp of an SLC or MLC dump? (console bricked)

    Hi, I have successfully dumped MLC and SLC of a Kiosk unit via hardmod. While desoldering the wires from the TSOP I didn't notice some wires where still on the board. So I ripped of the metal track of IO0 off the board and removed the pads of IO2. I have bridged the TSOP IC directly to the...
  18. CosmoCortney

    Hacking Looking for the right Teensy to dump a Kiosk Unit's SLC

    Hello there, I'm about to dump a Kiosk Unit's EMMC/MLC and SLC via hardmod. In order to dump the SLC chip a Teensy 2.0++ is required. Since I prefer ordering my stuff inside the EU and from Japan I'm uncertain about if I have found the right one. The product name is Teensy++ 2.0 and not Teensy...
  19. CosmoCortney

    Hardware What coaxial cable is used by Kiosk Systems?

    Hello, last year I got a Kiosk unit (WIS-001) including controller hub, 2 DRC AC Adapters, 1 Wiimote, 1 Nunchuck, a cut Nunchuck cable and a semi broken GamePad. The Kiosk unit was sold because someone tried to steal it and cut the GamePad's cable and damaged the system. However, got it working...
  20. CosmoCortney

    How do I convert a decimal number smaller than 1.0 to hex float?

    Hello, since I know how to convert any decimal number to hex float (e.g. 1.33333333 = 0x3FAAAAAB) I still struggle with converting a decimal number smaller than 1.0 to hex float (e.g. how do I get 0x3C4CCCCD from 0.0125?) can anyone help me? thanks :)
General chit-chat
Help Users
  • No one is chatting at the moment.
    Xdqwerty @ Xdqwerty: @BakerMan, I have a piano keyboard but I never use it