Getting Startd with STM32 : Pulse Width Modulation(PWM)


Published Dec. 11, 2024, 8:40 a.m. by Ezra Ogori

Introduction

In today's guide, we’ll explore how to use PWM (Pulse Width Modulation) to control the blinking of an LED on the STM32F411RE microcontroller. The focus will be on bare-metal programming—writing the code from scratch without relying on HAL or other abstraction libraries. By the end of this tutorial, you'll understand the fundamentals of PWM, the equations that define its parameters, and the steps to implement it effectively.

What is PWM?

PWM is a technique used to control the average power delivered to electronic devices by switching a digital signal on and off at a high frequency. The "on" time is known as the duty cycle, and it determines how much power is delivered.

For example, a 50% duty cycle means the signal is ON half of the time and OFF the other half. PWM is widely used for dimming LEDs, controlling motors, and other applications requiring variable power control.

PWM Equations

PWM Equations

The frequency of the PWM signal is given by:

\[ f_{PWM} = \frac{f_{clk}}{(PSC + 1) \cdot (ARR + 1)} \]

Where:

  • fclk is the input clock frequency
  • PSC is the prescaler value
  • ARR is the auto-reload value

The duty cycle of the PWM signal is given by:

\[ D = \frac{CCR}{ARR + 1} \times 100\% \]

Where:

  • CCR is the capture/compare register value
  • ARR is the auto-reload register value

Required Hardware and Software

  • STM32F411RE Nucleo Board.
  • LED and resistor (330Ω recommended).
Hardware Connections

Hardware Connections

Component Pin on STM32F411RE Description
LED PA5 Connected to TIM2_CH1 for PWM control
External Clock HSE Provides stable clock source
Ground GND Shared ground for circuit

Thumbnail Image

Step 1: Setting Up the STM32F411RE Timer for PWM

To generate a PWM signal, we will use TIM2 in PWM mode. We'll configure it to produce a 1 kHz signal with a variable duty cycle.

Step 2: Steps to Configure TIM2

  1. Enable the clock for TIM2 and GPIOA (for the LED pin).
  2. Configure GPIOA Pin 5 as Alternate Function for TIM2_CH1.
  3. Configure the TIM2 timer for PWM mode.
  4. Write to the TIM2 Compare Register to adjust the duty cycle.
  5. Start the timer.

Step 3: Complete Bare-Metal Code

Steps to achieve the result

Step 3.1: System Clock Setup
Code Snippet Copy
#include "stm32f411xe.h"

void SystemClock_Config(void) {
    RCC->CR1 |= RCC_CR_HSEON;               // Enable High-Speed External (HSE) clock 
    while (!(RCC->CR1 & RCC_CR_HSERDY));    // Wait for HSE to be ready 

    RCC->CFGR |= RCC_CFGR_SW_HSE;          // Select HSE as system clock
    while (!(RCC->CFGR & RCC_CFGR_SWS_HSE)); // Wait until HSE is system clock
}
        
Step 3.2: GPIO Setup for LED
Code Snippet Copy
void GPIO_Config(void) {
    RCC->AHB1ENR |= RCC_AHB1ENR_GPIOAEN;   // Enable clock for GPIOA

    GPIOA->MODER &= ~GPIO_MODER_MODE5;     // Clear mode for Pin 5
    GPIOA->MODER |= GPIO_MODER_MODE5_1;    // Set Pin 5 to Alternate Function

    GPIOA->AFR[0] |= (1 << GPIO_AFRL_AFSEL5_Pos); // Set AF1 (TIM2_CH1) for Pin 5
}
        
Step 3.3: Timer Setup for PWM
Code Snippet Copy
void TIM2_Config(void) {
    RCC->APB1ENR |= RCC_APB1ENR_TIM2EN;    // Enable clock for TIM2

    TIM2->PSC = 16 - 1;                    // Set prescaler to 16 (1 MHz timer frequency)
    TIM2->ARR = 1000 - 1;                  // Set Auto-Reload to 999 for 1 kHz PWM
    TIM2->CCMR1 |= (6 << TIM_CCMR1_OC1M_Pos); // Set PWM mode 1
    TIM2->CCMR1 |= TIM_CCMR1_OC1PE;        // Enable preload for CCR1

    TIM2->CER |= TIM_CCER_CC1E;           // Enable output on channel 1
    TIM2->CR1 = 500;                      // Start with 50% duty cycle

    TIM2->CR1 |= TIM_CR1_ARPE;             // Enable auto-reload preload
    TIM2->CR1 |= TIM_CR1_CEN;              // Enable TIM2
}
        
Step 3.4: Adjusting the Duty Cycle
Code Snippet Copy
void setDutyCycle(uint8_t dutyCycle) {
    if (dutyCycle > 100) dutyCycle = 100;  // Cap at 100%
    TIM2->CCR1 = (TIM2->ARR + 1) * dutyCycle / 100;
}
        
Step 3.5: Main Function
Code Snippet Copy
int main(void) {
    SystemClock_Config();                  // Configure system clock
    GPIO_Config();                         // Configure GPIO for LED
    TIM2_Config();                         // Configure TIM2 for PWM

    while (1) {
        for (uint8_t i = 0; i <= 100; i++) {
            setDutyCycle(i);               // Increase brightness
            for (volatile int j = 0; j < 10000; j++); // Delay
        }

        for (uint8_t i = 100; i > 0; i--) {
            setDutyCycle(i);               // Decrease brightness
            for (volatile int j = 0; j < 10000; j++); // Delay
        }
    }
}
        

Explanation of Code

  1. System Clock Setup: The microcontroller uses the HSE clock for stability.
  2. GPIO Configuration: Pin PA5 is set to alternate function mode for TIM2_CH1.
  3. Timer Configuration: TIM2 is set up for PWM mode with a 1 kHz frequency.
  4. Duty Cycle Adjustment: The setDutyCycle() function modifies the brightness of the LED by changing the ON time of the PWM signal.

Conclusion

We walked through configuring PWM on the STM32F411RE in bare-metal programming. PWM offers precise control over devices, making it essential for embedded systems projects. With this foundation, you can explore more complex applications like motor control or RGB LED dimming. Keep experimenting.

Happy coding!

Similar posts


Designing Power Efficient Devices(firmware)

When developing embedded systems, power efficiency is one of the …

Getting Started with Stm32 : RC522 RFID Reader

Introduction

In today’s guide, we’ll explore the use of RFID …

Getting started with Stm32: Choosing the Right Microcontroller for Your Project

How to Choose the Ideal STM32 Microcontroller for Your Project

808 comments


pHqghUme Sept. 20, 2025, 8:54 p.m.

1

pHqghUme Sept. 20, 2025, 8:55 p.m.

1

pHqghUme Sept. 20, 2025, 8:55 p.m.

1

pHqghUme Sept. 20, 2025, 8:55 p.m.

1

pHqghUme Sept. 20, 2025, 8:56 p.m.

8WUmGgqZ

pHqghUme Sept. 20, 2025, 8:56 p.m.

1

pHqghUme Sept. 20, 2025, 8:56 p.m.

*1

pHqghUme Sept. 20, 2025, 8:56 p.m.

*1

pHqghUme Sept. 20, 2025, 8:56 p.m.

*1

pHqghUme Sept. 20, 2025, 8:56 p.m.

*1

pHqghUme Sept. 20, 2025, 8:56 p.m.

-1 OR 2+38-38-1=0+0+0+1

pHqghUme Sept. 20, 2025, 8:56 p.m.

-1 OR 3+38-38-1=0+0+0+1

pHqghUme Sept. 20, 2025, 8:56 p.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 20, 2025, 8:56 p.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 20, 2025, 8:56 p.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 20, 2025, 8:56 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 20, 2025, 8:56 p.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 8:56 p.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 8:57 p.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 8:57 p.m.

2vEQ5W0q'; waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 8:57 p.m.

-1 OR 692=(SELECT 692 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 8:58 p.m.

-1) OR 450=(SELECT 450 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 8:58 p.m.

1

pHqghUme Sept. 20, 2025, 8:58 p.m.

-1)) OR 217=(SELECT 217 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 8:58 p.m.

1

pHqghUme Sept. 20, 2025, 8:58 p.m.

Q7xnrmSN' OR 387=(SELECT 387 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 8:58 p.m.

1

pHqghUme Sept. 20, 2025, 8:58 p.m.

H0TiqwWi') OR 97=(SELECT 97 FROM PG_SLEEP(15))--

pHqghUmertxyt5tY Sept. 20, 2025, 8:58 p.m.

1

pHqghUme Sept. 20, 2025, 8:58 p.m.

y5IHWuq2')) OR 687=(SELECT 687 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 8:58 p.m.

1

pHqghUme Sept. 20, 2025, 8:58 p.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

-1 OR 2+747-747-1=0+0+0+1 -- Sept. 20, 2025, 8:58 p.m.

1

-1 OR 2+291-291-1=0+0+0+1 Sept. 20, 2025, 8:58 p.m.

1

-1' OR 2+647-647-1=0+0+0+1 -- Sept. 20, 2025, 8:58 p.m.

1

-1' OR 2+397-397-1=0+0+0+1 or 'mpQXfyU8'=' Sept. 20, 2025, 8:58 p.m.

1

-1" OR 2+752-752-1=0+0+0+1 -- Sept. 20, 2025, 8:58 p.m.

1

pHqghUme Sept. 20, 2025, 8:58 p.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 20, 2025, 8:58 p.m.

'"

pHqghUme Sept. 20, 2025, 8:58 p.m.

����%2527%2522\'\"

pHqghUme Sept. 20, 2025, 8:58 p.m.

@@cH2Nm

if(now()=sysdate(),sleep(15),0) Sept. 20, 2025, 8:58 p.m.

1

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 20, 2025, 8:58 p.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 20, 2025, 8:58 p.m.

1

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 20, 2025, 8:59 p.m.

1

pHqghUmeDadvJ9yV'; waitfor delay '0:0:15' -- Sept. 20, 2025, 8:59 p.m.

1

pHqghUmef5jZwAqV' OR 453=(SELECT 453 FROM PG_SLEEP(15))-- Sept. 20, 2025, 8:59 p.m.

1

pHqghUmeVIin9AG0') OR 442=(SELECT 442 FROM PG_SLEEP(15))-- Sept. 20, 2025, 8:59 p.m.

1

pHqghUmevstIiXsb')) OR 954=(SELECT 954 FROM PG_SLEEP(15))-- Sept. 20, 2025, 8:59 p.m.

1

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 20, 2025, 8:59 p.m.

1

pHqghUme Sept. 20, 2025, 8:59 p.m.

1

pHqghUme'" Sept. 20, 2025, 8:59 p.m.

1

pHqghUme����%2527%2522\'\" Sept. 20, 2025, 8:59 p.m.

1

@@uFWmp Sept. 20, 2025, 8:59 p.m.

1

pHqghUme Sept. 20, 2025, 8:59 p.m.

1

pHqghUme Sept. 20, 2025, 9 p.m.

1

pHqghUme Sept. 20, 2025, 9 p.m.

1

pHqghUme Sept. 20, 2025, 9:01 p.m.

1

pHqghUme Sept. 20, 2025, 9:03 p.m.

1

pHqghUme Sept. 20, 2025, 9:03 p.m.

1

pHqghUme Sept. 20, 2025, 9:03 p.m.

1

pHqghUme Sept. 20, 2025, 9:03 p.m.

14nx3mxrc

pHqghUme Sept. 20, 2025, 9:03 p.m.

1

pHqghUme Sept. 20, 2025, 9:03 p.m.

-1 OR 2+781-781-1=0+0+0+1 --

pHqghUme Sept. 20, 2025, 9:03 p.m.

-1 OR 2+10-10-1=0+0+0+1

pHqghUme Sept. 20, 2025, 9:03 p.m.

-1' OR 2+582-582-1=0+0+0+1 --

pHqghUme Sept. 20, 2025, 9:03 p.m.

-1' OR 2+705-705-1=0+0+0+1 or 'fyfdj7Kf'='

pHqghUme Sept. 20, 2025, 9:03 p.m.

-1" OR 2+955-955-1=0+0+0+1 --

pHqghUme Sept. 20, 2025, 9:03 p.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 20, 2025, 9:03 p.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 20, 2025, 9:03 p.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 20, 2025, 9:03 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 20, 2025, 9:04 p.m.

1-1; waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 9:04 p.m.

1-1); waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 9:04 p.m.

1-1 waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 9:04 p.m.

1fWpiLs3M'; waitfor delay '0:0:15' --

pHqghUme Sept. 20, 2025, 9:05 p.m.

1-1 OR 178=(SELECT 178 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 9:05 p.m.

1-1) OR 78=(SELECT 78 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 9:05 p.m.

1-1)) OR 736=(SELECT 736 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 9:05 p.m.

1lUZuTnWx' OR 679=(SELECT 679 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 9:05 p.m.

1wl20dVtH') OR 130=(SELECT 130 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 9:05 p.m.

1ojRlGDx1')) OR 260=(SELECT 260 FROM PG_SLEEP(15))--

pHqghUme Sept. 20, 2025, 9:05 p.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 20, 2025, 9:05 p.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 20, 2025, 9:05 p.m.

1

pHqghUme Sept. 20, 2025, 9:05 p.m.

1'"

pHqghUme Sept. 20, 2025, 9:05 p.m.

1����%2527%2522\'\"

pHqghUme Sept. 20, 2025, 9:05 p.m.

@@3bxuR

pHqghUme Sept. 22, 2025, 11:39 a.m.

1

pHqghUme Sept. 22, 2025, 11:39 a.m.

1

pHqghUme Sept. 22, 2025, 11:40 a.m.

PGt0TmZ2

pHqghUme Sept. 22, 2025, 11:40 a.m.

*1

pHqghUme Sept. 22, 2025, 11:40 a.m.

*1

pHqghUme Sept. 22, 2025, 11:40 a.m.

*1

pHqghUme Sept. 22, 2025, 11:40 a.m.

*1

pHqghUme Sept. 22, 2025, 11:40 a.m.

-1 OR 2+23-23-1=0+0+0+1

pHqghUme Sept. 22, 2025, 11:40 a.m.

-1 OR 3+23-23-1=0+0+0+1

pHqghUme Sept. 22, 2025, 11:40 a.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 22, 2025, 11:40 a.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 22, 2025, 11:40 a.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 22, 2025, 11:40 a.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 22, 2025, 11:41 a.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:41 a.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:41 a.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:41 a.m.

rfePGm48'; waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:41 a.m.

-1 OR 169=(SELECT 169 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:41 a.m.

-1) OR 89=(SELECT 89 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:41 a.m.

-1)) OR 464=(SELECT 464 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:41 a.m.

aTvnkWIo' OR 778=(SELECT 778 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:41 a.m.

cJGMW082') OR 971=(SELECT 971 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:41 a.m.

mENpJGRN')) OR 406=(SELECT 406 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:41 a.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 22, 2025, 11:41 a.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 22, 2025, 11:41 a.m.

'"

pHqghUme Sept. 22, 2025, 11:41 a.m.

����%2527%2522\'\"

pHqghUme Sept. 22, 2025, 11:41 a.m.

@@qc7mq

pHqghUme Sept. 22, 2025, 11:42 a.m.

555

pHqghUme Sept. 22, 2025, 11:42 a.m.

1

pHqghUme Sept. 22, 2025, 11:42 a.m.

1

pHqghUme Sept. 22, 2025, 11:43 a.m.

1

pHqghUme Sept. 22, 2025, 11:43 a.m.

555

pHqghUme Sept. 22, 2025, 11:43 a.m.

555

pHqghUme Sept. 22, 2025, 11:43 a.m.

555

pHqghUme Sept. 22, 2025, 11:44 a.m.

1

pHqghUme Sept. 22, 2025, 11:44 a.m.

1

pHqghUme Sept. 22, 2025, 11:44 a.m.

1

pHqghUmeE8U4TfNe Sept. 22, 2025, 11:44 a.m.

1

pHqghUme Sept. 22, 2025, 11:44 a.m.

1

-1 OR 2+522-522-1=0+0+0+1 -- Sept. 22, 2025, 11:44 a.m.

1

-1 OR 2+163-163-1=0+0+0+1 Sept. 22, 2025, 11:44 a.m.

1

-1' OR 2+287-287-1=0+0+0+1 -- Sept. 22, 2025, 11:44 a.m.

1

-1' OR 2+86-86-1=0+0+0+1 or 'GBbCXDmb'=' Sept. 22, 2025, 11:44 a.m.

1

-1" OR 2+138-138-1=0+0+0+1 -- Sept. 22, 2025, 11:44 a.m.

1

if(now()=sysdate(),sleep(15),0) Sept. 22, 2025, 11:44 a.m.

1

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 22, 2025, 11:44 a.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 22, 2025, 11:45 a.m.

1

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 22, 2025, 11:45 a.m.

1

pHqghUmeXnDeKvgu'; waitfor delay '0:0:15' -- Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:45 a.m.

555

pHqghUmevbAq7Y7m' OR 467=(SELECT 467 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:45 a.m.

1

pHqghUmegCNbtRwQ') OR 977=(SELECT 977 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:45 a.m.

555

pHqghUmekiXozorh')) OR 384=(SELECT 384 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:45 a.m.

555

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:45 a.m.

1

pHqghUme'" Sept. 22, 2025, 11:45 a.m.

1

pHqghUme����%2527%2522\'\" Sept. 22, 2025, 11:45 a.m.

1

@@kJe4D Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:45 a.m.

555

pHqghUme Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:45 a.m.

555

pHqghUme Sept. 22, 2025, 11:45 a.m.

1

pHqghUme Sept. 22, 2025, 11:46 a.m.

1

pHqghUme Sept. 22, 2025, 11:46 a.m.

1

pHqghUme Sept. 22, 2025, 11:47 a.m.

1

pHqghUme Sept. 22, 2025, 11:47 a.m.

1

pHqghUme Sept. 22, 2025, 11:47 a.m.

1

pHqghUme Sept. 22, 2025, 11:47 a.m.

1gPRDjL2J

pHqghUme Sept. 22, 2025, 11:47 a.m.

555

pHqghUme Sept. 22, 2025, 11:47 a.m.

1

pHqghUme Sept. 22, 2025, 11:47 a.m.

-1 OR 2+719-719-1=0+0+0+1 --

pHqghUme Sept. 22, 2025, 11:47 a.m.

-1 OR 2+998-998-1=0+0+0+1

pHqghUme Sept. 22, 2025, 11:47 a.m.

-1' OR 2+595-595-1=0+0+0+1 --

pHqghUme Sept. 22, 2025, 11:47 a.m.

-1' OR 2+386-386-1=0+0+0+1 or 'AHvlOjI6'='

pHqghUme Sept. 22, 2025, 11:47 a.m.

-1" OR 2+567-567-1=0+0+0+1 --

pHqghUme Sept. 22, 2025, 11:47 a.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 22, 2025, 11:47 a.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 22, 2025, 11:47 a.m.

555

pHqghUme Sept. 22, 2025, 11:47 a.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 22, 2025, 11:47 a.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 22, 2025, 11:47 a.m.

555

pHqghUme Sept. 22, 2025, 11:47 a.m.

1-1; waitfor delay '0:0:15' --

pHqghUmeOZq9GBEj Sept. 22, 2025, 11:47 a.m.

555

pHqghUme Sept. 22, 2025, 11:47 a.m.

1-1); waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:47 a.m.

1-1 waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:47 a.m.

1K8iubqLd'; waitfor delay '0:0:15' --

pHqghUme Sept. 22, 2025, 11:47 a.m.

555

-1 OR 2+896-896-1=0+0+0+1 -- Sept. 22, 2025, 11:47 a.m.

555

-1 OR 2+439-439-1=0+0+0+1 Sept. 22, 2025, 11:47 a.m.

555

pHqghUme Sept. 22, 2025, 11:47 a.m.

1-1 OR 388=(SELECT 388 FROM PG_SLEEP(15))--

-1' OR 2+750-750-1=0+0+0+1 -- Sept. 22, 2025, 11:47 a.m.

555

-1' OR 2+871-871-1=0+0+0+1 or 'eoStC2bB'=' Sept. 22, 2025, 11:47 a.m.

555

pHqghUme Sept. 22, 2025, 11:47 a.m.

1-1) OR 248=(SELECT 248 FROM PG_SLEEP(15))--

-1" OR 2+81-81-1=0+0+0+1 -- Sept. 22, 2025, 11:48 a.m.

555

pHqghUme Sept. 22, 2025, 11:48 a.m.

1-1)) OR 304=(SELECT 304 FROM PG_SLEEP(15))--

if(now()=sysdate(),sleep(15),0) Sept. 22, 2025, 11:48 a.m.

555

pHqghUme Sept. 22, 2025, 11:48 a.m.

1tqblF8K0' OR 402=(SELECT 402 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:48 a.m.

1mVLGg2Z9') OR 830=(SELECT 830 FROM PG_SLEEP(15))--

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 22, 2025, 11:48 a.m.

555

pHqghUme Sept. 22, 2025, 11:48 a.m.

1ijdNxGeE')) OR 410=(SELECT 410 FROM PG_SLEEP(15))--

pHqghUme Sept. 22, 2025, 11:48 a.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 22, 2025, 11:48 a.m.

555

pHqghUme Sept. 22, 2025, 11:48 a.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 22, 2025, 11:48 a.m.

1

pHqghUme Sept. 22, 2025, 11:48 a.m.

1'"

pHqghUme Sept. 22, 2025, 11:48 a.m.

1����%2527%2522\'\"

pHqghUme Sept. 22, 2025, 11:48 a.m.

@@Ian5Y

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 22, 2025, 11:48 a.m.

555

pHqghUmeBfUfKnVl'; waitfor delay '0:0:15' -- Sept. 22, 2025, 11:48 a.m.

555

pHqghUmemfjZ2VYr' OR 870=(SELECT 870 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:48 a.m.

555

pHqghUmeJZd4tC4a') OR 556=(SELECT 556 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:48 a.m.

555

pHqghUmeWI3V7dKw')) OR 715=(SELECT 715 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:48 a.m.

555

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 22, 2025, 11:48 a.m.

555

pHqghUme Sept. 22, 2025, 11:48 a.m.

555

pHqghUme'" Sept. 22, 2025, 11:48 a.m.

555

pHqghUme����%2527%2522\'\" Sept. 22, 2025, 11:48 a.m.

555

@@63F8h Sept. 22, 2025, 11:48 a.m.

555

pHqghUme Sept. 24, 2025, 7:57 p.m.

xvjMB55k

pHqghUme Sept. 24, 2025, 7:57 p.m.

*1

pHqghUme Sept. 24, 2025, 7:57 p.m.

*1

pHqghUme Sept. 24, 2025, 7:57 p.m.

*1

pHqghUme Sept. 24, 2025, 7:57 p.m.

*1

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1 OR 2+993-993-1=0+0+0+1

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1 OR 3+993-993-1=0+0+0+1

pHqghUme Sept. 24, 2025, 7:57 p.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 24, 2025, 7:57 p.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 24, 2025, 7:57 p.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 24, 2025, 7:57 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 24, 2025, 7:57 p.m.

GVpIb705'; waitfor delay '0:0:15' --

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1 OR 966=(SELECT 966 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 7:57 p.m.

-1) OR 70=(SELECT 70 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 7:58 p.m.

-1)) OR 11=(SELECT 11 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 7:58 p.m.

IM8BHu8e' OR 842=(SELECT 842 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 7:58 p.m.

ItrrtEwU') OR 553=(SELECT 553 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 7:58 p.m.

dN9QcuYL')) OR 411=(SELECT 411 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 7:58 p.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 24, 2025, 7:58 p.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 24, 2025, 7:58 p.m.

'"

pHqghUme Sept. 24, 2025, 7:58 p.m.

����%2527%2522\'\"

pHqghUme Sept. 24, 2025, 7:58 p.m.

@@2im3k

pHqghUme Sept. 24, 2025, 7:58 p.m.

1

pHqghUme Sept. 24, 2025, 7:58 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

555

pHqghUme Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

555

pHqghUmeXb539PfK Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

555

pHqghUme Sept. 24, 2025, 8 p.m.

1

-1 OR 2+578-578-1=0+0+0+1 -- Sept. 24, 2025, 8 p.m.

1

-1 OR 2+976-976-1=0+0+0+1 Sept. 24, 2025, 8 p.m.

1

-1' OR 2+163-163-1=0+0+0+1 -- Sept. 24, 2025, 8 p.m.

1

-1' OR 2+233-233-1=0+0+0+1 or 'd9KjppYv'=' Sept. 24, 2025, 8 p.m.

1

-1" OR 2+106-106-1=0+0+0+1 -- Sept. 24, 2025, 8 p.m.

1

if(now()=sysdate(),sleep(15),0) Sept. 24, 2025, 8 p.m.

1

pHqghUme Sept. 24, 2025, 8 p.m.

555

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 24, 2025, 8 p.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 24, 2025, 8 p.m.

1

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 24, 2025, 8 p.m.

1

pHqghUmeEtnxrqVr'; waitfor delay '0:0:15' -- Sept. 24, 2025, 8 p.m.

1

pHqghUmeZvQRLZTb' OR 584=(SELECT 584 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8 p.m.

1

pHqghUme2lTNlDlL') OR 311=(SELECT 311 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8 p.m.

1

pHqghUmefnNZdEX6')) OR 569=(SELECT 569 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.

1

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme'" Sept. 24, 2025, 8:01 p.m.

1

pHqghUme����%2527%2522\'\" Sept. 24, 2025, 8:01 p.m.

1

@@3rRo8 Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1qPvnVs1d

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

-1 OR 2+855-855-1=0+0+0+1 --

pHqghUme Sept. 24, 2025, 8:01 p.m.

-1 OR 2+257-257-1=0+0+0+1

pHqghUme Sept. 24, 2025, 8:01 p.m.

-1' OR 2+562-562-1=0+0+0+1 --

pHqghUme Sept. 24, 2025, 8:01 p.m.

-1' OR 2+55-55-1=0+0+0+1 or 'fNPkvWpx'='

pHqghUme Sept. 24, 2025, 8:01 p.m.

-1" OR 2+142-142-1=0+0+0+1 --

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUmeuXRAJdBH Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

-1 OR 2+979-979-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.

555

-1 OR 2+236-236-1=0+0+0+1 Sept. 24, 2025, 8:01 p.m.

555

-1' OR 2+956-956-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.

555

-1' OR 2+194-194-1=0+0+0+1 or 'lUh4uNF6'=' Sept. 24, 2025, 8:01 p.m.

555

-1" OR 2+486-486-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

if(now()=sysdate(),sleep(15),0) Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1-1; waitfor delay '0:0:15' --

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1-1); waitfor delay '0:0:15' --

pHqghUme Sept. 24, 2025, 8:01 p.m.

1-1 waitfor delay '0:0:15' --

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1UpnjGG7T'; waitfor delay '0:0:15' --

pHqghUmeQV1cHUBD'; waitfor delay '0:0:15' -- Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1-1 OR 157=(SELECT 157 FROM PG_SLEEP(15))--

pHqghUmePCKENaf0' OR 86=(SELECT 86 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1-1) OR 644=(SELECT 644 FROM PG_SLEEP(15))--

pHqghUmemostUpcb') OR 225=(SELECT 225 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1-1)) OR 595=(SELECT 595 FROM PG_SLEEP(15))--

pHqghUmeusX9zufT')) OR 231=(SELECT 231 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1VnAya4V1' OR 239=(SELECT 239 FROM PG_SLEEP(15))--

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

555

pHqghUme'" Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1Hwhv4nSf') OR 135=(SELECT 135 FROM PG_SLEEP(15))--

pHqghUme����%2527%2522\'\" Sept. 24, 2025, 8:01 p.m.

555

@@31lIb Sept. 24, 2025, 8:01 p.m.

555

pHqghUme Sept. 24, 2025, 8:01 p.m.

1rPDFXFyj')) OR 304=(SELECT 304 FROM PG_SLEEP(15))--

pHqghUme Sept. 24, 2025, 8:01 p.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 24, 2025, 8:01 p.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 24, 2025, 8:01 p.m.

1

pHqghUme Sept. 24, 2025, 8:01 p.m.

1'"

pHqghUme Sept. 24, 2025, 8:01 p.m.

1����%2527%2522\'\"

pHqghUme Sept. 24, 2025, 8:01 p.m.

@@cV7HM

pHqghUme Sept. 25, 2025, 12:51 a.m.

1

pHqghUme Sept. 25, 2025, 12:51 a.m.

1

pHqghUme Sept. 25, 2025, 12:51 a.m.

hLbx5BPq

pHqghUme Sept. 25, 2025, 12:52 a.m.

*1

pHqghUme Sept. 25, 2025, 12:52 a.m.

*1

pHqghUme Sept. 25, 2025, 12:52 a.m.

*1

pHqghUme Sept. 25, 2025, 12:52 a.m.

*1

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1 OR 2+303-303-1=0+0+0+1

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1 OR 3+303-303-1=0+0+0+1

pHqghUme Sept. 25, 2025, 12:52 a.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 25, 2025, 12:52 a.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 25, 2025, 12:52 a.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 25, 2025, 12:52 a.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:52 a.m.

2S9vjz5n'; waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1 OR 799=(SELECT 799 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:52 a.m.

-1) OR 697=(SELECT 697 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:53 a.m.

-1)) OR 570=(SELECT 570 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:53 a.m.

nssVhWNZ' OR 21=(SELECT 21 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:53 a.m.

hIU0XUfK') OR 838=(SELECT 838 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:53 a.m.

T80A3Irm')) OR 986=(SELECT 986 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:53 a.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 25, 2025, 12:53 a.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 25, 2025, 12:53 a.m.

'"

pHqghUme Sept. 25, 2025, 12:53 a.m.

����%2527%2522\'\"

pHqghUme Sept. 25, 2025, 12:53 a.m.

@@KaMFM

pHqghUme Sept. 25, 2025, 12:53 a.m.

1

pHqghUme Sept. 25, 2025, 12:53 a.m.

1

pHqghUme Sept. 25, 2025, 12:53 a.m.

1

pHqghUme Sept. 25, 2025, 12:54 a.m.

1

pHqghUme Sept. 25, 2025, 12:54 a.m.

1

pHqghUme Sept. 25, 2025, 12:54 a.m.

1

pHqghUmeiDj11lUS Sept. 25, 2025, 12:54 a.m.

1

pHqghUme Sept. 25, 2025, 12:54 a.m.

1

-1 OR 2+985-985-1=0+0+0+1 -- Sept. 25, 2025, 12:54 a.m.

1

-1 OR 2+407-407-1=0+0+0+1 Sept. 25, 2025, 12:54 a.m.

1

-1' OR 2+679-679-1=0+0+0+1 -- Sept. 25, 2025, 12:54 a.m.

1

-1' OR 2+355-355-1=0+0+0+1 or '7UCk1AZ0'=' Sept. 25, 2025, 12:54 a.m.

1

-1" OR 2+223-223-1=0+0+0+1 -- Sept. 25, 2025, 12:54 a.m.

1

if(now()=sysdate(),sleep(15),0) Sept. 25, 2025, 12:54 a.m.

1

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 25, 2025, 12:55 a.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 25, 2025, 12:55 a.m.

1

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 25, 2025, 12:55 a.m.

1

pHqghUmehTSPzYF7'; waitfor delay '0:0:15' -- Sept. 25, 2025, 12:55 a.m.

1

pHqghUme31c7N02G' OR 565=(SELECT 565 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:55 a.m.

1

pHqghUmeMOZSgxbE') OR 91=(SELECT 91 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:55 a.m.

1

pHqghUmeBRxGVyjf')) OR 753=(SELECT 753 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:55 a.m.

1

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 25, 2025, 12:55 a.m.

1

pHqghUme Sept. 25, 2025, 12:55 a.m.

1

pHqghUme'" Sept. 25, 2025, 12:55 a.m.

1

pHqghUme����%2527%2522\'\" Sept. 25, 2025, 12:55 a.m.

1

@@PBgUI Sept. 25, 2025, 12:55 a.m.

1

pHqghUme Sept. 25, 2025, 12:55 a.m.

1

pHqghUme Sept. 25, 2025, 12:55 a.m.

1

pHqghUme Sept. 25, 2025, 12:55 a.m.

1

pHqghUme Sept. 25, 2025, 12:55 a.m.

1

pHqghUme Sept. 25, 2025, 12:56 a.m.

555

pHqghUme Sept. 25, 2025, 12:56 a.m.

1

pHqghUme Sept. 25, 2025, 12:56 a.m.

1

pHqghUme Sept. 25, 2025, 12:56 a.m.

555

pHqghUme Sept. 25, 2025, 12:56 a.m.

1

pHqghUme Sept. 25, 2025, 12:56 a.m.

555

pHqghUme Sept. 25, 2025, 12:56 a.m.

1mDg7b1ZD

pHqghUme Sept. 25, 2025, 12:56 a.m.

1

pHqghUme Sept. 25, 2025, 12:56 a.m.

-1 OR 2+48-48-1=0+0+0+1 --

pHqghUme Sept. 25, 2025, 12:56 a.m.

-1 OR 2+947-947-1=0+0+0+1

pHqghUme Sept. 25, 2025, 12:56 a.m.

-1' OR 2+478-478-1=0+0+0+1 --

pHqghUme Sept. 25, 2025, 12:56 a.m.

-1' OR 2+829-829-1=0+0+0+1 or 'xtCZSNOG'='

pHqghUme Sept. 25, 2025, 12:56 a.m.

-1" OR 2+746-746-1=0+0+0+1 --

pHqghUme Sept. 25, 2025, 12:56 a.m.

555

pHqghUme Sept. 25, 2025, 12:56 a.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 25, 2025, 12:56 a.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 25, 2025, 12:57 a.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 25, 2025, 12:57 a.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 25, 2025, 12:57 a.m.

1-1; waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:57 a.m.

1-1); waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:57 a.m.

1-1 waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:57 a.m.

1B9u4RvTU'; waitfor delay '0:0:15' --

pHqghUme Sept. 25, 2025, 12:57 a.m.

1-1 OR 503=(SELECT 503 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:57 a.m.

1-1) OR 481=(SELECT 481 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:57 a.m.

1-1)) OR 855=(SELECT 855 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:57 a.m.

555

pHqghUme Sept. 25, 2025, 12:57 a.m.

16SPkAeuK' OR 27=(SELECT 27 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:57 a.m.

555

pHqghUme Sept. 25, 2025, 12:57 a.m.

1x2H5Ziu8') OR 474=(SELECT 474 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:57 a.m.

555

pHqghUme Sept. 25, 2025, 12:57 a.m.

1c15UlHWd')) OR 721=(SELECT 721 FROM PG_SLEEP(15))--

pHqghUme Sept. 25, 2025, 12:57 a.m.

555

pHqghUme Sept. 25, 2025, 12:57 a.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 25, 2025, 12:57 a.m.

555

pHqghUme Sept. 25, 2025, 12:57 a.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 25, 2025, 12:57 a.m.

1

pHqghUme Sept. 25, 2025, 12:57 a.m.

1'"

pHqghUme Sept. 25, 2025, 12:57 a.m.

1����%2527%2522\'\"

pHqghUme Sept. 25, 2025, 12:57 a.m.

@@1AUx5

pHqghUme Sept. 25, 2025, 12:58 a.m.

555

pHqghUme Sept. 25, 2025, 12:58 a.m.

555

pHqghUme Sept. 25, 2025, 12:58 a.m.

555

pHqghUmeKZGAV6mv Sept. 25, 2025, 12:58 a.m.

555

pHqghUme Sept. 25, 2025, 12:58 a.m.

555

-1 OR 2+594-594-1=0+0+0+1 -- Sept. 25, 2025, 12:58 a.m.

555

-1 OR 2+900-900-1=0+0+0+1 Sept. 25, 2025, 12:58 a.m.

555

-1' OR 2+869-869-1=0+0+0+1 -- Sept. 25, 2025, 12:58 a.m.

555

-1' OR 2+678-678-1=0+0+0+1 or 'SvyEsMw5'=' Sept. 25, 2025, 12:58 a.m.

555

-1" OR 2+639-639-1=0+0+0+1 -- Sept. 25, 2025, 12:58 a.m.

555

if(now()=sysdate(),sleep(15),0) Sept. 25, 2025, 12:58 a.m.

555

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 25, 2025, 12:58 a.m.

555

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 25, 2025, 12:58 a.m.

555

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 25, 2025, 12:58 a.m.

555

pHqghUme8mRenvYv'; waitfor delay '0:0:15' -- Sept. 25, 2025, 12:58 a.m.

555

pHqghUmeW1XmNZpn' OR 733=(SELECT 733 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:58 a.m.

555

pHqghUmeCLUKgADg') OR 513=(SELECT 513 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:58 a.m.

555

pHqghUme1PWGWst5')) OR 146=(SELECT 146 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:58 a.m.

555

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 25, 2025, 12:58 a.m.

555

pHqghUme Sept. 25, 2025, 12:58 a.m.

555

pHqghUme'" Sept. 25, 2025, 12:58 a.m.

555

pHqghUme����%2527%2522\'\" Sept. 25, 2025, 12:58 a.m.

555

@@udABh Sept. 25, 2025, 12:58 a.m.

555

pHqghUme Sept. 27, 2025, 12:13 p.m.

kevNnDR4

pHqghUme Sept. 27, 2025, 12:13 p.m.

*1

pHqghUme Sept. 27, 2025, 12:13 p.m.

*1

pHqghUme Sept. 27, 2025, 12:13 p.m.

*1

pHqghUme Sept. 27, 2025, 12:13 p.m.

*1

pHqghUme Sept. 27, 2025, 12:13 p.m.

-1 OR 2+923-923-1=0+0+0+1

pHqghUme Sept. 27, 2025, 12:13 p.m.

-1 OR 3+923-923-1=0+0+0+1

pHqghUme Sept. 27, 2025, 12:13 p.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 27, 2025, 12:13 p.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 27, 2025, 12:13 p.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 27, 2025, 12:13 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 27, 2025, 12:13 p.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 27, 2025, 12:13 p.m.

1

pHqghUme Sept. 27, 2025, 12:13 p.m.

1

pHqghUme Sept. 27, 2025, 12:13 p.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 27, 2025, 12:13 p.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 27, 2025, 12:13 p.m.

KJGOIxnR'; waitfor delay '0:0:15' --

pHqghUme Sept. 27, 2025, 12:14 p.m.

-1 OR 387=(SELECT 387 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:14 p.m.

-1) OR 894=(SELECT 894 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:14 p.m.

-1)) OR 93=(SELECT 93 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:14 p.m.

etsVr4Ui' OR 882=(SELECT 882 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:14 p.m.

TqIDqxBp') OR 648=(SELECT 648 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:14 p.m.

pxWcXsqb')) OR 743=(SELECT 743 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:14 p.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:14 p.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 27, 2025, 12:14 p.m.

'"

pHqghUme Sept. 27, 2025, 12:14 p.m.

����%2527%2522\'\"

pHqghUme Sept. 27, 2025, 12:14 p.m.

@@Sr1BP

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

pHqghUmedCVhrM51 Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:14 p.m.

1

-1 OR 2+453-453-1=0+0+0+1 -- Sept. 27, 2025, 12:14 p.m.

1

-1 OR 2+506-506-1=0+0+0+1 Sept. 27, 2025, 12:14 p.m.

1

-1' OR 2+881-881-1=0+0+0+1 -- Sept. 27, 2025, 12:14 p.m.

1

-1' OR 2+987-987-1=0+0+0+1 or '5dNBnRJX'=' Sept. 27, 2025, 12:14 p.m.

1

-1" OR 2+523-523-1=0+0+0+1 -- Sept. 27, 2025, 12:14 p.m.

1

if(now()=sysdate(),sleep(15),0) Sept. 27, 2025, 12:14 p.m.

1

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 27, 2025, 12:14 p.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 27, 2025, 12:14 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUmeOk0GLCQn'; waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUmeEOjlaVEQ' OR 162=(SELECT 162 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUmex0SFLlqn') OR 432=(SELECT 432 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.

1

pHqghUme5ax0gOfs')) OR 912=(SELECT 912 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.

1

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme'" Sept. 27, 2025, 12:15 p.m.

1

pHqghUme����%2527%2522\'\" Sept. 27, 2025, 12:15 p.m.

1

@@LJrwU Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1UgvADeNo

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

-1 OR 2+799-799-1=0+0+0+1 --

pHqghUme Sept. 27, 2025, 12:15 p.m.

-1 OR 2+506-506-1=0+0+0+1

pHqghUme Sept. 27, 2025, 12:15 p.m.

-1' OR 2+290-290-1=0+0+0+1 --

pHqghUme Sept. 27, 2025, 12:15 p.m.

-1' OR 2+882-882-1=0+0+0+1 or 'ocK4Sjca'='

pHqghUme Sept. 27, 2025, 12:15 p.m.

-1" OR 2+619-619-1=0+0+0+1 --

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUmeQsbHrrBw Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

-1 OR 2+968-968-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.

555

-1 OR 2+708-708-1=0+0+0+1 Sept. 27, 2025, 12:15 p.m.

555

-1' OR 2+912-912-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.

555

-1' OR 2+851-851-1=0+0+0+1 or 'R809YSQO'=' Sept. 27, 2025, 12:15 p.m.

555

-1" OR 2+451-451-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

if(now()=sysdate(),sleep(15),0) Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1-1; waitfor delay '0:0:15' --

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1-1); waitfor delay '0:0:15' --

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1-1 waitfor delay '0:0:15' --

pHqghUme Sept. 27, 2025, 12:15 p.m.

1Iu5k4FgP'; waitfor delay '0:0:15' --

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1-1 OR 571=(SELECT 571 FROM PG_SLEEP(15))--

pHqghUmeqGU2DyHX'; waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1-1) OR 489=(SELECT 489 FROM PG_SLEEP(15))--

pHqghUmem5wSYYLe' OR 311=(SELECT 311 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.

555

pHqghUmewiEoDn54') OR 311=(SELECT 311 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1-1)) OR 602=(SELECT 602 FROM PG_SLEEP(15))--

pHqghUmew8YhrUre')) OR 36=(SELECT 36 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

16E81yEcb' OR 259=(SELECT 259 FROM PG_SLEEP(15))--

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

555

pHqghUme'" Sept. 27, 2025, 12:15 p.m.

555

pHqghUme����%2527%2522\'\" Sept. 27, 2025, 12:15 p.m.

555

@@UNSk7 Sept. 27, 2025, 12:15 p.m.

555

pHqghUme Sept. 27, 2025, 12:15 p.m.

1FcA1cZ3v') OR 729=(SELECT 729 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:15 p.m.

10xCb3VLm')) OR 370=(SELECT 370 FROM PG_SLEEP(15))--

pHqghUme Sept. 27, 2025, 12:15 p.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 27, 2025, 12:15 p.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 27, 2025, 12:15 p.m.

1

pHqghUme Sept. 27, 2025, 12:15 p.m.

1'"

pHqghUme Sept. 27, 2025, 12:15 p.m.

1����%2527%2522\'\"

pHqghUme Sept. 27, 2025, 12:15 p.m.

@@VSPs3

pHqghUme Sept. 30, 2025, 1:51 p.m.

1

pHqghUme Sept. 30, 2025, 1:51 p.m.

1

pHqghUme Sept. 30, 2025, 1:51 p.m.

nRNHJYz5

pHqghUme Sept. 30, 2025, 1:51 p.m.

*1

pHqghUme Sept. 30, 2025, 1:51 p.m.

*1

pHqghUme Sept. 30, 2025, 1:51 p.m.

*1

pHqghUme Sept. 30, 2025, 1:51 p.m.

*1

pHqghUme Sept. 30, 2025, 1:51 p.m.

-1 OR 2+917-917-1=0+0+0+1

pHqghUme Sept. 30, 2025, 1:51 p.m.

-1 OR 3+917-917-1=0+0+0+1

pHqghUme Sept. 30, 2025, 1:51 p.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 30, 2025, 1:51 p.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 30, 2025, 1:51 p.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 30, 2025, 1:51 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 30, 2025, 1:51 p.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:51 p.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:51 p.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:51 p.m.

J4FyMPL8'; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:51 p.m.

-1 OR 752=(SELECT 752 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:52 p.m.

-1) OR 113=(SELECT 113 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:52 p.m.

-1)) OR 688=(SELECT 688 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:52 p.m.

RxL6snMB' OR 759=(SELECT 759 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:52 p.m.

QY4cIorh') OR 656=(SELECT 656 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:52 p.m.

6c1vU7EL')) OR 36=(SELECT 36 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:52 p.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 30, 2025, 1:52 p.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 30, 2025, 1:52 p.m.

'"

pHqghUme Sept. 30, 2025, 1:52 p.m.

����%2527%2522\'\"

pHqghUme Sept. 30, 2025, 1:52 p.m.

@@WRcGQ

pHqghUme Sept. 30, 2025, 1:52 p.m.

1

pHqghUme Sept. 30, 2025, 1:52 p.m.

1

pHqghUme Sept. 30, 2025, 1:53 p.m.

1

pHqghUme Sept. 30, 2025, 1:53 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

1

pHqghUmegto8DbOA Sept. 30, 2025, 1:54 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

1

-1 OR 2+949-949-1=0+0+0+1 -- Sept. 30, 2025, 1:54 p.m.

1

-1 OR 2+269-269-1=0+0+0+1 Sept. 30, 2025, 1:54 p.m.

1

-1' OR 2+190-190-1=0+0+0+1 -- Sept. 30, 2025, 1:54 p.m.

1

-1' OR 2+500-500-1=0+0+0+1 or 'cLX2KgTx'=' Sept. 30, 2025, 1:54 p.m.

1

-1" OR 2+808-808-1=0+0+0+1 -- Sept. 30, 2025, 1:54 p.m.

1

if(now()=sysdate(),sleep(15),0) Sept. 30, 2025, 1:54 p.m.

1

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 1:54 p.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 1:54 p.m.

1

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 1:54 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

555

pHqghUmet8RXfVPe'; waitfor delay '0:0:15' -- Sept. 30, 2025, 1:54 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

555

pHqghUmefcFZp7Y4' OR 74=(SELECT 74 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:54 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

555

pHqghUmeZkrE0O3S') OR 174=(SELECT 174 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:54 p.m.

1

pHqghUme52GCvNhM')) OR 805=(SELECT 805 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:54 p.m.

1

pHqghUme Sept. 30, 2025, 1:54 p.m.

555

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:55 p.m.

1

pHqghUme'" Sept. 30, 2025, 1:55 p.m.

1

pHqghUme����%2527%2522\'\" Sept. 30, 2025, 1:55 p.m.

1

@@WzcpW Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:55 p.m.

555

pHqghUme Sept. 30, 2025, 1:55 p.m.

555

pHqghUme Sept. 30, 2025, 1:55 p.m.

555

pHqghUme Sept. 30, 2025, 1:55 p.m.

555

pHqghUme Sept. 30, 2025, 1:55 p.m.

1

pHqghUme Sept. 30, 2025, 1:56 p.m.

555

pHqghUme Sept. 30, 2025, 1:56 p.m.

1

pHqghUme Sept. 30, 2025, 1:56 p.m.

1

pHqghUme Sept. 30, 2025, 1:56 p.m.

1W30y6W7J

pHqghUme Sept. 30, 2025, 1:56 p.m.

1

pHqghUme Sept. 30, 2025, 1:56 p.m.

-1 OR 2+520-520-1=0+0+0+1 --

pHqghUme Sept. 30, 2025, 1:56 p.m.

-1 OR 2+655-655-1=0+0+0+1

pHqghUme Sept. 30, 2025, 1:56 p.m.

-1' OR 2+762-762-1=0+0+0+1 --

pHqghUme Sept. 30, 2025, 1:56 p.m.

-1' OR 2+801-801-1=0+0+0+1 or 'xB1srPY1'='

pHqghUme Sept. 30, 2025, 1:56 p.m.

-1" OR 2+214-214-1=0+0+0+1 --

pHqghUme Sept. 30, 2025, 1:56 p.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 30, 2025, 1:56 p.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 30, 2025, 1:56 p.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 30, 2025, 1:56 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 30, 2025, 1:56 p.m.

1-1; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:56 p.m.

1-1); waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:56 p.m.

555

pHqghUme Sept. 30, 2025, 1:56 p.m.

1-1 waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:56 p.m.

555

pHqghUme Sept. 30, 2025, 1:56 p.m.

1ZC0FABJ2'; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 1:56 p.m.

555

pHqghUme Sept. 30, 2025, 1:56 p.m.

1-1 OR 162=(SELECT 162 FROM PG_SLEEP(15))--

pHqghUmeH2QswvQz Sept. 30, 2025, 1:56 p.m.

555

pHqghUme Sept. 30, 2025, 1:56 p.m.

1-1) OR 872=(SELECT 872 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:56 p.m.

555

-1 OR 2+204-204-1=0+0+0+1 -- Sept. 30, 2025, 1:56 p.m.

555

-1 OR 2+430-430-1=0+0+0+1 Sept. 30, 2025, 1:56 p.m.

555

-1' OR 2+270-270-1=0+0+0+1 -- Sept. 30, 2025, 1:56 p.m.

555

-1' OR 2+65-65-1=0+0+0+1 or 'CN2lwTBQ'=' Sept. 30, 2025, 1:56 p.m.

555

-1" OR 2+23-23-1=0+0+0+1 -- Sept. 30, 2025, 1:56 p.m.

555

pHqghUme Sept. 30, 2025, 1:56 p.m.

1-1)) OR 166=(SELECT 166 FROM PG_SLEEP(15))--

if(now()=sysdate(),sleep(15),0) Sept. 30, 2025, 1:57 p.m.

555

pHqghUme Sept. 30, 2025, 1:57 p.m.

1QvZfwuOB' OR 936=(SELECT 936 FROM PG_SLEEP(15))--

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 1:57 p.m.

555

pHqghUme Sept. 30, 2025, 1:57 p.m.

1625XiVat') OR 163=(SELECT 163 FROM PG_SLEEP(15))--

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 1:57 p.m.

555

pHqghUme Sept. 30, 2025, 1:57 p.m.

1mM7INXmq')) OR 633=(SELECT 633 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 1:57 p.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 1:57 p.m.

555

pHqghUme Sept. 30, 2025, 1:57 p.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 30, 2025, 1:57 p.m.

1

pHqghUme Sept. 30, 2025, 1:57 p.m.

1'"

pHqghUme Sept. 30, 2025, 1:57 p.m.

1����%2527%2522\'\"

pHqghUme Sept. 30, 2025, 1:57 p.m.

@@xNCj1

pHqghUmeDZVibo1H'; waitfor delay '0:0:15' -- Sept. 30, 2025, 1:57 p.m.

555

pHqghUmeNFGHHYrO' OR 876=(SELECT 876 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:57 p.m.

555

pHqghUmeHN4TSZp0') OR 236=(SELECT 236 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:57 p.m.

555

pHqghUme1XxXiEgK')) OR 964=(SELECT 964 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:57 p.m.

555

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 30, 2025, 1:57 p.m.

555

pHqghUme Sept. 30, 2025, 1:57 p.m.

555

pHqghUme'" Sept. 30, 2025, 1:57 p.m.

555

pHqghUme����%2527%2522\'\" Sept. 30, 2025, 1:57 p.m.

555

@@SZxOt Sept. 30, 2025, 1:57 p.m.

555

pHqghUme Sept. 30, 2025, 5:52 p.m.

1

pHqghUme Sept. 30, 2025, 5:52 p.m.

p0T93wPB

pHqghUme Sept. 30, 2025, 5:52 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

*1

pHqghUme Sept. 30, 2025, 5:53 p.m.

*1

pHqghUme Sept. 30, 2025, 5:53 p.m.

*1

pHqghUme Sept. 30, 2025, 5:53 p.m.

*1

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1 OR 2+650-650-1=0+0+0+1

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1 OR 3+650-650-1=0+0+0+1

pHqghUme Sept. 30, 2025, 5:53 p.m.

*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 30, 2025, 5:53 p.m.

0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 30, 2025, 5:53 p.m.

0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 30, 2025, 5:53 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:53 p.m.

555

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1); waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1 waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

7Fku0E4F'; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1 OR 610=(SELECT 610 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1) OR 959=(SELECT 959 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:53 p.m.

-1)) OR 720=(SELECT 720 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:53 p.m.

0HmYAMT8' OR 45=(SELECT 45 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:53 p.m.

B5xKVDTE') OR 233=(SELECT 233 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:53 p.m.

CNYcgPlY')) OR 57=(SELECT 57 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:53 p.m.

*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUme Sept. 30, 2025, 5:53 p.m.

'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 30, 2025, 5:53 p.m.

'"

pHqghUme Sept. 30, 2025, 5:53 p.m.

����%2527%2522\'\"

pHqghUme Sept. 30, 2025, 5:53 p.m.

@@YziQu

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

pHqghUmenz5er8NS Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

1

-1 OR 2+91-91-1=0+0+0+1 -- Sept. 30, 2025, 5:53 p.m.

1

-1 OR 2+819-819-1=0+0+0+1 Sept. 30, 2025, 5:53 p.m.

1

-1' OR 2+750-750-1=0+0+0+1 -- Sept. 30, 2025, 5:53 p.m.

1

-1' OR 2+230-230-1=0+0+0+1 or 'RxUVwSl8'=' Sept. 30, 2025, 5:53 p.m.

1

-1" OR 2+17-17-1=0+0+0+1 -- Sept. 30, 2025, 5:53 p.m.

1

if(now()=sysdate(),sleep(15),0) Sept. 30, 2025, 5:53 p.m.

1

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 5:53 p.m.

1

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 5:53 p.m.

1

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 5:53 p.m.

1

pHqghUme Sept. 30, 2025, 5:53 p.m.

555

pHqghUmeL93KqxtB'; waitfor delay '0:0:15' -- Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUmem69ibHbK' OR 78=(SELECT 78 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:54 p.m.

1

pHqghUmew1Ek3VyY') OR 949=(SELECT 949 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUmeE2VyXjvs')) OR 656=(SELECT 656 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:54 p.m.

1

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme'" Sept. 30, 2025, 5:54 p.m.

1

pHqghUme����%2527%2522\'\" Sept. 30, 2025, 5:54 p.m.

1

@@ig74r Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1IQOXRSYh

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

-1 OR 2+884-884-1=0+0+0+1 --

pHqghUme Sept. 30, 2025, 5:54 p.m.

-1 OR 2+474-474-1=0+0+0+1

pHqghUme Sept. 30, 2025, 5:54 p.m.

-1' OR 2+187-187-1=0+0+0+1 --

pHqghUme Sept. 30, 2025, 5:54 p.m.

-1' OR 2+201-201-1=0+0+0+1 or 'G9rfMWgE'='

pHqghUme Sept. 30, 2025, 5:54 p.m.

-1" OR 2+377-377-1=0+0+0+1 --

pHqghUme Sept. 30, 2025, 5:54 p.m.

1*if(now()=sysdate(),sleep(15),0)

pHqghUme Sept. 30, 2025, 5:54 p.m.

10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z

pHqghUme Sept. 30, 2025, 5:54 p.m.

10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z

pHqghUme Sept. 30, 2025, 5:54 p.m.

(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/

pHqghUme Sept. 30, 2025, 5:54 p.m.

1-1; waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1-1); waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1-1 waitfor delay '0:0:15' --

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1w2k6B3Hr'; waitfor delay '0:0:15' --

pHqghUmeZn3HDZKD Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1-1 OR 945=(SELECT 945 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:54 p.m.

555

-1 OR 2+237-237-1=0+0+0+1 -- Sept. 30, 2025, 5:54 p.m.

555

-1 OR 2+402-402-1=0+0+0+1 Sept. 30, 2025, 5:54 p.m.

555

-1' OR 2+688-688-1=0+0+0+1 -- Sept. 30, 2025, 5:54 p.m.

555

-1' OR 2+927-927-1=0+0+0+1 or 'vFY8X0Me'=' Sept. 30, 2025, 5:54 p.m.

555

-1" OR 2+21-21-1=0+0+0+1 -- Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1-1) OR 904=(SELECT 904 FROM PG_SLEEP(15))--

if(now()=sysdate(),sleep(15),0) Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1-1)) OR 732=(SELECT 732 FROM PG_SLEEP(15))--

pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1yYVB9rko' OR 170=(SELECT 170 FROM PG_SLEEP(15))--

pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1NBD7HS36') OR 622=(SELECT 622 FROM PG_SLEEP(15))--

pHqghUme Sept. 30, 2025, 5:54 p.m.

1MjqavINS')) OR 604=(SELECT 604 FROM PG_SLEEP(15))--

pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)

pHqghUmelwVRDR23'; waitfor delay '0:0:15' -- Sept. 30, 2025, 5:54 p.m.

555

pHqghUme Sept. 30, 2025, 5:54 p.m.

1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'

pHqghUme Sept. 30, 2025, 5:54 p.m.

1

pHqghUme Sept. 30, 2025, 5:54 p.m.

1'"

pHqghUme Sept. 30, 2025, 5:54 p.m.

1����%2527%2522\'\"

pHqghUme Sept. 30, 2025, 5:54 p.m.

@@ugdBD

pHqghUmeeVBPsZAj' OR 802=(SELECT 802 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:54 p.m.

555

pHqghUmetpVpiH6E') OR 817=(SELECT 817 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:55 p.m.

555

pHqghUme9CUHX9lb')) OR 492=(SELECT 492 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:55 p.m.

555

pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 30, 2025, 5:55 p.m.

555

pHqghUme Sept. 30, 2025, 5:55 p.m.

555

pHqghUme'" Sept. 30, 2025, 5:55 p.m.

555

pHqghUme����%2527%2522\'\" Sept. 30, 2025, 5:55 p.m.

555

@@rXBEK Sept. 30, 2025, 5:55 p.m.

555

Comment on this post


?