droberson / ELFcrypt

Simple ELF crypter. Uses RC4 encryption.
MIT License
93 stars 25 forks source link

32bit ELF #1

Open petrkr opened 3 years ago

petrkr commented 3 years ago

Seems to be hard-coded to 64bit ELF, it makes it impossible to work on embedded things like ARM/MIPS or Raspberry Pi.

changing all structures ELF64 to ELF32 makes it work, but there would be nice some auto-detection. Have you idea how to achieve that ?

barkatthemoon18 commented 3 years ago

Is there any way to change the behavior speciifed for x86_64 to ARM64 (v8a)? I tried to do so, but no luck yet.

Thanks!