Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Fast and powerfull Rubika API library for building self bots.
pip install -U pyrubi
from pyrubi import Client
from pyrubi.types import Message
client = Client("mySelf")
@client.on_message(regexp="hello")
def send_hello(message: Message):
message.reply("**hello** __from__ ##pyrubi##")
client.run()
also you can enter your session data manually:
from pyrubi import Client
from pyrubi.types import Message
auth_key = "abcdefghijklnopkrstuvwxyzazxcqwe"
private_key = "-----BEGIN RSA PRIVATE KEY-----\n..."
client = Client(auth=auth_key, private=private_key)
@client.on_message(regexp="hello")
def send_hello(message: Message):
message.reply("**hello** __from__ ##pyrubi##")
client.run()
Fast : The requests are very fast and optimize.
Powerful : While the library is simple, it has high speed and features that make your work easier and faster
Easy : All methods and features are designed as easy and optimal as possible
FAQs
This is a powerful and easy library for building self bot in the Rubika.
We found that pyrubi 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.
Security News
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.