Skip to main content

Posts

Showing posts with the label samsung

Online Samsung SSD firmware encoder/decoder!

Here is a little program that can obfuscate and deobfuscate Samsung SSD firmware files. I'm against obfuscation because it's a stupid malpractice aimed only to keep off unliterate people. Use as you please and drop me a comment/email if it was useful to you. Drop files here or Donations are welcome.

Samsung SSD firmware encoder/decoder.

Here is a little program that can obfuscate and deobfuscate Samsung SSD firmware files. I'm against obfuscation because it's a stupid malpractice aimed only to keep off unliterate people. Use as you please and drop me a comment/email if it was useful to you. Donations are welcome. #include <stdio.h> #define HI_NIBBLE(b) (((b) >> 4) & 0x0F) #define LO_NIBBLE(b) ((b) & 0x0F) FILE * infile; FILE * infile2; FILE * outfile; int i, j, t; char table[ 2 ][ 16 ] = { { 0x1 , 0x3 , 0x5 , 0x7 , 0x9 , 0xb , 0xd , 0xf , 0xe , 0xc , 0xa , 0x8 , 0x6 , 0x4 , 0x2 , 0x0 }, { 0xf , 0x0 , 0xe , 0x1 , 0xd , 0x2 , 0xc , 0x3 , 0xb , 0x4 , 0xa , 0x5 , 0x9 , 0x6 , 0x8 , 0x7 } }; int main ( int argc, char * argv[]) { if (argc <= 3 ) printf ( "Usage: %s enc/dec infile outfile \n " , argv[ 0 ]); else { infile = fopen (argv[ 2 ], "r" ); outfile = fopen (argv[ 3 ], "w" ); w...

Android, no deep sleep problem: SOLVED.

In the last few weeks I noticed a heavy battery drain on my Galaxy Note 3, which has always been perfect battery-wise. After further inspection I noticed that the phone stopped to go to "deep sleep" when it was connected to my home WiFi. I even banned my phone from my LAN, just to exclude any external cause. Nothing changed. I checked the wakelocks and didn't see anything "strange". After a few days of inspecting and testing, I found nothing. But that nothing, meant something: no application was to blame. Apparently it was the O.S. I didn't factory restore my phone, because I "sensed" that restoring the backups I may be facing the same problem again. Excluding the apps, and after checking all settings (and finding nothing was wrong) ,and thinking "out of the box" I came with a "stupid" theory: what if a bug or a glitch messed up some internal settings? What if one of my many tests launching "act...