Skip to content
View Courtney-Coetser's full-sized avatar
Block or Report

Block or report Courtney-Coetser

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. domains-scanned domains-scanned Public

    Overall, this script gets the domain names that have been scanned by subdomainfinder.c99.nl and saves the data to a file, processes the file content every minute, and repeats the process in a loop.

  2. Teleprompter Teleprompter Public

    Python

  3. This PowerShell command retrieves a ... This PowerShell command retrieves a list of directories named ".git" within the current directory and its subdirectories. It specifically targets hidden directories, and it suppresses error messages to execute silently. The full paths of the identified directories are then displayed using the Write-Host cmdlet.
    1
    <#
    2
    # Get child items (files and directories) in the current directory (.) and its subdirectories
    3
    Get-ChildItem . `
    4
        # Filter items based on attributes: directories and hidden items
    5
        -Attributes Directory+Hidden `