CS.CONSTCOND.WHILE

'while' ステートメントの条件は、常に true であるか常に false です。

例 1

コピー
  class Something {
      void DoSomething() {
          while (false) {    // defect
              /* ...*/
          }
          while (true) {     // Ok - typical usage of 'do' constructs when a user to organize an infinite loop
              /* ...*/
          }
      }
 }

セキュリティトレーニング

Secure Code Warrior が提供しているアプリケーションセキュリティトレーニング教材。