
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
A powerful Asynchronous Python library for getting BINs database by country name or bank name. Also supports BIN lookup for bots, MTProto API frameworks, and Python scripts.
A powerful asynchronous Python library for retrieving Bank Identification Number (BIN) database information, supporting lookups by country name, bank name, and individual BINs. Ideal for bots, MTProto API frameworks, and Python scripts. This is a closed-source project, and the source code is not available for public distribution.
asyncio
for high-performance data retrieval.Install SmartBinDB via pip:
pip install smartbindb
import asyncio
from smartbindb import SmartBinDB
async def main():
smartdb = SmartBinDB()
print("What would you like to do?")
print("1. BIN lookup")
print("2. Bank based search")
print("3. Country based search")
choice = input("Enter your choice (1, 2, or 3): ")
if choice == "1":
bin_number = input("Enter BIN number: ")
result = await smartdb.get_bin_info(bin_number)
print("BIN info:", result)
elif choice == "2":
bank_name = input("Enter bank name: ")
use_limit = input("Do you want to use a limit? (yes/no): ").lower()
limit = None
if use_limit == "yes":
limit = int(input("Enter limit: "))
result = await smartdb.get_bins_by_bank(bank_name, limit)
print("Bank results:", result)
elif choice == "3":
country_code = input("Enter country code: ").upper()
use_limit = input("Do you want to use a limit? (yes/no): ").lower()
limit = None
if use_limit == "yes":
limit = int(input("Enter limit: "))
result = await smartdb.get_bins_by_country(country_code, limit)
print("Country results:", result)
else:
print("Invalid choice. Please select 1, 2, or 3.")
if __name__ == "__main__":
asyncio.run(main())
This is a closed-source project, and contributions are not accepted at this time.
This project is proprietary and not licensed for open-source use.
FAQs
A powerful Asynchronous Python library for getting BINs database by country name or bank name. Also supports BIN lookup for bots, MTProto API frameworks, and Python scripts.
We found that smartbindb 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.