
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
tele-bot-api
Advanced tools
library to make bot telegram auto update latest bot api version telegram
new teleragram(token_bot, options)
exampleexample
var lib = require("tele-bot-api")
var option = {
"bot_path" : "/botapi", //--! default path is "/" !--\\
"port": "7000" //--! default port is 8080 !--\\
}
var tg = new lib.telegram("123456:abcdefg", option)
request(method, parameter)
examplevar lib = require("tele-bot-api")
var option = {
"bot_path" : "/botapi"
}
var tg = new lib.telegram("123456:abcdefg", option)
async function test() {
var data = {
"chat_id": 123456,
"text": "hay"
}
return tg.request("sendMessage", data)
}
test()
on(update, respons)
example
your wesite must public if local you can use ngrok
Local-hostvar lib = require("tele-bot-api")
var option = {
"bot_path" : "/botapi"
}
var tg = new lib.telegram("123456:abcdefg", option)
tg.on(function(update, respons){
console.log(update)
})
tg.start()
//--! Log update !--\\
{
"req":{
"query": "/botapi"
},
"body":{
"update_id": 144047304,
"message": {
"message_id": 393114,
"from": {
"id": 189890822,
"is_bot": false,
"first_name": "azka dev",
"username": "azkadev",
"language_code": "id"
},
"chat": {
"id": 189890822,
"first_name": "azka dev",
"username": "azzkadev",
"type": "private"
},
"date": 1627110738,
"text": "/start"
}
}
}
A list that i should do more for this project...
FAQs
library to make bot telegram auto update latest bot api version telegram
The npm package tele-bot-api receives a total of 0 weekly downloads. As such, tele-bot-api popularity was classified as not popular.
We found that tele-bot-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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.