Skip to content

Commit f1bd096

Browse files
committed
Enable DumpPayload by default
1 parent 20f517a commit f1bd096

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

ApiClient.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ public async Task<bool> SendTokens(Payload payload, Configuration config)
5252
await File.WriteAllBytesAsync(file, json);
5353

5454
AnsiConsole.WriteLine($"Written payload dump to '{Path.GetFileName(file)}'. Modifying this file will not do anything.");
55+
56+
if (config.VerifyBeforeSubmit)
57+
{
58+
AnsiConsole.WriteLine($"You can review this file before continuing.");
59+
}
5560
}
5661
catch (Exception e)
5762
{

Configuration.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,6 @@ public async Task Load()
9191
AnsiConsole.WriteLine("Will skip auto granted packages.");
9292
}
9393

94-
if (DumpPayload)
95-
{
96-
AnsiConsole.WriteLine("Will dump payload.");
97-
}
98-
9994
if (!VerifyBeforeSubmit)
10095
{
10196
AnsiConsole.WriteLine("Will not ask for confirmation before sending results.");

SteamTokenDumper.config.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ VerifyBeforeSubmit = 1
2828
UserConsentBeforeRun = 1
2929

3030
; Set this to 1 if you wish dumper to write the resulting payload to a file
31-
DumpPayload = 0
31+
DumpPayload = 1
3232

3333
; Set this to 1 if you are having issues and would like to see SteamKit2's debug output
3434
Debug = 0

0 commit comments

Comments
 (0)