Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
cozy-ical is a simple library to deal with the iCal format. It makes life easier to parse iCal files and to build them.
var VCalendar = require('cozy-ical').VCalendar;
var VEvent = require('cozy-ical').VEvent;
var VTodo = require('cozy-ical').VTodo;
var cal = new VCalendar('Cozy Cloud', 'Cozy Calendar');
var date = new Date(2013, 5, 9, 15, 0, 0);
var vtodo = new VTodo(date, 'jhon', 'my description');
var startDate = new Date(2013, 5, 9, 15, 0, 0);
var endDate = new Date(2013, 5, 10, 15, 0, 0);
var vevent = new VEvent(startDate, endDate, "desc", "loc", "3615");
vtodo.addAlarm(date);
cal.add(vtodo);
cal.add(vevent);
cal.toString();
output:
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Cozy Cloud//NONSGML Cozy Agenda//EN
BEGIN:VTODO
DTSTAMP:20130609T150000Z
SUMMARY:my description
UID:jhon
BEGIN:VALARM
ACTION:DISPLAY
REPEAT:1
TRIGGER:20130609T150000Z
END:VALARM
END:VTODO
BEGIN:VEVENT
DESCRIPTION:desc
DTSTART:20130609T150000Z
DTEND:20130610T150000Z
LOCATION:loc
UID:3615
END:VEVENT
END:VCALENDAR
var calString = "BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Cozy Cloud//NONSGML Cozy Agenda//EN
BEGIN:VTODO
DTSTAMP:20130609T150000Z
SUMMARY:my description
UID:john
BEGIN:VALARM
ACTION:DISPLAY
REPEAT:1
TRIGGER:20130609T150000Z
END:VALARM
END:VTODO
END:VCALENDAR";
parser = new ICalParser();
parser.parseString(calString, function(err, cal) {
console.log(cal.name);
console.log(cal.fields.PRODID);
console.log(cal.fields.subCompontents[0].name);
console.log(cal.fields.subCompontents[0].fields.SUMMARY);
});
output:
VCALENDAR
-//Cozy Cloud//NONSGML Cozy Agenda//EN
VTODO
my description
FAQs
Cozy-Ical provides ICal Parser, generators and helpers
The npm package cozy-ical receives a total of 314 weekly downloads. As such, cozy-ical popularity was classified as not popular.
We found that cozy-ical demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.