Created
September 28, 2020 20:01
-
-
Save marcusbotacin/3ce2bf71475e418a72891da6caaaf18c to your computer and use it in GitHub Desktop.
Dropper Excerpt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for(int i=0;i<size;i++){ | |
// byte pointer | |
unsigned char c1 = ((char*)data)[i]; | |
// add your encryption/decryption routine here | |
// drop byte to file | |
fprintf(f,"%c",c1); | |
} | |
// file fully written | |
fclose(f); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment