{"id":22551384,"url":"https://github.com/danisss9/xvirus","last_synced_at":"2026-03-01T22:13:31.694Z","repository":{"id":263509966,"uuid":"764357466","full_name":"danisss9/Xvirus","owner":"danisss9","description":"Xvirus Scanning Engine ","archived":false,"fork":false,"pushed_at":"2026-02-23T18:21:55.000Z","size":93705,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-24T01:32:27.093Z","etag":null,"topics":["antivirus","command-line","csharp","scanner","sdk"],"latest_commit_sha":null,"homepage":"https://xvirus.net/","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/danisss9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2024-02-27T23:38:41.000Z","updated_at":"2026-02-23T18:22:03.000Z","dependencies_parsed_at":"2024-12-07T17:12:37.207Z","dependency_job_id":"e99e59d4-b8d8-42b4-804f-7e4658e1456e","html_url":"https://github.com/danisss9/Xvirus","commit_stats":null,"previous_names":["danisss9/xvirussdk","danisss9/xvirus"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/danisss9/Xvirus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisss9%2FXvirus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisss9%2FXvirus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisss9%2FXvirus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisss9%2FXvirus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/danisss9","download_url":"https://codeload.github.com/danisss9/Xvirus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/danisss9%2FXvirus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29986244,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-01T21:06:37.093Z","status":"ssl_error","status_checked_at":"2026-03-01T21:05:45.052Z","response_time":124,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["antivirus","command-line","csharp","scanner","sdk"],"created_at":"2024-12-07T17:12:34.217Z","updated_at":"2026-03-01T22:13:31.681Z","avatar_url":"https://github.com/danisss9.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Xvirus\n\nXvirus SDK 5.1 — Anti-malware scanning engine and desktop protection suite.\n\n## Repository Overview\n\n| Component | Description |\n|-----------|-------------|\n| [BaseLibrary](BaseLibrary/README.md) | Core .NET 8 library shared by all SDK bindings. Provides the scan engine, AI inference, database management, updater, and settings. |\n| [CSharpSDK](CSharpSDK/README.md) | C# SDK wrapper. Use this when integrating Xvirus into a .NET 8 project. |\n| [NativeSDK](NativeSDK/README.md) | Native AOT shared library (`XvirusSDK.dll` / `.so`) with C-compatible exports. Use this to integrate from C, C++, or any language with FFI support. |\n| [NodeSDK](NodeSDK/README.md) | Node.js native addon (`.node` + ESM wrapper). Use this to integrate from Node.js or TypeScript. |\n| [XvirusCLI](XvirusCLI/README.md) | Command-line interface for scanning files and folders, managing updates, and configuring settings from a terminal. |\n| [AITrainer](AITrainer/README.md) | Tool to train and export the XvirusAI ONNX model from a dataset of malware and benign PE files. |\n| [XvirusService](XvirusService/README.md) | Windows background service (ASP.NET Core, Native AOT). Hosts the HTTP API on port 5236, real-time process monitoring, network protection, and automatic updates. |\n| [XvirusUI](XvirusUI/README.md) | Desktop UI (Preact + Neutralino.js). Connects to XvirusService and supports both antimalware and firewall modes. |\n\n## Minimum Requirements\n\n- .NET 8 SDK — [download](https://dotnet.microsoft.com/en-us/download/dotnet/8.0)\n\nSupported operating systems:\n\n- Windows: Windows 10 1607, Windows 11 22H2, Windows Server 2012, Windows Server Core 2012\n- Linux (glibc 2.35): Alpine 3.19, Azure Linux 3.0, CentOS Stream 9, Debian 12, Fedora 41, openSUSE Leap 15.6, RHEL 8, SUSE 15.6, Ubuntu 22.04\n\n## Choosing a Component\n\n| Goal | Component |\n|------|-----------|\n| Integrate scanning into a C# / .NET project | [CSharpSDK](CSharpSDK/README.md) |\n| Integrate scanning into a C, C++, or FFI consumer | [NativeSDK](NativeSDK/README.md) |\n| Integrate scanning into a Node.js / TypeScript project | [NodeSDK](NodeSDK/README.md) |\n| Scan files from a terminal or script | [XvirusCLI](XvirusCLI/README.md) |\n| Run as a Windows background service with HTTP API | [XvirusService](XvirusService/README.md) |\n| Desktop antimalware / firewall UI | [XvirusUI](XvirusUI/README.md) |\n| Train or retrain the AI model | [AITrainer](AITrainer/README.md) |\n\n## Known Issues\n\n- The `checkUpdate` function can check for SDK/CLI updates but cannot update automatically.\n\n## Changelog\n\nSee [CHANGELOG.md](CHANGELOG.md) for the full version history.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanisss9%2Fxvirus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdanisss9%2Fxvirus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdanisss9%2Fxvirus/lists"}