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

exploitDog

source:"github"

Количество 306 231

Количество 306 231

github логотип

GHSA-23xh-3w4x-5qh2

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

Cross-Site Request Forgery (CSRF) vulnerability in QuantumCloud AI ChatBot plugin <= 4.7.8 versions.

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

GHSA-23xg-w5j8-3ff2

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

An issue was discovered in the stashcat app through 3.9.1 for macOS, Windows, Android, iOS, and possibly other platforms. The GET method is used with client_key and device_id data in the query string, which allows attackers to obtain sensitive information by reading web-server logs.

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

GHSA-23xg-g252-mcgr

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

SQL injection vulnerability in the Downloads module for PHP-Nuke 8.0 8.1.0.3.5b and earlier allows remote authenticated users to execute arbitrary SQL commands via the url parameter in the Add operation to modules.php.

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

GHSA-23xf-wg9r-49fr

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

The Atlassian Questions For Confluence app for Confluence Server and Data Center creates a Confluence user account in the confluence-users group with the username disabledsystemuser and a hardcoded password. A remote, unauthenticated attacker with knowledge of the hardcoded password could exploit this to log into Confluence and access all content accessible to users in the confluence-users group. This user account is created when installing versions 2.7.34, 2.7.35, and 3.0.2 of the app.

CVSS3: 9.8
EPSS: Критический
github логотип

GHSA-23xf-gc3r-v6rr

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

A security defect was identified in Foundry Comments that enabled a user to discover the contents of an attachment submitted to another comment if they knew the internal UUID of the target attachment. This defect was resolved with the release of Foundry Comments 2.267.0.

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

GHSA-23xf-5535-62v5

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

jeecg-boot vulnerable to SQL injection

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

GHSA-23xc-wwgh-93wr

2 месяца назад

A security flaw has been discovered in Rebuild up to 4.1.3. Affected by this issue is some unknown functionality of the component Comment/Guestbook. Performing manipulation results in cross site scripting. It is possible to initiate the attack remotely. Upgrading to version 4.1.4 can resolve this issue. It is suggested to upgrade the affected component. According to the researcher the vendor has confirmed the flaw and fix in a private issue response.

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

GHSA-23x9-mmjc-x474

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

Integer overflow in GD Graphics Library libgd 2.0.28 (libgd2), and possibly other versions, allows remote attackers to cause a denial of service and possibly execute arbitrary code via PNG image files with large image rows values that lead to a heap-based buffer overflow in the gdImageCreateFromPngCtx function, a different set of vulnerabilities than CVE-2004-0941.

EPSS: Средний
github логотип

GHSA-23x9-8hxr-978c

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

OpenStack Identity (Keystone) Trustee token revocations does not work with memcache backend

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

GHSA-23x9-2qmf-qr95

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

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in ExtendThemes Kubio AI Page Builder.This issue affects Kubio AI Page Builder: from n/a through 2.2.4.

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

GHSA-23x8-q6vj-xc33

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

An issue was discovered in Bilboplanet 2.0. Stored XSS exists in the fullname parameter to signup.php.

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

GHSA-23x8-m9wv-h49m

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

Certain NETGEAR devices are affected by disclosure of sensitive information. This affects D7800 before 1.0.1.58, R7800 before 1.0.2.74, R8900 before 1.0.5.18, R9000 before 1.0.5.18, and XR700 before 1.0.1.34.

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

GHSA-23x8-j7hm-5xwf

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

Improper Neutralization of Input During Web Page Generation in Apache Axis2

EPSS: Средний
github логотип

GHSA-23x8-g5mh-phmc

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

In the Linux kernel, the following vulnerability has been resolved: HID: i2c-hid: remove I2C_HID_READ_PENDING flag to prevent lock-up The flag I2C_HID_READ_PENDING is used to serialize I2C operations. However, this is not necessary, because I2C core already has its own locking for that. More importantly, this flag can cause a lock-up: if the flag is set in i2c_hid_xfer() and an interrupt happens, the interrupt handler (i2c_hid_irq) will check this flag and return immediately without doing anything, then the interrupt handler will be invoked again in an infinite loop. Since interrupt handler is an RT task, it takes over the CPU and the flag-clearing task never gets scheduled, thus we have a lock-up. Delete this unnecessary flag.

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

GHSA-23x7-wjwv-f9j6

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

Microsoft SQL Server 7, 2000, and MSDE allows local users to execute arbitrary code via a certain request to the Local Procedure Calls (LPC) port that leads to a buffer overflow.

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

GHSA-23x7-8p2h-rhcr

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

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in deTheme DethemeKit For Elementor allows Stored XSS.This issue affects DethemeKit For Elementor: from n/a through 2.1.2.

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

GHSA-23x6-w5q4-2mqw

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

In the Linux kernel, the following vulnerability has been resolved: net: defer final 'struct net' free in netns dismantle Ilya reported a slab-use-after-free in dst_destroy [1] Issue is in xfrm6_net_init() and xfrm4_net_init() : They copy xfrm[46]_dst_ops_template into net->xfrm.xfrm[46]_dst_ops. But net structure might be freed before all the dst callbacks are called. So when dst_destroy() calls later : if (dst->ops->destroy) dst->ops->destroy(dst); dst->ops points to the old net->xfrm.xfrm[46]_dst_ops, which has been freed. See a relevant issue fixed in : ac888d58869b ("net: do not delay dst_entries_add() in dst_release()") A fix is to queue the 'struct net' to be freed after one another cleanup_net() round (and existing rcu_barrier()) [1] BUG: KASAN: slab-use-after-free in dst_destroy (net/core/dst.c:112) Read of size 8 at addr ffff8882137ccab0 by task swapper/37/0 Dec 03 05:46:18 kernel: CPU: 37 UID: 0 PID: 0 Comm: swapper/37 Kdump: loaded Not tainted 6.12.0 #67 ...

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

GHSA-23x6-43x8-rcvc

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

A vulnerability classified as critical was found in TOTOLINK EX1800T 9.1.0cu.2112_B20220316. This vulnerability affects the function setRebootScheCfg of the file /cgi-bin/cstecgi.cgi. The manipulation of the argument mode/week/minute/recHour leads to os command injection. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used.

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

GHSA-23x5-qv54-6pcg

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

An arbitrary file upload vulnerability in /dede/file_manage_control.php of DedeCMS v5.7.109 allows attackers to execute arbitrary code via uploading a crafted PHP file.

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

GHSA-23x5-phcc-jfq4

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

A vulnerability was found in SourceCodester Student Result Management System 1.0. It has been declared as problematic. Affected by this vulnerability is an unknown functionality of the file /script/academic/grading-system of the component Grading System Page. The manipulation of the argument Remark leads to cross site scripting. The attack can be launched remotely. The exploit has been disclosed to the public and may be used.

CVSS3: 2.4
EPSS: Низкий

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

Уязвимость
CVSS
EPSS
Опубликовано
github логотип
GHSA-23xh-3w4x-5qh2

Cross-Site Request Forgery (CSRF) vulnerability in QuantumCloud AI ChatBot plugin <= 4.7.8 versions.

CVSS3: 4.3
0%
Низкий
около 2 лет назад
github логотип
GHSA-23xg-w5j8-3ff2

An issue was discovered in the stashcat app through 3.9.1 for macOS, Windows, Android, iOS, and possibly other platforms. The GET method is used with client_key and device_id data in the query string, which allows attackers to obtain sensitive information by reading web-server logs.

0%
Низкий
больше 3 лет назад
github логотип
GHSA-23xg-g252-mcgr

SQL injection vulnerability in the Downloads module for PHP-Nuke 8.0 8.1.0.3.5b and earlier allows remote authenticated users to execute arbitrary SQL commands via the url parameter in the Add operation to modules.php.

0%
Низкий
больше 3 лет назад
github логотип
GHSA-23xf-wg9r-49fr

The Atlassian Questions For Confluence app for Confluence Server and Data Center creates a Confluence user account in the confluence-users group with the username disabledsystemuser and a hardcoded password. A remote, unauthenticated attacker with knowledge of the hardcoded password could exploit this to log into Confluence and access all content accessible to users in the confluence-users group. This user account is created when installing versions 2.7.34, 2.7.35, and 3.0.2 of the app.

CVSS3: 9.8
94%
Критический
больше 3 лет назад
github логотип
GHSA-23xf-gc3r-v6rr

A security defect was identified in Foundry Comments that enabled a user to discover the contents of an attachment submitted to another comment if they knew the internal UUID of the target attachment. This defect was resolved with the release of Foundry Comments 2.267.0.

CVSS3: 5.3
0%
Низкий
больше 2 лет назад
github логотип
GHSA-23xf-5535-62v5

jeecg-boot vulnerable to SQL injection

CVSS3: 9.8
0%
Низкий
больше 2 лет назад
github логотип
GHSA-23xc-wwgh-93wr

A security flaw has been discovered in Rebuild up to 4.1.3. Affected by this issue is some unknown functionality of the component Comment/Guestbook. Performing manipulation results in cross site scripting. It is possible to initiate the attack remotely. Upgrading to version 4.1.4 can resolve this issue. It is suggested to upgrade the affected component. According to the researcher the vendor has confirmed the flaw and fix in a private issue response.

CVSS3: 3.5
0%
Низкий
2 месяца назад
github логотип
GHSA-23x9-mmjc-x474

Integer overflow in GD Graphics Library libgd 2.0.28 (libgd2), and possibly other versions, allows remote attackers to cause a denial of service and possibly execute arbitrary code via PNG image files with large image rows values that lead to a heap-based buffer overflow in the gdImageCreateFromPngCtx function, a different set of vulnerabilities than CVE-2004-0941.

33%
Средний
больше 3 лет назад
github логотип
GHSA-23x9-8hxr-978c

OpenStack Identity (Keystone) Trustee token revocations does not work with memcache backend

CVSS3: 6.5
0%
Низкий
больше 3 лет назад
github логотип
GHSA-23x9-2qmf-qr95

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in ExtendThemes Kubio AI Page Builder.This issue affects Kubio AI Page Builder: from n/a through 2.2.4.

CVSS3: 6.5
0%
Низкий
больше 1 года назад
github логотип
GHSA-23x8-q6vj-xc33

An issue was discovered in Bilboplanet 2.0. Stored XSS exists in the fullname parameter to signup.php.

CVSS3: 6.1
0%
Низкий
больше 3 лет назад
github логотип
GHSA-23x8-m9wv-h49m

Certain NETGEAR devices are affected by disclosure of sensitive information. This affects D7800 before 1.0.1.58, R7800 before 1.0.2.74, R8900 before 1.0.5.18, R9000 before 1.0.5.18, and XR700 before 1.0.1.34.

0%
Низкий
больше 3 лет назад
github логотип
GHSA-23x8-j7hm-5xwf

Improper Neutralization of Input During Web Page Generation in Apache Axis2

22%
Средний
больше 3 лет назад
github логотип
GHSA-23x8-g5mh-phmc

In the Linux kernel, the following vulnerability has been resolved: HID: i2c-hid: remove I2C_HID_READ_PENDING flag to prevent lock-up The flag I2C_HID_READ_PENDING is used to serialize I2C operations. However, this is not necessary, because I2C core already has its own locking for that. More importantly, this flag can cause a lock-up: if the flag is set in i2c_hid_xfer() and an interrupt happens, the interrupt handler (i2c_hid_irq) will check this flag and return immediately without doing anything, then the interrupt handler will be invoked again in an infinite loop. Since interrupt handler is an RT task, it takes over the CPU and the flag-clearing task never gets scheduled, thus we have a lock-up. Delete this unnecessary flag.

CVSS3: 5.5
0%
Низкий
больше 1 года назад
github логотип
GHSA-23x7-wjwv-f9j6

Microsoft SQL Server 7, 2000, and MSDE allows local users to execute arbitrary code via a certain request to the Local Procedure Calls (LPC) port that leads to a buffer overflow.

6%
Низкий
больше 3 лет назад
github логотип
GHSA-23x7-8p2h-rhcr

Improper Neutralization of Input During Web Page Generation (XSS or 'Cross-site Scripting') vulnerability in deTheme DethemeKit For Elementor allows Stored XSS.This issue affects DethemeKit For Elementor: from n/a through 2.1.2.

CVSS3: 6.5
0%
Низкий
больше 1 года назад
github логотип
GHSA-23x6-w5q4-2mqw

In the Linux kernel, the following vulnerability has been resolved: net: defer final 'struct net' free in netns dismantle Ilya reported a slab-use-after-free in dst_destroy [1] Issue is in xfrm6_net_init() and xfrm4_net_init() : They copy xfrm[46]_dst_ops_template into net->xfrm.xfrm[46]_dst_ops. But net structure might be freed before all the dst callbacks are called. So when dst_destroy() calls later : if (dst->ops->destroy) dst->ops->destroy(dst); dst->ops points to the old net->xfrm.xfrm[46]_dst_ops, which has been freed. See a relevant issue fixed in : ac888d58869b ("net: do not delay dst_entries_add() in dst_release()") A fix is to queue the 'struct net' to be freed after one another cleanup_net() round (and existing rcu_barrier()) [1] BUG: KASAN: slab-use-after-free in dst_destroy (net/core/dst.c:112) Read of size 8 at addr ffff8882137ccab0 by task swapper/37/0 Dec 03 05:46:18 kernel: CPU: 37 UID: 0 PID: 0 Comm: swapper/37 Kdump: loaded Not tainted 6.12.0 #67 ...

CVSS3: 7.8
0%
Низкий
12 месяцев назад
github логотип
GHSA-23x6-43x8-rcvc

A vulnerability classified as critical was found in TOTOLINK EX1800T 9.1.0cu.2112_B20220316. This vulnerability affects the function setRebootScheCfg of the file /cgi-bin/cstecgi.cgi. The manipulation of the argument mode/week/minute/recHour leads to os command injection. The attack can be initiated remotely. The exploit has been disclosed to the public and may be used.

CVSS3: 6.3
3%
Низкий
10 месяцев назад
github логотип
GHSA-23x5-qv54-6pcg

An arbitrary file upload vulnerability in /dede/file_manage_control.php of DedeCMS v5.7.109 allows attackers to execute arbitrary code via uploading a crafted PHP file.

CVSS3: 9.8
1%
Низкий
больше 2 лет назад
github логотип
GHSA-23x5-phcc-jfq4

A vulnerability was found in SourceCodester Student Result Management System 1.0. It has been declared as problematic. Affected by this vulnerability is an unknown functionality of the file /script/academic/grading-system of the component Grading System Page. The manipulation of the argument Remark leads to cross site scripting. The attack can be launched remotely. The exploit has been disclosed to the public and may be used.

CVSS3: 2.4
0%
Низкий
7 месяцев назад

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