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.
tele-bot-api
Advanced tools
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
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
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.