[Fortify][.NET]Unreleased Resource: Streams 排除

Posted petewell

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Fortify][.NET]Unreleased Resource: Streams 排除相关的知识,希望对你有一定的参考价值。

明明同事用了using来确保区块结束时会调用Dispose()作到自动释放资源,但还是被源码检测工具fortify举报。呼~~来解题。


如下,Developer都很乖有使用using定义对象范围来让using区块结束时调用Dispose()作到自动释放资源

using (FileStream fsInFile = new FileStream(@"C:Testfile.txt", FileMode.Open, FileAccess.Read, FileShare.None))

    using (StreamReader srInFile = new StreamReader(fsInFile, System.Text.Encoding.Default))
    
        string strInfData;
        while ((strInfData = srInFile.ReadLine()) != null)
        
            throw new Exception("somebody else"); //故意直接跳出method
        
    

另外,微软docs对于using陈述式的说明:

提供方便的语法,以确保正确使用 IDisposable 对象。

但被扫出Unreleased Resource: Streams

技术图片

查了using在微软docs的说明,有一行吸引了眼球,文档她说即使发生Exception,也可以确保会执行Dispose

The?using?statement ensures that?Dispose?is called even if an exception occurs within the?using?block.

看来是fortify误判了。


修正方法

老招,继续神鬼交锋,那我们在出事前加上一行Dispose()

using (FileStream fsInFile = new FileStream(@"C:Testfile.txt", FileMode.Open, FileAccess.Read, FileShare.None))

    using (StreamReader srInFile = new StreamReader(fsInFile, System.Text.Encoding.Default))
    
        string strInfData;
        while ((strInfData = srInFile.ReadLine()) != null)
        
            fsInFile.Dispose();
            throw new Exception("somebody else");
        
    

重新扫描:

技术图片

结案!


实验解构函数发生Exception跳出using区块时是否会执行

除了看微软Docs文档,我们也科学的做实验。

我们有一个球员class:Footballer,New一个马竞前锋grizmann起来执行射门之后,我们故意进入Exception,看看解构函示是否会执行?

using System;

namespace ConsoleApp1

    internal class Program
    
        private static void Main(string[] args)
        
            Console.WriteLine("程序开始");
            Attack();
            Console.WriteLine("程序结束");
        

        private static void Attack()
        
            using (Footballer griezmann = new Footballer())
            
                try
                
                    griezmann.Shot();
                    throw new Exception("Error");
                
                catch (Exception e)
                
                    Console.WriteLine(e);
                    return;
                
            
        
    

    internal class Footballer : IDisposable
    
        public Footballer()
        
            Console.WriteLine("建构函数");
        

        public void Shot()
        
            Console.WriteLine("射门!!!");
        

        public void Dispose()
        
            Console.WriteLine("解构函数");
            GC.SuppressFinalize(this);
        
    

有执行解构!资源会被释放~

技术图片

Semi Finals

技术图片

期待的4强,就少了西班牙。


参考

微软docs using陈述式

https://docs.microsoft.com/zh-tw/dotnet/csharp/language-reference/keywords/using-statement

原文:大专栏  [Fortify][.NET]Unreleased Resource: Streams 排除


以上是关于[Fortify][.NET]Unreleased Resource: Streams 排除的主要内容,如果未能解决你的问题,请参考以下文章

HP Fortify:ASP.NET 不良做法:存储在会话中的不可序列化对象

Flume官方文档翻译——Flume 1.7.0 User Guide (unreleased version)

fortify代码扫描使用教程

Flume官方文档翻译——Flume 1.7.0 User Guide (unreleased version)

Flume官方文档翻译——Flume 1.7.0 User Guide (unreleased version)中一些知识点

从 Fortify sourceanalyzer 命令行获取文本输出