
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.
aiuptime-api
Advanced tools
let uptimeAPI = new uptimeDealerAPI({ key: 'API KEY', api: 'https://api.aiuptime.net/v1' });
let test = await uptimeAPI.test();
let createMonitor = await uptimeAPI.createMonitor({ name: 'Test Monitor', url: 'https://www.aiuptime.net', description: 'This is a test monitor' });
//deleteMonitor by monitor URL
let deleteMonitor = await uptimeAPI.deleteMonitor({ url: 'https://aiuptime.net' });
//deleteMonitor by monitor ID
let deleteMonitor = await uptimeAPI.deleteMonitor({ monitorID: '3862852262479916500' });
let getMonitors = await uptimeAPI.getMonitors();
//getMonitor by monitor URL
let getMonitor = await uptimeAPI.getMonitor({ url: 'https://www.aiuptime.net' });
//getMonitor by monitor ID
let getMonitor = await uptimeAPI.getMonitor({ monitorID: '7219057736083927000' });
//monitorUpdate by monitor URL
let monitorUpdate = await uptimeAPI.updateMonitor({ name: 'Test', url: 'https://www.aiuptime.net', description: 'This is a test monitor' });
//monitorUpdate by monitor ID
let monitorUpdate = await uptimeAPI.updateMonitor({ monitorID: '7219057736083927000', name: 'Test', description: 'This is a test monitor', url: 'https://www.aiuptime.net' });
//changeStatus by monitor URL (statusType: status or maintenance)
let changeStatus = await uptimeAPI.changeMonitorStatus({ url: 'https://www.aiuptime.net', status: true, statusType: 'status' });
//changeStatus by monitor ID (statusType: status or maintenance)
let changeStatus = await uptimeAPI.changeMonitorStatus({ monitorID: '7219057736083927000', status: false, statusType: 'maintenance' });
FAQs
AIuptime Dealer System API Module
The npm package aiuptime-api receives a total of 5 weekly downloads. As such, aiuptime-api popularity was classified as not popular.
We found that aiuptime-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers 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.