├── LICENSE ├── README.md ├── main.go ├── nonce.txt ├── src.txt ├── target_key_1111111111111111.txt └── vendor └── github.com └── handcraftsman ├── GeneticGo ├── README.md ├── doc.go ├── evolver.go ├── generation.go ├── lib.go ├── pool.go ├── solver.go ├── strategies.go └── types.go └── Random └── random.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/README.md -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/main.go -------------------------------------------------------------------------------- /nonce.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/nonce.txt -------------------------------------------------------------------------------- /src.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/src.txt -------------------------------------------------------------------------------- /target_key_1111111111111111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/target_key_1111111111111111.txt -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/README.md -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/doc.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/evolver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/evolver.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/generation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/generation.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/lib.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/pool.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/solver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/solver.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/strategies.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/strategies.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/GeneticGo/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/GeneticGo/types.go -------------------------------------------------------------------------------- /vendor/github.com/handcraftsman/Random/random.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leo-stone/hack-petya/HEAD/vendor/github.com/handcraftsman/Random/random.go --------------------------------------------------------------------------------