Avatar

Links

michael-sabrnak-swi (corporate)
MyKEms (personal)
@rss
  • If you own a Flipper Zero and want to track its location using Apple’s FindMy network, FindMyFlipper is a great way to do it. It turns your Flipper into an AirTag-like device, broadcasting BLE (Bluetooth Low Energy) beacons that are picked up by any nearby iPhone and relayed to Apple’s servers – all without Apple knowing it’s not a real AirTag.

    flipper zero findmy apple ble openhaystack Created Tue, 17 Mar 2026 22:00:00 +0000
  • If you need to export all available Windows Event Logs, especially in the Windows Server Core edition (without GUI), you can utilize this PowerShell script:

    Created Mon, 05 Jun 2023 11:41:24 +0000
  • Express guide how to export private key from certificate storage marked during import as non-exportable.

    cd C:\Users\Administrator\Downloads\mimikatz_trunk\x64
    .\mimikatz.exe
    ``` ```
    mimikatz # crypto::capi
    mimikatz # crypto::certificates /systemstore=CERT_SYSTEM_STORE_LOCAL_MACHINE /export
    mimikatz # quit
    
    • You can find exported certificate with private key inside mimikatz folder.
    • Password for import of the certificate: mimikatz
    Created Mon, 03 Jul 2017 11:39:31 +0000
  • There is Microsoft article which explains why to do not redirect user profiles/home folders to non-system disk: LINK.

    By changing the default location of the user profile directories or program data folders to a volume other than the System volume, you will not be able to service your Windows installation. Any updates, fixes, or service packs will fail to be applied to the installation. Microsoft does not recommend that you change the location of the user profile directories or program data folders.

    Created Tue, 14 Mar 2017 13:16:19 +0000
  • PoodleBleed-logo

    1. regedit
    2. Go to: HKey_Local_MachineSystemCurrentControlSetControlSecurityProviders SCHANNELProtocols
    3. Create new key named “SSL 3.0”
    4. Inside SSL 3.0 create new key named “Server”
    5. Inside Server create new dword 32bit “Enabled”
    6. Make sure dword Enabled has value “0”
    7. Reboot server

    There is registry source to fix it (PoodleBleed-Fix.reg):

    Created Mon, 20 Oct 2014 14:51:08 +0000