Skip to content

Latest commit

 

History

History
39 lines (22 loc) · 785 Bytes

File metadata and controls

39 lines (22 loc) · 785 Bytes
description
Description of the 'pause' function in HyperDbg Scripts

pause

Function

pause

Syntax

pause( );

Parameters

No argument.

Description

Breaks and halts the system and give control to the kernel debugger.

Examples

pause();

Break and halt the system and give control to the debugger.

Remarks

{% hint style="warning" %} You can only use this function in Debugger Mode, and you cannot use it on VMI Mode or local debugging.

This command must be used in events. You should avoid using this function with the '?' command. Otherwise, the system will halt. {% endhint %}

Related

None