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.
adb-tool-py is a library for using Android Debug Bridge (ADB) functionality from Python. It also provides extended functionality.
pip install adb-tool-py
For more detailed usage and additional features, please refer to the official documentation.
import adb_tool_py as adb_tool
import time
adb1 = adb_tool.AdbTool()
adb2 = adb_tool.AdbTool(serial="emulator-5554")
ret1 = adb1.query("shell ls -al")
ret2 = adb2.query("shell ls -al")
print(ret1.returncode)
print(ret1.stdout)
print(ret1.stderr)
ret2 = adb1.logcat()
time.sleep(1)
with ret2.open() as file:
print(file.read())
ret2.close()
This project is licensed under the MIT License.
If you encounter any issues, please report them through the GitHub issue tracker.
FAQs
adb-tool-py is a tool for Android Debug Bridge (adb).
We found that adb-tool-py 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.