{"id":13843542,"url":"https://github.com/tophat-cloud/cumulus","last_synced_at":"2025-07-11T19:32:12.324Z","repository":{"id":38994743,"uuid":"390394621","full_name":"tophat-cloud/cumulus","owner":"tophat-cloud","description":"Cumulus is web application weakness monitoring, works with just 3 code lines","archived":false,"fork":false,"pushed_at":"2023-01-27T06:14:58.000Z","size":7598,"stargazers_count":41,"open_issues_count":45,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-08-05T17:38:00.326Z","etag":null,"topics":["javascript","security","vulnerability","weakness","weakness-reporting"],"latest_commit_sha":null,"homepage":"https://cumulus.tophat.cloud","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tophat-cloud.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-07-28T15:08:16.000Z","updated_at":"2024-01-02T03:34:22.000Z","dependencies_parsed_at":"2023-02-15T06:16:10.642Z","dependency_job_id":null,"html_url":"https://github.com/tophat-cloud/cumulus","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tophat-cloud%2Fcumulus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tophat-cloud%2Fcumulus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tophat-cloud%2Fcumulus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tophat-cloud%2Fcumulus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tophat-cloud","download_url":"https://codeload.github.com/tophat-cloud/cumulus/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225755023,"owners_count":17519189,"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":["javascript","security","vulnerability","weakness","weakness-reporting"],"created_at":"2024-08-04T17:02:12.462Z","updated_at":"2024-11-21T15:31:07.283Z","avatar_url":"https://github.com/tophat-cloud.png","language":"JavaScript","funding_links":[],"categories":["JavaScript"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"https://cumulus.tophat.cloud\" target=\"_blank\"\u003e\n      \u003cimg src=\"https://jinui.s3.ap-northeast-2.amazonaws.com/tophat/logo.png\" alt=\"Cumulus\" height=\"72\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n  \u003cp align=\"center\"\u003e\n    Application Weakness Monitoring Software\n  \u003c/p\u003e\n\u003c/p\u003e\n\n![Build \u0026 Test](https://github.com/tophat-cloud/cumulus/actions/workflows/main.yml/badge.svg)\n[![codecov](https://codecov.io/gh/tophat-cloud/cumulus/branch/main/graph/badge.svg?token=HDT8UJHMNN)](https://codecov.io/gh/tophat-cloud/cumulus)\n[![npm version](https://img.shields.io/badge/npm-0.0.2-orange)](https://github.com/tophat-cloud/cumulus/releases/tag/v0.0.2)\n[![Discord](https://img.shields.io/discord/898906919878668299)](https://discord.gg/BH7h6F2C7N)\n\n\n\n# What's Cumulus\n\nCumulus is a service that helps you monitor and fix security weakness\nin realtime. The issues will be reported on web dashboard. It's very simple and powerful.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://jinui.s3.ap-northeast-2.amazonaws.com/tophat/c1.png\" height=\"150\"\u003e\n  \u003cimg src=\"https://jinui.s3.ap-northeast-2.amazonaws.com/tophat/c2.png\" height=\"150\"\u003e\n  \u003cimg src=\"https://jinui.s3.ap-northeast-2.amazonaws.com/tophat/c3.png\" height=\"150\"\u003e\n\u003c/p\u003e\n\n# Key features\nJust install SDK to web front, can be found security weakness on service\n\n- SDK detect weakness from Inner Layer, dynamically (ex_ DOM Event, XHR Request)\n- Scanner detect weakness from Out Layer, statically (ex_ Web crawling based analysis)\n\n\n| Name | Origin | Description |\n| ---- | ---- | ---- |\n| XSS | SDK | When user input a xss pattern string, trigger detection of XSS\n| SQLInjection | SDK | When user input a sqlinjection pattern, trigger detection of SQLInjection\n| Sensitive Payload | SDK | When requesting with sensitive payload. for example, unencoded raw password\n| File Upload | SDK | When user embed any file worried for system. for example, web shell\n| Unnecessary Comment | Scanner | Code comments are on the served HTML or JS\n| Directory Traversal | Scanner | Detect directory listing vulnerability\n| Guessing | Scanner | Detect sensitive page like admin\n| Unobfuscated Code | Scanner | Detect unobfuscated vulnerable codes\n\nIf you think about able to detect additional weakness, please contribute on SDK or Scanner\n\n# Cumulus SDK for JavaScript\n\nThe official Cumulus SDK for JavaScript, providing as npm\n\n\u003e Note: current version is unsupported version on typescript project but we considering now and gonna make it, quickly! ([#2](https://github.com/tophat-cloud/cumulus/issues/2))\n\n## Installation\n\nTo install a SDK, simply add package like belows:\n\n```\nnpm install --save https://github.com/tophat-cloud/cumulus\nyarn add https://github.com/tophat-cloud/cumulus\n```\n\nSetup and usage of SDK always follow the same principle.\n\n```javascript\nimport { protect, captureMessage } from 'cumulus';\n\nprotect({\n  key: '__key__',\n});\n\ncaptureMessage('Hello, world!');\n```\n\n\u003e If you haven't `__key__`, please [sign-up](https://cumulus.tophat.cloud/signup) and create project to get to key\n\n## Contents\n- [Official Site](https://cumulus.tophat.cloud)\n- [Contributing](https://github.com/tophat-cloud/cumulus/blob/main/CONTRIBUTING.md)\n- [Change log](https://github.com/tophat-cloud/cumulus/blob/main/CHANGELOG.md)\n- [OpenSource License](https://cumulus.tophat.cloud/license.html)\n- [Documents](https://github.com/tophat-cloud/cumulus/wiki)\n- [Roadmap](https://github.com/tophat-cloud/cumulus/projects/1)\n\n## Resources\n- [cumulus-scanner](https://github.com/tophat-cloud/cumulus-scanner)\n- [cumulus-front](https://github.com/tophat-cloud/cumulus-front)\n- [cumulus-back](https://github.com/tophat-cloud/cumulus-back)\n\n## Author\n\u003cp align=\"center\"\u003e\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/tophat-cloud\" target=\"_blank\"\u003e\n      \u003cimg src=\"https://jinui.s3.ap-northeast-2.amazonaws.com/tophat/tophat.png\" alt=\"TopHat\" height=\"100\"\u003e\n    \u003c/a\u003e\n  \u003c/p\u003e\n\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"http://github.com/tinyjin\" target=\"_blank\"\u003e@Jinny You\u003c/a\u003e\u0026nbsp from \u003cstrong\u003eTopHat\u003c/strong\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftophat-cloud%2Fcumulus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftophat-cloud%2Fcumulus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftophat-cloud%2Fcumulus/lists"}