
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
color-dungeon-solver
Advanced tools
A solver for the Color Dungeon Puzzle in Zelda: Link's Awakening DX for Gameboy
A solver for the Color Dungeon Puzzle in Zelda: Link's Awakening DX for Gameboy
In Zelda: Link's Awakening DX for Gameboy Color, there are several puzzle mini-games within the main game. Your character encounters one of these puzzles inside of the Color Dungeon.
The game works as follows:
The solution is not trivial to intuit. This package uses a Depth First Search strategy to find the winning sequence of lantern hits.
If anyone has an improvement over this solution, or has a closed-form solution, please file an issue or PR!
# Using Yarn:
yarn add color-dungeon-solver
# Or, using NPM:
npm install color-dungeon-solver
import { B, R, run } from 'color-dungeon-solver'
// B means Blue, R means Red
let input = [
[B, B, B],
[B, B, B],
[B, B, R]
]
run(input).forEach((step, n) =>
console.log(`${n + 1}.`, step.toDiffString())
)
This will give the following output (the bold block is the one to hit at each step):
MIT
FAQs
A solver for the Color Dungeon Puzzle in Zelda: Link's Awakening DX for Gameboy
We found that color-dungeon-solver demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.