
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
cors-for-lambda
Advanced tools
"cors-for-lambda", is designed to apply CORS Headers for Lambda HTTP responses.
To get started with this project, clone the repository and install the necessary dependencies.
const cors = require("cors-for-lambda");
exports.handler = async (event) => {
const response = {
statusCode: 200,
body: JSON.stringify("Hello from Lambda!"),
};
return cors.corsResponse(response, "*");
};
for multiples sites:
const cors = require("cors-for-lambda");
exports.handler = async (event) => {
const response = {
statusCode: 200,
body: JSON.stringify("Hello from Lambda!"),
};
return cors.corsResponse(
response,
"https://example.com",
"https://example2.com"
);
};
Or
const { responseHeader } = require("cors-for-lambda");
exports.handler = async (event) => {
const response = {
statusCode: 200,
headers: responseHeader("https://example.com", "https://example2.com"),
body: JSON.stringify("Hello from Lambda!"),
};
return response;
};
Contributions are welcome. Please feel free to open an issue or submit a pull request.
This project is licensed under the MIT License.
FAQs
Apply CORS Headers for Lambda HTTP responses
We found that cors-for-lambda 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.