├── Dockerfile ├── LICENSE ├── README.md ├── assets ├── bins │ ├── 7-ZipPortable_25.01.paf.exe │ ├── DiskMonPortable_2.02_English_online.paf.exe │ ├── bitsadmin_11-21H2_KB5032192.exe │ └── explorer_11-24H2_KB5065789.exe └── images │ ├── msfmania-2025.png │ ├── payload-2025.png │ └── virustotal-2021.png ├── examples └── main.c ├── main.py ├── msfmania ├── assets │ └── bins │ │ └── win_x64_msgbox_msfvenom_20251010.bin ├── builder.py ├── compiler.py ├── core.py ├── encryption.py ├── junkcode.py ├── obfuscator.py └── utils.py └── templates ├── junkcodes ├── acos_routine_1.c ├── acos_routine_2.c ├── asin_routine_1.c ├── asin_routine_2.c ├── atan_routine_1.c ├── atan_routine_2.c ├── average_1.c ├── average_2.c ├── average_variance_stanard_and_deviation_1.c ├── average_variance_stanard_and_deviation_2.c ├── back_to_num_1.c ├── back_to_num_2.c ├── back_to_zero.c ├── buble_sort_float_array.c ├── buble_sort_int_array.c ├── ceil_routine_1.c ├── ceil_routine_2.c ├── double_reverse_array_1.c ├── double_reverse_array_2.c ├── exp_routine_1.c ├── exp_routine_2.c ├── fabs_routine_1.c ├── fabs_routine_2.c ├── fibonacci.c ├── floor_routine_1.c ├── floor_routine_2.c ├── fmod_routine_1.c ├── fmod_routine_2.c ├── geometric_1.c ├── geometric_2.c ├── geometric_3.c ├── geometric_4.c ├── geometric_5.c ├── gnome_sort_int_array.c ├── last_armstrong.c ├── ldexp_routine_1.c ├── ldexp_routine_2.c ├── ln_routine_1.c ├── ln_routine_2.c ├── log10_routine_1.c ├── log10_routine_2.c ├── odd_or_even_1.c ├── odd_or_even_2.c ├── pow_counter.c ├── primes_number_soe.c ├── primes_number_sos.c ├── random_numbers.c ├── reverse_array_1.c ├── reverse_array_2.c ├── shaker_snort.c ├── sum_first_n_integer_1.c ├── sum_first_n_integer_2.c └── twin_tower.c └── main.c /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/README.md -------------------------------------------------------------------------------- /assets/bins/7-ZipPortable_25.01.paf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/bins/7-ZipPortable_25.01.paf.exe -------------------------------------------------------------------------------- /assets/bins/DiskMonPortable_2.02_English_online.paf.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/bins/DiskMonPortable_2.02_English_online.paf.exe -------------------------------------------------------------------------------- /assets/bins/bitsadmin_11-21H2_KB5032192.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/bins/bitsadmin_11-21H2_KB5032192.exe -------------------------------------------------------------------------------- /assets/bins/explorer_11-24H2_KB5065789.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/bins/explorer_11-24H2_KB5065789.exe -------------------------------------------------------------------------------- /assets/images/msfmania-2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/images/msfmania-2025.png -------------------------------------------------------------------------------- /assets/images/payload-2025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/images/payload-2025.png -------------------------------------------------------------------------------- /assets/images/virustotal-2021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/assets/images/virustotal-2021.png -------------------------------------------------------------------------------- /examples/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/examples/main.c -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/main.py -------------------------------------------------------------------------------- /msfmania/assets/bins/win_x64_msgbox_msfvenom_20251010.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/assets/bins/win_x64_msgbox_msfvenom_20251010.bin -------------------------------------------------------------------------------- /msfmania/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/builder.py -------------------------------------------------------------------------------- /msfmania/compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/compiler.py -------------------------------------------------------------------------------- /msfmania/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/core.py -------------------------------------------------------------------------------- /msfmania/encryption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/encryption.py -------------------------------------------------------------------------------- /msfmania/junkcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/junkcode.py -------------------------------------------------------------------------------- /msfmania/obfuscator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/obfuscator.py -------------------------------------------------------------------------------- /msfmania/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/msfmania/utils.py -------------------------------------------------------------------------------- /templates/junkcodes/acos_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/acos_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/acos_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/acos_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/asin_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/asin_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/asin_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/asin_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/atan_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/atan_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/atan_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/atan_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/average_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/average_1.c -------------------------------------------------------------------------------- /templates/junkcodes/average_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/average_2.c -------------------------------------------------------------------------------- /templates/junkcodes/average_variance_stanard_and_deviation_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/average_variance_stanard_and_deviation_1.c -------------------------------------------------------------------------------- /templates/junkcodes/average_variance_stanard_and_deviation_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/average_variance_stanard_and_deviation_2.c -------------------------------------------------------------------------------- /templates/junkcodes/back_to_num_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/back_to_num_1.c -------------------------------------------------------------------------------- /templates/junkcodes/back_to_num_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/back_to_num_2.c -------------------------------------------------------------------------------- /templates/junkcodes/back_to_zero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/back_to_zero.c -------------------------------------------------------------------------------- /templates/junkcodes/buble_sort_float_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/buble_sort_float_array.c -------------------------------------------------------------------------------- /templates/junkcodes/buble_sort_int_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/buble_sort_int_array.c -------------------------------------------------------------------------------- /templates/junkcodes/ceil_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/ceil_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/ceil_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/ceil_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/double_reverse_array_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/double_reverse_array_1.c -------------------------------------------------------------------------------- /templates/junkcodes/double_reverse_array_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/double_reverse_array_2.c -------------------------------------------------------------------------------- /templates/junkcodes/exp_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/exp_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/exp_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/exp_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/fabs_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/fabs_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/fabs_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/fabs_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/fibonacci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/fibonacci.c -------------------------------------------------------------------------------- /templates/junkcodes/floor_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/floor_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/floor_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/floor_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/fmod_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/fmod_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/fmod_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/fmod_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/geometric_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/geometric_1.c -------------------------------------------------------------------------------- /templates/junkcodes/geometric_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/geometric_2.c -------------------------------------------------------------------------------- /templates/junkcodes/geometric_3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/geometric_3.c -------------------------------------------------------------------------------- /templates/junkcodes/geometric_4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/geometric_4.c -------------------------------------------------------------------------------- /templates/junkcodes/geometric_5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/geometric_5.c -------------------------------------------------------------------------------- /templates/junkcodes/gnome_sort_int_array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/gnome_sort_int_array.c -------------------------------------------------------------------------------- /templates/junkcodes/last_armstrong.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/last_armstrong.c -------------------------------------------------------------------------------- /templates/junkcodes/ldexp_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/ldexp_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/ldexp_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/ldexp_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/ln_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/ln_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/ln_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/ln_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/log10_routine_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/log10_routine_1.c -------------------------------------------------------------------------------- /templates/junkcodes/log10_routine_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/log10_routine_2.c -------------------------------------------------------------------------------- /templates/junkcodes/odd_or_even_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/odd_or_even_1.c -------------------------------------------------------------------------------- /templates/junkcodes/odd_or_even_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/odd_or_even_2.c -------------------------------------------------------------------------------- /templates/junkcodes/pow_counter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/pow_counter.c -------------------------------------------------------------------------------- /templates/junkcodes/primes_number_soe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/primes_number_soe.c -------------------------------------------------------------------------------- /templates/junkcodes/primes_number_sos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/primes_number_sos.c -------------------------------------------------------------------------------- /templates/junkcodes/random_numbers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/random_numbers.c -------------------------------------------------------------------------------- /templates/junkcodes/reverse_array_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/reverse_array_1.c -------------------------------------------------------------------------------- /templates/junkcodes/reverse_array_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/reverse_array_2.c -------------------------------------------------------------------------------- /templates/junkcodes/shaker_snort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/shaker_snort.c -------------------------------------------------------------------------------- /templates/junkcodes/sum_first_n_integer_1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/sum_first_n_integer_1.c -------------------------------------------------------------------------------- /templates/junkcodes/sum_first_n_integer_2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/sum_first_n_integer_2.c -------------------------------------------------------------------------------- /templates/junkcodes/twin_tower.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/junkcodes/twin_tower.c -------------------------------------------------------------------------------- /templates/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lepotekil/MsfMania/HEAD/templates/main.c --------------------------------------------------------------------------------