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

Block or report glaubermagal

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
glaubermagal/README.md
Full Stack Software Engineer and a tech enthusiast passionate about
crafting innovative solutions that bridge code and creativity

Pinned

  1. evilurl evilurl Public

    EvilURL is a cybersecurity tool designed to safeguard against IDN homograph attacks by identifying visually similar domain names

    Python 3

  2. sign.js sign.js
    1
    import * as crypto from 'crypto';
    2
    import * as fs from 'fs';
    3
    import * as path from 'path';
    4
    
                  
    5
    // Read the private key
  3. verify.js verify.js
    1
    import * as crypto from 'crypto';
    2
    import * as fs from 'fs';
    3
    import * as path from 'path';
    4
    
                  
    5
    // Read the public key
  4. get_hmac.js get_hmac.js
    1
    import { createHmac } from "crypto";
    2
    
                  
    3
    const SHARED_SECRET = 'random string';
    4
    
                  
    5
    /**
  5. validate_hmac.js validate_hmac.js
    1
    import { createHmac, timingSafeEqual } from "crypto";
    2
    
                  
    3
    const sharedSecret = 'random string';
    4
    const hmac = 'generated hmac';
    5
    
                  
  6. theme-deploy theme-deploy Public

    Just a tool to compare the local Shopify theme with the remote theme before deploying

    Shell 2 2