Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve CodeQL query alert 57 #6479

Closed
8 of 11 tasks
Tracked by #5159
roslynwythe opened this issue Mar 20, 2024 · 4 comments · Fixed by #6536
Closed
8 of 11 tasks
Tracked by #5159

Resolve CodeQL query alert 57 #6479

roslynwythe opened this issue Mar 20, 2024 · 4 comments · Fixed by #6536
Assignees
Labels
Complexity: Medium Feature: Code Alerts role: back end/devOps Tasks for back-end developers role: front end Tasks for front end developers size: 1pt Can be done in 4-6 hours
Milestone

Comments

@roslynwythe
Copy link
Member

roslynwythe commented Mar 20, 2024

Prerequisite

  1. Be a member of Hack for LA. (There are no fees to join.) If you have not joined yet, please follow the steps on our Getting Started page.
  2. Before you claim or start working on an issue, please make sure you have read our How to Contribute to Hack for LA Guide.

Overview

We need to analyze the query "Use of returnless function" which appears in the CodeQL alert 57 then either recommend dismissal of the alert or update code to resolve the alert.

Action Items

  • DO NOT DISMISS ANY ALERTS. Dismissal of alerts should be done by dev leads only after review of the recommendation
  • Browse to the links in the following two Action Item and read the contents. Click "See More" to view Recommendations, Examples and References.
  • https://github.com/hackforla/website/security/code-scanning/57
  • In a comment in this issue, add your analysis and recommendations. For each alert, the recommendation can be one of the following: dismiss as test, dismiss as false positive, dismiss as won't fix, or update code.
  • If the recommendation is to update code:
    • create an issue branch and proceed with the code update
    • Use docker to test locally, ensuring that there are no changes to any affected webpage(s)
    • proceed with pull request in the usual manner
  • If the recommendation is to dismiss, describe your reason for dismissal in the comment, then move the issue to Questions/In Review and apply the label ready for dev lead.

For merge team/dev lead

Resources/Instructions

@roslynwythe roslynwythe added Feature Missing This label means that the issue needs to be linked to a precise feature label. size: missing role missing Complexity: Missing labels Mar 20, 2024

This comment was marked as outdated.

@roslynwythe roslynwythe added Complexity: Medium size: 1pt Can be done in 4-6 hours Feature: Code Alerts role: front end Tasks for front end developers role: back end/devOps Tasks for back-end developers Ready for Prioritization and removed size: missing role missing Complexity: Missing Feature Missing This label means that the issue needs to be linked to a precise feature label. labels Mar 20, 2024
@ExperimentsInHonesty ExperimentsInHonesty added this to the 02. Security milestone Mar 24, 2024
@aqandrew aqandrew self-assigned this Mar 27, 2024
Copy link

Hi @aqandrew, thank you for taking up this issue! Hfla appreciates you :)

Do let fellow developers know about your:-
i. Availability: (When are you available to work on the issue/answer questions other programmers might have about your issue?)
ii. ETA: (When do you expect this issue to be completed?)

You're awesome!

P.S. - You may not take up another issue until this issue gets merged (or closed). Thanks again :)

@aqandrew
Copy link
Member

Availability:

  • Wednesday 3/27 10am-3pm
  • Thursday 3/28 9am-5pm
  • Friday 3/29 9am-5pm

ETA: EOD Friday 3/29

@aqandrew
Copy link
Member

aqandrew commented Mar 27, 2024

Analysis

addEventListener's second parameter is typically a function (MDN). Because the insertEventSchedule function lacks a return statement, calling it inline in right-col-content.js with args in parentheses executes immediately but returns undefined.

Recommendation

update code

Wrap the function call to insertEventSchedule with its arguments in an anonymous function:

  document.addEventListener(
    "DOMContentLoaded",
    () => { insertEventSchedule(eventData, "events"); }
  );

Testing

This update should be tested on every page that imports right-col-content.js:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Complexity: Medium Feature: Code Alerts role: back end/devOps Tasks for back-end developers role: front end Tasks for front end developers size: 1pt Can be done in 4-6 hours
Development

Successfully merging a pull request may close this issue.

3 participants