├── .gitignore ├── README.md ├── evaluation.py ├── ida_preprocessing ├── .env ├── README.md ├── dump_single.py ├── elf.py ├── glibc.py ├── ida.py ├── idaapi.py ├── normalize_single_dmp.py ├── op.py ├── sample_binary │ └── gcc-5__Ou__direvent__direvent ├── unit.py └── util.py ├── images ├── F1_score.png ├── architecture.png ├── architecture_bg_white.png ├── jaccard.png └── val_loss.png ├── learn_model_from_scratch.py ├── load_model_extract.py ├── model └── asmdepictor │ ├── Layers.py │ ├── Models.py │ ├── Modules.py │ ├── Optim.py │ ├── SubLayers.py │ └── Translator.py ├── random_seed.py ├── requirement.txt └── vocab ├── pretrained_bpe_voca.voc ├── src_model_vocab.txt └── tgt_model_vocab.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/README.md -------------------------------------------------------------------------------- /evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/evaluation.py -------------------------------------------------------------------------------- /ida_preprocessing/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/.env -------------------------------------------------------------------------------- /ida_preprocessing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/README.md -------------------------------------------------------------------------------- /ida_preprocessing/dump_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/dump_single.py -------------------------------------------------------------------------------- /ida_preprocessing/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/elf.py -------------------------------------------------------------------------------- /ida_preprocessing/glibc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/glibc.py -------------------------------------------------------------------------------- /ida_preprocessing/ida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/ida.py -------------------------------------------------------------------------------- /ida_preprocessing/idaapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/idaapi.py -------------------------------------------------------------------------------- /ida_preprocessing/normalize_single_dmp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/normalize_single_dmp.py -------------------------------------------------------------------------------- /ida_preprocessing/op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/op.py -------------------------------------------------------------------------------- /ida_preprocessing/sample_binary/gcc-5__Ou__direvent__direvent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/sample_binary/gcc-5__Ou__direvent__direvent -------------------------------------------------------------------------------- /ida_preprocessing/unit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/unit.py -------------------------------------------------------------------------------- /ida_preprocessing/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/ida_preprocessing/util.py -------------------------------------------------------------------------------- /images/F1_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/images/F1_score.png -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/architecture_bg_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/images/architecture_bg_white.png -------------------------------------------------------------------------------- /images/jaccard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/images/jaccard.png -------------------------------------------------------------------------------- /images/val_loss.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/images/val_loss.png -------------------------------------------------------------------------------- /learn_model_from_scratch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/learn_model_from_scratch.py -------------------------------------------------------------------------------- /load_model_extract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/load_model_extract.py -------------------------------------------------------------------------------- /model/asmdepictor/Layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/model/asmdepictor/Layers.py -------------------------------------------------------------------------------- /model/asmdepictor/Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/model/asmdepictor/Models.py -------------------------------------------------------------------------------- /model/asmdepictor/Modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/model/asmdepictor/Modules.py -------------------------------------------------------------------------------- /model/asmdepictor/Optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/model/asmdepictor/Optim.py -------------------------------------------------------------------------------- /model/asmdepictor/SubLayers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/model/asmdepictor/SubLayers.py -------------------------------------------------------------------------------- /model/asmdepictor/Translator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/model/asmdepictor/Translator.py -------------------------------------------------------------------------------- /random_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/random_seed.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/requirement.txt -------------------------------------------------------------------------------- /vocab/pretrained_bpe_voca.voc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/vocab/pretrained_bpe_voca.voc -------------------------------------------------------------------------------- /vocab/src_model_vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/vocab/src_model_vocab.txt -------------------------------------------------------------------------------- /vocab/tgt_model_vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/agwaBom/AsmDepictor/HEAD/vocab/tgt_model_vocab.txt --------------------------------------------------------------------------------