
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
GNU Video Conferencing Platform
This is the final project for the CS50 Course of Harvard University.
GVCP is a web server made with NodeJS whose main purpose is to make video conferencing easier, without having to install any software or plugin, only with a compatible browser and a webcam.
GVCP uses WebRTC in order to be able to establish a full mesh connection between peers, that means that GVCP is not a typical server-client application but a application to synchronize clients for a peer to peer connection.
For more information I encourage you to see the presentation video on YouTube.
$ npm install gvcp
Install NodeJS v5.3.0+ using nvm or downloading it here:
$ nvm install v5.3.0
Install the package:
$ npm install gvcp
$ cd node_modules/gvcp
Configure the server (config/config.json):
For more info about the config file go here.
{
"debug": true,
"url": "https://localhost/",
"secure": true,
"cli": true,
"title": "GVCP",
"public_folder": "./public",
"error_template": "error.tmpl",
"cache_max_age": 604800,
"server_info": "GVCP-Server",
"stun_turn_server_api": {
"url": "https://service.xirsys.com/ice",
"ident": "[your user]",
"secret": "[your secret token]",
"domain": "[your domain]",
"application": "[your app name]",
"room": "[your room name]",
"secure": 1
},
"room_capacity": 4
}
Build the js files:
NOTE: This must be done every time the config file or any JavaScript template are modified.
$ npm run build
Start the server:
$ npm start
FAQs
GNU Video Conferencing Platform
We found that gvcp 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
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.