Skip to content
View glides's full-sized avatar
🌮
Eating tacos...
🌮
Eating tacos...
  • Glitchware, Inc.
  • Your EIP register

Block or report glides

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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 Loading

  1. CertifEyeCertifEyePublic

    An AI-powered detection system for identifying potential abuse of Active Directory Certificate Services (AD CS) misconfigurations

    Python 2

  2. dnscat2-powershelldnscat2-powershellPublic

    Forked from lukebaggett/dnscat2-powershell

    A Powershell client for dnscat2, an encrypted DNS command and control tool.

    PowerShell 1

  3. Encrypt AES-256 in BooEncrypt AES-256 in Boo
    1
    # AES-256 with key encryption function Boo Lang
    2
    3
    public static defencrypt(cleartextas (byte), key as string) as (byte):
    4
    usingaesAlg= Aes.Create():
    5
    salt=array(byte,[0x12,0x35,0x56,0x78,0x90,0xAB,0xAD,0xEF,0xDD,0x31])
  4. Decrypt AES-256 in BooDecrypt AES-256 in Boo
    1
    # AES-256 with key decryption function Boo Lang
    2
    3
    public static defdecrypt(ciphertextas (byte), key as string) as (byte):
    4
    usingaesAlg= Aes.Create():
    5
    salt=array(byte,[0x12,0x35,0x56,0x78,0x90,0xAB,0xAD,0xEF,0xDD,0x31])