Skip to content
View eduolihez's full-sized avatar
📚
Learning Go
📚
Learning Go

Block or report eduolihez

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
eduolihez/readme.md

Hi 👋! My name is Edu, and I'm a student, from Barcelona

stats graph languages graph

html5 logo css3 logo discordjs logo python logo markdown logo chrome logo git logo linux logo raspberrypi logo wordpress logo canva logo

github-snake

Pinned Loading

  1. BinCat BinCat Public

    BinCat, is designed to manage and generate secure tokens for authentication purposes. It provides a simple interface to generate, validate, and revoke tokens, ensuring secure access to various syst…

    Python

  2. JWT_Token_Tool JWT_Token_Tool Public

    A powerful and user-friendly command-line tool written in Go for creating, analyzing, and verifying JWT tokens. Simplify your development and debugging workflows with intuitive commands and colorfu…

    Go 1

  3. uuid_auth uuid_auth
    1
    import subprocess, requests, time, os
    2
    
                  
    3
    hwid = subprocess.check_output('wmic csproduct get uuid').decode().split('\n')[1].strip()
    4
    r = requests.get('URL_HERE') # Paste your URL  e.g(https://pastebin.com)
    5
    
                  
  4. get_windows_license_key get_windows_license_key
    1
    import subprocess
    2
    
                  
    3
    product_key = subprocess.run('powershell -Command "(Get-WmiObject -Class SoftwareLicensingService).OA3xOriginalProductKey"', capture_output=True, shell=True, text=True)
    4
    product_key = product_key.stdout.strip() if product_key.returncode == 0 and product_key.stdout.strip() != "" else "Failed to get product key"
    5