├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── client ├── Cargo.toml └── src │ ├── args.rs │ ├── lib.rs │ ├── main.rs │ ├── methods │ ├── dns.rs │ ├── https.rs │ └── mod.rs │ └── utils │ ├── banner.rs │ ├── checker.rs │ ├── crypto.rs │ ├── files.rs │ └── mod.rs ├── img ├── dns.jpg └── https.jpg ├── server ├── Cargo.toml ├── cert.pem ├── key.pem └── src │ ├── args.rs │ ├── lib.rs │ ├── main.rs │ ├── methods │ ├── dns.rs │ ├── https.rs │ ├── icmp.rs │ └── mod.rs │ └── utils │ ├── crypto.rs │ ├── extract.rs │ ├── files.rs │ └── mod.rs └── yara └── crde_dns_or_https.yar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/README.md -------------------------------------------------------------------------------- /client/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/Cargo.toml -------------------------------------------------------------------------------- /client/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/args.rs -------------------------------------------------------------------------------- /client/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/lib.rs -------------------------------------------------------------------------------- /client/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/main.rs -------------------------------------------------------------------------------- /client/src/methods/dns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/methods/dns.rs -------------------------------------------------------------------------------- /client/src/methods/https.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/methods/https.rs -------------------------------------------------------------------------------- /client/src/methods/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/methods/mod.rs -------------------------------------------------------------------------------- /client/src/utils/banner.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/utils/banner.rs -------------------------------------------------------------------------------- /client/src/utils/checker.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/utils/checker.rs -------------------------------------------------------------------------------- /client/src/utils/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/utils/crypto.rs -------------------------------------------------------------------------------- /client/src/utils/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/utils/files.rs -------------------------------------------------------------------------------- /client/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/client/src/utils/mod.rs -------------------------------------------------------------------------------- /img/dns.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/img/dns.jpg -------------------------------------------------------------------------------- /img/https.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/img/https.jpg -------------------------------------------------------------------------------- /server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/Cargo.toml -------------------------------------------------------------------------------- /server/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/cert.pem -------------------------------------------------------------------------------- /server/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/key.pem -------------------------------------------------------------------------------- /server/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/args.rs -------------------------------------------------------------------------------- /server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/lib.rs -------------------------------------------------------------------------------- /server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/main.rs -------------------------------------------------------------------------------- /server/src/methods/dns.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/methods/dns.rs -------------------------------------------------------------------------------- /server/src/methods/https.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/methods/https.rs -------------------------------------------------------------------------------- /server/src/methods/icmp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/methods/icmp.rs -------------------------------------------------------------------------------- /server/src/methods/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/methods/mod.rs -------------------------------------------------------------------------------- /server/src/utils/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/utils/crypto.rs -------------------------------------------------------------------------------- /server/src/utils/extract.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/utils/extract.rs -------------------------------------------------------------------------------- /server/src/utils/files.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/utils/files.rs -------------------------------------------------------------------------------- /server/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/server/src/utils/mod.rs -------------------------------------------------------------------------------- /yara/crde_dns_or_https.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/RDE1/HEAD/yara/crde_dns_or_https.yar --------------------------------------------------------------------------------