├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── Steps.txt ├── compile.bat ├── implementim.cpp ├── msgbox64.bin ├── resources.h ├── resources.o ├── resources.rc └── xorencrypt.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/README.md -------------------------------------------------------------------------------- /Steps.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/Steps.txt -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/compile.bat -------------------------------------------------------------------------------- /implementim.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/implementim.cpp -------------------------------------------------------------------------------- /msgbox64.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/msgbox64.bin -------------------------------------------------------------------------------- /resources.h: -------------------------------------------------------------------------------- 1 | #define FAVORITE_ICO 100 2 | -------------------------------------------------------------------------------- /resources.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/resources.o -------------------------------------------------------------------------------- /resources.rc: -------------------------------------------------------------------------------- 1 | #include "resources.h" 2 | 3 | FAVORITE_ICO RCDATA favorite.ico 4 | -------------------------------------------------------------------------------- /xorencrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Archx0Mas/Dropper-Sektor7-Testing/HEAD/xorencrypt.py --------------------------------------------------------------------------------