Логотип exploitDog
source:"github"
Консоль
Логотип exploitDog

exploitDog

source:"github"

Количество 325 632

Количество 325 632

github логотип

GHSA-2cvq-m957-r86c

почти 4 года назад

The ping tool in multiple D-Link and TRENDnet devices allow remote attackers to execute arbitrary code via the ping_addr parameter to ping.ccp.

CVSS3: 9.8
EPSS: Высокий
github логотип

GHSA-2cvq-f2jf-9wfh

больше 3 лет назад

Multiple Auth. (author+) Stored Cross-Site Scripting (XSS) vulnerabilities in WP Page Builder plugin <= 1.2.6 on WordPress.

CVSS3: 5.4
EPSS: Низкий
github логотип

GHSA-2cvq-4843-f5r7

почти 4 года назад

Vanilla 2.0.16 allows remote attackers to obtain sensitive information via a direct request to a .php file, which reveals the installation path in an error message, as demonstrated by plugins/Minify/min/utils.php and certain other files.

EPSS: Низкий
github логотип

GHSA-2cvp-xh9w-m6q5

почти 4 года назад

RESI Gemini-Net Web 4.2 is affected by Improper Access Control in authorization logic. An unauthenticated user is able to access some critical resources.

CVSS3: 5.3
EPSS: Низкий
github логотип

GHSA-2cvp-w34w-wfp5

почти 4 года назад

In Brocade SANnav before Brocade SANnav 2.2.0, multiple endpoints associated with Zone management are susceptible to SQL injection, allowing an attacker to run arbitrary SQL commands.

CVSS3: 9.8
EPSS: Низкий
github логотип

GHSA-2cvp-cxm8-hg6v

около 1 года назад

In the Linux kernel, the following vulnerability has been resolved: net: fec: handle page_pool_dev_alloc_pages error The fec_enet_update_cbd function calls page_pool_dev_alloc_pages but did not handle the case when it returned NULL. There was a WARN_ON(!new_page) but it would still proceed to use the NULL pointer and then crash. This case does seem somewhat rare but when the system is under memory pressure it can happen. One case where I can duplicate this with some frequency is when writing over a smbd share to a SATA HDD attached to an imx6q. Setting /proc/sys/vm/min_free_kbytes to higher values also seems to solve the problem for my test case. But it still seems wrong that the fec driver ignores the memory allocation error and can crash. This commit handles the allocation error by dropping the current packet.

CVSS3: 5.5
EPSS: Низкий
github логотип

GHSA-2cvp-672x-8283

почти 3 года назад

Auth. (admin+) Stored Cross-Site Scripting (XSS) vulnerability in Magneticlab Sàrl Homepage Pop-up plugin <= 1.2.5 versions.

CVSS3: 4.8
EPSS: Низкий
github логотип

GHSA-2cvm-gqf6-2jwg

почти 4 года назад

Invision Power Board (IPB) 2.1.7 and earlier allows remote restricted administrators to inject arbitrary web script or HTML, or execute arbitrary SQL commands, via a forum description that contains a crafted image with PHP code, which is executed when the user visits the "Manage Forums" link in the Admin control panel.

EPSS: Низкий
github логотип

GHSA-2cvj-g5r5-jrrg

12 месяцев назад

SurrealDB has local file read of 2-column TSV files via analyzers

EPSS: Низкий
github логотип

GHSA-2cvj-3458-7wc9

7 месяцев назад

In createIntentsList of PackageParser.java , there is a possible way to bypass lazy bundle hardening, allowing modified data to be passed to the next process due to unsafe deserialization. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.

CVSS3: 7.8
EPSS: Низкий
github логотип

GHSA-2cvh-5946-f6w5

больше 1 года назад

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check pipe offset before setting vblank pipe_ctx has a size of MAX_PIPES so checking its index before accessing the array. This fixes an OVERRUN issue reported by Coverity.

CVSS3: 7.8
EPSS: Низкий
github логотип

GHSA-2cvh-3hhx-675v

около 1 года назад

A Denial of Service (DoS) issue has been discovered in GitLab CE/EE affecting all versions starting from 7.14.1 prior to 17.3.7, 17.4 prior to 17.4.4, and 17.5 prior to 17.5.2. A denial of service could occur upon importing maliciously crafted content using the Fogbugz importer.

CVSS3: 6.5
EPSS: Низкий
github логотип

GHSA-2cvg-w29m-j8xc

около 2 лет назад

Arbitrary Code Execution in Processwire

CVSS3: 7.2
EPSS: Низкий
github логотип

GHSA-2cvg-48j2-qcc9

почти 4 года назад

Vulnerability in the Oracle Demantra Demand Management component of Oracle Supply Chain Products Suite (subcomponent: Product Security). The supported version that is affected is 7.3.1.5.2. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise Oracle Demantra Demand Management. Successful attacks of this vulnerability can result in unauthorized read access to a subset of Oracle Demantra Demand Management accessible data. CVSS 3.0 Base Score 5.3 (Confidentiality impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N).

EPSS: Низкий
github логотип

GHSA-2cvf-r9jm-4qm9

почти 4 года назад

Ceilometer Prints Sensitive Configuration Data to Log

CVSS3: 4
EPSS: Низкий
github логотип

GHSA-2cvf-r7fr-6p6p

почти 3 года назад

In Tenda AC15 V15.03.05.19, the function "sub_ED14" contains a stack-based buffer overflow vulnerability.

CVSS3: 9.8
EPSS: Низкий
github логотип

GHSA-2cvf-73cf-jrw5

6 месяцев назад

In the Linux kernel, the following vulnerability has been resolved: posix-timers: Ensure timer ID search-loop limit is valid posix_timer_add() tries to allocate a posix timer ID by starting from the cached ID which was stored by the last successful allocation. This is done in a loop searching the ID space for a free slot one by one. The loop has to terminate when the search wrapped around to the starting point. But that's racy vs. establishing the starting point. That is read out lockless, which leads to the following problem: CPU0 CPU1 posix_timer_add() start = sig->posix_timer_id; lock(hash_lock); ... posix_timer_add() if (++sig->posix_timer_id < 0) start = sig->posix_timer_id; sig->posix_timer_id = 0; So CPU1 can observe a negative start value, i.e. -1, and the loop break never happens because the condition can never be true: if (sig->posix_timer_id == start) break; While this is unlikely to ever turn into...

EPSS: Низкий
github логотип

GHSA-2cvc-xjmv-g6cj

15 дней назад

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7925: Fix possible oob access in mt7925_mac_write_txwi_80211() Check frame length before accessing the mgmt fields in mt7925_mac_write_txwi_80211 in order to avoid a possible oob access.

EPSS: Низкий
github логотип

GHSA-2cvc-xf33-4m7f

почти 4 года назад

An issue was discovered in B&R Industrial Automation APROL before R4.2 V7.08. Some web scripts in the web interface allowed injection and execution of arbitrary unintended commands on the web server, a different vulnerability than CVE-2019-16364.

EPSS: Низкий
github логотип

GHSA-2cvc-v88v-w533

почти 4 года назад

An issue was discovered in swftools through 20200710. A heap-buffer-overflow exists in the function OpAdvance() located in swfaction.c. It allows an attacker to cause code Execution.

EPSS: Низкий

Уязвимостей на страницу

Уязвимость
CVSS
EPSS
Опубликовано
github логотип
GHSA-2cvq-m957-r86c

The ping tool in multiple D-Link and TRENDnet devices allow remote attackers to execute arbitrary code via the ping_addr parameter to ping.ccp.

CVSS3: 9.8
81%
Высокий
почти 4 года назад
github логотип
GHSA-2cvq-f2jf-9wfh

Multiple Auth. (author+) Stored Cross-Site Scripting (XSS) vulnerabilities in WP Page Builder plugin <= 1.2.6 on WordPress.

CVSS3: 5.4
0%
Низкий
больше 3 лет назад
github логотип
GHSA-2cvq-4843-f5r7

Vanilla 2.0.16 allows remote attackers to obtain sensitive information via a direct request to a .php file, which reveals the installation path in an error message, as demonstrated by plugins/Minify/min/utils.php and certain other files.

0%
Низкий
почти 4 года назад
github логотип
GHSA-2cvp-xh9w-m6q5

RESI Gemini-Net Web 4.2 is affected by Improper Access Control in authorization logic. An unauthenticated user is able to access some critical resources.

CVSS3: 5.3
2%
Низкий
почти 4 года назад
github логотип
GHSA-2cvp-w34w-wfp5

In Brocade SANnav before Brocade SANnav 2.2.0, multiple endpoints associated with Zone management are susceptible to SQL injection, allowing an attacker to run arbitrary SQL commands.

CVSS3: 9.8
1%
Низкий
почти 4 года назад
github логотип
GHSA-2cvp-cxm8-hg6v

In the Linux kernel, the following vulnerability has been resolved: net: fec: handle page_pool_dev_alloc_pages error The fec_enet_update_cbd function calls page_pool_dev_alloc_pages but did not handle the case when it returned NULL. There was a WARN_ON(!new_page) but it would still proceed to use the NULL pointer and then crash. This case does seem somewhat rare but when the system is under memory pressure it can happen. One case where I can duplicate this with some frequency is when writing over a smbd share to a SATA HDD attached to an imx6q. Setting /proc/sys/vm/min_free_kbytes to higher values also seems to solve the problem for my test case. But it still seems wrong that the fec driver ignores the memory allocation error and can crash. This commit handles the allocation error by dropping the current packet.

CVSS3: 5.5
0%
Низкий
около 1 года назад
github логотип
GHSA-2cvp-672x-8283

Auth. (admin+) Stored Cross-Site Scripting (XSS) vulnerability in Magneticlab Sàrl Homepage Pop-up plugin <= 1.2.5 versions.

CVSS3: 4.8
0%
Низкий
почти 3 года назад
github логотип
GHSA-2cvm-gqf6-2jwg

Invision Power Board (IPB) 2.1.7 and earlier allows remote restricted administrators to inject arbitrary web script or HTML, or execute arbitrary SQL commands, via a forum description that contains a crafted image with PHP code, which is executed when the user visits the "Manage Forums" link in the Admin control panel.

0%
Низкий
почти 4 года назад
github логотип
GHSA-2cvj-g5r5-jrrg

SurrealDB has local file read of 2-column TSV files via analyzers

12 месяцев назад
github логотип
GHSA-2cvj-3458-7wc9

In createIntentsList of PackageParser.java , there is a possible way to bypass lazy bundle hardening, allowing modified data to be passed to the next process due to unsafe deserialization. This could lead to local escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.

CVSS3: 7.8
0%
Низкий
7 месяцев назад
github логотип
GHSA-2cvh-5946-f6w5

In the Linux kernel, the following vulnerability has been resolved: drm/amd/display: Check pipe offset before setting vblank pipe_ctx has a size of MAX_PIPES so checking its index before accessing the array. This fixes an OVERRUN issue reported by Coverity.

CVSS3: 7.8
0%
Низкий
больше 1 года назад
github логотип
GHSA-2cvh-3hhx-675v

A Denial of Service (DoS) issue has been discovered in GitLab CE/EE affecting all versions starting from 7.14.1 prior to 17.3.7, 17.4 prior to 17.4.4, and 17.5 prior to 17.5.2. A denial of service could occur upon importing maliciously crafted content using the Fogbugz importer.

CVSS3: 6.5
0%
Низкий
около 1 года назад
github логотип
GHSA-2cvg-w29m-j8xc

Arbitrary Code Execution in Processwire

CVSS3: 7.2
0%
Низкий
около 2 лет назад
github логотип
GHSA-2cvg-48j2-qcc9

Vulnerability in the Oracle Demantra Demand Management component of Oracle Supply Chain Products Suite (subcomponent: Product Security). The supported version that is affected is 7.3.1.5.2. Easily exploitable vulnerability allows unauthenticated attacker with network access via HTTP to compromise Oracle Demantra Demand Management. Successful attacks of this vulnerability can result in unauthorized read access to a subset of Oracle Demantra Demand Management accessible data. CVSS 3.0 Base Score 5.3 (Confidentiality impacts). CVSS Vector: (CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N).

1%
Низкий
почти 4 года назад
github логотип
GHSA-2cvf-r9jm-4qm9

Ceilometer Prints Sensitive Configuration Data to Log

CVSS3: 4
0%
Низкий
почти 4 года назад
github логотип
GHSA-2cvf-r7fr-6p6p

In Tenda AC15 V15.03.05.19, the function "sub_ED14" contains a stack-based buffer overflow vulnerability.

CVSS3: 9.8
0%
Низкий
почти 3 года назад
github логотип
GHSA-2cvf-73cf-jrw5

In the Linux kernel, the following vulnerability has been resolved: posix-timers: Ensure timer ID search-loop limit is valid posix_timer_add() tries to allocate a posix timer ID by starting from the cached ID which was stored by the last successful allocation. This is done in a loop searching the ID space for a free slot one by one. The loop has to terminate when the search wrapped around to the starting point. But that's racy vs. establishing the starting point. That is read out lockless, which leads to the following problem: CPU0 CPU1 posix_timer_add() start = sig->posix_timer_id; lock(hash_lock); ... posix_timer_add() if (++sig->posix_timer_id < 0) start = sig->posix_timer_id; sig->posix_timer_id = 0; So CPU1 can observe a negative start value, i.e. -1, and the loop break never happens because the condition can never be true: if (sig->posix_timer_id == start) break; While this is unlikely to ever turn into...

0%
Низкий
6 месяцев назад
github логотип
GHSA-2cvc-xjmv-g6cj

In the Linux kernel, the following vulnerability has been resolved: wifi: mt76: mt7925: Fix possible oob access in mt7925_mac_write_txwi_80211() Check frame length before accessing the mgmt fields in mt7925_mac_write_txwi_80211 in order to avoid a possible oob access.

0%
Низкий
15 дней назад
github логотип
GHSA-2cvc-xf33-4m7f

An issue was discovered in B&R Industrial Automation APROL before R4.2 V7.08. Some web scripts in the web interface allowed injection and execution of arbitrary unintended commands on the web server, a different vulnerability than CVE-2019-16364.

1%
Низкий
почти 4 года назад
github логотип
GHSA-2cvc-v88v-w533

An issue was discovered in swftools through 20200710. A heap-buffer-overflow exists in the function OpAdvance() located in swfaction.c. It allows an attacker to cause code Execution.

0%
Низкий
почти 4 года назад

Уязвимостей на страницу