Cups

Members
  • Content Count

    138
  • Last visited

Everything posted by Cups

  1. Right now I am able to exchange approx 750€ so 840$ I can arrange some Skrill. I'll see what I can do within next 24h Okay, hit me up with a DM when you're ready
  2. Right now I am able to exchange approx 750€ so 840$
  3. https://www.xluq.xyz (I made this shit in 1h pls no judge)
  4. Hi, I have a lot of BTC to exchange to Skrill or Paysafecard. Conditions : - You must be trusted on cracked.to or nulled.to. - I take 10% Fees. - I have nothing against using a middleman, but the fees are for you. - If you use Paysafecard, i'll need it to come from France. :hype:
  5. No, I understand everything about the emulator but I just need someone to check the implementation of the half carry flag
  6. So I'm implementing a gameboy CPU in C# to make an emulator. And I need someone good in ASM to check an implementation I make which I have a doubt on. The OPCODE 0x9F translates to instruction SBC (source here http://www.pastraiser.com/cpu/gameboy/gameboy_opcodes.html) so substract with carry. I just need someone to check my implementation, like @mesvak cause apparently he knows ASM. Right now I have this made : /// /// Substract n + carry flag from A. /// /// n private static void sbc(byte r1) { // TODO Double check this implementation uint substractResult = (uint)Gameboy.Cpu.Registers.A - r1 - Convert.ToUInt32(Gameboy.Cpu.Registers.F.C); // Set zero flag if result is 0. Gameboy.Cpu.Registers.F.Z = ((byte)substractResult) == 0; // Set half-carry flag if no borrow from bit 4. IM UNSURE ABOUT THIS. This should mean if result is 0b0001_0000, we have a carry, but is it really how to implement it? Gameboy.Cpu.Registers.F.H = ((Gameboy.Cpu.Registers.A ^ r1 ^ substractResult) & 0x10) != 0; // Set the carry flag if no borrow at all 0b0001_0000_0000 (so more than 8 bits) Gameboy.Cpu.Registers.F.C = ((substractResult & 0x100) != 0); // The substract flag is set as we performed a sub op. Gameboy.Cpu.Registers.F.N = true; }
  7. I have the solution. You are making a call to xNet trying to post form data to an url. So what you did is xNet.HttpRequest.Post("www.test.com", postData); Unfortunately, xNet thinks that you are trying to send the file located at the path [postData] (Look at the stack trace, the arguments are : Leaf.xNet.HttpRequest.Post(String address, String path)). Therefore, to fix this you need to change the HttpRequest.Post("www.test.com", postData) to HttpRequest.Post("www.test.com", postData, "application/x-url-form-encoded"); Post Data is "str" in your code, it looks like JSON so you may need to change "application/x-url-form-encoded" to "application/json" (string str = string.Concat(new string[] { "{\"email\":\"", naam, "\",\"password\":\"", wachtwoord, "\"}" }); )
  8. https://gyazo.com/5933f87ae0430c4f49c1a54e9349e202 payment proof hehe https://www.blockchain.com/btc/tx/b2b2866e383b012cd0988a18b0808cc6f4e77ebb632d3c71b2e93070c0e20cbd https://www.blockchain.com/btc/tx/45580f2e415b300008c986e9863fc4d764f1ddb008d0913b2d94cad5ef589c5c
  9. @Xoda @TimeChangeEverything Congrats boys, buying you supreme right now.
  10. I have no idea on who to choose fuck.
  11. I'm not imprisoned at all what do you mean (please help me on god he has got my family aswell)
  12. Hi, I'll be making a little tutorial on how to secure your data against unwanted access / cops. I - DISCLAIMER Okay don't get me wrong, you won't have visit from the FBI from selling 5 shit fortnite accounts every day, so you'll probably never have any problems with keeping your data in the clear. So why am I making this tutorial, well two things : - I like privacy, I feel safer knowing my personal shit and my ultra hardcore hentai porn is safe from my sister. - I don't need to justify myself, if I want to make a tutorial about it, i'll make one and you can suck my dick. :comfy: II - How is it protecting me from the damn coppers man :pepegun: I'll try not to get into details too much but there is a thing called Plausible Deniability, if I had to summarize it I would say that you can't force someone to disclose informations that possibly does not exist. Tldr, cops are fucked because they can't prove that there is a hidden partition on your disk. (more info here) III - Setting it up III - Using it Congratulations, your data is now protected, no police force can access it / force you to show it. Thanks you for reading this tut, don't forget to leave a like if it helped you. :fiesta:
  13. Why can't I bump this reeeeeeeeeeeeeeee
  14. Three possibilities : - They manage to talk to amazon to get their VPS unbanned and everything is fine. - They create new accounts but have to redo everything. - They can also decide to yeet out and just abandon. In each case you might be able to get your files back but it will be a pain in the ass as they will have to treat each customer separately
  15. A lot of VPS providers using amazon AWS splitted method got their account fucked, not the first time. A lot of VPS providers using amazon AWS splitted method got their account fucked, not the first time.
  16. Hi cracked.to users, so yeah because I am a rich boy (no) i'm making a little giveaway. Win your supreme lifetime subscription for you or your friend so you can flex on infinity niggas. As I don't want to buy a role for people who are not implicated in the forum's life you will need to match these requirements : [align=left] Not more than 50% of leeching level At least 20 likes. At least 2 threads. And you need to be premium or infinity To participate in the giveaway, just leave a fookin comment saying why YOU should win and not other leechers amirite :ezy: [/align] I'll pick a winner in 1 week :comfy: good luck boys. (disclaimer : floraiN is holding me hostage in his basement, he is forcing me to make this giveaway please call the cops)
  17. Tools on kali linux are just linux tools, kali in itself is nothing more than a bunch of preinstalled tools, so why not just expand the already existing hacking sub forum ?