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

Block or report daniel0x00

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. Invoke-MailboxAudit Invoke-MailboxAudit Public

    Enumerates all Microsoft Exchange mail permissions of a user: MailBox level, SendAs, SendOnBehalf, Folder user-assigned permissions (Top of Information Store, Inbox, Sent Items, Calendar, etc) and …

    PowerShell 2

  2. Infoblox-Grid-PowerShell Infoblox-Grid-PowerShell Public

    Infoblox GRID PowerShell wrapper to pull Domains & Domain records. It doesn't use API account, instead HTTP crawling technique.

    PowerShell 1

  3. splunk.conf-keynotes splunk.conf-keynotes Public

    Slides and code shared with the community.

  4. PSYahooFinance PSYahooFinance Public

    PowerShell wrapper of Yahoo Finance Stock Market OHLC quotes. Intraday (starting at 1min), daily, weekly and monthly candlesticks.

    PowerShell 4 1

  5. Converts a PowerShell array object t... Converts a PowerShell array object to a Splunk HTTP Event Collector (HEC) valid grouped payload.
    1
    function ConvertTo-SplunkHEC {
    2
        # PowerShell cmdlet that receives an array and converts it to a Splunk HEC grouped payload. 
    3
        
    4
        # Author:   Daniel Ferreira (@daniel0x00)
    5
        # License:  BSD 3-Clause
  6. PowerShell Azure Function that takes... PowerShell Azure Function that takes an array object as input and outputs a JSON array with multiple chunks of Splunk-HEC compliant objects.
    1
    using namespace System.Net
    2
    param($Request, $TriggerMetadata)
    3
    
                  
    4
    ###
    5
    # PowerShell serverless Function that receives a HTTP POST payload and converts it to a Splunk HEC grouped payload, optionally adding selected DotNotation properties.