Advertisement
KingSkrupellos

1up! Software Going1up The Newspaper CMS 1.x Open Redirect

Feb 25th, 2019
191
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. #####################################################################################
  2.  
  3. # Exploit Title : 1up! Software Going1up The Newspaper CMS 1998-2019 1.x Open Redirection
  4. # Author [ Discovered By ] : KingSkrupellos
  5. # Team : Cyberizm Digital Security Army
  6. # Date : 26/02/2019
  7. # Vendor Homepage : going1up.com
  8. # Software Information Link : going1up.com/main.asp?SectionID=4&SubSectionID=16
  9. # Software Version : 1.x
  10. # Software Price Type : Paid Download
  11. # Tested On : Windows and Linux
  12. # Category : WebApps
  13. # Exploit Risk : Medium
  14. # Google Dorks : intext:''Software © 1998-2019 1up! Software, All Rights Reserved''
  15. # Vulnerability Type : CWE-601 [ URL Redirection to Untrusted Site ('Open Redirect') ]
  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. # Description about Software :
  23. ***************************
  24. 1up! Software Going1up is the Newspaper Content Management System.
  25.  
  26. #####################################################################################
  27.  
  28. # Impact :
  29. ***********
  30. This web application 1up! Software Going1up The Newspaper CMS 1998-2019 1.x accepts a user-controlled
  31.  
  32. input that specifies a link to an external site, and uses that link in a Redirect.
  33.  
  34. This simplifies phishing attacks. An http parameter may contain a URL value and could cause
  35.  
  36. the web application to redirect the request to the specified URL. By modifying the URL value
  37.  
  38. to a malicious site, an attacker may successfully launch a phishing scam and steal user credentials.
  39.  
  40. Because the server name in the modified link is identical to the original site, phishing attempts
  41.  
  42. have a more trustworthy appearance.
  43.  
  44. Open redirect is a failure in that process that makes it possible for attackers to steer users to malicious websites.
  45.  
  46. This vulnerability is used in phishing attacks to get users to visit malicious sites without realizing it.
  47.  
  48. Web users often encounter redirection when they visit the Web site of a company whose name
  49.  
  50. has been changed or which has been acquired by another company. Visiting unreal web page user's
  51.  
  52. computer becomes affected by malware the task of which is to deceive the valid actor and steal his personal data.
  53.  
  54. #####################################################################################
  55.  
  56. Vulnerable Source Code :
  57. ************************
  58. $redirect_linkurl = $_GET["linkurl"];
  59. header("Location: " . $redirect_linkurl);
  60.  
  61. # Open Redirection Exploit :
  62. *************************
  63. /redirect.asp?uid=27003025&subsectionid=-1&adarrayid=169&adposition=5&linkurl=https://www.[REDIRECT-ADDRESS].gov
  64.  
  65. #####################################################################################
  66.  
  67. # Discovered By KingSkrupellos from Cyberizm.Org Digital Security Team
  68.  
  69. #####################################################################################
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement