製品は、それ自身または他のアクターが使用することを意図したリソースをリリースする。
この弱点は、製品がリソースをリリースすべきでないにもかかわらず、リリースを実行してしまうエラーに焦点を当てたものです。これは、製品が適切なタイミングでリソースをリリースするものの、そのリソースへの参照を保持し、後でそのリソースにアクセスするという弱点とは異なります。この弱点の場合、リソースはその後のアクセスでも有効でなければならない。
製品がまだ使用されているリソースをリリースすると、その間に再利用された可能性のあるリソースに対してまだ操作が行われる可能性があり、CWE-825と同様の問題が発生します。その結果、サービス拒否、情報漏洩、コード実行などの問題が発生する可能性があります。
The product releases a resource that is still intended to be used by itself or another actor.
This weakness focuses on errors in which the product should not release a resource, but performs the release anyway. This is different than a weakness in which the product releases a resource at the appropriate time, but it maintains a reference to the resource, which it later accesses. For this weakness, the resource should still be valid upon the subsequent access.
When a product releases a resource that is still being used, it is possible that operations will still be taken on this resource, which may have been repurposed in the meantime, leading to issues similar to CWE-825. Consequences may include denial of service, information exposure, or code execution.