├── .gitignore ├── CMakeLists.txt ├── MIT-LICENSE.txt ├── README.md ├── default_config └── arcana.conf ├── include ├── arcana.h ├── misc.h └── plugin.h ├── infected_bins ├── infected_DT_DEBUG ├── ip ├── jp-retal-e ├── kill_no_plt_cxa_textpadd ├── kill_plt_cxa_textpadd ├── ldd_inter ├── ldd_post ├── ldd_pre ├── lpv_infected_32bit_et_exec ├── ls_ptnote_hallo ├── mybash ├── reloc_ctors_infection64 ├── skeksi.host ├── static_ls_hello_injected └── static_ls_nop_injected ├── plugins ├── Makefile ├── extended_section.c └── golang.c ├── src ├── config.c ├── container.c ├── heuristics.c ├── heuristics_l2.c ├── heuristics_util.c ├── internal.c ├── main.c ├── obj.c ├── so.c └── util.c └── tools └── stripx /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | build/ 3 | *.o 4 | *.so 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/MIT-LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/README.md -------------------------------------------------------------------------------- /default_config/arcana.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/default_config/arcana.conf -------------------------------------------------------------------------------- /include/arcana.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/include/arcana.h -------------------------------------------------------------------------------- /include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/include/misc.h -------------------------------------------------------------------------------- /include/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/include/plugin.h -------------------------------------------------------------------------------- /infected_bins/infected_DT_DEBUG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/infected_DT_DEBUG -------------------------------------------------------------------------------- /infected_bins/ip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/ip -------------------------------------------------------------------------------- /infected_bins/jp-retal-e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/jp-retal-e -------------------------------------------------------------------------------- /infected_bins/kill_no_plt_cxa_textpadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/kill_no_plt_cxa_textpadd -------------------------------------------------------------------------------- /infected_bins/kill_plt_cxa_textpadd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/kill_plt_cxa_textpadd -------------------------------------------------------------------------------- /infected_bins/ldd_inter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/ldd_inter -------------------------------------------------------------------------------- /infected_bins/ldd_post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/ldd_post -------------------------------------------------------------------------------- /infected_bins/ldd_pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/ldd_pre -------------------------------------------------------------------------------- /infected_bins/lpv_infected_32bit_et_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/lpv_infected_32bit_et_exec -------------------------------------------------------------------------------- /infected_bins/ls_ptnote_hallo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/ls_ptnote_hallo -------------------------------------------------------------------------------- /infected_bins/mybash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/mybash -------------------------------------------------------------------------------- /infected_bins/reloc_ctors_infection64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/reloc_ctors_infection64 -------------------------------------------------------------------------------- /infected_bins/skeksi.host: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/skeksi.host -------------------------------------------------------------------------------- /infected_bins/static_ls_hello_injected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/static_ls_hello_injected -------------------------------------------------------------------------------- /infected_bins/static_ls_nop_injected: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/infected_bins/static_ls_nop_injected -------------------------------------------------------------------------------- /plugins/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/plugins/Makefile -------------------------------------------------------------------------------- /plugins/extended_section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/plugins/extended_section.c -------------------------------------------------------------------------------- /plugins/golang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/plugins/golang.c -------------------------------------------------------------------------------- /src/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/config.c -------------------------------------------------------------------------------- /src/container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/container.c -------------------------------------------------------------------------------- /src/heuristics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/heuristics.c -------------------------------------------------------------------------------- /src/heuristics_l2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/heuristics_l2.c -------------------------------------------------------------------------------- /src/heuristics_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/heuristics_util.c -------------------------------------------------------------------------------- /src/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/internal.c -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/main.c -------------------------------------------------------------------------------- /src/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/obj.c -------------------------------------------------------------------------------- /src/so.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/so.c -------------------------------------------------------------------------------- /src/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/src/util.c -------------------------------------------------------------------------------- /tools/stripx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arcana-technologies/arcana.elfscan/HEAD/tools/stripx --------------------------------------------------------------------------------