{"id":22348005,"url":"https://github.com/slashgordon/rns510-code-finder","last_synced_at":"2026-01-30T07:12:07.355Z","repository":{"id":252785403,"uuid":"841451124","full_name":"SlashGordon/rns510-code-finder","owner":"SlashGordon","description":"Code finder for VW rns510 stero ","archived":false,"fork":false,"pushed_at":"2024-08-13T08:26:12.000Z","size":2174,"stargazers_count":2,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-16T02:04:08.021Z","etag":null,"topics":["rns510","vw"],"latest_commit_sha":null,"homepage":"","language":"Python","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/SlashGordon.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,"zenodo":null}},"created_at":"2024-08-12T12:39:33.000Z","updated_at":"2025-05-26T09:22:28.000Z","dependencies_parsed_at":"2025-04-22T19:42:23.471Z","dependency_job_id":null,"html_url":"https://github.com/SlashGordon/rns510-code-finder","commit_stats":null,"previous_names":["slashgordon/rns510-code-finder"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SlashGordon/rns510-code-finder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashGordon%2Frns510-code-finder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashGordon%2Frns510-code-finder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashGordon%2Frns510-code-finder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashGordon%2Frns510-code-finder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SlashGordon","download_url":"https://codeload.github.com/SlashGordon/rns510-code-finder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SlashGordon%2Frns510-code-finder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28907374,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T06:42:00.998Z","status":"ssl_error","status_checked_at":"2026-01-30T06:41:58.659Z","response_time":66,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["rns510","vw"],"created_at":"2024-12-04T10:12:10.574Z","updated_at":"2026-01-30T07:12:07.330Z","avatar_url":"https://github.com/SlashGordon.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RNS510 Code Finder\n\nThis Python script is designed to communicate with the RNS510 device through a serial port to find the correct PIN code via a brute-force approach.\n\n## Features\n\n- **Serial Communication:** Uses `pyserial` to communicate with the RNS510 device via a COM port.\n- **Brute Force Code Finder:** Iteratively tries different PIN codes within a specified range to find the correct one.\n- **Pin Verification:** Sends each PIN to the device and checks the response to determine if it is valid.\n\n## Requirements\n\n- Python 3.x\n- `pyserial` library\n\n### Hardware \n\n- 12V Power Supply \u003e1.5A\n- COM Cable or dupont pins \n\n## Installation\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/SlashGordon/rns510-code-finder.git\n   cd rns510-code-finder\n   ```\n\n2. **Install the necessary Python package:**\n\n   ```bash\n   pip install pyserial\n   ```\n\n## Usage\n\n1. **Connect your RNS510 device** to your computer via a serial port. ![Pin Connection Plan](connect_rns510.png)\n\n2. **Run the script:**\n\n   ```bash\n   python rns510_code_finder.py --portname COM3 --baudrate 9600 --timeout 2 --start 0 --stop 1999\n   ```\n\n   Replace `\"COM3\"` with the appropriate COM port for your device and adjust the `--baudrate`, `--timeout`, `--start`, and `--stop` options as needed.\n\n3. **Script Execution:**\n\n   - The script will iteratively attempt to find the correct PIN code within the specified range.\n   - If the correct code is found, it will be displayed in the terminal.\n\n## Example\n\n```bash\n$ python rns510_code_finder.py --portname COM1 --baudrate 115200 --timeout 1 --start 0 --stop 1999\n2023-08-12 14:23:45,123 - INFO - Opened serial port COM1\n2023-08-12 14:23:45,124 - INFO - Trying code: 0000\n2023-08-12 14:23:45,225 - INFO - Code 0000 is invalid.\n...\n2023-08-12 14:24:15,567 - INFO - Trying code: 1234\n2023-08-12 14:24:15,668 - INFO - Code found: 1234\n2023-08-12 14:24:15,669 - INFO - Closed serial port COM1\n```\n\n## Notes\n\n- **Serial Port:** Ensure the correct COM port is specified and that no other programs are using the port.\n- **Timeouts:** The script uses a simple timeout mechanism for waiting for responses. You may need to adjust sleep times if the device's response time varies.\n- **No GUI:** This script is command-line-based and does not include any graphical user interface.\n\n## Troubleshooting\n\n- **No Response from Device:** If the device is not responding, ensure the correct COM port is being used, the device is properly connected, and the baud rate is correctly set.\n- **Port Already in Use:** If you receive an error indicating that the port is in use, ensure no other applications are accessing the COM port.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nIf you would like to contribute to this project, please fork the repository and submit a pull request. We welcome improvements and bug fixes!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashgordon%2Frns510-code-finder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fslashgordon%2Frns510-code-finder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fslashgordon%2Frns510-code-finder/lists"}