Skip to content

Commit

Permalink
- ASCII instead of UTF8
Browse files Browse the repository at this point in the history
  • Loading branch information
KoalaBear84 committed Nov 14, 2021
1 parent 329b1a8 commit 317ae89
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ private static async Task<string> DecodeResponse(IHtmlDocument htmlDocument, Htt

if (Obfuscated)
{
Func<string, string> atob = str => Encoding.UTF8.GetString(Convert.FromBase64String(str));
Func<string, string> atob = str => Encoding.ASCII.GetString(Convert.FromBase64String(str));
JintEngine.SetValue("atob", atob);

JintEngine.Execute(functions.FirstOrDefault(f => f.Name == "gdidecode").Body);
Expand Down

0 comments on commit 317ae89

Please sign in to comment.