timwhitez starred BloatedHammer
2022-8-8 10:30:24 Author: github.com(查看原文) 阅读量:18 收藏

This is a PoC to apply modern C++ techniques to compile time API Hammering.

bloat<SIZE>([&](size_t val){
  // Our lambda function will capture val which is just an incrementing index value
  // Such as CreateFile or registry stuff anything to waste time
  
  bloat<SIZE>([&](size_t val){
    // You can embed like nested loops, but it'll all be unfolded
    
  });
});

The bigger the size, the longer it'll take to compile, and execute.


文章来源: https://github.com/rad9800/BloatedHammer
如有侵权请联系:admin#unsafe.sh