Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Flock, plugin for x64dbg

Featured Replies

Posted

The idea of this plugin is simple and was born out an agony I went through while using x64dbg with IDA simultaneously.

It solves the problem of stealing the window focus from x64dbg to IDA, each time you single-step in the debugger, the  sync

plugin in x64dbg will send the sync info to IDA to show the current location and this makes IDA get the focus, very annoying when

you are doing a quick single stepping !

This plugin simply restores the focus to the debugger, that's all.

 

Flock_32_64.rar

Doesn't unchecking this option work?

H8i7HXz.png

  • Author

Nop, I tried everything.

Alright, here is some more stable code for forcing another foreground window (this one supposedly sometimes holds CTRL):

//https://www.codeproject.com/Tips/76427/How-to-bring-window-to-top-with-SetForegroundWindo
static void SetForegroundWindowInternal(HWND hWnd)
{
    if(!hWnd || !IsWindow(hWnd))
        return;

    //to unlock SetForegroundWindow we need to imitate pressing [Alt] key
    bool bPressed = false;
    if((GetAsyncKeyState(VK_MENU) & 0x8000) == 0)
    {
        bPressed = true;
        keybd_event(VK_MENU, 0, KEYEVENTF_EXTENDEDKEY | 0, 0);
    }

    SetForegroundWindow(hWnd);

    if(bPressed)
        keybd_event(VK_MENU, 0, KEYEVENTF_EXTENDEDKEY | KEYEVENTF_KEYUP, 0);
}

 

  • Author

very close to what I used in this silly plugin, imitating a CTRL click.

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.