algovoi-rfc9421-signer

v0.1.0 suspicious
7.0
High Risk

AlgoVoi RFC 9421 HTTP Message Signatures + RFC 9530 Content-Digest signer (Ed25519)

🤖 AI Analysis

Final verdict: SUSPICIOUS

The package shows signs of potential risk due to its suspicious metadata and moderate obfuscation, raising concerns about its legitimacy and intent.

  • Suspiciously low activity and lack of maintainer history
  • Moderate obfuscation pattern
Per-check LLM notes
  • Network: No network calls detected, which is normal if the package does not require internet access.
  • Shell: No shell execution detected, indicating the package does not execute external commands.
  • Obfuscation: The observed obfuscation pattern may indicate an attempt to hide code logic, but without further context, it's uncertain if it's malicious or just complex coding style.
  • Credentials: No clear signs of credential harvesting were found.
  • Metadata: Suspiciously low activity and lack of maintainer history suggest potential risk.

📦 Package Quality Overall: Low (3.8/10)

✦ High Test Suite 9.0

Test suite present — 1 test file(s) found

  • Test runner config found: pyproject.toml
  • 1 test file(s) detected (e.g. test_signer.py)
○ Low Documentation 1.0

No documentation detected

  • No documentation URL, doc files, or meaningful description found
○ Low Contributing Guide 2.0

No contributing guide or governance files found

  • No CONTRIBUTING, CODE_OF_CONDUCT, or governance files found
◈ Medium Type Annotations 5.0

Partial type annotation coverage

  • 5 type-annotated function signatures (partial)
○ Low Multiple Contributors 2.0

Single-author or unverifiable project

  • 1 unique contributor(s) across 3 commits in chopmob-cloud/algovoi-rfc9421-signer
  • Single author with few commits — possibly a personal or throwaway project

🔬 Heuristic Checks

Outbound Network Calls

No suspicious network call patterns found

Code Obfuscation score 2.0

Found 1 obfuscation pattern(s)

  • =:") : -1] assert len(base64.b64decode(sig_b64)) == 64 def test_content_digest_format(self):
Shell / Subprocess Execution

No shell execution patterns detected

Credential Harvesting

No credential harvesting patterns detected

Typosquatting

No typosquatting candidates detected

Registered Email Domain

Email domain looks legitimate: gmail.com>

Suspicious Page Links

All external links appear legitimate

Git Repository History score 5.0

Git history flags: Repository has zero stars and zero forks

  • Repository has zero stars and zero forks
  • Single contributor with only 3 commit(s) — possibly throwaway account
Maintainer History score 6.0

3 maintainer concern(s) found

  • Only one version has ever been released — brand new package
  • Author name is missing or very short
  • Author "" appears to have only 1 package on PyPI (new or inactive account)
Known CVE Vulnerabilities

No known vulnerabilities found in OSV database.

💡 AI App Starter Prompt

Use this prompt to build a project with algovoi-rfc9421-signer
Your task is to develop a Python-based mini-application named 'SecureHTTPDigest' that leverages the 'algovoi-rfc9421-signer' package to enhance the security of HTTP requests through message signing and content digest verification. This application will serve as a tool for developers to test and understand the implementation of RFC 9421 and RFC 9530 standards for securing HTTP messages using Ed25519 signatures.

The application should include the following functionalities:
1. User Input Interface: A simple command-line interface (CLI) where users can input the URL they want to sign and send, along with optional parameters like headers and payload data.
2. Signing Mechanism: Utilize the 'algovoi-rfc9421-signer' package to sign the HTTP request based on user inputs. Ensure that both the HTTP message signature and the content digest are properly generated and attached to the request.
3. Request Sending: Send the signed HTTP request to the specified URL and handle any responses appropriately.
4. Response Verification: Verify the integrity and authenticity of the received response by checking the content digest against the expected value.
5. Logging & Reporting: Maintain logs of all actions taken within the application, including any errors encountered during the process. Additionally, provide a summary report at the end of each session detailing the success or failure of the operations performed.

Suggested Features:
- Support for different HTTP methods (GET, POST, PUT, DELETE).
- Ability to customize headers and query parameters.
- Option to specify the payload data directly from the CLI or read from a file.
- Detailed error handling and informative error messages.
- Integration with a logging framework for storing operation logs.

In your development process, make sure to thoroughly document your code and include comments explaining how you utilize the 'algovoi-rfc9421-signer' package's functions and classes to achieve the desired functionalities. This documentation will be crucial for other developers looking to extend or modify your application.