dr_checker icon indicating copy to clipboard operation
dr_checker copied to clipboard

DR.CHECKER : A Soundy Vulnerability Detection Tool for Linux Kernel Drivers

Results 16 dr_checker issues
Sort by recently updated
recently updated
newest added

Any ideas why the SoundyAnalysisRunner fails? It makes the Bitcode, links it (with dr_linker), finds entrypoints etc. Also had to disable c2xml since it was complaining on malformed input. ```...

Hi, Have some success in porting it to more recent LLVM (LLVM 9). Managed to find new APIs, however with below ones I cannot find them, would need some guidance....

Hi, Is this project still maintained/supported? If I succeed I can make a PR to update this tool to recent versions. Had to jump through some hops, but made it...

Hello, I wanna know where to get the mobile kernel source code mentioned in your paper? could you please give me the link? Thank you!

Good work but the allocated memory seems handled not very well, there are a few memory errors. 1. double free https://github.com/ucsb-seclab/dr_checker/blob/speedy/llvm_analysis/MainAnalysisPasses/SoundyAliasAnalysis/include/AliasObject.h#L251 This line only free the memory, the vector still...

when I'm running setup cmd, python setup_drchecker.py -o drchecker_deps. facing the below errors . Help me to resolve .................. [ 9%] Building CXX object projects/libcxxabi/src/CMakeFiles/cxxabi_objects.dir/typeinfo.cpp.o [ 9%] Building CXX object...

When the `makeout.txt` has line breakers such as ```shell gcc -fPIC -pthread -m64 -Wa,--noexecstack -Wall -O3 -L. -z defs -Wl,-znodelete -shared -Wl,-Bsymbolic \ -o test/p_test.so -Wl,--version-script=test/p_test.ld test/p_test-dso-p_test.o \ -ldl -pthread...

Hello, while trying to run dr_checker against a Qualcomm (Pixel 1 - msm) kernel by using the docker image I am running into the following issue: [*] Running c2xml to...

Hi, @Machiry I tried to do taint analysis w/ Dr.checker for a sample program, a part of the code is shown below: >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> typedef struct { int time; int data;...