Windows error 0x000011C8, 4552

Detailed Error Information

SYSTEM_INTEGRITY_INVALID_POLICY[1]

MessageThe System Integrity policy is invalid.
Declared inwinerror.h

This appears to be a raw Win32 error. More information may be available in error 0x800711C8.

HRESULT analysis: flags: none; facility: 0 (FACILITY_NULL); error: 4552 (more)

Questions

1vote
0answers

tab completion in radare2 gives seg fault

I'm new to radare2 ans was previously using it on Ubuntu or Kali. I switched to Manjaro 20.2 and noticed that whenever I press the [TAB] it ends up in a segmentation fault something like this: >> r2 hello [0x00001040]> aa [x] Analyze all flags starting with sym. and entry0 [...] read more
c
segmentation-fault
reverse-engineering
radare2
0votes
1answer

Question about address values and pointer increment?

Let's say that I have a code like below #include <stdio.h> int main(void) { char char_array[5] = {'a', 'b', 'c', 'd', 'e'}; int int_array[5] = {1, 2, 3, 4, 5}; int i; char *char_ptr; int *int_ptr; char_ptr = char_array; int_ptr = int_array; for(i = 0; i < 5; i++){ printf("[char_ptr]For [...] read more
c
linux
x86
reverse-engineering

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0