Bug in client smb cache?

D

Daniel Laugt

Apparently, there is a bug in the cache design of smb client after updating a binary on a UNC path by using the trick of moving the old binary and copying the new one.--- HERE IS THE REPRODUCIBLE TEST CASE ---First, you can compile two console c++ applications:test-old.exe displays "Old binary" and wait for an input character:// test-old.cpp#include <iostream>int main (){ std::cout << "Old binary" << std::endl; getchar (); return 0;}test-new.exe displays "New binary" and wait for an input chara

Continue reading...
 

Similar threads

Back
Top Bottom