By @furbas16e8
Advanced visualization system for Obsidian vaults, featuring activity heatmaps with statistical metrics and temporal memory review.
By @furbas16e8
Advanced visualization system for Obsidian vaults, featuring activity heatmaps with statistical metrics and temporal memory review.
| using System; | |
| using System.IO; | |
| using System.Security.Cryptography; | |
| using System.Runtime.Serialization.Formatters.Binary; | |
| namespace hawktracewsus | |
| { | |
| class Program | |
| { | |
| static void Main() |
| #!/bin/bash | |
| # Proxmox: Shutdown VMs and LXCs (GSolone, 2025) | |
| # This script stops all running VMs and LXC containers, excluding specified IDs, and logs the operation. | |
| # In DEBUG mode, it only stops one VM and one LXC container for testing purposes, ignoring exclusions. | |
| export PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
| logfile="/var/log/proxmox_shutdown.log" | |
| LOCKFILE="/tmp/proxmox_shutdown.lock" | |
| # Timestamp helper |
| - name: Get list of Forgejo runner releases | |
| ansible.builtin.uri: | |
| url: https://data.forgejo.org/api/v1/repos/forgejo/runner/releases/latest | |
| return_content: true | |
| register: runner_releases | |
| - name: Install Forgejo runner | |
| when: runner_releases.json.tag_name is defined | |
| block: |
This guide will help you set up a development environment for C# and ASP.NET Core using the latest .NET 9.0 SDK and Visual Studio Code (VS Code) on Kali Linux, Windows, and macOS.
| #!/bin/bash | |
| # Determine arch version | |
| export ARCH=$(arch) | |
| if [[ $ARCH == *"armv7"* ]]; then | |
| export ARCH=armv7 # RPI 3 | |
| else | |
| export ARCH=aarch64 # RPI 4 | |
| fi |
Craft a comprehensive guide detailing various methods for dumping the LSASS.
I think This will be a valuable one and will make people stay updated on new techniques.
Procdump is a part of Microsoft Sysinternals and a command-line
utility programs for producing dumps of any running process
We can leverage it and use it fo DUMP lsass process by the following:
procdump.exe -ma lsass.exe C:\path\lsass.dmp
Mimikatz can both dump the LSASS process and read from an LSASS dump:
AX3000 Dual-Band Gigabit Wi-Fi 6 Router AX9
Spice up termux with beautiful themes and productivity plugins to make your life easier!
pkg install zsh git lsd vim
| { | |
| "$schema": "https://lnav.org/schemas/format-v1.schema.json", | |
| "caddy": { | |
| "title": "Caddy Server", | |
| "description": "Caddy Server JSON access logs format", | |
| "url": [ | |
| "https://caddyserver.com/docs/caddyfile/directives/log" | |
| ], | |
| "json": true, | |
| "timestamp-field": "ts", |