Exemple #1
0
    def test_DebuggingFunctions(self):

        # BOOL WINAPI IsDebuggerPresent(void);
        jit.push_uint32_t(0)  # @return
        winapi.kernel32_IsDebuggerPresent(jit)
        vBool = jit.cpu.EAX
        self.assertFalse(vBool)
Exemple #2
0
    def test_DebuggingFunctions(self):

        # BOOL WINAPI IsDebuggerPresent(void);
        jit.push_uint32_t(0)      # @return
        winapi.kernel32_IsDebuggerPresent(jit)
        vBool = jit.cpu.EAX
        self.assertFalse(vBool)