├── .gitignore ├── Dockerfile ├── LICENSE ├── MASTODON.md ├── Makefile ├── README.md ├── VIRUSTOTAL.md ├── img ├── REC2_logo_v1.png ├── client.jpg ├── schema_rec2.png └── server.jpg ├── implants ├── mastodon │ ├── Cargo.toml │ └── src │ │ ├── args.rs │ │ ├── lib.rs │ │ ├── main.rs │ │ ├── modules │ │ ├── common.rs │ │ ├── mod.rs │ │ └── rec2mastodon.rs │ │ └── utils │ │ ├── common.rs │ │ ├── crypto.rs │ │ ├── exec.rs │ │ ├── mod.rs │ │ └── target.rs └── virustotal │ ├── Cargo.toml │ └── src │ ├── args.rs │ ├── lib.rs │ ├── main.rs │ ├── modules │ ├── common.rs │ ├── mod.rs │ └── rec2virustotal.rs │ └── utils │ ├── common.rs │ ├── crypto.rs │ ├── exec.rs │ ├── mod.rs │ └── target.rs ├── server ├── Cargo.toml └── src │ ├── args.rs │ ├── c2 │ ├── jobs.rs │ ├── mod.rs │ ├── sessions.rs │ └── shell.rs │ ├── lib.rs │ ├── main.rs │ ├── modules │ ├── mod.rs │ ├── rec2mastodon.rs │ └── rec2virustotal.rs │ └── utils │ ├── common.rs │ ├── crypto.rs │ └── mod.rs └── yara └── rec2_virustotal_or_mastodon.yar /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/LICENSE -------------------------------------------------------------------------------- /MASTODON.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/MASTODON.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/README.md -------------------------------------------------------------------------------- /VIRUSTOTAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/VIRUSTOTAL.md -------------------------------------------------------------------------------- /img/REC2_logo_v1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/img/REC2_logo_v1.png -------------------------------------------------------------------------------- /img/client.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/img/client.jpg -------------------------------------------------------------------------------- /img/schema_rec2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/img/schema_rec2.png -------------------------------------------------------------------------------- /img/server.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/img/server.jpg -------------------------------------------------------------------------------- /implants/mastodon/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/Cargo.toml -------------------------------------------------------------------------------- /implants/mastodon/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/args.rs -------------------------------------------------------------------------------- /implants/mastodon/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/lib.rs -------------------------------------------------------------------------------- /implants/mastodon/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/main.rs -------------------------------------------------------------------------------- /implants/mastodon/src/modules/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/modules/common.rs -------------------------------------------------------------------------------- /implants/mastodon/src/modules/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/modules/mod.rs -------------------------------------------------------------------------------- /implants/mastodon/src/modules/rec2mastodon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/modules/rec2mastodon.rs -------------------------------------------------------------------------------- /implants/mastodon/src/utils/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/utils/common.rs -------------------------------------------------------------------------------- /implants/mastodon/src/utils/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/utils/crypto.rs -------------------------------------------------------------------------------- /implants/mastodon/src/utils/exec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/utils/exec.rs -------------------------------------------------------------------------------- /implants/mastodon/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/utils/mod.rs -------------------------------------------------------------------------------- /implants/mastodon/src/utils/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/mastodon/src/utils/target.rs -------------------------------------------------------------------------------- /implants/virustotal/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/Cargo.toml -------------------------------------------------------------------------------- /implants/virustotal/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/args.rs -------------------------------------------------------------------------------- /implants/virustotal/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/lib.rs -------------------------------------------------------------------------------- /implants/virustotal/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/main.rs -------------------------------------------------------------------------------- /implants/virustotal/src/modules/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/modules/common.rs -------------------------------------------------------------------------------- /implants/virustotal/src/modules/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/modules/mod.rs -------------------------------------------------------------------------------- /implants/virustotal/src/modules/rec2virustotal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/modules/rec2virustotal.rs -------------------------------------------------------------------------------- /implants/virustotal/src/utils/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/utils/common.rs -------------------------------------------------------------------------------- /implants/virustotal/src/utils/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/utils/crypto.rs -------------------------------------------------------------------------------- /implants/virustotal/src/utils/exec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/utils/exec.rs -------------------------------------------------------------------------------- /implants/virustotal/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/utils/mod.rs -------------------------------------------------------------------------------- /implants/virustotal/src/utils/target.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/implants/virustotal/src/utils/target.rs -------------------------------------------------------------------------------- /server/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/Cargo.toml -------------------------------------------------------------------------------- /server/src/args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/args.rs -------------------------------------------------------------------------------- /server/src/c2/jobs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/c2/jobs.rs -------------------------------------------------------------------------------- /server/src/c2/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/c2/mod.rs -------------------------------------------------------------------------------- /server/src/c2/sessions.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/c2/sessions.rs -------------------------------------------------------------------------------- /server/src/c2/shell.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/c2/shell.rs -------------------------------------------------------------------------------- /server/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/lib.rs -------------------------------------------------------------------------------- /server/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/main.rs -------------------------------------------------------------------------------- /server/src/modules/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/modules/mod.rs -------------------------------------------------------------------------------- /server/src/modules/rec2mastodon.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/modules/rec2mastodon.rs -------------------------------------------------------------------------------- /server/src/modules/rec2virustotal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/modules/rec2virustotal.rs -------------------------------------------------------------------------------- /server/src/utils/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/utils/common.rs -------------------------------------------------------------------------------- /server/src/utils/crypto.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/utils/crypto.rs -------------------------------------------------------------------------------- /server/src/utils/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/server/src/utils/mod.rs -------------------------------------------------------------------------------- /yara/rec2_virustotal_or_mastodon.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/g0h4n/REC2/HEAD/yara/rec2_virustotal_or_mastodon.yar --------------------------------------------------------------------------------