├── Makefile ├── README.md ├── inc ├── aether.h ├── decoder_arm64.h ├── decoder_x86.h └── forge.h └── src ├── aether.c ├── antidebug.c ├── arm64 ├── decoder_arm.c └── expansion_arm64.c ├── crypto.c ├── engine.c ├── hunt.c ├── loader.c ├── macho.c ├── morph.c ├── overnout.c ├── parasite.c ├── prng.c ├── relocate.c ├── strings.c ├── tuer.c └── x86 ├── decoder_x86.c └── expansion_x86.c /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/README.md -------------------------------------------------------------------------------- /inc/aether.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/inc/aether.h -------------------------------------------------------------------------------- /inc/decoder_arm64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/inc/decoder_arm64.h -------------------------------------------------------------------------------- /inc/decoder_x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/inc/decoder_x86.h -------------------------------------------------------------------------------- /inc/forge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/inc/forge.h -------------------------------------------------------------------------------- /src/aether.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/aether.c -------------------------------------------------------------------------------- /src/antidebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/antidebug.c -------------------------------------------------------------------------------- /src/arm64/decoder_arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/arm64/decoder_arm.c -------------------------------------------------------------------------------- /src/arm64/expansion_arm64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/arm64/expansion_arm64.c -------------------------------------------------------------------------------- /src/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/crypto.c -------------------------------------------------------------------------------- /src/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/engine.c -------------------------------------------------------------------------------- /src/hunt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/hunt.c -------------------------------------------------------------------------------- /src/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/loader.c -------------------------------------------------------------------------------- /src/macho.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/macho.c -------------------------------------------------------------------------------- /src/morph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/morph.c -------------------------------------------------------------------------------- /src/overnout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/overnout.c -------------------------------------------------------------------------------- /src/parasite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/parasite.c -------------------------------------------------------------------------------- /src/prng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/prng.c -------------------------------------------------------------------------------- /src/relocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/relocate.c -------------------------------------------------------------------------------- /src/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/strings.c -------------------------------------------------------------------------------- /src/tuer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/tuer.c -------------------------------------------------------------------------------- /src/x86/decoder_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/x86/decoder_x86.c -------------------------------------------------------------------------------- /src/x86/expansion_x86.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xf00sec/Aether/HEAD/src/x86/expansion_x86.c --------------------------------------------------------------------------------