Skip to content

Update SECURITY.md#45

Merged
LCSOGthb merged 1 commit into
mainfrom
LCSOGthb-patch-1
May 24, 2026
Merged

Update SECURITY.md#45
LCSOGthb merged 1 commit into
mainfrom
LCSOGthb-patch-1

Conversation

@LCSOGthb

@LCSOGthb LCSOGthb commented May 24, 2026

Copy link
Copy Markdown
Owner

Summary by Sourcery

Update the documented security support policy and vulnerability reporting instructions in SECURITY.md.

Documentation:

  • Replace the version-specific support matrix with a simplified policy stating all versions are supported.
  • Add a brief section directing users to report vulnerabilities via the issue tracker.

@vercel

vercel Bot commented May 24, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
games Error Error May 24, 2026 12:43am

@sourcery-ai

sourcery-ai Bot commented May 24, 2026

Copy link
Copy Markdown
Reviewer's guide (collapsed on small PRs)

Reviewer's Guide

Refactors SECURITY.md to use a simplified, standardized security policy format that marks all versions as supported and adds a brief vulnerability reporting section.

File-Level Changes

Change Details Files
Reformat and simplify the security policy documentation, updating supported version information and adding a vulnerability reporting section.
  • Replace the introductory paragraph with a "Security Policy" heading
  • Convert the supported versions list to a markdown table and mark all versions as supported
  • Remove granular version-specific support details in favor of a single "All" versions entry
  • Add a new "Reporting a Vulnerability" section with brief instructions to report via Issues
SECURITY.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@difflens

difflens Bot commented May 24, 2026

Copy link
Copy Markdown

View changes in DiffLens

@netlify

netlify Bot commented May 24, 2026

Copy link
Copy Markdown

Deploy Preview for lsngames ready!

Name Link
🔨 Latest commit 49dd66a
🔍 Latest deploy log https://app.netlify.com/projects/lsngames/deploys/6a1249c3141d480008b2943d
😎 Deploy Preview https://deploy-preview-45--lsngames.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@qodo-code-review

Copy link
Copy Markdown

Review Summary by Qodo

Restructure SECURITY.md with markdown formatting

📝 Documentation

Grey Divider

Walkthroughs

Description
• Restructured SECURITY.md with markdown formatting
• Changed version support table to markdown format
• Simplified version support to show all versions supported
• Added vulnerability reporting section with link
Diagram
flowchart LR
  A["Old SECURITY.md<br/>Plain text format<br/>Multiple versions listed"] -- "Restructure" --> B["New SECURITY.md<br/>Markdown format<br/>All versions supported<br/>Vulnerability reporting added"]

Loading

File Changes

1. SECURITY.md 📝 Documentation +11/-8

Restructure security policy with markdown formatting

• Converted plain text security policy to markdown format with proper headings
• Replaced version table with markdown table format
• Changed version support policy from granular versioning to supporting all versions
• Added new "Reporting a Vulnerability" section with link to Issues

SECURITY.md


Grey Divider

Qodo Logo

@difflens

difflens Bot commented May 24, 2026

Copy link
Copy Markdown

View changes in DiffLens

@qodo-code-review

qodo-code-review Bot commented May 24, 2026

Copy link
Copy Markdown

Code Review by Qodo

🐞 Bugs (2) 📘 Rule violations (0)

Grey Divider


Action required

1. Public vuln reporting path 🐞 Bug ⛨ Security
Description
SECURITY.md’s only reporting guidance is the malformed text “Go to Issues Report a Vulnerability”
and it does not provide a private disclosure channel, which can lead to public vulnerability
disclosure. This makes responsible disclosure hard/impossible for reporters to follow.
Code

SECURITY.md[R9-11]

Evidence
The policy provides no concrete private reporting method; it explicitly mentions “Issues” as the
reporting destination, and the repo’s README highlights Issues as a primary channel, increasing the
likelihood of public disclosure.

SECURITY.md[9-11]
README.md[1-6]

Agent prompt
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution

## Issue description
`SECURITY.md` currently provides an incomplete instruction (“Go to Issues Report a Vulnerability”) and does not include a private disclosure mechanism. This can cause reporters to file public issues for security vulnerabilities.

## Issue Context
The repository surfaces GitHub Issues prominently, so directing security reports to “Issues” is risky without explicit private-reporting guidance.

## Fix Focus Areas
- SECURITY.md[9-11]

## Suggested change
Update the “Reporting a Vulnerability” section to include a private reporting path (and make it an actual link), e.g.:
- Direct users to GitHub’s private vulnerability reporting: `Security` tab → `Report a vulnerability` (or link to the repository’s `/security/advisories/new` page).
- Optionally include a security contact email and an expectation for acknowledgement/response timelines.
- Explicitly state: “Please do not open a public GitHub issue for security vulnerabilities.”

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools



Remediation recommended

2. Vague supported versions 🐞 Bug ≡ Correctness
Description
SECURITY.md states that “All” versions are supported, which is not actionable and does not tell
users which released versions actually receive security fixes. This can cause users to rely on
unsupported versions expecting security updates.
Code

SECURITY.md[R5-7]

Evidence
The security policy’s supported-versions section is a single broad claim (“All”), while the
repository is explicitly versioned, implying that the policy needs to distinguish which versions get
updates.

SECURITY.md[3-8]
package.json[1-4]

Agent prompt
The issue below was found during a code review. Follow the provided context and guidance below and implement a solution

## Issue description
The supported-versions table claims “All” versions are supported, which does not define a real support policy for users choosing versions.

## Issue Context
The project is versioned, so a security policy should specify which versions/branches receive security updates (e.g., latest minor only, latest release only, or a defined set of supported release lines).

## Fix Focus Areas
- SECURITY.md[3-8]

## Suggested change
Replace the single “All” row with a concrete policy, such as:
- A table of supported release lines (e.g., `0.1.x`, `0.0.x`), OR
- A branch-based policy if you do not publish releases (e.g., “Only `main` is supported”), OR
- “Latest stable release only” if that matches your process.
Ensure the table reflects how you actually ship and patch versions.

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools


Grey Divider

Qodo Logo

@coderabbitai

coderabbitai Bot commented May 24, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Summary by CodeRabbit

  • Documentation
    • Restructured security policy with dedicated sections for supported versions and vulnerability reporting.
    • Updated version support information and clarified the vulnerability reporting process.

Walkthrough

This PR restructures the SECURITY.md file to follow a standard security policy format. The document now includes dedicated sections for "Supported Versions" (presented as a Markdown table indicating all versions are supported) and "Reporting a Vulnerability" (with updated guidance directing to "Issues Report a Vulnerability"), replacing the previous version-by-version support matrix.

Changes

Security Policy Document Restructure

Layer / File(s) Summary
Security policy restructuring
SECURITY.md
The security policy file was rewritten with standard headings and a Markdown table format for supported versions, replacing the previous plain-text version ranges and updating vulnerability reporting guidance.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~2 minutes

Poem

🐰 A policy reshaped so neat,
With tables and structure complete,
All versions embraced in a row,
Security guidance aglow! ✨

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Title check ✅ Passed The title 'Update SECURITY.md' accurately describes the main change in the pull request, which is updating the SECURITY.md file with revised security policy and vulnerability reporting instructions.
Description check ✅ Passed The description clearly explains the changes made to SECURITY.md, including replacing the version-specific support matrix and adding vulnerability reporting instructions, which aligns with the changeset.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch LCSOGthb-patch-1
✨ Simplify code
  • Create PR with simplified code
  • Commit simplified code in branch LCSOGthb-patch-1

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@difflens

difflens Bot commented May 24, 2026

Copy link
Copy Markdown

View changes in DiffLens

@what-the-diff

what-the-diff Bot commented May 24, 2026

Copy link
Copy Markdown

PR Summary

  • Title Update for Document
    The document title has been modified to "Security Policy" for better clarification. This can help users understand its purpose at a glance.

  • Format Shift in Supported Versions Section
    The section detailing the supported versions has been modified to use a table format now. It also prominently indicates that all existing versions are supported. This upgrade can facilitate easier reading and comprehension of the information.

  • Added new Section for Vulnerability Reporting
    A new section has been added that guides users on how to report vulnerabilities. A convenient link directs them straight to the Issues page. This enhances our security transparency and invites community participation in keeping the software robust and safe.

@codescene-delta-analysis codescene-delta-analysis Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No application code in the PR — skipped Code Health checks.

See analysis details in CodeScene

Quality Gate Profile: Pay Down Tech Debt
Install CodeScene MCP: safeguard and uplift AI-generated code. Catch issues early with our IDE extension and CLI tool.

@codacy-production

Copy link
Copy Markdown

Not up to standards ⛔

🔴 Issues 1 minor

Alerts:
⚠ 1 issue (≤ 0 issues of at least minor severity)

Results:
1 new issue

Category Results
BestPractice 1 minor

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've found 1 issue

Prompt for AI Agents
Please address the comments from this code review:

## Individual Comments

### Comment 1
<location path="SECURITY.md" line_range="11" />
<code_context>
+
+## Reporting a Vulnerability
+
+Go to Issues Report a Vulnerability
</code_context>
<issue_to_address>
**suggestion (typo):** Clarify the vulnerability reporting instruction sentence.

The wording reads incomplete. Please rephrase to make the steps explicit, e.g. "Go to **Issues > Report a vulnerability**" or "Go to Issues and select **Report a vulnerability**" so the instruction is grammatically clear.
</issue_to_address>

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

Comment thread SECURITY.md

## Reporting a Vulnerability

Go to Issues Report a Vulnerability

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion (typo): Clarify the vulnerability reporting instruction sentence.

The wording reads incomplete. Please rephrase to make the steps explicit, e.g. "Go to Issues > Report a vulnerability" or "Go to Issues and select Report a vulnerability" so the instruction is grammatically clear.

@devin-ai-integration devin-ai-integration Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Devin Review found 1 potential issue.

Open in Devin Review

Comment thread SECURITY.md

## Reporting a Vulnerability

Go to Issues Report a Vulnerability

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 Info: Vulnerability reporting instructions lack actionable link or detail

The new vulnerability reporting text at line 11 reads Go to Issues Report a Vulnerability, which is vague — it doesn't include an actual URL, a link to the GitHub Issues tab, or instructions on how to privately report a vulnerability. The previous version also lacked this detail, but since the section is being rewritten, it would be worth making this actionable (e.g., linking to the repo's Issues page or using GitHub's private vulnerability reporting feature).

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

@deepsource-io

deepsource-io Bot commented May 24, 2026

Copy link
Copy Markdown

DeepSource Code Review

We reviewed changes in ec90d52...49dd66a on this pull request. Below is the summary for the review, and you can see the individual issues we found as inline review comments.

See full review on DeepSource ↗

PR Report Card

Overall Grade   Security  

Reliability  

Complexity  

Hygiene  

Code Review Summary

Analyzer Status Updated (UTC) Details
JavaScript May 24, 2026 12:43a.m. Review ↗
Python May 24, 2026 12:43a.m. Review ↗
Rust May 24, 2026 12:43a.m. Review ↗
Secrets May 24, 2026 12:43a.m. Review ↗
Ruby May 24, 2026 12:43a.m. Review ↗
Shell May 24, 2026 12:43a.m. Review ↗
Scala May 24, 2026 12:43a.m. Review ↗
SQL May 24, 2026 12:43a.m. Review ↗
Terraform May 24, 2026 12:43a.m. Review ↗
Code coverage May 24, 2026 12:43a.m. Review ↗
Swift May 24, 2026 12:43a.m. Review ↗
C & C++ May 24, 2026 12:43a.m. Review ↗
C# May 24, 2026 12:43a.m. Review ↗
Ansible May 24, 2026 12:43a.m. Review ↗

Important

AI Review is run only on demand for your team. We're only showing results of static analysis review right now. To trigger AI Review, comment @deepsourcebot review on this thread.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates the SECURITY.md file to a new format, simplifying the supported versions table and adding a section for reporting vulnerabilities. A review comment suggests improving the reporting instructions by providing a clearer path to the repository's Security tab, as the current text is incomplete and lacks a functional link.

Comment thread SECURITY.md

## Reporting a Vulnerability

Go to Issues Report a Vulnerability

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

security-medium medium

The instruction for reporting a vulnerability is incomplete and lacks a functional link. It is recommended to provide a clear path, such as a link to the repository's security advisories page, to ensure that security issues are reported through the appropriate channels.

Suggested change
Go to Issues Report a Vulnerability
Please report vulnerabilities via the Security tab of this repository.

@kilo-code-bot

kilo-code-bot Bot commented May 24, 2026

Copy link
Copy Markdown

Code Review Summary

Status: No Issues Found | Recommendation: Merge

Files Reviewed (1 file)
  • SECURITY.md - Documentation format and content changes

Reviewed by laguna-m.1-20260312:free · 116,984 tokens

Comment thread SECURITY.md
Comment on lines +9 to +11
## Reporting a Vulnerability

Go to Issues Report a Vulnerability

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Action required

1. Public vuln reporting path 🐞 Bug ⛨ Security

SECURITY.md’s only reporting guidance is the malformed text “Go to Issues Report a Vulnerability”
and it does not provide a private disclosure channel, which can lead to public vulnerability
disclosure. This makes responsible disclosure hard/impossible for reporters to follow.
Agent Prompt
## Issue description
`SECURITY.md` currently provides an incomplete instruction (“Go to Issues Report a Vulnerability”) and does not include a private disclosure mechanism. This can cause reporters to file public issues for security vulnerabilities.

## Issue Context
The repository surfaces GitHub Issues prominently, so directing security reports to “Issues” is risky without explicit private-reporting guidance.

## Fix Focus Areas
- SECURITY.md[9-11]

## Suggested change
Update the “Reporting a Vulnerability” section to include a private reporting path (and make it an actual link), e.g.:
- Direct users to GitHub’s private vulnerability reporting: `Security` tab → `Report a vulnerability` (or link to the repository’s `/security/advisories/new` page).
- Optionally include a security contact email and an expectation for acknowledgement/response timelines.
- Explicitly state: “Please do not open a public GitHub issue for security vulnerabilities.”

ⓘ Copy this prompt and use it to remediate the issue with your preferred AI generation tools

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 2

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@SECURITY.md`:
- Around line 5-7: Update SECURITY.md to replace the ambiguous "All" entry in
the supported-versions table with the actual supported version range or a clear
justification that every historical release is supported (edit the table header
"Version | Supported" and the row currently showing "All | :white_check_mark:"),
and correct the vulnerability reporting instructions by adding a clear, linked
action (for example "Report a Vulnerability" linking to the Issues page or a
dedicated security contact) and explicit steps for reporters; ensure both
changes are concise, factual, and preserve the existing table and reporting
section structure.
- Line 11: Replace the ambiguous line "Go to Issues Report a Vulnerability" with
a clear, formatted set of instructions that specifies the exact reporting path
and options: e.g., provide three distinct bulletized options titled "Report via
GitHub private vulnerability reporting", "Report via Issues", and "Report via
Security tab", each containing the precise UI action to take (e.g., "Open this
repository's Issues tab → New issue → choose 'Report a vulnerability' template"
or "Navigate to the Security tab → Report a vulnerability"), and ensure the
original phrase is removed and the new text uses proper markdown
headings/bullets and a link to a preferred contact (email or security policy)
for sensitive reports.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: ASSERTIVE

Plan: Pro

Run ID: 1d357ffc-c9b4-49c3-b0b1-fca1c68bcde2

📥 Commits

Reviewing files that changed from the base of the PR and between ec90d52 and 49dd66a.

📒 Files selected for processing (1)
  • SECURITY.md
📜 Review details
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (3)
  • GitHub Check: semgrep-cloud-platform/scan
  • GitHub Check: Codacy Static Code Analysis
  • GitHub Check: Kilo Code Review
🧰 Additional context used
🪛 GitHub Check: Codacy Static Code Analysis
SECURITY.md

[notice] 1-1: SECURITY.md#L1
Expected: [None]; Actual: # Security Policy

Comment thread SECURITY.md
Comment on lines +5 to +7
| Version | Supported |
| ------- | ------------------ |
| All | :white_check_mark: |

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | 🏗️ Heavy lift

❓ Verification inconclusive

🏁 Script executed:

#!/bin/bash
# Description: Check for version tags and release history to verify if claiming "All" versions are supported is appropriate.

# Check for version tags
echo "=== Version tags in repository ==="
git tag -l | grep -E '^v?[0-9]+\.[0-9]+' | sort -V | tail -20

echo -e "\n=== Recent releases ==="
gh release list --limit 10

echo -e "\n=== Check for version file ==="
fd -t f 'version|VERSION' | head -10

Repository: LCSOGthb/Games

Length of output: 150


Clarify “All versions supported” in SECURITY.md (and fix reporting instruction clarity)

The SECURITY.md supported-versions table now declares “All” versions as supported, which is a large security-policy change; the earlier version-specific ranges no longer appear. Repo inspection for version tags/releases/version files returned no usable indicators so far, so it’s not possible to tell whether “All” is intentional or overstated—please update the table to reflect the actual supported version/range policy (or document why every historical version is covered).

Also, the vulnerability reporting instruction (“Go to Issues Report a Vulnerability”) is still unclear and missing obvious formatting/linkage.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@SECURITY.md` around lines 5 - 7, Update SECURITY.md to replace the ambiguous
"All" entry in the supported-versions table with the actual supported version
range or a clear justification that every historical release is supported (edit
the table header "Version | Supported" and the row currently showing "All |
:white_check_mark:"), and correct the vulnerability reporting instructions by
adding a clear, linked action (for example "Report a Vulnerability" linking to
the Issues page or a dedicated security contact) and explicit steps for
reporters; ensure both changes are concise, factual, and preserve the existing
table and reporting section structure.

Comment thread SECURITY.md

## Reporting a Vulnerability

Go to Issues Report a Vulnerability

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟠 Major | ⚡ Quick win

Clarify the vulnerability reporting instructions.

The current instruction "Go to Issues Report a Vulnerability" is ambiguous and lacks proper formatting. It's unclear whether this refers to a GitHub tab, a button, or a specific workflow.

📝 Suggested improvements

Option 1: If using GitHub's private vulnerability reporting feature:

-Go to Issues Report a Vulnerability
+To report a vulnerability, please use GitHub's [private vulnerability reporting feature](https://github.com/LCSOGthb/Games/security/advisories/new).

Option 2: If reporting via Issues:

-Go to Issues Report a Vulnerability
+Please report vulnerabilities by [creating a new issue](https://github.com/LCSOGthb/Games/issues/new) with the "Report a Vulnerability" template.

Option 3: If directing to the Security tab:

-Go to Issues Report a Vulnerability
+To report a vulnerability, navigate to the [Security](https://github.com/LCSOGthb/Games/security) tab and click "Report a vulnerability".
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@SECURITY.md` at line 11, Replace the ambiguous line "Go to Issues Report a
Vulnerability" with a clear, formatted set of instructions that specifies the
exact reporting path and options: e.g., provide three distinct bulletized
options titled "Report via GitHub private vulnerability reporting", "Report via
Issues", and "Report via Security tab", each containing the precise UI action to
take (e.g., "Open this repository's Issues tab → New issue → choose 'Report a
vulnerability' template" or "Navigate to the Security tab → Report a
vulnerability"), and ensure the original phrase is removed and the new text uses
proper markdown headings/bullets and a link to a preferred contact (email or
security policy) for sensitive reports.

@LCSOGthb LCSOGthb merged commit 1a2c969 into main May 24, 2026
41 of 48 checks passed
@LCSOGthb LCSOGthb deleted the LCSOGthb-patch-1 branch May 24, 2026 01:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant