
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
github.com/felipecurvelo/weather-reporting-api
Advanced tools
API building exercise
Before running the api please make sure you have Go installed. https://golang.org/doc/install
You can clone the repo using git clone or go get.
Use makefile commands to get things working:
| Command | Description |
|---|---|
make build | Build the API |
make test | Run all automated tests |
make run | Run the API |
Request:
POST http://localhost:8080/auth/
{
"name": "kirang",
"password": "secret"
}
Success Response:
{
"token": "3ac9f318f426aef056f46a9e02b69d08b8a92646"
}
Request:
POST http://localhost:8080/weather/
"Authorization": "3ac9f318f426aef056f46a9e02b69d08b8a92646"
{
"city": "vancouver",
"weather": [{
"date": "2020-04-17",
"temperature": 17
},
{
"date": "2020-04-18",
"temperature": 18
},
{
"date": "2020-05-18",
"temperature": 16
}]
}
Success Response:
{
"message": "The weather was saved succesfully!"
}
Request:
GET http://localhost:8080/weather/
"Authorization": "3ac9f318f426aef056f46a9e02b69d08b8a92646"
{
"city": "vancouver",
"initial_date": "2020-04-01",
"end_date": "2020-04-30"
}
Success Response:
{
"city": "vancouver",
"weather": [
{
"date": "2020-04-17",
"temperature": 17
},
{
"date": "2020-04-18",
"temperature": 18
}
]
}
Request:
DELETE http://localhost:8080/weather/
"Authorization": "3ac9f318f426aef056f46a9e02b69d08b8a92646"
{
"city": "vancouver"
}
Success Response:
{
"message": "The weather was deleted succesfully!"
}
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
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.