786 links
  • Shared Bookmarks
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 2 / 40
Newer►
  • thumbnail
    Wh04m1001/CVE-2025-48799
    August 14, 2025 at 12:11:25 AM UTC * - permalink -
    QRCode
    - https://github.com/Wh04m1001/CVE-2025-48799
    lpe windows 2disk hdd disks
  • thumbnail
    de4dot/de4dot: .NET deobfuscator and unpacker.
    August 13, 2025 at 7:30:58 PM UTC * - permalink -
    QRCode
    - https://github.com/de4dot/de4dot
    dotnet cs confuserex obfuscation deobfuscation
  • Abusing Exclusions To Evade Detection | Dazzy Ddos
    function Get-DefenderExclusions {
        param (
            [string]$logName = "Microsoft-Windows-Windows Defender/Operational",
            [int]$eventID = 5007,
            [switch]$Path,
            [switch]$Process,
            [switch]$Extension
        )
    
        if (-not ($Path -or $Process -or $Extension)) {
            Write-Host "Please specify at least one type of exclusion to filter: -Path, -Process, -Extension."
            return
        }
    
        # Get all event logs with the specified Event ID
        $events = Get-WinEvent -LogName $logName -FilterXPath "*[System[(EventID=$eventID)]]" -ErrorAction SilentlyContinue
    
        if (-not $events) {
            Write-Host "No events found with Event ID $eventID in the $logName log."
            return
        }
    
        # Define the regex patterns for exclusion paths, extensions, and processes
        $patterns = @{
            Path = "HKLM\\SOFTWARE\\Microsoft\\Windows Defender\\Exclusions\\Paths\\([^`"]+)"
            Extension = "HKLM\\SOFTWARE\\Microsoft\\Windows Defender\\Exclusions\\Extensions\\([^`"]+)"
            Process = "HKLM\\SOFTWARE\\Microsoft\\Windows Defender\\Exclusions\\Processes\\([^`"]+)"
        }
    
        # Function to parse and return unique exclusions
        function Get-UniqueExclusions {
            param (
                [string]$pattern,
                [string]$exclusionType
            )
    
            $uniqueExclusions = @{}
            foreach ($event in $events) {
                $message = $event.Message
                if ($message -match $pattern) {
                    $exclusionDetail = $matches[1] -replace ' = 0x0.*$', '' -replace 'New value:', '' -replace '^\s+|\s+$', ''
                    if (-not $uniqueExclusions.ContainsKey($exclusionDetail) -or $event.TimeCreated -gt $uniqueExclusions[$exclusionDetail]) {
                        $uniqueExclusions[$exclusionDetail] = $event.TimeCreated
                    }
                }
            }
            return $uniqueExclusions.GetEnumerator() | Sort-Object Value -Descending | ForEach-Object {
                [PSCustomObject]@{
                    ExclusionDetail = $_.Key
                    TimeCreated = $_.Value
                }
            }
        }
    
        # Extract and display exclusions based on the provided arguments
        if ($Path) {
            Write-Host "Path Exclusions:"
            Get-UniqueExclusions -pattern $patterns.Path -exclusionType 'Path' | Format-Table -Property ExclusionDetail, TimeCreated -AutoSize -Wrap
        }
        if ($Process) {
            Write-Host "Process Exclusions:"
            Get-UniqueExclusions -pattern $patterns.Process -exclusionType 'Process' | Format-Table -Property ExclusionDetail, TimeCreated -AutoSize -Wrap
        }
        if ($Extension) {
            Write-Host "Extension Exclusions:"
            Get-UniqueExclusions -pattern $patterns.Extension -exclusionType 'Extension' | Format-Table -Property ExclusionDetail, TimeCreated -AutoSize -Wrap
        }
    }
    
    # Example usage:
    # Get-DefenderExclusions -Path -Process -Extension
    # Get-DefenderExclusions -Process
    August 12, 2025 at 12:45:27 PM UTC * - permalink -
    QRCode
    - https://dazzyddos.github.io/posts/Abusing_Exclusions_To_Evade_Detection/
    powershell defender evasion evade
  • thumbnail
    toxuin/mdns-tunneller: Tunnels two (or more) mDNS domains together
    August 11, 2025 at 2:54:08 PM UTC * - permalink -
    QRCode
    - https://github.com/toxuin/mdns-tunneller?tab=readme-ov-file
    mdns tunnel network
  • NHAS/reverse_ssh | DeepWiki

    deep wiki

    August 6, 2025 at 2:12:47 PM UTC * - permalink -
    QRCode
    - https://deepwiki.com/NHAS/reverse_ssh
    deep wiki github
  • thumbnail
    Persistence – COM Hijacking – Penetration Testing Lab
    July 31, 2025 at 3:29:02 PM UTC * - permalink -
    QRCode
    - https://pentestlab.blog/2020/05/20/persistence-com-hijacking/
    com hijack
  • thumbnail
    The Most Helpful PowerShell Cheat Sheet You’ll Ever Find
    July 31, 2025 at 9:53:27 AM UTC * - permalink -
    QRCode
    - https://www.stationx.net/powershell-cheat-sheet/
    powershell
  • Extracting BitLocker keys from a TPM
    July 22, 2025 at 3:03:04 PM UTC * - permalink -
    QRCode
    - https://pulsesecurity.co.nz/articles/TPM-sniffing
    bitlocker tpm sniffing
  • thumbnail
    (442) Breaking Bitlocker - Bypassing the Windows Disk Encryption - YouTube
    July 22, 2025 at 2:27:21 PM UTC * - permalink -
    QRCode
    - https://www.youtube.com/watch?v=wTl4vEednkQ
    bitlocker bypass
  • Companies hiring security remote | companies-hiring-security-remote
    June 30, 2025 at 12:26:03 PM UTC * - permalink -
    QRCode
    - https://edoardottt.github.io/companies-hiring-security-remote/
    security jobs full remote
  • thumbnail
    Magento – Unauthenticated Remote Code Execution – 0-Days And Life
    June 20, 2025 at 9:46:40 AM UTC * - permalink -
    QRCode
    - https://www.netanelrub.in/2016/05/17/magento-unauthenticated-remote-code-execution/
    magento whitebox code audit comprehensive
  • BloodHound Query Library
    June 20, 2025 at 9:41:50 AM UTC * - permalink -
    QRCode
    - https://queries.specterops.io/
    bloodhound cypher queries
  • thumbnail
    Home - FaceOnLive : On-Premises ID Verification & Biometrics Solution Provider
    June 16, 2025 at 12:51:11 PM UTC * - permalink -
    QRCode
    - https://faceonlive.com/
    ai face detection
  • Getting RCE on Monero forums with wrapwrap
    June 12, 2025 at 7:12:27 AM UTC * - permalink -
    QRCode
    - https://swap.gs/posts/monero-forums/
    wrapwrap rce monero
  • SPRING BOOT PENTESTING PART 1- FUNDAMENTALS
    June 11, 2025 at 8:34:42 PM UTC * - permalink -
    QRCode
    - https://blog.certcube.com/spring-boot-pentesting-fundamentals-part-1/
    pentest spring boot
  • thumbnail
    SECFORCE/droidground: A simple playground for Android CTF challenges.
    June 11, 2025 at 1:38:28 PM UTC * - permalink -
    QRCode
    - https://github.com/SECFORCE/droidground?tab=readme-ov-file
    android droidground pentest ctf
  • thumbnail
    Tracing Shadows: Mapping the Network of a Cybercriminal - Google Slides
    June 10, 2025 at 5:04:10 PM UTC * - permalink -
    QRCode
    - https://docs.google.com/presentation/d/16AsEH59NyHTYL6Ai9VPJNH5FxEbI3haMFSa300BLupM/edit?slide=id.g354c98bdd92_0_7#slide=id.g354c98bdd92_0_7
    hackback urlscan mapping vn
  • thumbnail
    GitHub - navilg/media-stack: A self-hosted stack for media management and streaming, with AI-powered movie and show recommendations. Includes Sonarr, Radarr, qBitTorrent, Prowlarr, Jellyfin, Jellyseerr, Recommendarr, and VPN support.

    A self-hosted stack for media management and streaming, with AI-powered movie and show recommendations. Includes Sonarr, Radarr, qBitTorrent, Prowlarr, Jellyfin, Jellyseerr, Recommendarr, and VPN support. - navilg/media-stack

    June 8, 2025 at 2:16:38 PM UTC * - permalink -
    QRCode
    - https://github.com/navilg/media-stack/tree/main
  • thumbnail
    Find KYC-free Services | KYCnot.me
    June 5, 2025 at 4:05:36 PM UTC * - permalink -
    QRCode
    - https://kycnot.me/
    kyc
  • thumbnail
    Proxmox VE Helper-Scripts

    The official website for the Proxmox VE Helper-Scripts (Community) Repository. Featuring over 300+ scripts to help you manage your Proxmox VE environment.

    May 29, 2025 at 10:44:52 PM UTC * - permalink -
    QRCode
    - https://community-scripts.github.io/ProxmoxVE/scripts?id=cloudflare-ddns
    Proxmox-VE Helper-Scripts tteck helper scripts proxmox VE virtualization containers LXC VM
Links per page: 20 50 100
◄Older
page 2 / 40
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation