Reborn 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. Because Reborn is implemented entirely in Rust, you can expect fast, and reliable program connectivity.
The 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
to 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
makes it so that all data and screenshots get sent to that channel.
The 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 in their corresponding discord server. After the launch of Reborn, you can invite the Reborn discord bot into your server.
/token create
/token delete {token}
/token info {token}
For clarity regarding how the program, discord bot, and server backend work, I wrote a quick api documentation to explain the functionalities behind the scenes.
HTTP PUT /account/register/
HEADERS: {
authorization: "user hardware id",
access_token: SHA256("{authorization}:{time_in_seconds}:{secret_key}")
}
BODY: {
username: "the username provided by the user"
identifier: "the users hwid"
}
RESPONSE: {
status: 200/400
}
HTTP POST /account/login/
HEADERS: {
authorization: "user hardware id",
access_token: SHA256("{authorization}:{time_in_seconds}:{secret_key}")
}
BODY: {
identifier: "the users hwid"
}
RESPONSE: {
status: 200/400,
response: "the user's username"
}
HTTP POST /message/{token}/
URL_PARAMETERS: {
token: SHA256 Encrypted Channel ID
}
HEADERS: {
authorization: "user hardware id",
access_token: SHA256("{authorization}:{time_in_seconds}:{secret_key}")
}
BODY: {
discord_api_message_body
}
HTTP PUT /token
HEADERS: {
authorization: "user hardware id",
access_token: SHA256("{authorization}:{time_in_seconds}:{secret_key}")
}
BODY: {
channel: "regular channel id as int"
}
RESPONSE: {
status: 200/400,
token: "generated token"
}
HEADERS: {
authorization: "user hardware id",
access_token: SHA256("{authorization}:{time_in_seconds}:{secret_key}")
}
BODY: {
token: "the token to delete"
}
HEADERS: {
authorization: "user hardware id",
access_token: SHA256("{authorization}:{time_in_seconds}:{secret_key}")
}
RESPONSE: {
status: 200/400,
token: "token",
channel: "channel id",
created_by: "who created the token",
created_at: "when the token was created",
expires_in: "when the token expires"
}
MIT License
Copyright (c) 2022 Tristan
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.