{"id":20976241,"url":"https://github.com/realtristan/reborn","last_synced_at":"2025-03-13T09:19:34.125Z","repository":{"id":95837797,"uuid":"545464123","full_name":"realTristan/Reborn","owner":"realTristan","description":"Versa Tournament Anti-Cheat Reborn. Designed with Rust instead of Python","archived":false,"fork":false,"pushed_at":"2023-05-31T22:25:10.000Z","size":84377,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-20T05:49:51.197Z","etag":null,"topics":["anti-cheat","gaming","rust","versa"],"latest_commit_sha":null,"homepage":"https://realTristan.github.io/Reborn","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/realTristan.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":"2022-10-04T12:21:24.000Z","updated_at":"2024-11-29T16:55:59.000Z","dependencies_parsed_at":"2024-11-19T22:36:26.006Z","dependency_job_id":null,"html_url":"https://github.com/realTristan/Reborn","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realTristan%2FReborn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realTristan%2FReborn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realTristan%2FReborn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/realTristan%2FReborn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/realTristan","download_url":"https://codeload.github.com/realTristan/Reborn/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243374531,"owners_count":20280700,"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":["anti-cheat","gaming","rust","versa"],"created_at":"2024-11-19T04:51:47.918Z","updated_at":"2025-03-13T09:19:34.097Z","avatar_url":"https://github.com/realTristan.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reborn ![Stars](https://img.shields.io/github/stars/realTristan/Reborn?color=brightgreen) ![Watchers](https://img.shields.io/github/watchers/realTristan/Reborn?label=Watchers)\n![banner](https://github.com/realTristan/Reborn/assets/75189508/0be2cf20-d63d-425a-ac96-0b1907896b4d)\n\n# About\nReborn is a secure gaming anti-cheat written in Rust and is the superior to Versa, my other anti-cheat developed in Python. With Reborn, you can easily detect cheaters, hwid/ip-spoofers, macro-users, and more.\nBecause Reborn is implemented entirely in Rust, you can expect fast, and reliable program connectivity.\n\n# Program Preview\nThe program has two primary screens. The first is the registration screen. When an user registers with their username, they can no longer change it. Their username becomes bound to their hwid. This makes it much easier\nto detect hwid spoofers who are most likely cheating. The second screen is for token input. As a tournament host, you can generate a token in your discord server, with the `/token create` discord command. This\nmakes it so that all data and screenshots get sent to that channel.\n\u003cdiv float=\"left\"\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/75189508/210023258-362d4ca1-9f21-4d33-b9a5-579b0796bc58.PNG\" width=\"400\" height=\"375\"\u003e\n\u003cimg src=\"https://user-images.githubusercontent.com/75189508/210025481-cddd53e1-99ae-4f29-a723-ac355593c81d.PNG\" width=\"400\" height=\"375\"\u003e\n\u003c/div\u003e\n\n# Discord Bot\nThe discord bot is used to create new vac tokens, delete unused, or expired tokens, and to get a tokens information. Each of these functions can be called by the tournament host\nin their corresponding discord server. After the launch of Reborn, you can invite the Reborn discord bot into your server.\n## Create a Token\n```go\n/token create\n```\n\n## Delete a Token\n```go\n/token delete {token}\n```\n\n## Get Token Info\n```go\n/token info {token}\n```\n\n# API Documentation\nFor clarity regarding how the program, discord bot, and server backend work, I wrote a quick api documentation to explain the functionalities behind the scenes.\n## Accounts\n### Register with HWID\n```go\nHTTP PUT /account/register/\nHEADERS: {\n    authorization: \"user hardware id\",\n    access_token: SHA256(\"{authorization}:{time_in_seconds}:{secret_key}\")\n}\nBODY: {\n    username: \"the username provided by the user\"\n    identifier: \"the users hwid\"\n}\nRESPONSE: {\n    status: 200/400\n}\n```\n\n### Login with HWID\n```go\nHTTP POST /account/login/\nHEADERS: {\n    authorization: \"user hardware id\",\n    access_token: SHA256(\"{authorization}:{time_in_seconds}:{secret_key}\")\n}\nBODY: {\n    identifier: \"the users hwid\"\n}\nRESPONSE: {\n    status: 200/400,\n    response: \"the user's username\"\n}\n```\n\n## Discord Messages\n### Send Embed\n```go\nHTTP POST /message/{token}/\nURL_PARAMETERS: {\n    token: SHA256 Encrypted Channel ID\n}\nHEADERS: {\n    authorization: \"user hardware id\",\n    access_token: SHA256(\"{authorization}:{time_in_seconds}:{secret_key}\")\n}\nBODY: {\n    discord_api_message_body\n}\n```\n\n## Tokens\n### Generate New Token\n```go\nHTTP PUT /token\nHEADERS: {\n    authorization: \"user hardware id\",\n    access_token: SHA256(\"{authorization}:{time_in_seconds}:{secret_key}\")\n}\nBODY: {\n    channel: \"regular channel id as int\"\n}\nRESPONSE: {\n    status: 200/400,\n    token: \"generated token\"\n}\n```\n\n### Delete Token\n```go\nHEADERS: {\n    authorization: \"user hardware id\",\n    access_token: SHA256(\"{authorization}:{time_in_seconds}:{secret_key}\")\n}\nBODY: {\n    token: \"the token to delete\"\n}\n```\n\n### Get Token Data\n```go\nHEADERS: {\n    authorization: \"user hardware id\",\n    access_token: SHA256(\"{authorization}:{time_in_seconds}:{secret_key}\")\n}\nRESPONSE: {\n    status: 200/400,\n    token: \"token\",\n    channel: \"channel id\",\n    created_by: \"who created the token\",\n    created_at: \"when the token was created\",\n    expires_in: \"when the token expires\"\n}\n```\n\n# License\nMIT License\n\nCopyright (c) 2022 Tristan\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealtristan%2Freborn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frealtristan%2Freborn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frealtristan%2Freborn/lists"}