Adaptive morphing payload framework and mesh intelligence system. Part of the BANANA_TREE ecosystem.
LANIMORPH is a LAN-aware adaptive payload engine originally built on Termux. It assigns behavioral personalities to discovered hosts, mutates payloads per subnet using XOR/zlib encoding, tracks mutation lineage, and seals mesh exports for forensic replay.
Core concepts have been ported and integrated into LANimals as personality_engine.py and mesh_vault.py.
LANIMORPH/ core/mutators/ # Subnet mutator, lanimorph mutator payloads/ personalities/ # scout, mimic, parasite, leech profiles templates/ # payload templates (fingerprint, exfil, worm, etc) smart_selector.py # personality-aware payload selection payload_studio.py # interactive payload manager mesh/ # mirror nodes, vault sealing, chain replay chain/ # mutation lineage, XP tracking, DNA rotator beacons/ # beacon watch and rebuilder ui/ # dashboard and mutation timeline
| Personality | Aggression | Stealth | Persistence | Profile |
|---|---|---|---|---|
| scout | 2 | 10 | 6 | Passive observer, fingerprints only |
| mimic | 4 | 9 | 5 | Blends into traffic, mirrors patterns |
| parasite | 7 | 5 | 9 | Persistent extraction, high dwell |
| leech | 3 | 8 | 10 | DNS-focused, long passive dwell |
Payloads are mutated per target using a subnet-derived XOR key:
key = sum(int(octet) for octet in subnet.split(".")) % 256This ensures every subnet receives a unique payload variant while remaining reproducible.
LANIMORPH's core systems are now integrated into LANimals:
core/personality_engine.py— personality assignment, subnet mutator, smart selector, XP trackingcore/mesh_vault.py— vault storage, mirror nodes, sealed exports, chain replay- Graph nodes enriched with personality color, XP rank, and mutation count
Core systems ported to LANimals. Original Termux implementation preserved here for reference and research.
LANimals collective // gnomeman4201 // bad_banana