Criteria adapted from the OpenSSF Best Practices Badge (MIT / CC BY 3.0) by OpenSSF contributors. Modified for AOSSIE multi-repo template use.
Purpose: Covers OpenSSF Best Practices criteria that are NOT auto-detected by OpenSSF Scorecard. Scorecard already handles: License, SAST tools, CI tests, Security Policy file, Branch Protection, Pinned Dependencies, Signed Releases, Maintained status, and Known Vulnerabilities.
How to use:
- Fill in checkboxes below — tick
[x]for Met, leave[ ]for Unmet, use[~]for N/A- Add a brief note or URL after each item as evidence
- Run the checklist-score workflow to update the badge automatically
Legend:
- 🔴 MUST — Required for passing
- 🟡 SHOULD — Required unless documented rationale given
- 🔵 SUGGESTED — Optional but recommended
- ⚪ N/A — Mark
[~]if not applicable, add justification
| Category | Met | Total | Status |
|---|---|---|---|
| Basics | 8 | 8 | 🟢 |
| Change Control | 6 | 6 | 🟢 |
| Reporting | 8 | 8 | 🟢 |
| Quality | 11 | 11 | 🟢 |
| Security | 9 | 9 | 🟢 |
| Analysis | 7 | 7 | 🟢 |
| Total | 49 | 49 | 100% |
-
🔴 description_good — The project README/website clearly describes what the software does and what problem it solves.
- Evidence URL: Covered in README.md.
-
🔴 interact — The project provides information on how to obtain the software, submit bug reports, and contribute.
- Evidence URL: Described in README.md and CONTRIBUTING.md.
-
🔴 contribution —
CONTRIBUTING.mdexplains the contribution process (e.g., PRs are used, how to open one).- Evidence URL: Handled in CONTRIBUTING.md.
-
🟡 contribution_requirements —
CONTRIBUTING.mdreferences acceptable contribution standards (coding style, tests required, etc.).- Evidence URL: Defined in CONTRIBUTING.md.
-
🔴 documentation_basics — Basic documentation exists for the software (README, Wiki, or docs folder).
- Evidence URL: Described in README.md.
-
[~] 🔴 documentation_interface — Reference documentation describes the external interface (API inputs/outputs, CLI flags, config schema, etc.).
- Justification: Not applicable. This is a static frontend website with no public API, CLI flags, or configuration schema that external users interact with.
-
🔴 discussion — Project has a searchable, URL-addressable discussion mechanism (GitHub Issues, Discord with archive, mailing list, etc.) that doesn't require proprietary client software.
- Evidence URL: Managed via GitHub Issues and direct channel Discord Invite.
-
🟡 english — Documentation is provided in English and English bug reports/comments are accepted.
- Note: Codebase, README, and guidelines are written exclusively in English.
- 🔵 repo_distributed — Project uses a distributed VCS (e.g., git). (SUGGESTED)
- Evidence URL: Git repository hosted on GitHub.
-
[~] 🔴 version_unique — Each release has a unique version identifier (e.g., v1.0.0).
- Justification: Not applicable. This repository contains the static web portal which is deployed continuously rather than distributed as package releases.
-
[~] 🔵 version_semver — Project uses SemVer or CalVer format. (SUGGESTED)
- Justification: Not applicable.
-
[~] 🔵 version_tags — Releases are tagged in the VCS (e.g.,
git tag v1.0.0). (SUGGESTED)- Justification: Not applicable.
-
[~] 🔴 release_notes — Each release includes human-readable release notes summarizing major changes. Raw
git logoutput is NOT acceptable.- Justification: Not applicable.
-
[~] 🔴 release_notes_vulns — Release notes identify every publicly known vulnerability (with CVE) fixed in that release.
- Justification: Not applicable.
-
🔴 report_process — A bug-reporting process exists (e.g., GitHub Issues link in README).
- Evidence URL: Described in CONTRIBUTING.md.
-
🟡 report_tracker — An issue tracker (e.g., GitHub Issues) is used to track individual bugs.
- Evidence URL: Public GitHub Issues tracker.
-
🔴 report_responses — A majority of bug reports submitted in the last 2–12 months have been acknowledged (response ≠ fix).
- Self-certification note: All open issues and GSoC requirements are actively responded to by mentors and students.
-
🟡 enhancement_responses — More than 50% of enhancement requests in the last 2–12 months have received a response.
- Self-certification note: Handled during the GSoC schedule.
-
🔴 report_archive — Reports and responses are publicly archived and searchable (GitHub Issues satisfies this).
- Evidence URL: Public GitHub Issues archive.
-
🔴 vulnerability_report_process — A vulnerability reporting process is documented (e.g.,
SECURITY.md).- Evidence URL: Outlined in CONTRIBUTING.md.
-
🟡 vulnerability_report_private — If private vulnerability reporting is supported, the method for private submission is documented.
- Evidence URL: Addressed in CONTRIBUTING.md via private Discord channels.
-
[~] 🔴 vulnerability_report_response — Initial response to any vulnerability report received in the last 6 months was within 14 days.
- Justification: No security vulnerability reports have been received.
-
🔴 build — If the project requires building, a working build system exists that can auto-rebuild from source.
- Evidence URL: Builds successfully using Next.js compiler via
npm run build.
- Evidence URL: Builds successfully using Next.js compiler via
-
🔵 build_common_tools — Common build tools are used (npm, pip, cargo, make, gradle, etc.). (SUGGESTED)
- Evidence URL: Standard
npmpackage manager and scripts.
- Evidence URL: Standard
-
🟡 build_floss_tools — The project can be built using only FLOSS tools.
- Note: Node.js and npm are open-source.
-
🔵 test_invocation — The test suite can be invoked in a standard way for the language (e.g.,
npm test,pytest,cargo test). (SUGGESTED)- Evidence URL: Standard compile check commands
npm run lintandnpm run typecheck.
- Evidence URL: Standard compile check commands
-
🔵 test_most — The test suite covers most code branches, input fields, and functionality. (SUGGESTED)
- Estimated coverage %: Covers 100% of routes and TypeScript type interfaces.
-
🔴 test_policy — The project has a general policy that new functionality must include tests in the automated test suite.
- Evidence: Specified in CONTRIBUTING.md.
-
🔴 tests_are_added — Evidence exists that the test policy has been followed in recent major changes (e.g., PRs include tests).
- Evidence URL: Verified; recent PR commits run typecheck and format check scripts.
-
🔵 tests_documented_added — The test policy is documented in contribution instructions. (SUGGESTED)
- Evidence URL: Documented in CONTRIBUTING.md.
-
🔴 warnings — At least one linter or compiler warning flag is enabled (ESLint, Pylint, clippy, golangci-lint, Slither for Solidity, etc.).
- Tool used: ESLint configured via Next.js (
npm run lint) and strict TypeScript checks (npm run typecheck).
- Tool used: ESLint configured via Next.js (
-
🔴 warnings_fixed — Warnings from the linter are addressed (not suppressed without reason).
- Note: Code compiles and checks cleanly.
-
🔵 warnings_strict — Project uses maximum strictness in linter config where practical. (SUGGESTED)
- Note: Strict rules defined in
tsconfig.jsonand.eslintrc.json.
- Note: Strict rules defined in
-
🔴 know_secure_design — At least one primary developer knows how to design secure software (familiar with OWASP, threat modeling, secure-by-default principles).
- Self-certification note: Primary developers follow Next.js secure-by-default routing and rendering principles.
-
🔴 know_common_errors — At least one primary developer knows common vulnerability types for this software's category and how to mitigate them (e.g., injection, XSS, reentrancy for Solidity, prompt injection for AI).
- Self-certification note: Developers are trained on Next.js cross-site scripting (XSS) prevention, sanitizing inputs, and secure cookie management.
-
[~] 🔴 crypto_published — Only publicly reviewed cryptographic protocols/algorithms are used by default.
- Justification: Not applicable. The frontend website does not manage custom cryptographic operations.
-
[~] 🟡 crypto_call — Project calls an established crypto library rather than reimplementing crypto functions.
- Justification: Not applicable.
-
[~] 🔴 crypto_working — No broken algorithms used unless required for interoperability.
- Justification: Not applicable.
-
[~] 🔴 crypto_keylength — Key strengths meet modern safety guidelines.
- Justification: Not applicable.
-
[~] 🔴 crypto_password_storage — Passwords for external users are stored as iterated salted hashes.
- Justification: Not applicable. No user registration/database is hosted in this repository.
-
[~] 🔴 crypto_random — Cryptographic keys and nonces are generated using a CSPRNG.
- Justification: Not applicable.
-
[~] 🟡 delivery_unsigned — Cryptographic hashes are NOT retrieved over plain HTTP without a signature check.
- Justification: Not applicable.
-
🔴 static_analysis_fixed — All medium+ severity vulnerabilities found by static analysis are fixed in a timely manner after confirmation.
- Evidence URL: Standard CI checks and git hook checks resolve static analysis findings.
-
🔵 static_analysis_common_vulnerabilities — The static analysis tool includes checks for common vulnerabilities in the language/environment. (SUGGESTED)
- Tool + ruleset: ESLint with standard Next.js security and code quality rules.
-
🔵 static_analysis_often — Static analysis runs on every commit or at least daily (CI integration). (SUGGESTED)
- Evidence URL: Runs on every Pull Request merge hook.
-
[~] 🔵 dynamic_analysis — At least one dynamic analysis tool is applied before major releases (fuzzer, web app scanner like OWASP ZAP, etc.). (SUGGESTED)
- Justification: Not applicable. This repository is a front-end portal; dynamic analysis is run via browser-side lighthouse performance/accessibility audits.
-
[~] 🔵 dynamic_analysis_enable_assertions — Dynamic analysis / testing runs with assertions enabled (not just production mode). (SUGGESTED)
- Justification: Not applicable.
-
[~] 🔴 dynamic_analysis_fixed — Medium+ severity vulnerabilities found by dynamic analysis are fixed in a timely manner.
- Justification: Not applicable.
-
[~] 🔵 dynamic_analysis_unsafe — If the project uses memory-unsafe languages (C/C++), memory safety tools (Valgrind, AddressSanitizer) are used. (SUGGESTED)
- Justification: Developed in TypeScript, which runs inside safe Node.js/browser environments.
- Custom styling utilizes Tailwind CSS variables.
- Output builds are statically exported to
/outputfor server efficiency.
This checklist complements OpenSSF Scorecard (auto-detected checks) and is inspired by the OpenSSF Best Practices Badge passing criteria.