ridl
ridl copied to clipboard
RIDL test suite and exploits
I think the sse_probe should be: .global sse_probe sse_probe: **movdqu (%rsi), %xmm0** movq %xmm0, %rax andq $0xff, %rax shl $STRIDE_SHIFT, %rax movq (%rdi, %rax), %rax ret
Software doesn't work, window just close without any error, cli version doesn't work too, look screen: 
Hi, Appreciate your sharing. I'm wondering whether you can help to translate ridl/tree/master/pocs/vrs.c, ridl2.h to windows 10 version? I'd like to test it on Windows 10 SUT. Thanks!
I built a 32-bit binary of msdtool-cli using: ``` cmake .. -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_C_FLAGS=-m32 ``` Running the resulting binary on an Intel Atom system under 32-bit CentOS 6.10 (fully updated) as...
Looking around this repository, coming from someone who never looked at it before, I'm having trouble identifying the license that applies to the entire codebase. Am I correct to guess...
Hi Using the Windows binary on Windows 7 with an Intel Core i5-4570 (4 cores, no SMT) in the L1TF section SMT is being reported as vulnerable. Yet in the...
I run: ``` cmake ridl ``` and get an error: ``` Determining if the pthread_create exist failed with the following output: Change Dir: /root/CMakeFiles/CMakeTmp Run Build Command:"/usr/bin/make" "cmTC_1b36d/fast" /usr/bin/make -f...
Hi, in linux/spectre.c the strcmp fails when comparing some strings because the whitespace at the beginning of some strings is not stripped. I checked on Ubuntu 18.04. Just strip possible...
It looks like cpuid.h isn't really to be found on that platform. Could we support it in the future anyway?
Please apply this patch: ``` --- CMakeLists.txt.orig 2019-05-23 06:02:35 UTC +++ CMakeLists.txt @@ -86,7 +86,7 @@ if (${CMAKE_SYSTEM_NAME} STREQUAL Windows) source/msw/image.c source/msw/window.c) set(BUILD_GUI 1) -elseif (${CMAKE_SYSTEM_NAME} STREQUAL Linux) +elseif (${CMAKE_SYSTEM_NAME}...