Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
import asyncio
import logging
from ks_session_manager.converter import Converter
API_ID = 123456
API_HASH = ""
PHONE_NUMBER = ""
async def main():
converter = await Converter.from_telethon(PHONE_NUMBER, workdir="./telethon_sessions_path")
try:
await converter.export_pylogram_session()
except FileExistsError as e:
# Already exported
logging.warning(e)
client = await converter.get_pylogram_client()
async with client:
me = await client.get_me()
print(me)
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
asyncio.run(main())
import asyncio
import logging
from ks_session_manager.revisors import TelethonRevizor
async def main():
revizor = TelethonRevizor(
threads=20, # How many revisions to run simultaneously
dry_run=False # If True, revisions will not actually connect to Telegram, only logs will be printed
)
await revizor.revise_all_in_path("./telethon_sessions_path", limit=20)
if __name__ == '__main__':
logging.basicConfig(level=logging.INFO)
asyncio.run(main())
FAQs
KS session manager
We found that ks-session-manager 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
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.