Skip to content
This repository has been archived by the owner on Jan 4, 2024. It is now read-only.

Commit

Permalink
Update main.c
Browse files Browse the repository at this point in the history
  • Loading branch information
technicaljicama committed Feb 18, 2023
1 parent d9b8b3d commit cd80d23
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@ char *decryptGiphyApiKey()
out[i] = s1[s2[i]];

out[33] = '\0';
free(out);
return out;
}

Expand All @@ -110,7 +109,6 @@ char* decryptSigningKey()
out[i] = map[key[i]];

out[65] = '\0';
free(out);
return out;
}

Expand All @@ -123,4 +121,7 @@ int main() {
printf("\nNow the Request Signing key %s \n",sign);

printf("\nReddit, i think this should be an easy reverse engineering exercise, not the protection for your beloved app\n");
free(sign);
free(giphy);
return 0;
}

0 comments on commit cd80d23

Please sign in to comment.