
Security News
Nx npm Packages Compromised in Supply Chain Attack Weaponizing AI CLI Tools
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
github.com/henriquericcio/contacts-backend-go-echo
contacts-backend-go-echo is part of "contacts" project that is an initiative where we try to explore frontend and backend implementations in order to better understand it cutting-edge features. This repository presents a golang rest API sample.
execute the remote docker image
docker run -p 8010:8010 wastingnotime/contacts-backend-go-echo
build a local docker image
docker build --tag contacts.backend.go.echo .
execute the local docker image
docker run -p 8010:8010 contacts.backend.go.echo
set environment for development
cp .env_example .env
update deps
go get -u -v
go mod tidy
and then run the application
go run .
create a new contact
curl --request POST \
--url http://localhost:8010/contacts \
--header 'Content-Type: application/json' \
--data '{
"firstName": "Albert",
"lastName": "Einstein",
"phoneNumber": "2222-1111"
}'
retrieve existing contacts
curl --request GET \
--url http://localhost:8010/contacts
more examples and details about requests on (link) *to be defined
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.
Security News
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.