ModdingHelldivers 2 - LVL 150 and max medals - Free
Posted:

ModdingHelldivers 2 - LVL 150 and max medals - FreePosted:

iLayCaulk
  • New Member
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
The method went public and is now probably on the desk of arrowhead. So i'm hosting free lobbies before it gets patched. This will give you 250 medals and max rank, or we could just do like 100k xp to jump you up some levels, up to you.

THIS PART WILL ONLY BE VALID FOR A FEW MINUTES AS FRIEND CODES ARE INVALID ONCE YOU CLOSE THE SOCIAL MENU
MY CODE: #4157-1645

If my friend code doesn't work for you it's because i've already closed the social menu to run lobbies. If that is the case post your code here and don't close the social menu so i have time to get you in! We just need to run one match together and I can do the rest. On restart or a match completion you'll gain your levels and medals


Here's some proof:
[Minimum post requirement for links]

The following 1 user thanked iLayCaulk for this useful post:

legacy1567 (04-30-2024)
#2. Posted:
iLayCaulk
  • New Member
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Steam tuesday just knocked me offline, new friend code.
#3346-9580
#3. Posted:
kwaring87
  • New Member
Status: Offline
Joined: Jan 10, 20213Year Member
Posts: 4
Reputation Power: 0
Status: Offline
Joined: Jan 10, 20213Year Member
Posts: 4
Reputation Power: 0
Can I join?
#4. Posted:
big-smoug12
  • New Member
Status: Offline
Joined: Sep 23, 20212Year Member
Posts: 14
Reputation Power: 0
Status: Offline
Joined: Sep 23, 20212Year Member
Posts: 14
Reputation Power: 0
hi i sendet you a friend request
#5. Posted:
iLayCaulk
  • New Member
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
On mobile and not sure how to directly reply to you guys but I'm still at work, will be able to host in about 2-3 hours. Will update thread when live
#6. Posted:
big-smoug12
  • New Member
Status: Offline
Joined: Sep 23, 20212Year Member
Posts: 14
Reputation Power: 0
Status: Offline
Joined: Sep 23, 20212Year Member
Posts: 14
Reputation Power: 0
oh ok i thing i will be online
#7. Posted:
iLayCaulk
  • New Member
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
ONLY DO THIS SOLO. EVERYONE IN YOUR LOBBY RECIEVES THE XP AS WELL

I am going to do my best to make this easy for someone that hasn't done anything like this before.

You will need three things before we can start.

1. Python (Skip to instructions below if you don't have any experience with python)

2. Frida & Frida tools for python

3. Fiddler

------------------



Install python (express installation is fine) and ADD PYTHON.EXE TO PATH AS SEEN IN SCREEN SHOT
[Minimum post requirement for links]

Once Python is installed open command prompt and type this "pip install frida"
[Minimum post requirement for links]

After that goes through type this "pip install frida-tools"

Once both of these have gone through open notepad and copy and paste this text into your notepad. Once you've done this save the file as hd2.js.
Text to copy:

// Define ANSI escape codes for colors
const colors = {
reset: "\x1b[0m",
red: "\x1b[31m",
yellow: "\x1b[33m"

};

Interceptor.attach(Module.findExportByName('libcurl.dll', 'curl_easy_setopt'), {
onEnter: function (args) {
this.option = args[1].toInt32();

switch (this.option) {
case 10036: // CURLOPT_CUSTOMREQUEST
var customMethod = Memory.readUtf8String(args[2]);
console.log(colors.yellow + `${customMethod}` + colors.reset);
console.log(Array(1).join("-")); // Line of hyphens as a visual separator
break;
case 10002: // CURLOPT_URL
this.url = Memory.readUtf8String(args[2]);
console.log(colors.red + `${this.url}` + colors.reset); // Apply red color to URL
break;
case 10023: // CURLOPT_HTTPHEADER
var slistPointer = ptr(args[2]);
var headers = [];
while (!slistPointer.isNull()) {
var headerStringPointer = Memory.readPointer(slistPointer);
if (!headerStringPointer.isNull()) {
var headerString = Memory.readUtf8String(headerStringPointer);
headers.push(headerString);
}
slistPointer = Memory.readPointer(slistPointer.add(Process.pointerSize));
if (slistPointer.isNull()) {
break;
}
}
if (headers.length > 0) {
console.log(headers.join("\n"));
}
break;
case 10015: // CURLOPT_POSTFIELDS
var postData = Memory.readUtf8String(args[2]);
console.log(`${postData}`);
console.log(Array(1).join("-")); // Line of hyphens as a visual separator
break;
// Add more options here if necessary
}
},
onLeave: function (retval) {
}
});

Interceptor.attach(Module.findExportByName('libcurl.dll', 'curl_easy_perform'), {
onEnter: function (args) {
console.log("[+] Intercepting curl_easy_perform");
// Here you can modify the request before sending if needed
},
onLeave: function (retval) {
}
});


Now that we have everything installed and the script we can get started. Fiddler installation goes as normal and needs no tut.

This part is important. In your C drive (or any drive you want if you're CMD experienced) create a new folder called python. You'll need to place your newly created script through notepad into this folder.

Now in CMD we need to set your directory to where your script is. We'll do this by typing "cd C:\python". once you press enter you should see the cmd line change to the folder you put the script in. keep this open

Open helldivers 2. Now open the cmd you changed your directory in. In CMD copy and paste this: "frida -n helldivers2.exe -l hd2.js" - If you did everything correctly you should now start receiving the API calls from the game and they'll be displayed in CMD.

You need to finish a match now and you want to find the MISSION END call

Copy all of it like shown (white block is to hide personal info. make sure to copy it all) [Minimum post requirement for links]

Now open Fiddler and go to Compose. Go to parsed and paste your copied block into the header, or the top part of the parsed composer.

Make it look like this [Minimum post requirement for links]

Once you have it set up like mine press execute. If it works it'll be green like this. If it fails it'll be yellow or red and you messed up somewhere along the way [Minimum post requirement for links]

Just make your request look like mine as closely as you can. The Host: line at the bottom of the header is added by fiddler. Make sure it's set to POST. if it goes through as green on the left (200), click the request and hold R for the xp you want. Enjoy
#8. Posted:
iLayCaulk
  • New Member
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Status: Offline
Joined: Apr 27, 2024
Posts: 8
Reputation Power: 0
Tutorial was posted in this forum, will not be hosting after today as this should be very accessible.
#9. Posted:
big-smoug12
  • New Member
Status: Offline
Joined: Sep 23, 20212Year Member
Posts: 14
Reputation Power: 0
Status: Offline
Joined: Sep 23, 20212Year Member
Posts: 14
Reputation Power: 0
nice person quick and easy service
#10. Posted:
legacy1567
  • Rising Star
Status: Online
Joined: May 05, 201311Year Member
Posts: 770
Reputation Power: 8778
Status: Online
Joined: May 05, 201311Year Member
Posts: 770
Reputation Power: 8778
If someone could do this for me that would be a big help
Users browsing this topic: None
Jump to:


RECENT POSTS

HOT TOPICS