
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.
github.com/abdullah-aghayan/website-screenshot
Docker-powered stateless Go API for taking screenshot from provided website
Before anything you need to have Docker and Golang installed
You can build a single container with the following command
make all
In order to increase the timeout do it as following
make all timeout="-e TIMEOUT=60"
Application will work on port 8080 so you can send a request following url
example
http://127.0.0.1:8080/screenshot?url=http://google.com
(this part not tested yet)
To scale the application you can use docker-compose scaling feature
docker-compose file
version: '3'
services:
screenshot:
image: screenshot:1.0
environment:
- TIMEOUT:30
nginx:
image: nginx:stable-alpine
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf
depends_on:
- screenshot
ports:
- "8080:8080"
nginx config
user nginx;
events {
worker_connections 1000;
}
http {
server {
listen 8080;
location / {
proxy_pass http://localhost:8080/;
}
}
}
then you can do
make scale instance=the_number_of_instance
FAQs
Unknown package
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.