Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
chatlog-line-parser
Advanced tools
A chatlog parser that can take inputs from Discord, Slack and more!
A chatlog parser that can take inputs from Discord, Slack and more!
Currently supported services:
Discord
Slack
IRC
Telegram
Possibly other services which follow a general format.
Todo -
Please suggest some!
Chatlogs on applications, such as Discord, are difficult to export and share. This parser takes in such inputs and returns them as a message object.
A typical log would look this:
Kram10/12/2019
Why do you code???
LotusLast Sunday at 8:46 PM
Coding is fun
Sort of
KramYesterday at 8:46 PM
Youre always ranting about it...
LotusToday at 8:46 PM
Shhh I have my moments
Which should be parsed into message objects such as this:
[
{
username: "Kram",
timeStamp: "10/12/2019",
currentMessage: "Why do you code???"
},
{
username: "Lotus",
timeStamp: "Last Sunday at 8:46 PM",
currentMessage: "Coding is fun"
},
{
username: "Lotus",
timeStamp: "Last Sunday at 8:46 PM",
currentMessage: "Sort of"
},
{
username: "Kram",
timeStamp: "Yesterday at 8:46 PM",
currentMessage: "Youre always ranting about it..."
},
{
username: "Lotus",
timeStamp: "Today at 8:46 PM",
currentMessage: "Shhh I have my moments"
}
];
You can download this package from npm - https://www.npmjs.com/package/chatlog-line-parser
npm i chatlog-line-parser
Simply call the function with an input:
const chatlogLineParser = require("chatlog-line-parser");
let chatlog = chatlogLineParser.parse(
"LotusLast Sunday at 8:46 PM\n" +
"Coding is fun\n" +
"KramYesterday at 8:46 PM\n" +
"Youre always ranting about it..."
);
//Or you can feed the parser with an existing Array
let chatlog = chatlogLineParser.parse([
"LotusLast Sunday at 8:46 PM",
"Coding is fun",
"KramYesterday at 8:46 PM",
"Youre always ranting about it..."
]);
console.log(chatlog);
FAQs
A chatlog parser that can take inputs from Discord, Slack and more!
We found that chatlog-line-parser 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.