
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@universis/profiles
Advanced tools
Negotiating profiles against universis api server
This plugin of universis api server implements content negotiation as described in document https://www.w3.org/TR/dx-prof-conneg/#introduction
Register @universis/profiles#ProfileService in application services:
"services": [
...,
{
"serviceType": "@universis/profiles#ProfileService"
}
]
Configure CORS to expose Link header:
"settings": {
...
"cors": {
"exposedHeaders": [
"Link"
],
"methods": "GET,HEAD,OPTIONS,PUT,PATCH,POST,DELETE"
}
}
Get all the available student profiles for the context user:
curl --location --head 'http://localhost:5001/api/students/me' \
--header 'Authorization: Bearer a-valid-access-token'
This operation is important when a user is connected with more than one student records e.g. an undergraduate and a postgraduate program of studies.
The response header Link contains the available student profiles:
<http://localhost:5001/api/students/me>;rel="canonical";type="application/json";profile="urn:universis:student:profile:33456111";title="Undergraduate study program A",
<http://localhost:5001/api/students/me>;rel="alternate";type="application/json";profile="urn:universis:student:profile:22445523";title="Postgraduate study program B"
Use Accept-Profile request header to get a resource for a specific profile:
curl --location --request GET 'http://localhost:5001/api/students/me' \
--header 'Accept-Profile: urn:universis:student:profile:22445523' \
--header 'Authorization: Bearer a-valid-access-token'
FAQs
Universis api profile negotiator
We found that @universis/profiles 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.