├── Decryptor ├── configuration │ └── configuration.go ├── decryption │ └── decryption.go ├── go.mod ├── go.sum ├── iterator │ └── filewalker.go └── main.go ├── Encryptor ├── configuration │ └── configuration.go ├── encryption │ └── encryption.go ├── filewalker │ └── filewalker.go ├── go.mod ├── go.sum └── main.go ├── LICENSE ├── README.md ├── database └── database.go ├── frontend ├── index.html ├── scripts │ └── main.js └── styles │ └── main.css ├── go.mod ├── go.sum ├── handlers ├── dashboard.go ├── graph.go ├── locker.go └── locker_generation.go ├── models └── structs.go ├── server.go └── utils └── helpers.go /Decryptor/configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Decryptor/configuration/configuration.go -------------------------------------------------------------------------------- /Decryptor/decryption/decryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Decryptor/decryption/decryption.go -------------------------------------------------------------------------------- /Decryptor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Decryptor/go.mod -------------------------------------------------------------------------------- /Decryptor/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Decryptor/go.sum -------------------------------------------------------------------------------- /Decryptor/iterator/filewalker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Decryptor/iterator/filewalker.go -------------------------------------------------------------------------------- /Decryptor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Decryptor/main.go -------------------------------------------------------------------------------- /Encryptor/configuration/configuration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Encryptor/configuration/configuration.go -------------------------------------------------------------------------------- /Encryptor/encryption/encryption.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Encryptor/encryption/encryption.go -------------------------------------------------------------------------------- /Encryptor/filewalker/filewalker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Encryptor/filewalker/filewalker.go -------------------------------------------------------------------------------- /Encryptor/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Encryptor/go.mod -------------------------------------------------------------------------------- /Encryptor/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Encryptor/go.sum -------------------------------------------------------------------------------- /Encryptor/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/Encryptor/main.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/README.md -------------------------------------------------------------------------------- /database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/database/database.go -------------------------------------------------------------------------------- /frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/frontend/index.html -------------------------------------------------------------------------------- /frontend/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/frontend/scripts/main.js -------------------------------------------------------------------------------- /frontend/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/frontend/styles/main.css -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/go.sum -------------------------------------------------------------------------------- /handlers/dashboard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/handlers/dashboard.go -------------------------------------------------------------------------------- /handlers/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/handlers/graph.go -------------------------------------------------------------------------------- /handlers/locker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/handlers/locker.go -------------------------------------------------------------------------------- /handlers/locker_generation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/handlers/locker_generation.go -------------------------------------------------------------------------------- /models/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/models/structs.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/server.go -------------------------------------------------------------------------------- /utils/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvilBytecode/EByte-Ransomware/HEAD/utils/helpers.go --------------------------------------------------------------------------------