You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Beep WinAPI allows programs to generate simple beep sounds through the computer's speaker. It takes two parameters: frequency (in Hertz) and duration (in milliseconds).
Summary
The Beep WinAPI allows programs to generate simple beep sounds through the computer's speaker. It takes two parameters: frequency (in Hertz) and duration (in milliseconds).
BOOL Beep( [in] DWORD dwFreq, [in] DWORD dwDuration );
When called,
Beep
invokesNtDelayExecution
, which pauses the execution of the calling thread for a specified duration.Additional context
https://thehackernews.com/2023/02/experts-warn-of-beep-new-evasive.html
https://securityliterate.com/beeeeeeeeep-how-malware-uses-the-beep-winapi-function-for-anti-analysis/
The text was updated successfully, but these errors were encountered: