Skip to content

Instantly share code, notes, and snippets.

@AmgdGocha
Last active June 1, 2024 11:19
Show Gist options
  • Save AmgdGocha/394e1a562e1067498e23dc312004c817 to your computer and use it in GitHub Desktop.
Save AmgdGocha/394e1a562e1067498e23dc312004c817 to your computer and use it in GitHub Desktop.
def deobfuscate_strings(numbers_string, substract_number):
result = ''
numbers_list = numbers_string.split('.')
for number in numbers_list:
result = result + chr(int(number) - int(substract_number))
return '"{}"'.format(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment