
Research
5 Malicious Chrome Extensions Enable Session Hijacking in Enterprise HR and ERP Systems
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.
systeminfo-python3
Advanced tools
This Python package provides a simple and easy-to-use way to gather system information, including details about the operating system, CPU, GPU (if available), and disk usage. The package uses popular Python libraries such as platform, psutil, socket, cpuinfo, and GPUtil to retrieve and present the system data.
pip install systeminfo-python3
To use the package, you can follow these steps:
SystemInfo class from the package:from Systeminfo.system_Info import SystemInfo
SystemInfo class:system_info = SystemInfo()
get_all_info() method:all_info = system_info.get_all_info()
print("===== System Information =====")
for key, value in all_info["System Information"].items():
print(f"{key}: {value}")
print("\n===== CPU Information =====")
for key, value in all_info["CPU Information"].items():
print(f"{key}: {value}")
if "GPU Information" in all_info:
print("\n===== GPU Information =====")
for gpu_info in all_info["GPU Information"]:
for key, value in gpu_info.items():
print(f"{key}: {value}")
print("\n===== Disk Information =====")
for disk_info in all_info["Disk Information"]:
for key, value in disk_info.items():
print(f"{key}: {value}")
print("-------")
Here's an example of how to use the package to retrieve and print system information:
from Systeminfo.system_Info import SystemInfo
# Create an instance of the SystemInfo class
system_info = SystemInfo()
# Get all the information using the SystemInfo class
all_info = system_info.get_all_info()
# Print the system information
print("===== System Information =====")
for key, value in all_info["System Information"].items():
print(f"{key}: {value}")
# Print the CPU information
print("\n===== CPU Information =====")
for key, value in all_info["CPU Information"].items():
print(f"{key}: {value}")
# Print the GPU information if available
if "GPU Information" in all_info:
print("\n===== GPU Information =====")
for gpu_info in all_info["GPU Information"]:
for key, value in gpu_info.items():
print(f"{key}: {value}")
# Print the disk information
print("\n===== Disk Information =====")
for disk_info in all_info["Disk Information"]:
for key, value in disk_info.items():
print(f"{key}: {value}")
print("-------")
The package relies on the following external Python libraries:
platform: Provides access to the underlying platform's identifying data.psutil: Offers system and process-related information.socket: Provides access to network communication capabilities.cpuinfo: Provides information about the CPU (Central Processing Unit).GPUtil: Allows retrieving GPU (Graphics Processing Unit) information (optional).The package is compatible with Python 3.9 and above.
This package is released under the MIT License. You are free to use, modify, and distribute it as per the terms of the license.
FAQs
A package that provides system information for your device.
We found that systeminfo-python3 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
Five coordinated Chrome extensions enable session hijacking and block security controls across enterprise HR and ERP platforms.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.