Skip to content

Commit 6a5fb61

Browse files
author
William Nelson
committed
Security Update - by VaultCord.com
1 parent 5659fde commit 6a5fb61

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Console/KeyAuth.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,8 @@ private static void sigCheck(string resp, WebHeaderCollection headers, string ty
11981198
// Calculate the difference between the current time and the timestamp
11991199
TimeSpan timeDifference = currentTime - timestampTime;
12001200

1201-
// Check if the timestamp is within 15 seconds of the current time
1202-
if (timeDifference.TotalSeconds > 15)
1201+
// Check if the timestamp is within 20 seconds of the current time
1202+
if (timeDifference.TotalSeconds > 20)
12031203
{
12041204
TerminateProcess(GetCurrentProcess(), 1);
12051205
}

Form/KeyAuth.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1198,8 +1198,8 @@ private static void sigCheck(string resp, WebHeaderCollection headers, string ty
11981198
// Calculate the difference between the current time and the timestamp
11991199
TimeSpan timeDifference = currentTime - timestampTime;
12001200

1201-
// Check if the timestamp is within 15 seconds of the current time
1202-
if (timeDifference.TotalSeconds > 15)
1201+
// Check if the timestamp is within 20 seconds of the current time
1202+
if (timeDifference.TotalSeconds > 20)
12031203
{
12041204
TerminateProcess(GetCurrentProcess(), 1);
12051205
}

0 commit comments

Comments
 (0)