toctou race condition

说的比较好的文章在这里:

http://www.cis.syr.edu/~wedu/Teaching/IntrCompSec/LectureNotes_New/Race_Condition.pdf


TOCTOU:  time of check - time of use


攻击发生在 check 和 use 之间。


具体的 countermeasure 在上面提到的pdf 中也有所涉及,总结如下:

1.  Turn check and use operations in one atomic operation.

2.   check-use-check again approach.

3.   check-use repeating approach.





你可能感兴趣的:(security)