home.social

#tool — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #tool, aggregated by home.social.

  1. You're not #powerless. You don't have control, but you're not powerless. You are powerless in the moment, but you have a #mind that you can guide. You can tell it what to do and you can make it do things you don't know you can make it do. That mind is a #tool; it's not you. You are not #thinking.

  2. ...is at fault for laying there on the #tool bench and not getting itself picked up is ridiculous, right? So anybody that's criticizing any #platform for not fixing their life perhaps needs a new set of glasses. Nobody owes me anything. Nobody knows how they got here. Decide what you're doing.

  3. Nail Gun Kit Market in Germany | Report – IndexBox

    Germany Nail Gun Kit Market 2026 Analysis and Forecast to 2035 Executive Summary Key Findings The Germany nail…
    #Germany #DE #Europe #EU #Europa #BrushlessMotor #consumergoodsmarketreport #Deckbuilding #Fencing #forecast #Jam-clearingmechanisms #Lithium-ionbatteryplatform #marketanalysis #nailgunkit #Tool-freedepthadjustment #Trimandmoldinginstallation #Woodframing
    europesays.com/germany/13452/

  4. Wix CMO Uses AI Super Agents, Is Hiring ‘Full-Stack’ Marketers

    This as-told-to essay is based on a conversation with Omer Shai, chief marketing officer of the website-building platform…
    #UnitedStates #US #USA #a.m.meeting #AIagent #america #base44 #business #BusinessInsider #calendar #contentwriter #day #Department #designerexample #Full-Stack #lead #marketer #peoplesuperpower #tool #unitedstatesofamerica #wixcmo
    europesays.com/2986435/

  5. Your name in Landsat

    Witzige kleine Microsite der NASA. Einfach deinen Namen eingeben und ihn in “Landsat” geschrieben bewundern. Unsere Erde ist wunderschön.

    Die Bilder lassen sich als PNG-Datei herunterladen.

    oliverbrux.de/notes/your-name-

    #tool

  6. Your name in Landsat

    Witzige kleine Microsite der NASA. Einfach deinen Namen eingeben und ihn in “Landsat” geschrieben bewundern. Unsere Erde ist wunderschön.

    Die Bilder lassen sich als PNG-Datei herunterladen.

    oliverbrux.de/notes/your-name-

    #tool

  7. Your name in Landsat

    Witzige kleine Microsite der NASA. Einfach deinen Namen eingeben und ihn in “Landsat” geschrieben bewundern. Unsere Erde ist wunderschön.

    Die Bilder lassen sich als PNG-Datei herunterladen.

    oliverbrux.de/notes/your-name-

    #tool

  8. Your name in Landsat

    Witzige kleine Microsite der NASA. Einfach deinen Namen eingeben und ihn in “Landsat” geschrieben bewundern. Unsere Erde ist wunderschön.

    Die Bilder lassen sich als PNG-Datei herunterladen.

    oliverbrux.de/notes/your-name-

    #tool

  9. Your name in Landsat

    Witzige kleine Microsite der NASA. Einfach deinen Namen eingeben und ihn in “Landsat” geschrieben bewundern. Unsere Erde ist wunderschön.

    Die Bilder lassen sich als PNG-Datei herunterladen.

    oliverbrux.de/notes/your-name-

    #tool

  10. 🔥 Leggere e modificare database SQLite su Android con Squealer
    Visualizza, interroga ed esporta database direttamente dallo smartphone con supporto crittografato integrato...

    👉 selectallfromdual.com/blog/261

    #android #database #sqlite #tool

  11. 🔥 Leggere e modificare database SQLite su Android con Squealer
    Visualizza, interroga ed esporta database direttamente dallo smartphone con supporto crittografato integrato...

    👉 selectallfromdual.com/blog/261

    #android #database #sqlite #tool

  12. 👉 Prendere appunti su Linux con un'elegante tipografia con Lemma
    Organizzazione flessibile dei pensieri e formule matematiche...

    👉 selectallfromdual.com/blog/1771

    :speech_balloon: @linux

    #linux #note #tool #UnoLinux

  13. 👉 Prendere appunti su Linux con un'elegante tipografia con Lemma
    Organizzazione flessibile dei pensieri e formule matematiche...

    👉 selectallfromdual.com/blog/1771

    :speech_balloon: @linux

    #linux #note #tool #UnoLinux

  14. 👉 Prendere appunti su Linux con un'elegante tipografia con Lemma
    Organizzazione flessibile dei pensieri e formule matematiche...

    👉 selectallfromdual.com/blog/1771

    :speech_balloon: @linux

    #linux #note #tool #UnoLinux

  15. ----------------

    🛠️ Tool
    ===================

    Opening: This repository documents a practicable method for extracting Windows account hashes by combining built-in registry export, a local reduction step, BootKey extraction and secretsdump. The author provides source artifacts including RegReduction.ps1, BootKey.c and a compiled BootKey.exe, plus guidance on exporting the three core hives (SAM, SYSTEM, SECURITY) from a target machine.

    Key Features:
    • Exposes a flow that leverages the system binary reg.exe to export registry hives at scale.
    • Supplies a PowerShell-based reduction tool (RegReduction.ps1) to reconstruct binary hive files from exported .reg artifacts.
    • Includes BootKey.c and BootKey.exe to extract the system BootKey without requiring administrative privileges in the tested environments.
    • Demonstrates final credential extraction using secretsdump against the reconstructed hives.

    Technical Implementation:
    • The workflow relies on exporting HKLM\SAM, HKLM\SYSTEM and HKLM\SECURITY via the system registry export facility, then reconstructing the binary hive representation locally with RegReduction.ps1.
    • BootKey extraction is implemented in a C utility (BootKey.c) provided in the repo; the binary derived BootKey is consumed by offline tools capable of decrypting LSA secrets and NT hashes.
    • The final extraction step uses secretsdump-style logic to parse the SAM/SECURITY blobs with the BootKey to recover account NTLM credentials.

    Use Cases:
    • Red team operations seeking post-exploitation credential harvesting where standard EDR detection blocks direct memory dumping.
    • Forensic practitioners needing an offline method to reconstruct registry hive artifacts from exported textual dumps for analysis.
    • Research into living-off-the-land (LotL) techniques that abuse trusted system utilities to evade behavioral detections.

    Limitations:
    • The method depends on the ability to export registry hives from the target; test notes indicate reg.exe export may require SYSTEM privileges on some Windows versions (notably Win10/Win11 and Windows Server 2025), while older servers may allow export with administrator rights.
    • The BootKey extraction utility was observed by the author to run without elevated rights in tests; detection coverage by endpoint products varied and a VirusTotal snapshot was referenced by the author as part of testing.
    • The repo author later acknowledged similar prior public research touching on LSA/Task decorrelation techniques.

    Final note: The release is presented as a GitHub tool with source artifacts and practical testing notes; the repo documents concrete filenames and steps for reconstruction and extraction rather than providing high-level theory. #tool #EDR #DumpHash #SAM #secretsdump

    🔗 Source: github.com/AabyssZG/HashDump-B

  16. The #lightweight browser #Midori is back with updates.

    source: astian.org/midori-browser
    #Github: github.com/goastian/midori-des…

    If you're looking for a lightweight, RAM-efficient #browser for web #surfing, you can finally turn to Midori again. After several years, it is finally receiving updates. The browser is based on the #Mozilla Firefox engine and can therefore also use #Firefox add-ons. Midori is also available for #Android.

    I really liked the #setup dialog for configuring the browser. You can customize the colors and layout of the toolbars however you like.

    The included extras are rather sparse. The #VPN didn't work for me because the #login screen got stuck in an endless loop. I'd also recommend turning off the built-in #adBlocker and using uBlock Origin instead.

    That said, I'm thrilled to have a very lightweight browser again, precisely because it's fast and uses not much RAM.

    #news #software #opensource #foss #floss #download #ublock #internet #online #tool #utility #privacy #ram #desktop #mobile #linux #windows #smartphone #resources #update #web #www #html
    Midori Browser: light, safe private and awesome web browser

  17. The #lightweight browser #Midori is back with updates.

    source: astian.org/midori-browser
    #Github: github.com/goastian/midori-des…

    If you're looking for a lightweight, RAM-efficient #browser for web #surfing, you can finally turn to Midori again. After several years, it is finally receiving updates. The browser is based on the #Mozilla Firefox engine and can therefore also use #Firefox add-ons. Midori is also available for #Android.

    I really liked the #setup dialog for configuring the browser. You can customize the colors and layout of the toolbars however you like.

    The included extras are rather sparse. The #VPN didn't work for me because the #login screen got stuck in an endless loop. I'd also recommend turning off the built-in #adBlocker and using uBlock Origin instead.

    That said, I'm thrilled to have a very lightweight browser again, precisely because it's fast and uses not much RAM.

    #news #software #opensource #foss #floss #download #ublock #internet #online #tool #utility #privacy #ram #desktop #mobile #linux #windows #smartphone #resources #update #web #www #html
    Midori Browser: light, safe private and awesome web browser

  18. The #lightweight browser #Midori is back with updates.

    source: astian.org/midori-browser
    #Github: github.com/goastian/midori-des…

    If you're looking for a lightweight, RAM-efficient #browser for web #surfing, you can finally turn to Midori again. After several years, it is finally receiving updates. The browser is based on the #Mozilla Firefox engine and can therefore also use #Firefox add-ons. Midori is also available for #Android.

    I really liked the #setup dialog for configuring the browser. You can customize the colors and layout of the toolbars however you like.

    The included extras are rather sparse. The #VPN didn't work for me because the #login screen got stuck in an endless loop. I'd also recommend turning off the built-in #adBlocker and using uBlock Origin instead.

    That said, I'm thrilled to have a very lightweight browser again, precisely because it's fast and uses not much RAM.

    #news #software #opensource #foss #floss #download #ublock #internet #online #tool #utility #privacy #ram #desktop #mobile #linux #windows #smartphone #resources #update #web #www #html
    Midori Browser: light, safe private and awesome web browser

  19. @Rajiv This thing.

    It's very thick steel, and heavy. There is no sharp edge and never has been, all sides are flat and thick, including the angled tip.

    It has a turned handle, which is unusually fancy compared to all other tools in the barn. Its relatively short, maybe waist high.

    With the tip and the weight and the thick end (partially broken), I think maybe smashing a hole in the ice for fishing may have been what it was for.

    It's slightly crooked, which may have been from tool abuse as pry bar, or maybe it was made like that.

    #Tool #Mystery #Antique #WhatIsIt

  20. @Rajiv This thing.

    It's very thick steel, and heavy. There is no sharp edge and never has been, all sides are flat and thick, including the angled tip.

    It has a turned handle, which is unusually fancy compared to all other tools in the barn. Its relatively short, maybe waist high.

    With the tip and the weight and the thick end (partially broken), I think maybe smashing a hole in the ice for fishing may have been what it was for.

    It's slightly crooked, which may have been from tool abuse as pry bar, or maybe it was made like that.

    #Tool #Mystery #Antique #WhatIsIt

  21. @Rajiv This thing.

    It's very thick steel, and heavy. There is no sharp edge and never has been, all sides are flat and thick, including the angled tip.

    It has a turned handle, which is unusually fancy compared to all other tools in the barn. Its relatively short, maybe waist high.

    With the tip and the weight and the thick end (partially broken), I think maybe smashing a hole in the ice for fishing may have been what it was for.

    It's slightly crooked, which may have been from tool abuse as pry bar, or maybe it was made like that.

    #Tool #Mystery #Antique #WhatIsIt

  22. @Rajiv This thing.

    It's very thick steel, and heavy. There is no sharp edge and never has been, all sides are flat and thick, including the angled tip.

    It has a turned handle, which is unusually fancy compared to all other tools in the barn. Its relatively short, maybe waist high.

    With the tip and the weight and the thick end (partially broken), I think maybe smashing a hole in the ice for fishing may have been what it was for.

    It's slightly crooked, which may have been from tool abuse as pry bar, or maybe it was made like that.

    #Tool #Mystery #Antique #WhatIsIt