DreamSoule / ollvm17

Obfuscation LLVM 17
230 stars 37 forks source link

flag -sobf didnt work to obfuscate strings #6

Open RomanChamelo opened 9 months ago

RomanChamelo commented 9 months ago

photo_2023-10-27_19-51-18

hi, i use NDK 26 and ollvm 17.0.2 and use flag -mllvm -sobf but string didn't obfuscate at all. string are still showing in IDA dissasembler.. any solution?

RomanChamelo commented 9 months ago

by the way, my string that are showing in IDA dissasembler is locate in array

DreamSoule commented 9 months ago

in my memory, the string can obfuscation:

char* xx = "xxx";

but this cant:

char xx = { "xx" , "xxx" };

and unicode cant be obfuscation

RomanChamelo commented 7 months ago

hey thank you for OLLVM version 17.0.6.... my string inside array are obfuscated. however there are some string still missing for flag -sobf photo_2024-01-18_20-40-00

obfuscate this long string still didnt work and IDA still showing those long string. hope in the future will work tho. because LLVM 13 work to obfuscate long string. its gonna be very perfect if you fix it