{"id":30932586,"url":"https://github.com/juvoy/wradar","last_synced_at":"2025-12-28T16:49:02.717Z","repository":{"id":313481419,"uuid":"1049005245","full_name":"juvoy/wradar","owner":"juvoy","description":"A simple cs2 webradar cheat","archived":false,"fork":false,"pushed_at":"2025-09-06T09:46:12.000Z","size":3246,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-06T11:36:45.165Z","etag":null,"topics":["cheat","counter","cpp","cs2","csgo","minimap","radar","strike","webradar"],"latest_commit_sha":null,"homepage":"","language":"C++","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/juvoy.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-02T10:51:19.000Z","updated_at":"2025-09-06T09:46:15.000Z","dependencies_parsed_at":"2025-09-06T11:48:30.800Z","dependency_job_id":null,"html_url":"https://github.com/juvoy/wradar","commit_stats":null,"previous_names":["juvoy/wradar"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/juvoy/wradar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juvoy%2Fwradar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juvoy%2Fwradar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juvoy%2Fwradar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juvoy%2Fwradar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/juvoy","download_url":"https://codeload.github.com/juvoy/wradar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/juvoy%2Fwradar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274471093,"owners_count":25291613,"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-09-10T02:00:12.551Z","response_time":83,"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":["cheat","counter","cpp","cs2","csgo","minimap","radar","strike","webradar"],"created_at":"2025-09-10T13:40:13.553Z","updated_at":"2025-12-28T16:49:02.710Z","avatar_url":"https://github.com/juvoy.png","language":"C++","readme":"# WRadar | A CS2 Webradar\nWRadar is a small side project of mine. Fronted fixed by ccolang big thanks.\nTo see a showcase scroll allll the way down. ([Screenshots](#screenshots))\n\n## Warning\nThis will get you banned if you start cs2 with the precompiled executable, if you are on windows 10 you can use Handle Hijacking.\nIf you want to use this undetected you can using your own driver see (See [Custom](#custom)). \nFor any question you can add me on discord: @juvoy\n\n## Features\n- **Player Tracking:** View the current position and rotation of any player.  \n- **Score Display:** Keep track of the current game score.  \n- **Player Stats:** Monitor every player’s health and weapons.  \n- **Customizable Minimap:** Adjust player markers for better visibility on smaller screens, such as smartphones or Steam overlay browsers.  \n- **Bomb Tracking:** See the location of the bomb when placed during the game.\n\n## Installation\n### All-In-One\nGo to [Releases](https://github.com/juvoy/wradar/releases/)\n\nDownload ```Release.zip``` and double click on ```start.bat```\n\n### From Source (Web)\n```\ngit clone https://github.com/juvoy/wradar.git\ncd web_radar\nnpm install\nnpm run dev -- --host\n```\nOpen ```http://localhost:5173``` in your browser to see it live.\n\n### Standalone Exectuable\nDownload the latest release from the Releases page and run it\n\n## Executable Arguments\n| Argument | Shortcut | Description | Example |\n|----------|---------|-------------|---------|\n| --input | -i | Specify input JSON file(s). Multiple files can be separated by commas. | wradar.exe -i offsets.json,client.dll.json |\n| --show | -s | Show the console window. | wradar.exe -s |\n| --verbose | -v | Enable verbose logging. | wradar.exe -v |\n| --port | -p | Set a custom port for the web server. | wradar.exe -p 8080 |\n| --host | -h | Set a custom host for the web server. | wradar.exe -h 127.0.0.1 |\n| --file_log | -fl | Specify a file to save logs. Defaults to timestamped file if not specified. | wradar.exe -fl mylog.txt |\n\nNotes on Input Files:\nAs I use the a2x_dumper the files have to be in their format.\n\n## Usage\n1. Launch the EXE and run the web version. (See Installation)\n\nExample Command:\n```wradar.exe -i offsets.json,client.dll.json -h 127.0.0.1 -p 8080 -v -s -fl log.txt```\n\n## Custom\nTo use your own driver without having to replace every read memory call you can compile it using the macro \n```C++\n#define WRADAR_USE_DRIVER\n```\nAfter that create ```driver.h/driver.cpp``` and add your IOCTL stuff to it. Then you have to add a wrapper for following functions\n```C++\ntemplate \u003cclass T\u003e\nbool WriteMemory(uintptr_t addr, T v);\n```\n```C++\ntemplate \u003ctypename type\u003e\ntype ReadMemory(uintptr_t addr);\n```\n```C++\nuintptr_t GetModuleBase(std::string mod);\n```\n\n## Screenshots\n![Dashboard](screenshots/screenshot_full.png)\n![Settings](screenshots/screenshot_settings.png)  \n\n## Thanks\n\u003ca href=\"https://github.com/juvoy/wradar/graphs/contributors\"\u003e\n  \u003cimg src=\"https://contrib.rocks/image?repo=juvoy/wradar\"/\u003e\n\u003c/a\u003e\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuvoy%2Fwradar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjuvoy%2Fwradar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjuvoy%2Fwradar/lists"}