Generated on Wed, 14 Dec 2022 00:12:01

Summary of Alerts

Risk Level Number of Alerts
High
0
Medium
5
Low
5
Informational
4

Passing Rules

Name Rule Type Threshold Strength
Directory Browsing Active MEDIUM MEDIUM
CRLF Injection Active MEDIUM MEDIUM
Path Traversal Active MEDIUM MEDIUM
Remote File Inclusion Active MEDIUM MEDIUM
Parameter Tampering Active MEDIUM MEDIUM
Server Side Include Active MEDIUM MEDIUM
GET for POST Active MEDIUM MEDIUM
Cross Site Scripting (Reflected) Active MEDIUM MEDIUM
Cross Site Scripting (Persistent) Active MEDIUM MEDIUM
Script Active Scan Rules Active MEDIUM MEDIUM
Cross Site Scripting (Persistent) - Prime Active MEDIUM MEDIUM
Cross Site Scripting (Persistent) - Spider Active MEDIUM MEDIUM
SQL Injection Active MEDIUM MEDIUM
SQL Injection - MySQL Active MEDIUM MEDIUM
SQL Injection - Hypersonic SQL Active MEDIUM MEDIUM
SQL Injection - Oracle Active MEDIUM MEDIUM
SQL Injection - PostgreSQL Active MEDIUM MEDIUM
SQL Injection - SQLite Active MEDIUM MEDIUM
Cross Site Scripting (DOM Based) Active MEDIUM MEDIUM
SQL Injection - MsSQL Active MEDIUM MEDIUM
ELMAH Information Leak Active MEDIUM MEDIUM
Trace.axd Information Leak Active MEDIUM MEDIUM
XSLT Injection Active MEDIUM MEDIUM
.htaccess Information Leak Active MEDIUM MEDIUM
.env Information Leak Active MEDIUM MEDIUM
Server Side Code Injection Active MEDIUM MEDIUM
Hidden File Finder Active MEDIUM MEDIUM
Remote OS Command Injection Active MEDIUM MEDIUM
XML External Entity Attack Active MEDIUM MEDIUM
Generic Padding Oracle Active MEDIUM MEDIUM
SOAP Action Spoofing Active MEDIUM MEDIUM
SOAP XML Injection Active MEDIUM MEDIUM
Heartbleed OpenSSL Vulnerability Active MEDIUM MEDIUM
Buffer Overflow Active MEDIUM MEDIUM
Source Code Disclosure - CVE-2012-1823 Active MEDIUM MEDIUM
Format String Error Active MEDIUM MEDIUM
Remote Code Execution - CVE-2012-1823 Active MEDIUM MEDIUM
Cloud Metadata Potentially Exposed Active MEDIUM MEDIUM
External Redirect Active MEDIUM MEDIUM
Source Code Disclosure - /WEB-INF folder Active MEDIUM MEDIUM
Private IP Disclosure Passive MEDIUM -
Session ID in URL Rewrite Passive MEDIUM -
Insecure JSF ViewState Passive MEDIUM -
Charset Mismatch Passive MEDIUM -
Cookie Without Secure Flag Passive MEDIUM -
Re-examine Cache-control Directives Passive MEDIUM -
Content-Type Header Missing Passive MEDIUM -
Application Error Disclosure Passive MEDIUM -
Information Disclosure - Debug Error Messages Passive MEDIUM -
Information Disclosure - Sensitive Information in URL Passive MEDIUM -
Information Disclosure - Sensitive Information in HTTP Referrer Header Passive MEDIUM -
Open Redirect Passive MEDIUM -
User Controllable Charset Passive MEDIUM -
User Controllable HTML Element Attribute (Potential XSS) Passive MEDIUM -
WSDL File Detection Passive MEDIUM -
Loosely Scoped Cookie Passive MEDIUM -
Viewstate Passive MEDIUM -
Directory Browsing Passive MEDIUM -
Heartbleed OpenSSL Vulnerability (Indicative) Passive MEDIUM -
Strict-Transport-Security Header Passive MEDIUM -
Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s) Passive MEDIUM -
X-Backend-Server Header Information Leak Passive MEDIUM -
Secure Pages Include Mixed Content Passive MEDIUM -
HTTP to HTTPS Insecure Transition in Form Post Passive MEDIUM -
HTTPS to HTTP Insecure Transition in Form Post Passive MEDIUM -
User Controllable JavaScript Event (XSS) Passive MEDIUM -
Big Redirect Detected (Potential Sensitive Information Leak) Passive MEDIUM -
Retrieved from Cache Passive MEDIUM -
X-ChromeLogger-Data (XCOLD) Header Information Leak Passive MEDIUM -
CSP Passive MEDIUM -
X-Debug-Token Information Leak Passive MEDIUM -
Username Hash Found Passive MEDIUM -
X-AspNet-Version Response Header Passive MEDIUM -
PII Disclosure Passive MEDIUM -
Script Passive Scan Rules Passive MEDIUM -
Stats Passive Scan Rule Passive MEDIUM -
Timestamp Disclosure Passive MEDIUM -
Hash Disclosure Passive MEDIUM -
Weak Authentication Method Passive MEDIUM -
Reverse Tabnabbing Passive MEDIUM -

Sites

http://testhtml5.vulnweb.com

No Authentication Statistics Found

Parameter Name Type Flags Times Used # Values

Alert Detail

Medium
Absence of Anti-CSRF Tokens
Description
No Anti-CSRF tokens were found in a HTML submission form.

A cross-site request forgery is an attack that involves forcing a victim to send an HTTP request to a target destination without their knowledge or intent in order to perform an action as the victim. The underlying cause is application functionality using predictable URL/form actions in a repeatable way. The nature of the attack is that CSRF exploits the trust that a web site has for a user. By contrast, cross-site scripting (XSS) exploits the trust that a user has for a web site. Like XSS, CSRF attacks are not necessarily cross-site, but they can be. Cross-site request forgery is also known as CSRF, XSRF, one-click attack, session riding, confused deputy, and sea surf.

CSRF attacks are effective in a number of situations, including:

* The victim has an active session on the target site.

* The victim is authenticated via HTTP auth on the target site.

* The victim is on the same local network as the target site.

CSRF has primarily been used to perform an action against a target site using the victim's privileges, but recent techniques have been discovered to disclose information by gaining access to the response. The risk of information disclosure is dramatically increased when the target site is vulnerable to XSS, because XSS can be used as a platform for CSRF, allowing the attack to operate within the bounds of the same-origin policy.
URL http://testhtml5.vulnweb.com
Method GET
Parameter
Attack
Evidence <form class="modal-body" action="/login" method="POST" id="loginForm">
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter
Attack
Evidence <form class="modal-body" action="/login" method="POST" id="loginForm">
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 2
Solution
Phase: Architecture and Design

Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

For example, use anti-CSRF packages such as the OWASP CSRFGuard.

Phase: Implementation

Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.

Phase: Architecture and Design

Generate a unique nonce for each form, place the nonce into the form, and verify the nonce upon receipt of the form. Be sure that the nonce is not predictable (CWE-330).

Note that this can be bypassed using XSS.

Identify especially dangerous operations. When the user performs a dangerous operation, send a separate confirmation request to ensure that the user intended to perform that operation.

Note that this can be bypassed using XSS.

Use the ESAPI Session Management control.

This control includes a component for CSRF.

Do not use the GET method for any request that triggers a state change.

Phase: Implementation

Check the HTTP Referer header to see if the request originated from an expected page. This could break legitimate functionality, because users or proxies may have disabled sending the Referer for privacy reasons.
Reference http://projects.webappsec.org/Cross-Site-Request-Forgery
http://cwe.mitre.org/data/definitions/352.html
Tags OWASP_2021_A01
WSTG-v42-SESS-05
OWASP_2017_A05
CWE Id 352
WASC Id 9
Plugin Id 10202
Medium
Content Security Policy (CSP) Header Not Set
Description
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks, including Cross Site Scripting (XSS) and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
URL http://testhtml5.vulnweb.com
Method GET
Parameter
Attack
Evidence
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter
Attack
Evidence
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/robots.txt
Method GET
Parameter
Attack
Evidence
Request Header - size: 228 bytes.
Request Body - size: 0 bytes.
Response Header - size: 170 bytes.
Response Body - size: 232 bytes.
URL http://testhtml5.vulnweb.com/sitemap.xml
Method GET
Parameter
Attack
Evidence
Request Header - size: 229 bytes.
Request Body - size: 0 bytes.
Response Header - size: 170 bytes.
Response Body - size: 232 bytes.
Instances 4
Solution
Ensure that your web server, application server, load balancer, etc. is configured to set the Content-Security-Policy header, to achieve optimal browser support: "Content-Security-Policy" for Chrome 25+, Firefox 23+ and Safari 7+, "X-Content-Security-Policy" for Firefox 4.0+ and Internet Explorer 10+, and "X-WebKit-CSP" for Chrome 14+ and Safari 6+.
Reference https://developer.mozilla.org/en-US/docs/Web/Security/CSP/Introducing_Content_Security_Policy
https://cheatsheetseries.owasp.org/cheatsheets/Content_Security_Policy_Cheat_Sheet.html
http://www.w3.org/TR/CSP/
http://w3c.github.io/webappsec/specs/content-security-policy/csp-specification.dev.html
http://www.html5rocks.com/en/tutorials/security/content-security-policy/
http://caniuse.com/#feat=contentsecuritypolicy
http://content-security-policy.com/
Tags OWASP_2021_A05
OWASP_2017_A06
CWE Id 693
WASC Id 15
Plugin Id 10038
Medium
Cross-Domain Misconfiguration
Description
Web browser data loading may be possible, due to a Cross Origin Resource Sharing (CORS) misconfiguration on the web server
URL http://testhtml5.vulnweb.com
Method GET
Parameter
Attack
Evidence Access-Control-Allow-Origin: *
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter
Attack
Evidence Access-Control-Allow-Origin: *
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 2
Solution
Ensure that sensitive data is not available in an unauthenticated manner (using IP address white-listing, for instance).

Configure the "Access-Control-Allow-Origin" HTTP header to a more restrictive set of domains, or remove all CORS headers entirely, to allow the web browser to enforce the Same Origin Policy (SOP) in a more restrictive manner.
Reference https://vulncat.fortify.com/en/detail?id=desc.config.dotnet.html5_overly_permissive_cors_policy
Tags OWASP_2021_A01
OWASP_2017_A05
CWE Id 264
WASC Id 14
Plugin Id 10098
Medium
Missing Anti-clickjacking Header
Description
The response does not include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options to protect against 'ClickJacking' attacks.
URL http://testhtml5.vulnweb.com
Method GET
Parameter X-Frame-Options
Attack
Evidence
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter X-Frame-Options
Attack
Evidence
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 2
Solution
Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.

If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.
Reference https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options
Tags OWASP_2021_A05
WSTG-v42-CLNT-09
OWASP_2017_A06
CWE Id 1021
WASC Id 15
Plugin Id 10020
Medium
Vulnerable JS Library
Description
The identified library sessvars, version 1.00 is vulnerable.
URL http://testhtml5.vulnweb.com/static/app/libs/sessvars.js
Method GET
Parameter
Attack
Evidence sessvars ver 1.00
Request Header - size: 284 bytes.
Request Body - size: 0 bytes.
Response Header - size: 325 bytes.
Response Body - size: 8,869 bytes.
Instances 1
Solution
Please upgrade to the latest version of sessvars.
Reference http://www.thomasfrank.se/sessionvars.html
Tags OWASP_2017_A09
OWASP_2021_A06
CWE Id 829
WASC Id
Plugin Id 10003
Low
Cookie No HttpOnly Flag
Description
A cookie has been set without the HttpOnly flag, which means that the cookie can be accessed by JavaScript. If a malicious script can be run on this page then the cookie will be accessible and can be transmitted to another site. If this is a session cookie then session hijacking may be possible.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter username
Attack
Evidence Set-Cookie: username
Request Header - size: 332 bytes.
Request Body - size: 27 bytes.
Response Header - size: 243 bytes.
Response Body - size: 265 bytes.
Instances 1
Solution
Ensure that the HttpOnly flag is set for all cookies.
Reference https://owasp.org/www-community/HttpOnly
Tags OWASP_2021_A05
WSTG-v42-SESS-02
OWASP_2017_A06
CWE Id 1004
WASC Id 13
Plugin Id 10010
Low
Cookie without SameSite Attribute
Description
A cookie has been set without the SameSite attribute, which means that the cookie can be sent as a result of a 'cross-site' request. The SameSite attribute is an effective counter measure to cross-site request forgery, cross-site script inclusion, and timing attacks.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter username
Attack
Evidence Set-Cookie: username
Request Header - size: 332 bytes.
Request Body - size: 27 bytes.
Response Header - size: 243 bytes.
Response Body - size: 265 bytes.
Instances 1
Solution
Ensure that the SameSite attribute is set to either 'lax' or ideally 'strict' for all cookies.
Reference https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site
Tags OWASP_2021_A01
WSTG-v42-SESS-02
OWASP_2017_A05
CWE Id 1275
WASC Id 13
Plugin Id 10054
Low
Cross-Domain JavaScript Source File Inclusion
Description
The page includes one or more script files from a third-party domain.
URL http://testhtml5.vulnweb.com
Method GET
Parameter http://bxss.s3.amazonaws.com/ad.js
Attack
Evidence <script src="http://bxss.s3.amazonaws.com/ad.js"></script>
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com
Method GET
Parameter http://code.jquery.com/jquery-1.9.1.min.js
Attack
Evidence <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com
Method GET
Parameter http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js
Attack
Evidence <script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com
Method GET
Parameter https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js
Attack
Evidence <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js"></script>
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter http://bxss.s3.amazonaws.com/ad.js
Attack
Evidence <script src="http://bxss.s3.amazonaws.com/ad.js"></script>
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter http://code.jquery.com/jquery-1.9.1.min.js
Attack
Evidence <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js
Attack
Evidence <script src="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/js/bootstrap.min.js"></script>
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js
Attack
Evidence <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.6/angular.min.js"></script>
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 8
Solution
Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.
Reference
Tags OWASP_2021_A08
CWE Id 829
WASC Id 15
Plugin Id 10017
Low
Server Leaks Version Information via "Server" HTTP Response Header Field
Description
The web/application server is leaking version information via the "Server" HTTP response header. Access to such information may facilitate attackers identifying other vulnerabilities your web/application server is subject to.
URL http://testhtml5.vulnweb.com
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 429 bytes.
Request Body - size: 0 bytes.
Response Header - size: 277 bytes.
Response Body - size: 265 bytes.
URL http://testhtml5.vulnweb.com/robots.txt
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 228 bytes.
Request Body - size: 0 bytes.
Response Header - size: 170 bytes.
Response Body - size: 232 bytes.
URL http://testhtml5.vulnweb.com/sitemap.xml
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 229 bytes.
Request Body - size: 0 bytes.
Response Header - size: 170 bytes.
Response Body - size: 232 bytes.
URL http://testhtml5.vulnweb.com/static/app/app.js
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 274 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 1,884 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers/controllers.js
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 294 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 2,582 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs/sessvars.js
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 284 bytes.
Request Body - size: 0 bytes.
Response Header - size: 325 bytes.
Response Body - size: 8,869 bytes.
URL http://testhtml5.vulnweb.com/static/app/post.js
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 275 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 3,319 bytes.
URL http://testhtml5.vulnweb.com/static/app/services/itemsService.js
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 292 bytes.
Request Body - size: 0 bytes.
Response Header - size: 323 bytes.
Response Body - size: 723 bytes.
URL http://testhtml5.vulnweb.com/static/css/style.css
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 277 bytes.
Request Body - size: 0 bytes.
Response Header - size: 309 bytes.
Response Body - size: 570 bytes.
URL http://testhtml5.vulnweb.com/static/img/logo2.png
Method GET
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 277 bytes.
Request Body - size: 0 bytes.
Response Header - size: 311 bytes.
Response Body - size: 2,736 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter
Attack
Evidence nginx/1.19.0
Request Header - size: 332 bytes.
Request Body - size: 27 bytes.
Response Header - size: 243 bytes.
Response Body - size: 265 bytes.
Instances 13
Solution
Ensure that your web server, application server, load balancer, etc. is configured to suppress the "Server" header or provide generic details.
Reference http://httpd.apache.org/docs/current/mod/core.html#servertokens
http://msdn.microsoft.com/en-us/library/ff648552.aspx#ht_urlscan_007
http://blogs.msdn.com/b/varunm/archive/2013/04/23/remove-unwanted-http-response-headers.aspx
http://www.troyhunt.com/2012/02/shhh-dont-let-your-response-headers.html
Tags OWASP_2021_A05
OWASP_2017_A06
WSTG-v42-INFO-02
CWE Id 200
WASC Id 13
Plugin Id 10036
Low
X-Content-Type-Options Header Missing
Description
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
URL http://testhtml5.vulnweb.com
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/static/app/app.js
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 274 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 1,884 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers/controllers.js
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 294 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 2,582 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs/sessvars.js
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 284 bytes.
Request Body - size: 0 bytes.
Response Header - size: 325 bytes.
Response Body - size: 8,869 bytes.
URL http://testhtml5.vulnweb.com/static/app/post.js
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 275 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 3,319 bytes.
URL http://testhtml5.vulnweb.com/static/app/services/itemsService.js
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 292 bytes.
Request Body - size: 0 bytes.
Response Header - size: 323 bytes.
Response Body - size: 723 bytes.
URL http://testhtml5.vulnweb.com/static/css/style.css
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 277 bytes.
Request Body - size: 0 bytes.
Response Header - size: 309 bytes.
Response Body - size: 570 bytes.
URL http://testhtml5.vulnweb.com/static/img/logo2.png
Method GET
Parameter X-Content-Type-Options
Attack
Evidence
Request Header - size: 277 bytes.
Request Body - size: 0 bytes.
Response Header - size: 311 bytes.
Response Body - size: 2,736 bytes.
Instances 9
Solution
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.

If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
Reference http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx
https://owasp.org/www-community/Security_Headers
Tags OWASP_2021_A05
OWASP_2017_A06
CWE Id 693
WASC Id 15
Plugin Id 10021
Informational
Cookie Poisoning
Description
This check looks at user-supplied input in query string parameters and POST data to identify where cookie parameters might be controlled. This is called a cookie poisoning attack, and becomes exploitable when an attacker can manipulate the cookie in various ways. In some cases this will not be exploitable, however, allowing URL parameters to set cookie values is generally considered a bug.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter username
Attack
Evidence
Request Header - size: 332 bytes.
Request Body - size: 27 bytes.
Response Header - size: 243 bytes.
Response Body - size: 265 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter username
Attack
Evidence
Request Header - size: 504 bytes.
Request Body - size: 32 bytes.
Response Header - size: 251 bytes.
Response Body - size: 265 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter username
Attack
Evidence
Request Header - size: 504 bytes.
Request Body - size: 32 bytes.
Response Header - size: 251 bytes.
Response Body - size: 265 bytes.
Instances 3
Solution
Do not allow user input to control cookie names and values. If some query string parameters must be set in cookie values, be sure to filter out semicolon's that can serve as name/value pair delimiters.
Reference http://websecuritytool.codeplex.com/wikipage?title=Checks#user-controlled-cookie
Tags OWASP_2021_A03
OWASP_2017_A01
CWE Id 20
WASC Id 20
Plugin Id 10029
Informational
Information Disclosure - Suspicious Comments
Description
The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.
URL http://testhtml5.vulnweb.com/static/app/post.js
Method GET
Parameter
Attack
Evidence admin
Request Header - size: 275 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 3,319 bytes.
URL http://testhtml5.vulnweb.com/static/app/post.js
Method GET
Parameter
Attack
Evidence from
Request Header - size: 275 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 3,319 bytes.
URL http://testhtml5.vulnweb.com/static/app/post.js
Method GET
Parameter
Attack
Evidence username
Request Header - size: 275 bytes.
Request Body - size: 0 bytes.
Response Header - size: 324 bytes.
Response Body - size: 3,319 bytes.
URL http://testhtml5.vulnweb.com
Method GET
Parameter
Attack
Evidence Username
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter
Attack
Evidence Username
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 5
Solution
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
Reference
Tags OWASP_2021_A01
OWASP_2017_A03
CWE Id 200
WASC Id 13
Plugin Id 10027
Informational
Modern Web Application
Description
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
URL http://testhtml5.vulnweb.com
Method GET
Parameter
Attack
Evidence <a href="#" class="btn" id="loginFormForgot">Forgot Pwd?</a>
Request Header - size: 217 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter
Attack
Evidence <a href="#" class="btn" id="loginFormForgot">Forgot Pwd?</a>
Request Header - size: 218 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 2
Solution
This is an informational alert and so no changes are required.
Reference
Tags
CWE Id
WASC Id
Plugin Id 10109
Informational
User Agent Fuzzer
Description
Check for differences in response based on fuzzed User Agent (eg. mobile sites, access as a Search Engine Crawler). Compares the response statuscode and the hashcode of the response body with the original response.
URL http://testhtml5.vulnweb.com
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 267 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 272 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 479 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 484 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 399 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 399 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 399 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 411 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 477 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 464 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 427 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 421 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 432 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 485 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 490 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/logout
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 395 bytes.
Request Body - size: 0 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,925 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 243 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 309 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 296 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 259 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 253 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 264 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 317 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 322 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 227 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 243 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 243 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 243 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 255 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 321 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 308 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 271 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 265 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 276 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 329 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 334 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/controllers
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 239 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 236 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 236 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 236 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 248 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 314 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 301 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 264 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 258 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 269 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 322 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 327 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/libs
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 232 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 240 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 240 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 240 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 252 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 318 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 305 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 268 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 262 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 273 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 326 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 331 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/app/services
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 236 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 243 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 309 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 296 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 259 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 253 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 264 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 317 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 322 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/css
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 227 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 231 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 243 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 309 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 296 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 555 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 259 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 253 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 264 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 317 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 322 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/static/img
Method GET
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 227 bytes.
Request Body - size: 0 bytes.
Response Header - size: 155 bytes.
Response Body - size: 153 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)
Evidence
Request Header - size: 296 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)
Evidence
Request Header - size: 296 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)
Evidence
Request Header - size: 296 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko
Evidence
Request Header - size: 308 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0
Evidence
Request Header - size: 374 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36
Evidence
Request Header - size: 361 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0
Evidence
Request Header - size: 324 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)
Evidence
Request Header - size: 318 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp)
Evidence
Request Header - size: 329 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4
Evidence
Request Header - size: 382 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16
Evidence
Request Header - size: 387 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 2,924 bytes.
URL http://testhtml5.vulnweb.com/login
Method POST
Parameter Header User-Agent
Attack msnbot/1.1 (+http://search.msn.com/msnbot.htm)
Evidence
Request Header - size: 292 bytes.
Request Body - size: 27 bytes.
Response Header - size: 196 bytes.
Response Body - size: 6,940 bytes.
Instances 100
Solution
Reference https://owasp.org/wstg
Tags
CWE Id
WASC Id
Plugin Id 10104