MaterialX

v1.39.5 suspicious
4.0
Medium Risk

(No description)

πŸ€– AI Analysis

Final verdict: SUSPICIOUS

The package shows potential risks due to shell execution and incomplete metadata, though no direct evidence of malicious intent was found.

  • Shell execution detected
  • Inadequate metadata
Per-check LLM notes
  • Network: No network calls detected, which is normal and not indicative of malicious activity.
  • Shell: Shell execution detected might be for legitimate purposes like running external commands, but it should be reviewed to ensure it does not execute arbitrary user input.
  • Obfuscation: No obfuscation patterns detected, indicating low risk of malicious activity.
  • Credentials: No credential harvesting patterns detected, indicating low risk of secret theft.
  • Metadata: The package has a non-secure external link and an author with limited information, which may indicate a lack of transparency or maintenance effort.

πŸ”¬ Heuristic Checks

βœ“ Outbound Network Calls

No suspicious network call patterns found

βœ“ Code Obfuscation

No obfuscation patterns detected

⚠ Shell / Subprocess Execution score 2.0

Found 1 shell execution pattern(s)

  • try: output = subprocess.check_output(cmd, stderr=subprocess.STDOUT) return output.dec
βœ“ Credential Harvesting

No credential harvesting patterns detected

βœ“ Typosquatting

No typosquatting candidates detected

βœ“ Registered Email Domain

Email domain looks legitimate: lists.aswf.io>

⚠ Suspicious Page Links score 2.0

Found 1 suspicious link(s) on the package page

  • Non-HTTPS external link: http://www.materialx.org/docs/api/index.html
βœ“ Git Repository History

Repository AcademySoftwareFoundation/MaterialX appears legitimate

⚠ Maintainer History score 4.0

2 maintainer concern(s) found

  • 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 MaterialX
Create a Python-based material editor application using the MaterialX library. This application will allow users to define and manipulate materials for use in 3D rendering software. The app should have the following core functionalities:

1. **Material Creation**: Users should be able to create new materials by defining their properties such as color, texture, roughness, etc.
2. **Material Editing**: Allow editing of existing materials by changing their properties dynamically.
3. **Material Exporting**: Implement functionality to export materials in the MaterialX format, which can then be imported into various 3D rendering engines.
4. **Preview Pane**: Include a preview pane where users can see how their material looks like under different lighting conditions and angles.
5. **Integration with 3D Models**: Provide a feature to apply the created materials on sample 3D models within the application itself.

**Utilization of MaterialX**: Use MaterialX to define and manipulate material nodes and networks. Specifically, utilize MaterialX's ability to represent complex shading networks and material definitions. For exporting, leverage MaterialX’s XML-based format to ensure compatibility across different 3D rendering engines. Additionally, explore MaterialX’s node graph system for implementing a visual editor where users can connect different material properties and effects.

**Suggested Features**:
- Support for multiple texture maps (diffuse, normal, specular, etc.)
- Real-time updates in the preview pane as users modify material properties
- Ability to save and load material definitions from disk
- Basic support for procedural textures and patterns

The goal is to create a user-friendly interface for artists and designers who want to quickly prototype and test materials without needing to delve into complex shader code.