
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.
studip-api
Advanced tools
This small package is not from the creators of Stud.IP. Instead it only offers limited functions for the Stud.IP API.
A library to calculate the critical path in an given precedence-diagram.
https://fireboltcasters.github.io/studip-api/
npm install studip-api
This package should help to communicate with a specific Stud.IP instance by using its REST-API. Please not the disclaimer on the bottom. Please note, that oAuth is a better form for authentification but due to restrictions to obtain the specific secrets this is some sort of workaround.
A full documentation of the official Stud.IP instance can be found here: http://docs.studip.de/develop/Entwickler/RESTAPI
npm i studip-api
import {Client} from 'studip-api';
async function userLogin() {
const domain = 'https://<yourStudIP_Domain>.de';
const username = '<username>';
const password = '<password>';
try {
const client = await Connector.getClient(domain, username, password);
// to get user informations
const user = client.getUser();
// to get the current schedule
const schedule = await client.loadSchedule();
} catch (err) {
console.log('incorrect password or other error');
}
}
This project is not officialy associated in any form with the Stud.IP product and does not claims to be part of the development.
The FireboltCasters
FAQs
This small package is not from the creators of Stud.IP. Instead it only offers limited functions for the Stud.IP API.
We found that studip-api 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.