Skip to content
View neu5ron's full-sized avatar

Highlights

  • Pro
Block or Report

Block or report neu5ron

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. WinLogsZero2Hero WinLogsZero2Hero Public

    This is a repository from Adam Swan and I's presentation on Windows Logs Zero 2 Hero.

    PowerShell 23 4

  2. TMInfosec TMInfosec Public

    Repository of all the sites related to infosec IP/Domain/Hash/SSL/etc OSINT and eventually will include more.

    62 10

  3. domaininformation domaininformation Public

    domain information in JSON format

    Python 10 1

  4. ipinformation ipinformation Public

    ip information in JSON format

    Python 1 2

  5. dynamic_dns_lists dynamic_dns_lists Public

    Lists of Dynamic DNS Domains/FQDNs as well as lists of services/providers that offer free dynamic dns domains.

    11 3

  6. Valid domain name regex including in... Valid domain name regex including internationalized domain name
    1
    domain_regex = r'(([\da-zA-Z])([_\w-]{,62})\.){,127}(([\da-zA-Z])[_\w-]{,61})?([\da-zA-Z]\.((xn\-\-[a-zA-Z\d]+)|([a-zA-Z\d]{2,})))'
    2
    
                  
    3
    #Python
    4
    domain_regex = '{0}$'.format(domain_regex)
    5
    valid_domain_name_regex = re.compile(domain_regex, re.IGNORECASE)