├── Malware Dev.cbp ├── Malware Dev.exe ├── Malware Dev.layout ├── README.md ├── Stuxnet ├── Open Source Decompile of Stuxnet │ ├── Dropper │ │ ├── AssemblyBlock0.c │ │ ├── AssemblyBlock0.h │ │ ├── AssemblyBlock1.c │ │ ├── AssemblyBlock1.h │ │ ├── AssemblyBlock2.c │ │ ├── AssemblyBlock2.h │ │ ├── CodeBlock.c │ │ ├── CodeBlock.h │ │ ├── Encoding.c │ │ ├── Encoding.h │ │ ├── EncodingAlgorithms.c │ │ ├── EncodingAlgorithms.h │ │ ├── EncodingUtils.c │ │ ├── EncodingUtils.h │ │ ├── Main.c │ │ ├── MemorySections.c │ │ ├── MemorySections.h │ │ ├── OS.c │ │ ├── OS.h │ │ ├── STUBHandler.c │ │ ├── STUBHandler.h │ │ ├── Utils.c │ │ ├── Utils.h │ │ ├── data.c │ │ ├── data.h │ │ ├── define.h │ │ └── stdafx.h │ ├── Full Rar Archive One click Download all files │ │ ├── Stuxnet Decompile Full Rar Archive One Click Download.zip │ │ └── pak │ ├── README.md │ └── Rootkit │ │ ├── FastIo.c │ │ ├── LICENSE │ │ └── main.c ├── README.md ├── Stuxnet Full Zip Rar file │ └── stuxnet-source-code-master.zip └── Stuxnet Unzipped │ ├── A0055521.sys │ ├── Copy of Shortcut to.lnk │ ├── Signed Drivers │ ├── 0d8c2bcb575378f6a88d17b5f6ce70e794a264cdc8556c8e812f0b5f9c709198 │ ├── 1635ec04f069ccc8331d01fdf31132a4bc8f6fd3830ac94739df95ee093c555c │ ├── 63e6b8136058d7a06dfff4034b4ab17a261cdf398e63868a601f77ddd1b32802 │ └── 70f8789b03e38d07584f57581363afa848dd5c3a197f2483c6dfa4f3e7f78b9b │ ├── dll.dll │ ├── malware.exe │ ├── stuxnet core │ ├── dropper.exe_ │ └── maindll.decrypted.unpacked.dll_ │ ├── suckme.lnk_ │ ├── ~WTR4132.tmp │ └── ~WTR4141.tmp ├── System Shutdown script.py ├── bin └── Debug │ └── Malware Dev.exe ├── main.cpp └── obj └── Debug └── main.o /Malware Dev.cbp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Malware Dev.cbp -------------------------------------------------------------------------------- /Malware Dev.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Malware Dev.exe -------------------------------------------------------------------------------- /Malware Dev.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Malware Dev.layout -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/README.md -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock0.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock0.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock0.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock1.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock1.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock2.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/AssemblyBlock2.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/CodeBlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/CodeBlock.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/CodeBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/CodeBlock.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/Encoding.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/Encoding.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/Encoding.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/Encoding.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingAlgorithms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingAlgorithms.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingAlgorithms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingAlgorithms.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingUtils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingUtils.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/EncodingUtils.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/Main.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/MemorySections.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/MemorySections.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/MemorySections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/MemorySections.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/OS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/OS.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/OS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/OS.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/STUBHandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/STUBHandler.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/STUBHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/STUBHandler.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/Utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/Utils.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/Utils.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/data.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/data.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/define.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Dropper/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Dropper/stdafx.h -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Full Rar Archive One click Download all files/Stuxnet Decompile Full Rar Archive One Click Download.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Full Rar Archive One click Download all files/Stuxnet Decompile Full Rar Archive One Click Download.zip -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Full Rar Archive One click Download all files/pak: -------------------------------------------------------------------------------- 1 | ajsfbk 2 | -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/README.md -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Rootkit/FastIo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Rootkit/FastIo.c -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Rootkit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Rootkit/LICENSE -------------------------------------------------------------------------------- /Stuxnet/Open Source Decompile of Stuxnet/Rootkit/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Open Source Decompile of Stuxnet/Rootkit/main.c -------------------------------------------------------------------------------- /Stuxnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/README.md -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Full Zip Rar file/stuxnet-source-code-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Full Zip Rar file/stuxnet-source-code-master.zip -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/A0055521.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/A0055521.sys -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/Copy of Shortcut to.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/Copy of Shortcut to.lnk -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/Signed Drivers/0d8c2bcb575378f6a88d17b5f6ce70e794a264cdc8556c8e812f0b5f9c709198: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/Signed Drivers/0d8c2bcb575378f6a88d17b5f6ce70e794a264cdc8556c8e812f0b5f9c709198 -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/Signed Drivers/1635ec04f069ccc8331d01fdf31132a4bc8f6fd3830ac94739df95ee093c555c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/Signed Drivers/1635ec04f069ccc8331d01fdf31132a4bc8f6fd3830ac94739df95ee093c555c -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/Signed Drivers/63e6b8136058d7a06dfff4034b4ab17a261cdf398e63868a601f77ddd1b32802: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/Signed Drivers/63e6b8136058d7a06dfff4034b4ab17a261cdf398e63868a601f77ddd1b32802 -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/Signed Drivers/70f8789b03e38d07584f57581363afa848dd5c3a197f2483c6dfa4f3e7f78b9b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/Signed Drivers/70f8789b03e38d07584f57581363afa848dd5c3a197f2483c6dfa4f3e7f78b9b -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/dll.dll -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/malware.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/malware.exe -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/stuxnet core/dropper.exe_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/stuxnet core/dropper.exe_ -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/stuxnet core/maindll.decrypted.unpacked.dll_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/stuxnet core/maindll.decrypted.unpacked.dll_ -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/suckme.lnk_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/suckme.lnk_ -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/~WTR4132.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/~WTR4132.tmp -------------------------------------------------------------------------------- /Stuxnet/Stuxnet Unzipped/~WTR4141.tmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/Stuxnet/Stuxnet Unzipped/~WTR4141.tmp -------------------------------------------------------------------------------- /System Shutdown script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/System Shutdown script.py -------------------------------------------------------------------------------- /bin/Debug/Malware Dev.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/bin/Debug/Malware Dev.exe -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/main.cpp -------------------------------------------------------------------------------- /obj/Debug/main.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AhmedRaja1/Malware-Development/HEAD/obj/Debug/main.o --------------------------------------------------------------------------------