# ZAP Scanning Report ## Summary of Alerts | Risk Level | Number of Alerts | | --- | --- | | High | 1 | | Medium | 2 | | Low | 9 | | Informational | 3 | ## Alert Detail ### Path Traversal ##### High (Medium) #### Description <p>The Path Traversal attack technique allows an attacker access to files, directories, and commands that potentially reside outside the web document root directory. An attacker may manipulate a URL in such a way that the web site will execute or reveal the contents of arbitrary files anywhere on the web server. Any device that exposes an HTTP-based interface is potentially vulnerable to Path Traversal.</p><p></p><p>Most web sites restrict user access to a specific portion of the file-system, typically called the "web document root" or "CGI root" directory. These directories contain the files intended for user access and the executable necessary to drive web application functionality. To access files or execute commands anywhere on the file-system, Path Traversal attacks will utilize the ability of special-characters sequences.</p><p></p><p>The most basic Path Traversal attack uses the "../" special-character sequence to alter the resource location requested in the URL. Although most popular web servers will prevent this technique from escaping the web document root, alternate encodings of the "../" sequence may help bypass the security filters. These method variations include valid and invalid Unicode-encoding ("..%u2216" or "..%c0%af") of the forward slash character, backslash characters ("..\") on Windows-based servers, URL encoded characters "%2e%2e%2f"), and double URL encoding ("..%255c") of the backslash character.</p><p></p><p>Even if the web server properly restricts Path Traversal attempts in the URL path, a web application itself may still be vulnerable due to improper handling of user-supplied input. This is a common problem of web applications that use template mechanisms or load static text from files. In variations of the attack, the original URL parameter value is substituted with the file name of one of the web application's dynamic scripts. Consequently, the results can reveal source code because the file is interpreted as text instead of an executable script. These techniques often employ additional special characters such as the dot (".") to reveal the listing of the current working directory, or "%00" NULL characters in order to bypass rudimentary file extension checks.</p> * URL: [https://yallagive.com/terms](https://yallagive.com/terms) * Method: `POST` * Parameter: `alg_currency` * Attack: `c:/` * Evidence: `etc` Instances: 1 ### Solution <p>Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a whitelist of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. Do not rely exclusively on looking for malicious or malformed inputs (i.e., do not rely on a blacklist). However, blacklists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.</p><p></p><p>When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if you are expecting colors such as "red" or "blue."</p><p></p><p>For filenames, use stringent whitelists that limit the character set to be used. If feasible, only allow a single "." character in the filename to avoid weaknesses, and exclude directory separators such as "/". Use a whitelist of allowable file extensions.</p><p></p><p>Warning: if you attempt to cleanse your data, then do so that the end result is not in the form that can be dangerous. A sanitizing mechanism can remove characters such as '.' and ';' which may be required for some exploits. An attacker can try to fool the sanitizing mechanism into "cleaning" data into a dangerous form. Suppose the attacker injects a '.' inside a filename (e.g. "sensi.tiveFile") and the sanitizing mechanism removes the character resulting in the valid filename, "sensitiveFile". If the input data are now assumed to be safe, then the file may be compromised. </p><p></p><p>Inputs should be decoded and canonicalized to the application's current internal representation before being validated. Make sure that your application does not decode the same input twice. Such errors could be used to bypass whitelist schemes by introducing dangerous inputs after they have been checked.</p><p></p><p>Use a built-in path canonicalization function (such as realpath() in C) that produces the canonical version of the pathname, which effectively removes ".." sequences and symbolic links.</p><p></p><p>Run your code using the lowest privileges that are required to accomplish the necessary tasks. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database administrator, especially in day-to-day operations.</p><p></p><p>When the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs.</p><p></p><p>Run your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by your software.</p><p></p><p>OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows you to specify restrictions on file operations.</p><p></p><p>This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.</p> ### Reference * http://projects.webappsec.org/Path-Traversal * http://cwe.mitre.org/data/definitions/22.html #### CWE Id : 22 #### WASC Id : 33 #### Source ID : 1 ### X-Frame-Options Header Not Set ##### Medium (Medium) #### Description <p>X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.</p> * URL: [https://www.gstatic.com/chrome/intelligence/assist/ranker/models/translate/2017/03/translate_ranker_model_20170329.pb.bin](https://www.gstatic.com/chrome/intelligence/assist/ranker/models/translate/2017/03/translate_ranker_model_20170329.pb.bin) * Method: `GET` * Parameter: `X-Frame-Options` Instances: 1 ### Solution <p>Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (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. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).</p> ### Reference * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options #### CWE Id : 16 #### WASC Id : 15 #### Source ID : 3 ### X-Frame-Options Header Not Set ##### Medium (Medium) #### Description <p>X-Frame-Options header is not included in the HTTP response to protect against 'ClickJacking' attacks.</p> * URL: [https://yallagive.com/profile/ayoub?lang=en](https://yallagive.com/profile/ayoub?lang=en) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae4?lang=ar](https://yallagive.com/campaign/hsbc-asean-challenge-uae4?lang=ar) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/donatecampaign/131](https://yallagive.com/donatecampaign/131) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/share.php?id=pinktober-20199](https://yallagive.com/share.php?id=pinktober-20199) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/share.php?id=pinktober-20195](https://yallagive.com/share.php?id=pinktober-20195) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/charity/soroptimist-international-of-gulf?lang=ar](https://yallagive.com/charity/soroptimist-international-of-gulf?lang=ar) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/share.php?id=pinktober-20197](https://yallagive.com/share.php?id=pinktober-20197) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/donatecampaign/292?lang=ar](https://yallagive.com/donatecampaign/292?lang=ar) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/donatecampaign/131?lang=en](https://yallagive.com/donatecampaign/131?lang=en) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/profile/cdn/001125457027916091619.jpg?lang=en](https://yallagive.com/profile/cdn/001125457027916091619.jpg?lang=en) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/profile/cdn/001125845716359120819.jpg](https://yallagive.com/profile/cdn/001125845716359120819.jpg) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/category/31?lang=ar](https://yallagive.com/category/31?lang=ar) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/profile/yara-skaf](https://yallagive.com/profile/yara-skaf) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/donatecampaign/435?lang=ar](https://yallagive.com/donatecampaign/435?lang=ar) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/category/35?lang=en](https://yallagive.com/category/35?lang=en) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/charity/penny-appeal-middle-east](https://yallagive.com/charity/penny-appeal-middle-east) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/donatecharity/87&amount=Can%20provide%20cleft%20surgery%20for%201%20child?lang=ar](https://yallagive.com/donatecharity/87&amount=Can%20provide%20cleft%20surgery%20for%201%20child?lang=ar) * Method: `POST` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/profile/emma2](https://yallagive.com/profile/emma2) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/share.php?chid=monthly-ration-programme-cycle-1-2020](https://yallagive.com/share.php?chid=monthly-ration-programme-cycle-1-2020) * Method: `GET` * Parameter: `X-Frame-Options` * URL: [https://yallagive.com/charity/the-citizens-foundation](https://yallagive.com/charity/the-citizens-foundation) * Method: `POST` * Parameter: `X-Frame-Options` Instances: 3787 ### Solution <p>Most modern Web browsers support the X-Frame-Options HTTP header. Ensure it's set on all web pages returned by your site (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. ALLOW-FROM allows specific websites to frame the web page in supported web browsers).</p> ### Reference * https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options #### CWE Id : 16 #### WASC Id : 15 #### Source ID : 3 ### Incomplete or No Cache-control and Pragma HTTP Header Set ##### Low (Medium) #### Description <p>The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.</p> * URL: [https://www.gstatic.com/chrome/intelligence/assist/ranker/models/translate/2017/03/translate_ranker_model_20170329.pb.bin](https://www.gstatic.com/chrome/intelligence/assist/ranker/models/translate/2017/03/translate_ranker_model_20170329.pb.bin) * Method: `GET` * Parameter: `Cache-Control` * Evidence: `public, max-age=31536000` Instances: 1 ### Solution <p>Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate; and that the pragma HTTP header is set with no-cache.</p> ### Reference * https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching #### CWE Id : 525 #### WASC Id : 13 #### Source ID : 3 ### Absence of Anti-CSRF Tokens ##### Low (Medium) #### Description <p>No Anti-CSRF tokens were found in a HTML submission form.</p><p>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.</p><p></p><p>CSRF attacks are effective in a number of situations, including:</p><p> * The victim has an active session on the target site.</p><p> * The victim is authenticated via HTTP auth on the target site.</p><p> * The victim is on the same local network as the target site.</p><p></p><p>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.</p> * URL: [https://yallagive.com/charity/gulf4good](https://yallagive.com/charity/gulf4good) * Method: `POST` * Evidence: `<form action="https://yallagive.com/search.php" method="get" style="display:inline;position:relative;">` * URL: [https://yallagive.com/donatecharity/cdn/cdn/icomoon.css?lang=en](https://yallagive.com/donatecharity/cdn/cdn/icomoon.css?lang=en) * Method: `GET` * Evidence: `<form method="POST" action="https://yallagive.com/payment.php" enctype="multipart/form-data" id="payment-form">` * URL: [https://yallagive.com/profile/cdn/001125767831470063019.jpg?lang=en](https://yallagive.com/profile/cdn/001125767831470063019.jpg?lang=en) * Method: `POST` * Evidence: `<form method="POST" class="margin-bottom-15" action="" enctype="multipart/form-data" id="formContactOrganizer">` * URL: [https://yallagive.com/profile/cdn/001125306215833050719.jpg](https://yallagive.com/profile/cdn/001125306215833050719.jpg) * Method: `GET` * Evidence: `<form action="https://yallagive.com/search.php" method="get" style="display:inline;position:relative;">` * URL: [https://yallagive.com/company/charity/assets/js/ie8-responsive-file-warning.js?lang=en](https://yallagive.com/company/charity/assets/js/ie8-responsive-file-warning.js?lang=en) * Method: `POST` * Evidence: `<form action="" method="post" id="alg_currency_selector">` * URL: [https://yallagive.com/campaign/for-better-mental-health2](https://yallagive.com/campaign/for-better-mental-health2) * Method: `GET` * Evidence: `<form action="" method="get" id="changetoar" style="display:none;visibility:hidden;">` * URL: [https://yallagive.com/donatecharitycampaign/149?lang=en](https://yallagive.com/donatecharitycampaign/149?lang=en) * Method: `POST` * Evidence: `<form method="POST" action="https://yallagive.com/payment.php" enctype="multipart/form-data" id="payment-form">` * URL: [https://yallagive.com/category/22?lang=ar](https://yallagive.com/category/22?lang=ar) * Method: `GET` * Evidence: `<form action="" method="get" id="changetoen" style="display:none;visibility:hidden;">` * URL: [https://yallagive.com/profile/nicola-deans?lang=ar](https://yallagive.com/profile/nicola-deans?lang=ar) * Method: `POST` * Evidence: `<form action="https://yallagive.com/search.php" method="get" style="display:inline;position:relative;">` * URL: [https://yallagive.com/profile/cdn/0011251725609787111319.jpg](https://yallagive.com/profile/cdn/0011251725609787111319.jpg) * Method: `POST` * Evidence: `<form action="https://yallagive.com/search.php" method="get" style="display:inline;position:relative;">` * URL: [https://yallagive.com/profile/deki-raghavan?lang=ar](https://yallagive.com/profile/deki-raghavan?lang=ar) * Method: `GET` * Evidence: `<form autocomplete="off" action="https://yallagive.com/dev/search" method="get">` * URL: [https://yallagive.com/profile/cdn/cdn/sweetalert.css?lang=en](https://yallagive.com/profile/cdn/cdn/sweetalert.css?lang=en) * Method: `POST` * Evidence: `<form action="" method="get" id="changetoar" style="display:none;visibility:hidden;">` * URL: [https://yallagive.com/charity/gabriella-chuffi](https://yallagive.com/charity/gabriella-chuffi) * Method: `POST` * Evidence: `<form action="" method="get" id="changetoen" style="display:none;visibility:hidden;">` * URL: [https://yallagive.com/donatecharitycampaign/69?lang=en](https://yallagive.com/donatecharitycampaign/69?lang=en) * Method: `GET` * Evidence: `<form action="" method="post" id="alg_currency_selector">` * URL: [https://yallagive.com/charitycampaign/the-little-wings-foundation?lang=en](https://yallagive.com/charitycampaign/the-little-wings-foundation?lang=en) * Method: `POST` * Evidence: `<form action="" method="get" id="changetoar" style="display:none;visibility:hidden;">` * URL: [https://yallagive.com/campaign/in-the-pink](https://yallagive.com/campaign/in-the-pink) * Method: `GET` * Evidence: `<form action="https://yallagive.com/search.php" method="get" style="display:inline;position:relative;">` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae13-Joanna](https://yallagive.com/campaign/hsbc-asean-challenge-uae13-Joanna) * Method: `GET` * Evidence: `<form action="" method="post" id="alg_currency_selector">` * URL: [https://yallagive.com/campaign/ayoub-climbs-mt-kenya-in-support-of-vulnerable-children-at-sos-villages?lang=en](https://yallagive.com/campaign/ayoub-climbs-mt-kenya-in-support-of-vulnerable-children-at-sos-villages?lang=en) * Method: `GET` * Evidence: `<form style="text-align: left;" method="post" action="https://yallagive.com//donatecampaign/191">` * URL: [https://yallagive.com/campaign/assets/js/ie8-responsive-file-warning.js](https://yallagive.com/campaign/assets/js/ie8-responsive-file-warning.js) * Method: `GET` * Evidence: `<form autocomplete="off" action="https://yallagive.com/dev/search" method="get">` * URL: [https://yallagive.com/donatecampaign/569](https://yallagive.com/donatecampaign/569) * Method: `POST` * Evidence: `<form method="POST" action="https://yallagive.com/payment.php" enctype="multipart/form-data" id="payment-form">` Instances: 20957 ### Solution <p>Phase: Architecture and Design</p><p>Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.</p><p>For example, use anti-CSRF packages such as the OWASP CSRFGuard.</p><p></p><p>Phase: Implementation</p><p>Ensure that your application is free of cross-site scripting issues, because most CSRF defenses can be bypassed using attacker-controlled script.</p><p></p><p>Phase: Architecture and Design</p><p>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).</p><p>Note that this can be bypassed using XSS.</p><p></p><p>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.</p><p>Note that this can be bypassed using XSS.</p><p></p><p>Use the ESAPI Session Management control.</p><p>This control includes a component for CSRF.</p><p></p><p>Do not use the GET method for any request that triggers a state change.</p><p></p><p>Phase: Implementation</p><p>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.</p> ### Other information <p>No known Anti-CSRF token [anticsrf, CSRFToken, __RequestVerificationToken, csrfmiddlewaretoken, authenticity_token, OWASP_CSRFTOKEN, anoncsrf, csrf_token, _csrf, _csrfSecret] was found in the following HTML form: [Form 2: "q" ].</p> ### Reference * http://projects.webappsec.org/Cross-Site-Request-Forgery * http://cwe.mitre.org/data/definitions/352.html #### CWE Id : 352 #### WASC Id : 9 #### Source ID : 3 ### Cross-Domain JavaScript Source File Inclusion ##### Low (Medium) #### Description <p>The page includes one or more script files from a third-party domain.</p> * URL: [https://yallagive.com/share.php?chid=test12](https://yallagive.com/share.php?chid=test12) * Method: `GET` * Parameter: `https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js` * Evidence: `<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>` * URL: [https://yallagive.com/donatecampaign/500?lang=en](https://yallagive.com/donatecampaign/500?lang=en) * Method: `POST` * Parameter: `https://www.google.com/recaptcha/api.js` * Evidence: `<script src='https://www.google.com/recaptcha/api.js'></script>` * URL: [https://yallagive.com/donatecharity/151](https://yallagive.com/donatecharity/151) * Method: `POST` * Parameter: `https://cdn.checkout.com/js/frames.js` * Evidence: `<script src="https://cdn.checkout.com/js/frames.js"></script>` * URL: [https://yallagive.com/donatecampaign/295?lang=en](https://yallagive.com/donatecampaign/295?lang=en) * Method: `POST` * Parameter: `https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js` * Evidence: `<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>` * URL: [https://yallagive.com/category/17](https://yallagive.com/category/17) * Method: `GET` * Parameter: `https://www.googletagmanager.com/gtag/js?id=UA-140904725-1` * Evidence: `<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140904725-1"></script>` * URL: [https://yallagive.com/share.php?chid=test11](https://yallagive.com/share.php?chid=test11) * Method: `GET` * Parameter: `https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js` * Evidence: `<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>` * URL: [https://yallagive.com/charitycampaign/happymission-uganda](https://yallagive.com/charitycampaign/happymission-uganda) * Method: `GET` * Parameter: `//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5b9d5769f97181f3` * Evidence: `<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-5b9d5769f97181f3"></script>` * URL: [https://yallagive.com/donatecampaign/186?lang=en](https://yallagive.com/donatecampaign/186?lang=en) * Method: `POST` * Parameter: `https://cdn.checkout.com/js/frames.js` * Evidence: `<script src="https://cdn.checkout.com/js/frames.js"></script>` * URL: [https://yallagive.com/donatecharitycampaign/64](https://yallagive.com/donatecharitycampaign/64) * Method: `POST` * Parameter: `https://www.googletagmanager.com/gtag/js?id=UA-140904725-1` * Evidence: `<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140904725-1"></script>` * URL: [https://yallagive.com/profile/mohsen-manialawy?lang=ar](https://yallagive.com/profile/mohsen-manialawy?lang=ar) * Method: `GET` * Parameter: `https://oss.maxcdn.com/respond/1.4.2/respond.min.js` * Evidence: `<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>` * URL: [https://yallagive.com/charitycampaign/test6?lang=en](https://yallagive.com/charitycampaign/test6?lang=en) * Method: `GET` * Parameter: `https://www.googletagmanager.com/gtag/js?id=UA-140904725-1` * Evidence: `<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140904725-1"></script>` * URL: [https://yallagive.com/profile/deki-raghavan](https://yallagive.com/profile/deki-raghavan) * Method: `GET` * Parameter: `https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js` * Evidence: `<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>` * URL: [https://yallagive.com/donatecampaign/534](https://yallagive.com/donatecampaign/534) * Method: `POST` * Parameter: `https://oss.maxcdn.com/respond/1.4.2/respond.min.js` * Evidence: `<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>` * URL: [https://yallagive.com/category/16](https://yallagive.com/category/16) * Method: `GET` * Parameter: `https://www.googletagmanager.com/gtag/js?id=UA-140904725-1` * Evidence: `<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140904725-1"></script>` * URL: [https://yallagive.com/company/charity/cdn/cdn/sweetalert.css](https://yallagive.com/company/charity/cdn/cdn/sweetalert.css) * Method: `POST` * Parameter: `https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js` * Evidence: `<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" ></script>` * URL: [https://yallagive.com/donatecampaign/cdn/icomoon.css?lang=en](https://yallagive.com/donatecampaign/cdn/icomoon.css?lang=en) * Method: `POST` * Parameter: `https://oss.maxcdn.com/respond/1.4.2/respond.min.js` * Evidence: `<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>` * URL: [https://yallagive.com/campaign/strike-like-a-girl?lang=en](https://yallagive.com/campaign/strike-like-a-girl?lang=en) * Method: `POST` * Parameter: `//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js` * Evidence: `<script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>` * URL: [https://yallagive.com/profile/ahmed-karim?lang=ar](https://yallagive.com/profile/ahmed-karim?lang=ar) * Method: `POST` * Parameter: `https://www.googletagmanager.com/gtag/js?id=UA-140904725-1` * Evidence: `<script async src="https://www.googletagmanager.com/gtag/js?id=UA-140904725-1"></script>` * URL: [https://yallagive.com/index.php?lang=en](https://yallagive.com/index.php?lang=en) * Method: `POST` * Parameter: `//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js` * Evidence: `<script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>` * URL: [https://yallagive.com/profile/cdn/0011251045955601050919.jpg?lang=ar](https://yallagive.com/profile/cdn/0011251045955601050919.jpg?lang=ar) * Method: `GET` * Parameter: `https://www.google.com/recaptcha/api.js` * Evidence: `<script src='https://www.google.com/recaptcha/api.js'></script>` Instances: 24894 ### Solution <p>Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.</p> ### Reference * #### CWE Id : 829 #### WASC Id : 15 #### Source ID : 3 ### X-Content-Type-Options Header Missing ##### Low (Medium) #### Description <p>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.</p> * URL: [https://yallagive.com/profile/cdn/0011251662618656050919.jpg?lang=en](https://yallagive.com/profile/cdn/0011251662618656050919.jpg?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/charitycampaign/kashmir-earthquake-donate-now](https://yallagive.com/charitycampaign/kashmir-earthquake-donate-now) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/campaignimages/corona-relef-image.jpeg](https://yallagive.com/campaignimages/corona-relef-image.jpeg) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/category/0?lang=ar](https://yallagive.com/category/0?lang=ar) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/eliane-kozal?lang=en](https://yallagive.com/profile/eliane-kozal?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/amena-khaled?lang=en](https://yallagive.com/profile/amena-khaled?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/jessica-day?lang=en](https://yallagive.com/profile/jessica-day?lang=en) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/cdn/icomoon.css](https://yallagive.com/profile/cdn/icomoon.css) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/donatecampaign/471](https://yallagive.com/donatecampaign/471) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/donatecampaign/470](https://yallagive.com/donatecampaign/470) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/ayman-jabnaoui?lang=en](https://yallagive.com/profile/ayman-jabnaoui?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/charity/nisa-foundation?lang=ar](https://yallagive.com/charity/nisa-foundation?lang=ar) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/cristina-polo?lang=en](https://yallagive.com/profile/cristina-polo?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/profile/pranav8](https://yallagive.com/profile/pranav8) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/charity/national-disability-and-development-forum?lang=en](https://yallagive.com/charity/national-disability-and-development-forum?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/charitycampaign/festive-greetings-with-al-jalila-foundation?lang=en](https://yallagive.com/charitycampaign/festive-greetings-with-al-jalila-foundation?lang=en) * Method: `POST` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/campaign/pinktober-2019?lang=en](https://yallagive.com/campaign/pinktober-2019?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/company/cdn/icomoon.css?lang=ar](https://yallagive.com/company/cdn/icomoon.css?lang=ar) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/cdn/001125769306829011520.jpg](https://yallagive.com/cdn/001125769306829011520.jpg) * Method: `GET` * Parameter: `X-Content-Type-Options` * URL: [https://yallagive.com/donatecampaign/425?lang=en](https://yallagive.com/donatecampaign/425?lang=en) * Method: `GET` * Parameter: `X-Content-Type-Options` Instances: 4225 ### Solution <p>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.</p><p>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.</p> ### Other information <p>This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type.</p><p>At "High" threshold this scanner will not alert on client or server error responses.</p> ### Reference * http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx * https://www.owasp.org/index.php/List_of_useful_HTTP_headers #### CWE Id : 16 #### WASC Id : 15 #### Source ID : 3 ### Incomplete or No Cache-control and Pragma HTTP Header Set ##### Low (Medium) #### Description <p>The cache-control and pragma HTTP header have not been set properly or are missing allowing the browser and proxies to cache content.</p> * URL: [https://yallagive.com/test/css/jquery.fileupload-noscript.css](https://yallagive.com/test/css/jquery.fileupload-noscript.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/test/css/jquery.fileupload-ui.css](https://yallagive.com/test/css/jquery.fileupload-ui.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/test/css/jquery.fileupload.css](https://yallagive.com/test/css/jquery.fileupload.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/newcdn/css/style.css?v=1](https://yallagive.com/newcdn/css/style.css?v=1) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/public/css/icomoon.css](https://yallagive.com/public/css/icomoon.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/css/ionicons.min.css](https://yallagive.com/css/ionicons.min.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/css/bootstrap.css](https://yallagive.com/css/bootstrap.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/cdn/sweetalert.css](https://yallagive.com/cdn/sweetalert.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/test/css/style.css](https://yallagive.com/test/css/style.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/cdn/main.css](https://yallagive.com/cdn/main.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/dev/public/plugins/iCheck/all.css](https://yallagive.com/dev/public/plugins/iCheck/all.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/public/css/main.css?v=1.1](https://yallagive.com/public/css/main.css?v=1.1) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/cdn/fonts/stylesheet.css](https://yallagive.com/cdn/fonts/stylesheet.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/admin2/css/neat.min.css?v=1.0](https://yallagive.com/admin2/css/neat.min.css?v=1.0) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/css/icomoon.css](https://yallagive.com/css/icomoon.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/cdn/icomoon.css](https://yallagive.com/cdn/icomoon.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/cdn/css/font-awesome.min.css](https://yallagive.com/cdn/css/font-awesome.min.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/cdn/css/icomoon.css](https://yallagive.com/cdn/css/icomoon.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/test/css/jquery.fileupload-ui-noscript.css](https://yallagive.com/test/css/jquery.fileupload-ui-noscript.css) * Method: `GET` * Parameter: `Cache-Control` * URL: [https://yallagive.com/public/fonts/ionicons/css/ionicons.min.css](https://yallagive.com/public/fonts/ionicons/css/ionicons.min.css) * Method: `GET` * Parameter: `Cache-Control` Instances: 38 ### Solution <p>Whenever possible ensure the cache-control HTTP header is set with no-cache, no-store, must-revalidate; and that the pragma HTTP header is set with no-cache.</p> ### Reference * https://www.owasp.org/index.php/Session_Management_Cheat_Sheet#Web_Content_Caching #### CWE Id : 525 #### WASC Id : 13 #### Source ID : 3 ### Cookie Without SameSite Attribute ##### Low (Medium) #### Description <p>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.</p> * URL: [https://yallagive.com/login.php?returnurl=fundraise.php?id=131](https://yallagive.com/login.php?returnurl=fundraise.php?id=131) * Method: `GET` * Parameter: `returnurlgoogle` * Evidence: `Set-Cookie: returnurlgoogle` * URL: [https://yallagive.com](https://yallagive.com) * Method: `GET` * Parameter: `PHPSESSID` * Evidence: `Set-Cookie: PHPSESSID` * URL: [https://yallagive.com/login.php?returnurl=fundraise.php?id=131](https://yallagive.com/login.php?returnurl=fundraise.php?id=131) * Method: `POST` * Parameter: `returnurlgoogle` * Evidence: `Set-Cookie: returnurlgoogle` Instances: 3 ### Solution <p>Ensure that the SameSite attribute is set to either 'lax' or ideally 'strict' for all cookies.</p> ### Reference * https://tools.ietf.org/html/draft-ietf-httpbis-cookie-same-site #### CWE Id : 16 #### WASC Id : 13 #### Source ID : 3 ### Cookie Without Secure Flag ##### Low (Medium) #### Description <p>A cookie has been set without the secure flag, which means that the cookie can be accessed via unencrypted connections.</p> * URL: [https://yallagive.com/login.php?returnurl=fundraise.php?id=131](https://yallagive.com/login.php?returnurl=fundraise.php?id=131) * Method: `POST` * Parameter: `returnurlgoogle` * Evidence: `Set-Cookie: returnurlgoogle` * URL: [https://yallagive.com](https://yallagive.com) * Method: `GET` * Parameter: `PHPSESSID` * Evidence: `Set-Cookie: PHPSESSID` * URL: [https://yallagive.com/login.php?returnurl=fundraise.php?id=131](https://yallagive.com/login.php?returnurl=fundraise.php?id=131) * Method: `GET` * Parameter: `returnurlgoogle` * Evidence: `Set-Cookie: returnurlgoogle` Instances: 3 ### Solution <p>Whenever a cookie contains sensitive information or is a session token, then it should always be passed using an encrypted channel. Ensure that the secure flag is set for cookies containing such sensitive information.</p> ### Reference * http://www.owasp.org/index.php/Testing_for_cookies_attributes_(OWASP-SM-002) #### CWE Id : 614 #### WASC Id : 13 #### Source ID : 3 ### Cookie No HttpOnly Flag ##### Low (Medium) #### Description <p>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.</p> * URL: [https://yallagive.com](https://yallagive.com) * Method: `GET` * Parameter: `PHPSESSID` * Evidence: `Set-Cookie: PHPSESSID` * URL: [https://yallagive.com/login.php?returnurl=fundraise.php?id=131](https://yallagive.com/login.php?returnurl=fundraise.php?id=131) * Method: `GET` * Parameter: `returnurlgoogle` * Evidence: `Set-Cookie: returnurlgoogle` * URL: [https://yallagive.com/login.php?returnurl=fundraise.php?id=131](https://yallagive.com/login.php?returnurl=fundraise.php?id=131) * Method: `POST` * Parameter: `returnurlgoogle` * Evidence: `Set-Cookie: returnurlgoogle` Instances: 3 ### Solution <p>Ensure that the HttpOnly flag is set for all cookies.</p> ### Reference * http://www.owasp.org/index.php/HttpOnly #### CWE Id : 16 #### WASC Id : 13 #### Source ID : 3 ### Application Error Disclosure ##### Low (Medium) #### Description <p>This page contains an error/warning message that may disclose sensitive information like the location of the file that produced the unhandled exception. This information can be used to launch further attacks against the web application. The alert could be a false positive if the error message is found inside a documentation page.</p> * URL: [https://yallagive.com/campaign/dubai-virtual-choir-fundraiser](https://yallagive.com/campaign/dubai-virtual-choir-fundraiser) * Method: `GET` * Evidence: `HTTP/1.0 500 Internal Server Error` Instances: 1 ### Solution <p>Review the source code of this page. Implement custom error pages. Consider implementing a mechanism to provide a unique error reference/identifier to the client (browser) while logging the details on the server side and not exposing them to the user.</p> ### Reference * #### CWE Id : 200 #### WASC Id : 13 #### Source ID : 3 ### Information Disclosure - Sensitive Information in URL ##### Informational (Medium) #### Description <p>The request appeared to contain sensitive information leaked in the URL. This can violate PCI and most organizational compliance policies. You can configure the list of strings for this check to add or remove values specific to your environment.</p> * URL: [https://yallagive.com/share.php?id=help-build-a-new-orphan-home-orphan-kind9-pkpranav038@gmail.com](https://yallagive.com/share.php?id=help-build-a-new-orphan-home-orphan-kind9-pkpranav038@gmail.com) * Method: `GET` * Parameter: `id` * Evidence: `help-build-a-new-orphan-home-orphan-kind9-pkpranav038@gmail.com` Instances: 1 ### Solution <p>Do not pass sensitive information in URIs.</p> ### Other information <p>The URL contains email address(es).</p> ### Reference * #### CWE Id : 200 #### WASC Id : 13 #### Source ID : 3 ### Information Disclosure - Suspicious Comments ##### Informational (Low) #### Description <p>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.</p> * URL: [https://yallagive.com/profile/ryan-bell](https://yallagive.com/profile/ryan-bell) * Method: `POST` * URL: [https://yallagive.com/profile/ayoub-battioui](https://yallagive.com/profile/ayoub-battioui) * Method: `GET` * URL: [https://yallagive.com/category/33?lang=ar](https://yallagive.com/category/33?lang=ar) * Method: `POST` * URL: [https://yallagive.com/charitieslogin.php?lang=en](https://yallagive.com/charitieslogin.php?lang=en) * Method: `POST` * URL: [https://yallagive.com/company/charity/cdn/cdn/icomoon.css](https://yallagive.com/company/charity/cdn/cdn/icomoon.css) * Method: `POST` * URL: [https://yallagive.com/donatecampaign/534?lang=ar](https://yallagive.com/donatecampaign/534?lang=ar) * Method: `GET` * URL: [https://yallagive.com/company/newcdn/css/cdn/cdn/cdn/icomoon.css](https://yallagive.com/company/newcdn/css/cdn/cdn/cdn/icomoon.css) * Method: `GET` * URL: [https://yallagive.com/donatecharitycampaign/72?lang=en](https://yallagive.com/donatecharitycampaign/72?lang=en) * Method: `GET` * URL: [https://yallagive.com/donatecharitycampaign/54?lang=en](https://yallagive.com/donatecharitycampaign/54?lang=en) * Method: `POST` * URL: [https://yallagive.com/allcampaigns.php?lang=en](https://yallagive.com/allcampaigns.php?lang=en) * Method: `GET` * URL: [https://yallagive.com/share.php?chid=help-us-sponsor-orphan-children-in-sudan-gambia-palestine-and-bangladesh](https://yallagive.com/share.php?chid=help-us-sponsor-orphan-children-in-sudan-gambia-palestine-and-bangladesh) * Method: `GET` * URL: [https://yallagive.com/donatecharitycampaign/cdn/icomoon.css?lang=en](https://yallagive.com/donatecharitycampaign/cdn/icomoon.css?lang=en) * Method: `GET` * URL: [https://yallagive.com/charitycampaign/19?lang=ar](https://yallagive.com/charitycampaign/19?lang=ar) * Method: `POST` * URL: [https://yallagive.com/donatecharitycampaign/150?lang=en](https://yallagive.com/donatecharitycampaign/150?lang=en) * Method: `GET` * URL: [https://yallagive.com/donatecharity/87&amount=can%20provide%20cleft%20surgery%20for%202%20children?lang=en](https://yallagive.com/donatecharity/87&amount=can%20provide%20cleft%20surgery%20for%202%20children?lang=en) * Method: `POST` * URL: [https://yallagive.com/blog-detail/14?lang=en](https://yallagive.com/blog-detail/14?lang=en) * Method: `POST` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae7?lang=ar](https://yallagive.com/campaign/hsbc-asean-challenge-uae7?lang=ar) * Method: `POST` * URL: [https://yallagive.com/profile/yasmin-baker?lang=en](https://yallagive.com/profile/yasmin-baker?lang=en) * Method: `GET` * URL: [https://yallagive.com/donatecampaign/568](https://yallagive.com/donatecampaign/568) * Method: `GET` * URL: [https://yallagive.com/donatecampaign/cdn/sweetalert.css?lang=en](https://yallagive.com/donatecampaign/cdn/sweetalert.css?lang=en) * Method: `GET` Instances: 3897 ### Solution <p>Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.</p> ### Other information <p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><!-- IE10 viewport hack for Surface/desktop Windows 8 bug --></p><p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><!-- IE10 viewport hack for Surface/desktop Windows 8 bug --></p><p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><!-- IE10 viewport hack for Surface/desktop Windows 8 bug --></p><p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><!-- IE10 viewport hack for Surface/desktop Windows 8 bug --></p><p>The following comment/snippet was identified via the pattern: \bSELECT\b</p><p><!-- <form action="" method="post" id="alg_currency_selector" ></p><p></p><p></p><p><select name="country" id="alg_currency_select" class="alg_currency_select" onchange="this.form.submit()" style="width:10%;" ></p><p></p><p><option id="country" value="United Aram Emirates" > <img src="https://www.countryflags.io//flat/32.png"></option></p><p></p><p><option id="country" value="other" selected="selected"><img src="https://www.countryflags.io//flat/32.png"></option></p><p></p><p></select></p><p></form> !--></p><p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><script src="https://yallagive.com/public/js/ie10-viewport-bug-workaround.js"></script></p><p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><script src="https://yallagive.com/public/js/ie10-viewport-bug-workaround.js"></script></p><p>The following comment/snippet was identified via the pattern: \bBUG\b</p><p><script src="https://yallagive.com/public/js/ie10-viewport-bug-workaround.js"></script></p><p></p> ### Reference * #### CWE Id : 200 #### WASC Id : 13 #### Source ID : 3 ### Timestamp Disclosure - Unix ##### Informational (Low) #### Description <p>A timestamp was disclosed by the application/web server - Unix</p> * URL: [https://yallagive.com/campaign/pinktober-20195?lang=ar](https://yallagive.com/campaign/pinktober-20195?lang=ar) * Method: `POST` * Evidence: `1564573004` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae6](https://yallagive.com/campaign/hsbc-asean-challenge-uae6) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/charity/emirates-red-crescent?lang=en](https://yallagive.com/charity/emirates-red-crescent?lang=en) * Method: `GET` * Evidence: `1585684912` * URL: [https://yallagive.com/charity/al-jalila-foundation?lang=ar](https://yallagive.com/charity/al-jalila-foundation?lang=ar) * Method: `POST` * Evidence: `1573119873` * URL: [https://yallagive.com/donatecharitycampaign/91?lang=ar](https://yallagive.com/donatecharitycampaign/91?lang=ar) * Method: `POST` * Evidence: `1557910804` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae7](https://yallagive.com/campaign/hsbc-asean-challenge-uae7) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/campaign/robert-and-myriam-climb-mt-kenya-in-support-of-vulnerable-children-at-sos-villages?lang=en](https://yallagive.com/campaign/robert-and-myriam-climb-mt-kenya-in-support-of-vulnerable-children-at-sos-villages?lang=en) * Method: `POST` * Evidence: `140904725` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae8](https://yallagive.com/campaign/hsbc-asean-challenge-uae8) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae9](https://yallagive.com/campaign/hsbc-asean-challenge-uae9) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/charitycampaign/festive-greetings-with-al-jalila-foundation?lang=ar](https://yallagive.com/charitycampaign/festive-greetings-with-al-jalila-foundation?lang=ar) * Method: `POST` * Evidence: `140904725` * URL: [https://yallagive.com/index.php](https://yallagive.com/index.php) * Method: `POST` * Evidence: `16015625` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae2](https://yallagive.com/campaign/hsbc-asean-challenge-uae2) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/campaign/cdn/cdn/icomoon.css](https://yallagive.com/campaign/cdn/cdn/icomoon.css) * Method: `GET` * Evidence: `140904725` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae3](https://yallagive.com/campaign/hsbc-asean-challenge-uae3) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/search.php?lang=ar](https://yallagive.com/search.php?lang=ar) * Method: `POST` * Evidence: `1548577503` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae4](https://yallagive.com/campaign/hsbc-asean-challenge-uae4) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/campaign/support-emirates-nature-wwf-s-fight-against-climate-change?lang=en](https://yallagive.com/campaign/support-emirates-nature-wwf-s-fight-against-climate-change?lang=en) * Method: `GET` * Evidence: `140904725` * URL: [https://yallagive.com/campaign/hsbc-asean-challenge-uae5](https://yallagive.com/campaign/hsbc-asean-challenge-uae5) * Method: `GET` * Evidence: `1557910804` * URL: [https://yallagive.com/campaign/maria-climbs-mt-kenya-in-support-of-vulnerable-children-at-sos-villages?lang=ar](https://yallagive.com/campaign/maria-climbs-mt-kenya-in-support-of-vulnerable-children-at-sos-villages?lang=ar) * Method: `GET` * Evidence: `140904725` * URL: [https://yallagive.com/campaign/11-km-nbf-trail-run?lang=ar](https://yallagive.com/campaign/11-km-nbf-trail-run?lang=ar) * Method: `POST` * Evidence: `140904725` Instances: 6964 ### Solution <p>Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.</p> ### Other information <p>1564573004, which evaluates to: 2019-07-31 13:36:44</p> ### Reference * https://www.owasp.org/index.php/Top_10_2013-A6-Sensitive_Data_Exposure * http://projects.webappsec.org/w/page/13246936/Information%20Leakage #### CWE Id : 200 #### WASC Id : 13 #### Source ID : 3