
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
qourier-module-v0-lighthouse-web3
Advanced tools
Encrypting a random number in IPFS and sharing the right to view it to another address.
Encrypting a random number in IPFS and sharing the right to view it to another address.
https://files.lighthouse.storage/viewFile/CID
PRIVATE_KEY="your_channel_address_secret_key"
LIGHTHOUSE_KEY="your_lighthouse_key"
PRIVATE_KEY=$PRIVATE_KEY LIGHTHOUSE_KEY=$LIGHTHOUSE_KEY qourier
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "@qourier/contracts/Hub.sol";
contract LighthouseWeb3 {
address public hub;
uint256 public price;
uint256 private id;
bytes private cid;
constructor(address hub_, uint256 price_) {
hub = hub_;
price = price_;
}
function createTask(
string memory minimum_,
string memory maximum_,
string memory cid_
) public payable {
Hub(hub).createTask4{ value: price }(
bytes32("lighthouse-web3"),
[
bytes(abi.encodePacked(msg.sender)),
bytes(minimum_),
bytes(maximum_),
bytes(cid_)
]
);
}
function completeTask(uint256 id_, bytes memory result_) external {
require(msg.sender == hub, "Only Qourier can change the state.");
id = id_;
cid = result_; // https://files.lighthouse.storage/viewFile/CID
}
function getTask() public view returns(uint256, bytes memory) {
return (id, cid);
}
}
FAQs
Encrypting a random number in IPFS and sharing the right to view it to another address.
The npm package qourier-module-v0-lighthouse-web3 receives a total of 6 weekly downloads. As such, qourier-module-v0-lighthouse-web3 popularity was classified as not popular.
We found that qourier-module-v0-lighthouse-web3 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
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.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.