Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
github.com/felipecurvelo/weather-reporting-api
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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.