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
| #!/usr/bin/env bash | |
| echo "🔍 Scanning for compromised NPM packages..." | |
| # Define compromised packages and versions | |
| declare -A compromised=( | |
| [ansi-regex]="6.2.1" | |
| [ansi-styles]="6.2.2" | |
| [backslash]="0.2.1" | |
| [chalk]="5.6.1" |
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
| { | |
| "name": "CIDOO V65", | |
| "vendorId": "0x1EA7", | |
| "productId": "0x7777", | |
| "lighting": { | |
| "extends": "qmk_rgblight", | |
| "underglowEffects": [ | |
| [ | |
| "OFF_MODE", | |
| 0 |
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
| // Hijacking Engagebay HTML form submission redirection | |
| // By: Luong Ngoc Minh | |
| // Usage: Replace the original form submit function, for custom form with dedicated Submit button, not for embeded form | |
| function onSubmit(e, t) { | |
| e.preventDefault(); | |
| window.EhForm.redirect_to_url = function(a, f, i, b) { | |
| var g = f; | |
| try { | |
| g = JSON.parse(f); | |
| } catch (h) { |