13.06.2017, 10:34
TDW RScan
DescriptionThis is a simple recursive scanner to detect recursive functions in scripts.Functions
- RScan_Run(address = 0)
- addressofex()
amx_assemblyExample
PHP Code:
forward public func1();
forward public func2();
main() {
RScan_Run();
goto ___avoid_recursion;
func1();
___avoid_recursion:
}
func1() {
func2();
}
func2() {
func1();
}
Download
github