{"id":29166231,"url":"https://github.com/sertrafurr/revolt-selfbot","last_synced_at":"2025-07-01T08:10:35.198Z","repository":{"id":283735465,"uuid":"952754982","full_name":"SertraFurr/Revolt-Selfbot","owner":"SertraFurr","description":"Revolt.chat Selfbot Example ","archived":false,"fork":false,"pushed_at":"2025-06-08T02:10:56.000Z","size":52,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-29T21:44:14.011Z","etag":null,"topics":["bot","python","revolt","revolt-chat","revoltchat","self-bot","selfbot"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SertraFurr.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":"2025-03-21T20:29:02.000Z","updated_at":"2025-06-08T02:11:01.000Z","dependencies_parsed_at":"2025-06-08T03:52:13.231Z","dependency_job_id":null,"html_url":"https://github.com/SertraFurr/Revolt-Selfbot","commit_stats":null,"previous_names":["ramona-flower/revolt-selfbot","cyn-ically/revolt-selfbot","sertrafurr/revolt-selfbot"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/SertraFurr/Revolt-Selfbot","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SertraFurr%2FRevolt-Selfbot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SertraFurr%2FRevolt-Selfbot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SertraFurr%2FRevolt-Selfbot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SertraFurr%2FRevolt-Selfbot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SertraFurr","download_url":"https://codeload.github.com/SertraFurr/Revolt-Selfbot/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SertraFurr%2FRevolt-Selfbot/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262925001,"owners_count":23385463,"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":["bot","python","revolt","revolt-chat","revoltchat","self-bot","selfbot"],"created_at":"2025-07-01T08:10:34.469Z","updated_at":"2025-07-01T08:10:35.178Z","avatar_url":"https://github.com/SertraFurr.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Revolt Selfbot\n\nfull recode without using idiotic revolt.py library\n\nA proof-of-concept (POC) selfbot for [Revolt](https://revolt.chat) Revolt.chat, demonstrating how to interact with the API using Python.\n\n## Features\n- Basic command handling with a configurable prefix\n- Fetch user information using `userinfo` command\n- Send messages and embeds\n- Configurable settings via `config.json`\n- Logging for debugging\n- Auto name changer (Change name by modifying usernames.txt)\n\n## Requirements\n- Python 3.8+\n- `aiohttp`, `requests`, and `revolt` Python modules\n\n## Installation\n1. Clone the repository:\n   ```sh\n   git clone https://github.com/cyn-ically/Revolt-Selfbot/Revolt-Selfbot.git\n   cd Revolt-Selfbot\n   ```\n2. Install dependencies:\n   ```sh\n   pip install -r requirements.txt\n   ```\n3. Create a `config.json` file (it will be generated automatically on first run if missing):\n   ```json\n   {\n       \"token\": \"YOUR_TOKEN_HERE\",\n       \"prefix\": \"!\",\n       \"commands\": {\n           \"help\": \"Show this help message\",\n           \"hello\": \"Get a greeting from the bot\"\n           \"userinfo\": \"Fetch user info\"\n       }\n   }\n   ```\n4. Edit `config.json` and replace `YOUR_TOKEN_HERE` with your Revolt session token.\n\n## Usage\nRun the bot using:\n```sh\npython main.py\n```\n\n### Commands\n| Command    | Description |\n|------------|------------|\n| `!help`    | Displays available commands |\n| `!hello`   | Responds with a greeting |\n| `!userinfo \u003cuser_id\u003e` | Fetches user info |\n| `!username \u003cnew_name\u003e` | Change your username |\n\n## Example\nSend the `!userinfo` command any chat:\n```sh\n!userinfo @theuser\n```\nThe bot will respond with user details if available.\n# How to Get Your Revolt Session Token \n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003eClick to view the steps for obtaining your Revolt session token\u003c/strong\u003e\u003c/summary\u003e\n   \n# Tutorial\n- To run the Revolt Selfbot, you'll need your x-session-token, which can be obtained from the network requests in your browser. Follow these steps carefully:\n\n\n## Step 1: Open Revolt in Your Browser\n1. Go to Revolt and log in to your account.\n2. Open Developer Tools:\n- Google Chrome / Edge: Press F12 or Ctrl + Shift + I\n- Firefox: Press F12 or Ctrl + Shift + I\n## Step 2: Start a New Application Session\n\n1. Click on the \"Network\" tab in Developer Tools.\n2. Make sure the filter is set to \"Fetch/XHR\" (in Chrome) or \"XHR\" in Firefox.\n3. If the network log is empty, refresh the page (F5) to populate it with requests.\n   \n## Step 3: Send a Message\n1. Open any DM or server channel.\n2. Type a message and send it.\n- Look for a request named \"messages\" in the Network tab.\n3. Step 4: Find Your Token\n- Click on the \"messages\" request.\n- Navigate to the \"Headers\" tab.\n- Scroll down to the Request Headers section.\n- Locate the x-session-token field.\n- Copy the token value (a long alphanumeric string).\n\n\u003c/details\u003e\n\n## Disclaimer\nThis selfbot is for educational purposes only. Usage of selfbots may violate Revolt's Terms of Service. Use at your own risk.\n\n## License\nApache 2.0 License\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsertrafurr%2Frevolt-selfbot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsertrafurr%2Frevolt-selfbot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsertrafurr%2Frevolt-selfbot/lists"}