
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Help: Github
const kubitdb = require('kubitdb')
const db = new kubitdb("kubitdb")
//You can change the name of the file to save
//You can use const db = new kubitdb("./kubitdb.json") if you want
//kaydeceği dosyanın ismi değiştirebilirsiniz
//İsterseniz const db = new kubitdb("./kubitdb.json") olarak kullanabilirsiniz
db.ayarla('test','evet')
db.set('test','true')
/*/
{
"test": "evet"
}
/*/
db.ekle("test", 50)
db.add("test", 50)
/*/
{
"test": 50
}
/*/
db.it("serverSettings", { whitelist: "on", playerCount: "12" })
db.push("serverSettings", { whitelist: "on", playerCount: "12" })
/*/
"serverSettings": [
{
"whitelist": "on",
"playerCount": "12"
}
]
/*/
db.varmı("prefix")
db.has("prefix")
/*/
true
false
/*/
db.al("para")
db.bak("para")
db.get("para")
db.fetch("para")
/*/
500
/*/
db.cıkar("para", 400)
db.subtract("para", 400)
db.substr("para", 400)
/*/
100
/*/
db.sil("serverStatus")
db.delete("serverStatus")
db.del("serverStatus")
/*/
{}
/*/
db.sil("serverStatus",1)
db.delete("serverStatus",100)
db.del("serverStatus",100)
/*/
{
"serverStatus": 9
}
/*/
db.hepsi()
db.hepsinial()
db.all()
db.fetchAll()
db.getAll()
/*/
{
"money": 500,
"deneme": "abc"
}
/*/
db.temizle()
db.clear()
db.deleteAll()
db.clearAll()
/*/
{}
/*/
//calculate and does not save math data is like db.al,db.fetch
//hesapla ve math data'ya kaydetmez db.al,db.fetch gibidir
db.math("apple","+",10)
db.hesapla("apple","+",10)
/*/
10
/*/
npm i kubitdb
npm i kubitdbonline
FAQs
English and Turkish database! KubitDB
We found that kubitdb demonstrated a healthy version release cadence and project activity because the last version was released less than 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.