sentinel-scanner 1.0.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.cspell.json ADDED
@@ -0,0 +1,24 @@
1
+ {
2
+ "version": "0.2",
3
+ "language": "en",
4
+ "words": [
5
+ "degit",
6
+ "esbuild",
7
+ "webapp-scanner",
8
+ "octocat",
9
+ "outdir",
10
+ "rmrf",
11
+ "ryansonshine",
12
+ "socio",
13
+ "tsdoc",
14
+ "rebackk"
15
+ ],
16
+ "flagWords": [],
17
+ "ignorePaths": [
18
+ "package.json",
19
+ "package-lock.json",
20
+ "yarn.lock",
21
+ "tsconfig.json",
22
+ "node_modules/**"
23
+ ]
24
+ }
@@ -0,0 +1,32 @@
1
+ ---
2
+ name: Bug report
3
+ about: Create a report to help us improve
4
+ title: ""
5
+ labels: ""
6
+ assignees: ""
7
+ ---
8
+
9
+ **Describe the bug**
10
+ A clear and concise description of what the bug is.
11
+
12
+ **To Reproduce**
13
+ Steps to reproduce the behavior:
14
+
15
+ 1.
16
+ 2.
17
+ 3.
18
+
19
+ **Expected behavior**
20
+ A clear and concise description of what you expected to happen.
21
+
22
+ **Screenshots**
23
+ If applicable, add screenshots to help explain your problem.
24
+
25
+ **Desktop (please complete the following information):**
26
+
27
+ - OS: [e.g. Ubuntu 22.04, macOS 11.4]
28
+ - Node version [e.g 16.4.2]
29
+ - Code Version [e.g. 1.1.0]
30
+
31
+ **Additional context**
32
+ Add any other context about the problem here.
@@ -0,0 +1,5 @@
1
+ blank_issues_enabled: false
2
+ contact_links:
3
+ - name: GitHub Discussions
4
+ url: https://github.com/RebackkHQ/sentinel-scanner/discussions
5
+ about: Please discuss non bug-related topics there
@@ -0,0 +1,19 @@
1
+ ---
2
+ name: Feature request
3
+ about: Suggest an idea for this project
4
+ title: ""
5
+ labels: ""
6
+ assignees: ""
7
+ ---
8
+
9
+ **Is your feature request related to a problem? Please describe.**
10
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
11
+
12
+ **Describe the solution you'd like**
13
+ A clear and concise description of what you want to happen.
14
+
15
+ **Describe alternatives you've considered**
16
+ A clear and concise description of any alternative solutions or features you've considered.
17
+
18
+ **Additional context**
19
+ Add any other context or screenshots about the feature request here.
@@ -0,0 +1,7 @@
1
+ # Fixes
2
+
3
+ ## Description of the changes
4
+
5
+ -
6
+ -
7
+ -
Binary file
@@ -0,0 +1,108 @@
1
+ name: "sentinel-scanner"
2
+
3
+ on: [push]
4
+
5
+ permissions: "write-all"
6
+
7
+ env:
8
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
9
+
10
+ jobs:
11
+ dependencies:
12
+ name: 📦 Dependencies
13
+ runs-on: macos-latest
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ - uses: actions/setup-node@v4
17
+ with:
18
+ node-version-file: package.json
19
+ cache: "npm"
20
+ - run: npm ci
21
+
22
+ lint:
23
+ name: 🔬 Lint & Format
24
+ runs-on: macos-latest
25
+ needs: [dependencies]
26
+ steps:
27
+ - uses: actions/checkout@v4
28
+ - uses: actions/setup-node@v4
29
+ with:
30
+ node-version-file: package.json
31
+ cache: "npm"
32
+ - run: npm ci
33
+ - name: 🔬 Lint & Format
34
+ run: node --run lint:check
35
+
36
+ audit:
37
+ name: 🛡️ Audit
38
+ runs-on: macos-latest
39
+ needs: [dependencies]
40
+ steps:
41
+ - uses: actions/checkout@v4
42
+ - uses: actions/setup-node@v4
43
+ with:
44
+ node-version-file: package.json
45
+ cache: "npm"
46
+ - name: 🛡️ Audit
47
+ run: npm audit --audit-level=high
48
+
49
+ spell:
50
+ name: 🈸 Spellcheck
51
+ runs-on: macos-latest
52
+ needs: [dependencies]
53
+ steps:
54
+ - uses: actions/checkout@v4
55
+ - uses: actions/setup-node@v4
56
+ with:
57
+ node-version-file: package.json
58
+ cache: "npm"
59
+ - run: npm ci
60
+ - name: 🈸 Spellcheck
61
+ run: node --run spell:check
62
+
63
+ type:
64
+ name: ʦ Typecheck
65
+ runs-on: macos-latest
66
+ needs: [dependencies]
67
+ steps:
68
+ - uses: actions/checkout@v4
69
+ - uses: actions/setup-node@v4
70
+ with:
71
+ node-version-file: package.json
72
+ cache: "npm"
73
+ - run: npm ci
74
+ - name: ʦ Typecheck
75
+ run: node --run type:check
76
+
77
+ test:
78
+ name: ⚡ Tests
79
+ runs-on: macos-latest
80
+ needs: [dependencies]
81
+ steps:
82
+ - uses: actions/checkout@v4
83
+ - uses: actions/setup-node@v4
84
+ with:
85
+ node-version-file: package.json
86
+ cache: "npm"
87
+ - run: npm ci
88
+ - name: ⚡ Tests
89
+ run: node --run test:coverage
90
+
91
+ build-and-release:
92
+ name: 🚀 Build & release
93
+ needs: [lint, audit, spell, type, test]
94
+ runs-on: macos-latest
95
+ steps:
96
+ - uses: actions/checkout@v4
97
+ - uses: actions/setup-node@v4
98
+ with:
99
+ node-version-file: package.json
100
+ cache: "npm"
101
+ - run: npm ci
102
+ - name: 🔨 Build
103
+ run: node --run build
104
+ - name: 🚀 Release
105
+ env:
106
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
107
+ NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
108
+ run: node --run semantic-release
@@ -0,0 +1,31 @@
1
+ {
2
+ "branches": [
3
+ "+([0-9])?(.{+([0-9]),x}).x",
4
+ "main",
5
+ "master",
6
+ "next",
7
+ "next-major",
8
+ {
9
+ "name": "beta",
10
+ "prerelease": true
11
+ },
12
+ {
13
+ "name": "alpha",
14
+ "prerelease": true
15
+ }
16
+ ],
17
+ "repositoryUrl": "https://github.com/RebackkHQ/webapp-scanner.git",
18
+ "plugins": [
19
+ "@semantic-release/commit-analyzer",
20
+ "@semantic-release/release-notes-generator",
21
+ "@semantic-release/changelog",
22
+ "@semantic-release/npm",
23
+ [
24
+ "@semantic-release/github",
25
+ {
26
+ "successComment": false,
27
+ "failTitle": false
28
+ }
29
+ ]
30
+ ]
31
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,6 @@
1
+ # 1.0.0-alpha.1 (2024-11-07)
2
+
3
+
4
+ ### Features
5
+
6
+ * added Base Version ([8010fde](https://github.com/RebackkHQ/webapp-scanner/commit/8010fde4c3b086defeaaeb55083236d47d287bde))
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ - Demonstrating empathy and kindness toward other people
21
+ - Being respectful of differing opinions, viewpoints, and experiences
22
+ - Giving and gracefully accepting constructive feedback
23
+ - Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ - Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ - The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ - Trolling, insulting or derogatory comments, and personal or political attacks
33
+ - Public or private harassment
34
+ - Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ - Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ hello@esportzvio.com.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
@@ -0,0 +1,33 @@
1
+ # Contributing Guidelines
2
+
3
+ _Pull requests, bug reports, and all other forms of contribution are welcomed and highly encouraged!_ :octocat:
4
+
5
+ ### Contents
6
+
7
+ - [Code of Conduct](#book-code-of-conduct)
8
+ - [Asking Questions](#bulb-asking-questions)
9
+ - [How can I Contribute?](#inbox_tray-how-can-i-contribute)
10
+
11
+ > **This guide serves to set clear expectations for everyone involved with the project so that we can improve it together while also creating a welcoming space for everyone to participate. Following these guidelines will help ensure a positive experience for contributors and maintainers.**
12
+
13
+ ## :book: Code of Conduct
14
+
15
+ Please review our [Code of Conduct](./CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
16
+
17
+ ## :bulb: Asking Questions
18
+
19
+ If you have any question that does not relate to a bug or a feature request, please use [GitHub Discussions](https://github.com/RebackkHQ/webapp-scanner/discussions) instead of GitHub issues.
20
+
21
+ ## :inbox_tray: How can I Contribute?
22
+
23
+ **GitHub issues**
24
+
25
+ If you encounter a problem with this library or if you have a new feature you'd like to see in this project, please create [a new issue](https://github.com/RebackkHQ/webapp-scanner/issues/new/choose).
26
+
27
+ **GitHub Pull requests**
28
+
29
+ Please leverage the repository's own tools to make sure the code is aligned with our standards:
30
+
31
+ 1. Run all check commands before submitting the PR (`type:check`, `format:check`, `lint:check`, `test:coverage` and `spell:check`)
32
+ 2. Please commit your changes and run a `setup` command so you can actually check how would the template look like once cleaned up
33
+ 3. Always leverage the `cz` command to create a commit. We heavily rely on this for automatic releases.
package/LICENSE ADDED
@@ -0,0 +1,203 @@
1
+
2
+ Apache License
3
+ Version 2.0, January 2004
4
+ http://www.apache.org/licenses/
5
+
6
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7
+
8
+ 1. Definitions.
9
+
10
+ "License" shall mean the terms and conditions for use, reproduction,
11
+ and distribution as defined by Sections 1 through 9 of this document.
12
+
13
+ "Licensor" shall mean the copyright owner or entity authorized by
14
+ the copyright owner that is granting the License.
15
+
16
+ "Legal Entity" shall mean the union of the acting entity and all
17
+ other entities that control, are controlled by, or are under common
18
+ control with that entity. For the purposes of this definition,
19
+ "control" means (i) the power, direct or indirect, to cause the
20
+ direction or management of such entity, whether by contract or
21
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
22
+ outstanding shares, or (iii) beneficial ownership of such entity.
23
+
24
+ "You" (or "Your") shall mean an individual or Legal Entity
25
+ exercising permissions granted by this License.
26
+
27
+ "Source" form shall mean the preferred form for making modifications,
28
+ including but not limited to software source code, documentation
29
+ source, and configuration files.
30
+
31
+ "Object" form shall mean any form resulting from mechanical
32
+ transformation or translation of a Source form, including but
33
+ not limited to compiled object code, generated documentation,
34
+ and conversions to other media types.
35
+
36
+ "Work" shall mean the work of authorship, whether in Source or
37
+ Object form, made available under the License, as indicated by a
38
+ copyright notice that is included in or attached to the work
39
+ (an example is provided in the Appendix below).
40
+
41
+ "Derivative Works" shall mean any work, whether in Source or Object
42
+ form, that is based on (or derived from) the Work and for which the
43
+ editorial revisions, annotations, elaborations, or other modifications
44
+ represent, as a whole, an original work of authorship. For the purposes
45
+ of this License, Derivative Works shall not include works that remain
46
+ separable from, or merely link (or bind by name) to the interfaces of,
47
+ the Work and Derivative Works thereof.
48
+
49
+ "Contribution" shall mean any work of authorship, including
50
+ the original version of the Work and any modifications or additions
51
+ to that Work or Derivative Works thereof, that is intentionally
52
+ submitted to Licensor for inclusion in the Work by the copyright owner
53
+ or by an individual or Legal Entity authorized to submit on behalf of
54
+ the copyright owner. For the purposes of this definition, "submitted"
55
+ means any form of electronic, verbal, or written communication sent
56
+ to the Licensor or its representatives, including but not limited to
57
+ communication on electronic mailing lists, source code control systems,
58
+ and issue tracking systems that are managed by, or on behalf of, the
59
+ Licensor for the purpose of discussing and improving the Work, but
60
+ excluding communication that is conspicuously marked or otherwise
61
+ designated in writing by the copyright owner as "Not a Contribution."
62
+
63
+ "Contributor" shall mean Licensor and any individual or Legal Entity
64
+ on behalf of whom a Contribution has been received by Licensor and
65
+ subsequently incorporated within the Work.
66
+
67
+ 2. Grant of Copyright License. Subject to the terms and conditions of
68
+ this License, each Contributor hereby grants to You a perpetual,
69
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
70
+ copyright license to reproduce, prepare Derivative Works of,
71
+ publicly display, publicly perform, sublicense, and distribute the
72
+ Work and such Derivative Works in Source or Object form.
73
+
74
+ 3. Grant of Patent License. Subject to the terms and conditions of
75
+ this License, each Contributor hereby grants to You a perpetual,
76
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
77
+ (except as stated in this section) patent license to make, have made,
78
+ use, offer to sell, sell, import, and otherwise transfer the Work,
79
+ where such license applies only to those patent claims licensable
80
+ by such Contributor that are necessarily infringed by their
81
+ Contribution(s) alone or by combination of their Contribution(s)
82
+ with the Work to which such Contribution(s) was submitted. If You
83
+ institute patent litigation against any entity (including a
84
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
85
+ or a Contribution incorporated within the Work constitutes direct
86
+ or contributory patent infringement, then any patent licenses
87
+ granted to You under this License for that Work shall terminate
88
+ as of the date such litigation is filed.
89
+
90
+ 4. Redistribution. You may reproduce and distribute copies of the
91
+ Work or Derivative Works thereof in any medium, with or without
92
+ modifications, and in Source or Object form, provided that You
93
+ meet the following conditions:
94
+
95
+ (a) You must give any other recipients of the Work or
96
+ Derivative Works a copy of this License; and
97
+
98
+ (b) You must cause any modified files to carry prominent notices
99
+ stating that You changed the files; and
100
+
101
+ (c) You must retain, in the Source form of any Derivative Works
102
+ that You distribute, all copyright, patent, trademark, and
103
+ attribution notices from the Source form of the Work,
104
+ excluding those notices that do not pertain to any part of
105
+ the Derivative Works; and
106
+
107
+ (d) If the Work includes a "NOTICE" text file as part of its
108
+ distribution, then any Derivative Works that You distribute must
109
+ include a readable copy of the attribution notices contained
110
+ within such NOTICE file, excluding those notices that do not
111
+ pertain to any part of the Derivative Works, in at least one
112
+ of the following places: within a NOTICE text file distributed
113
+ as part of the Derivative Works; within the Source form or
114
+ documentation, if provided along with the Derivative Works; or,
115
+ within a display generated by the Derivative Works, if and
116
+ wherever such third-party notices normally appear. The contents
117
+ of the NOTICE file are for informational purposes only and
118
+ do not modify the License. You may add Your own attribution
119
+ notices within Derivative Works that You distribute, alongside
120
+ or as an addendum to the NOTICE text from the Work, provided
121
+ that such additional attribution notices cannot be construed
122
+ as modifying the License.
123
+
124
+ You may add Your own copyright statement to Your modifications and
125
+ may provide additional or different license terms and conditions
126
+ for use, reproduction, or distribution of Your modifications, or
127
+ for any such Derivative Works as a whole, provided Your use,
128
+ reproduction, and distribution of the Work otherwise complies with
129
+ the conditions stated in this License.
130
+
131
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
132
+ any Contribution intentionally submitted for inclusion in the Work
133
+ by You to the Licensor shall be under the terms and conditions of
134
+ this License, without any additional terms or conditions.
135
+ Notwithstanding the above, nothing herein shall supersede or modify
136
+ the terms of any separate license agreement you may have executed
137
+ with Licensor regarding such Contributions.
138
+
139
+ 6. Trademarks. This License does not grant permission to use the trade
140
+ names, trademarks, service marks, or product names of the Licensor,
141
+ except as required for reasonable and customary use in describing the
142
+ origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or
145
+ agreed to in writing, Licensor provides the Work (and each
146
+ Contributor provides its Contributions) on an "AS IS" BASIS,
147
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
148
+ implied, including, without limitation, any warranties or conditions
149
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
150
+ PARTICULAR PURPOSE. You are solely responsible for determining the
151
+ appropriateness of using or redistributing the Work and assume any
152
+ risks associated with Your exercise of permissions under this License.
153
+
154
+ 8. Limitation of Liability. In no event and under no legal theory,
155
+ whether in tort (including negligence), contract, or otherwise,
156
+ unless required by applicable law (such as deliberate and grossly
157
+ negligent acts) or agreed to in writing, shall any Contributor be
158
+ liable to You for damages, including any direct, indirect, special,
159
+ incidental, or consequential damages of any character arising as a
160
+ result of this License or out of the use or inability to use the
161
+ Work (including but not limited to damages for loss of goodwill,
162
+ work stoppage, computer failure or malfunction, or any and all
163
+ other commercial damages or losses), even if such Contributor
164
+ has been advised of the possibility of such damages.
165
+
166
+ 9. Accepting Warranty or Additional Liability. While redistributing
167
+ the Work or Derivative Works thereof, You may choose to offer,
168
+ and charge a fee for, acceptance of support, warranty, indemnity,
169
+ or other liability obligations and/or rights consistent with this
170
+ License. However, in accepting such obligations, You may act only
171
+ on Your own behalf and on Your sole responsibility, not on behalf
172
+ of any other Contributor, and only if You agree to indemnify,
173
+ defend, and hold each Contributor harmless for any liability
174
+ incurred by, or claims asserted against, such Contributor by reason
175
+ of your accepting any such warranty or additional liability.
176
+
177
+ END OF TERMS AND CONDITIONS
178
+
179
+ APPENDIX: How to apply the Apache License to your work.
180
+
181
+ To apply the Apache License to your work, attach the following
182
+ boilerplate notice, with the fields enclosed by brackets "{}"
183
+ replaced with your own identifying information. (Don't include
184
+ the brackets!) The text should be enclosed in the appropriate
185
+ comment syntax for the file format. We also recommend that a
186
+ file or class name and description of purpose be included on the
187
+ same "printed page" as the copyright notice for easier
188
+ identification within third-party archives.
189
+
190
+ Copyright 2024 [Esportzvio Private Limited]
191
+
192
+ Licensed under the Apache License, Version 2.0 (the "License");
193
+ you may not use this file except in compliance with the License.
194
+ You may obtain a copy of the License at
195
+
196
+ http://www.apache.org/licenses/LICENSE-2.0
197
+
198
+ Unless required by applicable law or agreed to in writing, software
199
+ distributed under the License is distributed on an "AS IS" BASIS,
200
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
201
+ See the License for the specific language governing permissions and
202
+ limitations under the License.
203
+
package/README.md ADDED
@@ -0,0 +1,55 @@
1
+ <p align="center" style="margin-top: 10px">
2
+ <h1 align="center">
3
+ Sentinel By Rebackk (Work in progress)
4
+ <br />
5
+ <img src="https://github.com/RebackkHQ/webapp-scanner/actions/workflows/webapp-scanner.yml/badge.svg" style="padding: 15px;" />
6
+ </h3>
7
+ <p align="center">
8
+ <a href="https://www.sentinel.rebackk.xyz">
9
+ <img src='./.github/assets/header.png'>
10
+ </a>
11
+ </a>
12
+ </p>
13
+
14
+ <p align="center">
15
+ Open Source WebApp Vulnerability Scanner
16
+ <br />
17
+ <a href="https://www.sentinel.rebackk.xyz"><strong>Learn more »</strong></a>
18
+ <br />
19
+ <br />
20
+ <a href="https://discord.gg/dCkyNUFm">Discord</a>
21
+ ·
22
+ <a href="https://www.sentinel.rebackk.xyz?ref=SentinelGithub">Website</a>
23
+ ·
24
+ <a href="https://github.com/RebackkHQ/webapp-scanner/issues">Issues</a>
25
+ </p>
26
+ </p>
27
+
28
+ ## About Sentinel Web App Scanner 🛡️
29
+
30
+ Sentinel is an open-source web app vulnerability scanner developed by [Rebackk](https://rebackk.xyz), offering powerful capabilities to help developers and security teams detect critical vulnerabilities. While the open-source version includes essential features for vulnerability scanning, our monthly plans provide an enhanced, professional-grade experience, featuring advanced scans, automation capabilities, and more insights tailored for robust security requirements.
31
+
32
+ ### 🔓 Try the Free Version, Upgrade for More
33
+
34
+ This open-source edition gives you access to basic but valuable security scanning capabilities. For a more comprehensive experience, consider exploring Sentinel’s [monthly subscription plans](https://sentinel.rebackk.xyz), offering:
35
+
36
+ - **Enhanced Vulnerability Coverage**: Access to additional checks for deeper and broader vulnerability scanning.
37
+
38
+ - **Automated Scanning**: Schedule scans regularly to maintain your application’s security posture.
39
+
40
+ - **Premium Support**: Get priority assistance from our expert team.
41
+
42
+ - **Advanced Reporting and Analytics**: Gain in-depth insights into vulnerabilities and potential risks.
43
+
44
+ - **Integration Options**: Connect seamlessly with CI/CD pipelines, DevOps tools, and cloud services.
45
+
46
+ The free, open-source version of Sentinel is perfect for getting started, but when you’re ready for more power, our [paid plans](https://sentinel.rebackk.xyz) are here to take your security to the next level!
47
+
48
+ Happy Scanning! 🛡️
49
+
50
+ ## Contributing 🤝
51
+ If you want to help us building the best status page and alerting system, you can check our [contributing guidelines](./CODE_OF_CONDUCT.md)
52
+
53
+ ---
54
+
55
+ **This is a work in progress project**