Fix security vulnerabilities to resolve browser warnings - #1
Open
cloudwindcc wants to merge 2 commits into
Open
Conversation
This commit addresses several issues that were causing the website to be flagged as a "Deceptive Site" by browsers like Google Chrome. The primary fixes include: - Removing the fake login page (`login.html`) which used client-side JavaScript to simulate a login process, a common phishing pattern. - Removing all associated login functionality from `choice-algorithms.html` and making all content accessible by default. - Removing non-functional AI features from `decision-tools.html` that included client-side handling of an API key, which is a major security risk. - Replacing a QR code that linked to an external social media contact with a standard `mailto:` link on the main page (`index.html`). - Removing a broken link to a non-existent subdomain. These changes remove deceptive patterns and insecure code, making the website safer for users and compliant with web security best practices.
Deploying daxuanze with
|
| Latest commit: |
93ca4ad
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://3d18bc89.daxuanze.pages.dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit addresses several issues that were causing the website to be flagged as a "Deceptive Site" by browsers like Google Chrome.
The primary fixes include:
login.html) which used client-side JavaScript to simulate a login process, a common phishing pattern.choice-algorithms.htmland making all content accessible by default.decision-tools.htmlthat included client-side handling of an API key, which is a major security risk.mailto:link on the main page (index.html).These changes remove deceptive patterns and insecure code, making the website safer for users and compliant with web security best practices.