
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
#VoidBox: Free cloud files storage. VoidBox WEB
VoidBox is a free cloud storage library based on the API of voidbox.alhasubji.store
. It operates on a box system, where each box can store up to 1.9 GB of data. The library allows you to interact with the API for creating boxes, uploading files, and more.
pip install VoidBox
You must have the API_KEY
or BearerTOKEN
to use:
from voidbox import VoidBoxAPI
from voidbox import Create
create = Create()
# Create Object
api = VoidBoxAPI(token="API or Bearer Token")
# Signup
signup_response = create.signup("username", "password")
print(signup_response)
# Login
login_response = create.login("username", "password")
print(login_response)
# Get my Info
me_response = api.get_me()
print(me_response)
# Create a box.
create_box_response = api.create_box("My New Box", "A description of my new box")
print(create_box_response)
#Upload a file to a box
upload_file_response = api.upload_file("boxid", "path/to/file.txt")
print(upload_file_response)
signup
and signin
functions only using the Create Integrated class .[!!] *** Powered By voidbox.alhasubji.store
website.
FAQs
Free cloud file storage, built on `Voidbox.alhasubji.store` API's
We found that voidbox 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 how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.