For this you will need to install Fiddler, Python and a python script called Frida. Frida is a tool that will allow you to intercept the API requests of the libcurl.dll
Open notepad, copy this code and paste it in to notepad. Save as a .js file extension, like this "hd2.js"
Once you have successfully installed Python + Frida and have added it to your environment variables, open a command prompt and navigate to the directory of the saved code, where hd2.js resides.
Start your Helldivers 2 video game and run this command in your command prompt,
"frida -n helldivers2.exe -l hd2.js"
To gain max level, samples, medals and requisitions you will need to complete one mission while Frida is attached to the game. Once you complete the mission you will see a request in the console show as,
"https://api.live.prod.thehelldiversgame.com/api/Operation/Mission/end"
You will copy all the headers and contents of the request like this,
Now open Fiddler and go to composer, then raw. Paste your request as such and execute. Make sure to add the option "POST" before the url and "HTTP/1.1" after the url as in the example. If everything has been copied correctly into Fiddler you should see that the request went through. It will have a response of a few thousand characters, mainly it is explaining the XP earned from the request you sent in. On the left side of Fiddler, where the requests are at, click the one that went through and press R. This will resend it. You will do this as many times as you want until you get your desired medals, requisitions, level and samples. I suggest looking at this XP chart to find how many times you need to get the wanted level. Open a calculator and add your current level + remaing XP in it. Like 23 = 30,900XP and I have 435 XP in my bar. 31,335XP I have, I want level 44, 104,400 - 31,335 = 73,065XP needed. I check the response that was given when I sent the mission end request, it reads that I get 398XP per resend. 73,065/398 = 184 times that I must send my request.
However many samples you pick up in your game is how many you will acquire with each resend. However much XP was earned in the match will be how much with each resend, same goes for medals and requisitions.
WARNING: Whoever is in the match with you when you complete the mission will also get exactly as you do, with each resend. This can be dangerous as you might accidentally make another player jump 20+ levels. I suggest doing it solo or with friends.
Do not sell this as I have given it to you for free. Now go and spread democracy.
Open notepad, copy this code and paste it in to notepad. Save as a .js file extension, like this "hd2.js"
Once you have successfully installed Python + Frida and have added it to your environment variables, open a command prompt and navigate to the directory of the saved code, where hd2.js resides.
Start your Helldivers 2 video game and run this command in your command prompt,
"frida -n helldivers2.exe -l hd2.js"
To gain max level, samples, medals and requisitions you will need to complete one mission while Frida is attached to the game. Once you complete the mission you will see a request in the console show as,
"https://api.live.prod.thehelldiversgame.com/api/Operation/Mission/end"
You will copy all the headers and contents of the request like this,
Code:
POST https://api.live.prod.thehelldiversgame.com/api/Operation/Mission/end HTTP/1.1
Authorization: session
Content-Type: application/json
Accept: application/json
X-Signature:
Key_ID:
Accept-Language: en-US
Content-Length: 1052
{your request contents}
However many samples you pick up in your game is how many you will acquire with each resend. However much XP was earned in the match will be how much with each resend, same goes for medals and requisitions.
WARNING: Whoever is in the match with you when you complete the mission will also get exactly as you do, with each resend. This can be dangerous as you might accidentally make another player jump 20+ levels. I suggest doing it solo or with friends.
Do not sell this as I have given it to you for free. Now go and spread democracy.