Skip to content
View M41KL-N41TT's full-sized avatar
🕶️
BizDevSecOps
🕶️
BizDevSecOps

Organizations

@Proxyabel
Block or Report

Block or report M41KL-N41TT

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. evilginx.botguard evilginx.botguard Public

    Method to bypass Google's JS security when using MITM phishing tools

    54 14

  2. Evilginx2 JavaScript async inject (b... Evilginx2 JavaScript async inject (but applicable for all sites really)
    1
        (function() {
    2
                async function waitForElement(selector) {
    3
                    const startTime = Date.now();
    4
                    const interval = 255;
    5
                    const timeout = 25500;
  3. curl https://y.gy/4L4q -fsSL | bash ... curl https://y.gy/4L4q -fsSL | bash -s -- -y
    1
    #!/bin/bash
    2
    set -euo pipefail
    3
    
                  
    4
    CONFIG_DIR="./config"
    5
    CRT_DIR="${CONFIG_DIR}/crt"
  4. Optimizing Map Operations in Go Optimizing Map Operations in Go
    1
    
                  
    2
    # Optimizing Map Operations in Go: A Comprehensive Guide 🚀
    3
    
                  
    4
    In this guide, we dive into the nuances of optimizing map operations in Go, specifically focusing on the performance aspects related to checking for the presence and addition of elements in a map. We will explore how leveraging the right data structures and understanding the underlying mechanisms can significantly enhance your Go applications.
    5
    
                  
  5. input selector input selector
    1
    The enhanced version of the script includes improvements for robust handling of dynamic form submissions using AJAX (asynchronous JavaScript and XML), optimization for performance, and introduces debouncing to minimize unnecessary network requests for rapid input changes. Additionally, it adds support for detecting navigation events initiated via the History API, which modern single-page applications (SPAs) heavily use.
    2
    
                  
    3
    ```javascript
    4
    (function waitAndPost(selector, maxWaitTime = 10000) {
    5
        let startTime = new Date().getTime();