{"id":30451917,"url":"https://github.com/varppi/syscanary","last_synced_at":"2025-08-23T14:19:06.315Z","repository":{"id":293796335,"uuid":"984202274","full_name":"varppi/syscanary","owner":"varppi","description":"Alerts you when things in your system change","archived":false,"fork":false,"pushed_at":"2025-08-09T07:17:34.000Z","size":38,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-09T08:51:22.273Z","etag":null,"topics":["cyberse","detection-en","monitoring"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/varppi.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-05-15T14:52:12.000Z","updated_at":"2025-08-09T07:17:37.000Z","dependencies_parsed_at":"2025-08-09T08:51:26.270Z","dependency_job_id":"1e045530-7a91-416a-9398-320373c4205a","html_url":"https://github.com/varppi/syscanary","commit_stats":null,"previous_names":["spoofimei/syscanary","varppi/syscanary"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/varppi/syscanary","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varppi%2Fsyscanary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varppi%2Fsyscanary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varppi%2Fsyscanary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varppi%2Fsyscanary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/varppi","download_url":"https://codeload.github.com/varppi/syscanary/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/varppi%2Fsyscanary/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271751989,"owners_count":24814717,"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-23T02:00:09.327Z","response_time":69,"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":["cyberse","detection-en","monitoring"],"created_at":"2025-08-23T14:19:05.680Z","updated_at":"2025-08-23T14:19:06.308Z","avatar_url":"https://github.com/varppi.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://github.com/user-attachments/assets/0e70decd-79c3-4a4e-bc69-824ad51bfb56\"\u003e\n\u003cdiv\u003e\n  \u003cimg src=\"https://img.shields.io/badge/go-000000?style=for-the-badge\u0026logo=go\"\u003e \n  \u003cimg src=\"https://img.shields.io/badge/linux-000000?style=for-the-badge\u0026logo=linux\"\u003e\n  \u003cimg src=\"https://img.shields.io/badge/windows-000000?style=for-the-badge\u0026logo=windows\"\u003e\n\u003c/div\u003e\n\u003cb\u003eThis is basically tripwire, but for your server. The idea is that you set up Syscanary to monitor changes in things that would indicate a system compromise or a malfunction so you can detect and mitigate the problem(s) early on.\u003c/b\u003e\n\n## Features\nSyscanary can currently monitor changes in:\n- File system\n- USB devices\n- Internet connectivity\n- Open ports (currently only Linux support)\n\n## Installation\n```bash\nsudo apt update \u0026\u0026 sudo apt install golang  \ngo install github.com/Varppi/syscanary/cmd/syscanary\nexport PATH=$PATH:~/go/bin\n```\n\n## Usage\n`syscanary`\n\n## Configuration\nOpen syscanary.json and make your configurations:\n```\n{\n    \"loglevel\": 1, \u003c-- 0=debug 1=info 2=error\n    \"logfile\": \"alerts.log\", \u003c-- remove if you want to have console output \n    \"detections\": [\"usb\", \"integrity\", \"ports\", \"internet\"], \u003c-- remove or add modules to enable or disable them\n    \"modules\": { \u003c-- DO NOT REMOVE ANY MODULES FROM HERE AND DON'T LEAVE SETTINGS EMPTY!!!\n        \"integrity\": {\n            \"interval\": 1, \u003c-- how many seconds it will wait before checking again\n            \"paths\": [\"/var/log\"]\n        },\n        \"usb\": {\n            \"interval\": 1\n        },\n        \"ports\": {\n            \"interval\": 1,\n            \"ignorelocal\": true \u003c-- doesn't alert when local binds change\n        },\n        \"internet\": {\n            \"interval\": 1,\n            \"domain\": \"example.com\" \u003c-- domain to test the connectivity on\n        }\n    }\n}\n```\nConfig without comments:\n```json\n{\n    \"loglevel\": 1,\n    \"detections\": [\"usb\", \"integrity\", \"ports\", \"internet\"],\n    \"modules\": {\n        \"integrity\": {\n            \"interval\": 1,\n            \"paths\": [\"/var/log\"]\n        },\n        \"usb\": {\n            \"interval\": 1\n        },\n        \"ports\": {\n            \"interval\": 1,\n            \"ignorelocal\": true\n        },\n        \"internet\": {\n            \"interval\": 1,\n            \"domain\": \"example.com\"\n        }\n    }\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvarppi%2Fsyscanary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvarppi%2Fsyscanary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvarppi%2Fsyscanary/lists"}