๐จ CVE-2026-10117
A weakness has been identified in Open5GS up to 2.7.7. This issue affects the function ogs_pool_id_calloc in the library /lib/sbi/nghttp2-server.c. Executing a manipulation can lead to denial of service. The attack may be launched remotely. The exploit has been made available to the public and could be used for attacks. It is best practice to apply a patch to resolve this issue.
๐@cveNotify
A weakness has been identified in Open5GS up to 2.7.7. This issue affects the function ogs_pool_id_calloc in the library /lib/sbi/nghttp2-server.c. Executing a manipulation can lead to denial of service. The attack may be launched remotely. The exploit has been made available to the public and could be used for attacks. It is best practice to apply a patch to resolve this issue.
๐@cveNotify
GitHub
GitHub - open5gs/open5gs: Open5GS is a C-language Open Source implementation for 5G Core and EPC, i.e. the core network of LTE/NRโฆ
Open5GS is a C-language Open Source implementation for 5G Core and EPC, i.e. the core network of LTE/NR network (Release-19) - open5gs/open5gs
๐จ CVE-2026-46242
In the Linux kernel, the following vulnerability has been resolved:
eventpoll: fix ep_remove struct eventpoll / struct file UAF
ep_remove() (via ep_remove_file()) cleared file->f_ep under
file->f_lock but then kept using @file inside the critical section
(is_file_epoll(), hlist_del_rcu() through the head, spin_unlock).
A concurrent __fput() taking the eventpoll_release() fastpath in
that window observed the transient NULL, skipped
eventpoll_release_file() and ran to f_op->release / file_free().
For the epoll-watches-epoll case, f_op->release is
ep_eventpoll_release() -> ep_clear_and_put() -> ep_free(), which
kfree()s the watched struct eventpoll. Its embedded ->refs
hlist_head is exactly where epi->fllink.pprev points, so the
subsequent hlist_del_rcu()'s "*pprev = next" scribbles into freed
kmalloc-192 memory.
In addition, struct file is SLAB_TYPESAFE_BY_RCU, so the slot
backing @file could be recycled by alloc_empty_file() --
reinitializing f_lock and f_ep -- while ep_remove() is still
nominally inside that lock. The upshot is an attacker-controllable
kmem_cache_free() against the wrong slab cache.
Pin @file via epi_fget() at the top of ep_remove() and gate the
critical section on the pin succeeding. With the pin held @file
cannot reach refcount zero, which holds __fput() off and
transitively keeps the watched struct eventpoll alive across the
hlist_del_rcu() and the f_lock use, closing both UAFs.
If the pin fails @file has already reached refcount zero and its
__fput() is in flight. Because we bailed before clearing f_ep,
that path takes the eventpoll_release() slow path into
eventpoll_release_file() and blocks on ep->mtx until the waiter
side's ep_clear_and_put() drops it. The bailed epi's share of
ep->refcount stays intact, so the trailing ep_refcount_dec_and_test()
in ep_clear_and_put() cannot free the eventpoll out from under
eventpoll_release_file(); the orphaned epi is then cleaned up
there.
A successful pin also proves we are not racing
eventpoll_release_file() on this epi, so drop the now-redundant
re-check of epi->dying under f_lock. The cheap lockless
READ_ONCE(epi->dying) fast-path bailout stays.
๐@cveNotify
In the Linux kernel, the following vulnerability has been resolved:
eventpoll: fix ep_remove struct eventpoll / struct file UAF
ep_remove() (via ep_remove_file()) cleared file->f_ep under
file->f_lock but then kept using @file inside the critical section
(is_file_epoll(), hlist_del_rcu() through the head, spin_unlock).
A concurrent __fput() taking the eventpoll_release() fastpath in
that window observed the transient NULL, skipped
eventpoll_release_file() and ran to f_op->release / file_free().
For the epoll-watches-epoll case, f_op->release is
ep_eventpoll_release() -> ep_clear_and_put() -> ep_free(), which
kfree()s the watched struct eventpoll. Its embedded ->refs
hlist_head is exactly where epi->fllink.pprev points, so the
subsequent hlist_del_rcu()'s "*pprev = next" scribbles into freed
kmalloc-192 memory.
In addition, struct file is SLAB_TYPESAFE_BY_RCU, so the slot
backing @file could be recycled by alloc_empty_file() --
reinitializing f_lock and f_ep -- while ep_remove() is still
nominally inside that lock. The upshot is an attacker-controllable
kmem_cache_free() against the wrong slab cache.
Pin @file via epi_fget() at the top of ep_remove() and gate the
critical section on the pin succeeding. With the pin held @file
cannot reach refcount zero, which holds __fput() off and
transitively keeps the watched struct eventpoll alive across the
hlist_del_rcu() and the f_lock use, closing both UAFs.
If the pin fails @file has already reached refcount zero and its
__fput() is in flight. Because we bailed before clearing f_ep,
that path takes the eventpoll_release() slow path into
eventpoll_release_file() and blocks on ep->mtx until the waiter
side's ep_clear_and_put() drops it. The bailed epi's share of
ep->refcount stays intact, so the trailing ep_refcount_dec_and_test()
in ep_clear_and_put() cannot free the eventpoll out from under
eventpoll_release_file(); the orphaned epi is then cleaned up
there.
A successful pin also proves we are not racing
eventpoll_release_file() on this epi, so drop the now-redundant
re-check of epi->dying under f_lock. The cheap lockless
READ_ONCE(epi->dying) fast-path bailout stays.
๐@cveNotify
๐จ CVE-2026-10119
A security vulnerability has been detected in TRENDnet TEW-432BRP 3.10B20. Impacted is the function formSetMACFilter of the file /goform/formSetMACFilter. The manipulation of the argument filter_name leads to stack-based buffer overflow. Remote exploitation of the attack is possible. The exploit has been disclosed publicly and may be used. The vendor explains: "This product has been EOL for 15 years (since 2009). As the item has been EOL for such a long time, we are not able to replicate or fix any vulnerabilities." This vulnerability only affects products that are no longer supported by the maintainer.
๐@cveNotify
A security vulnerability has been detected in TRENDnet TEW-432BRP 3.10B20. Impacted is the function formSetMACFilter of the file /goform/formSetMACFilter. The manipulation of the argument filter_name leads to stack-based buffer overflow. Remote exploitation of the attack is possible. The exploit has been disclosed publicly and may be used. The vendor explains: "This product has been EOL for 15 years (since 2009). As the item has been EOL for such a long time, we are not able to replicate or fix any vulnerabilities." This vulnerability only affects products that are no longer supported by the maintainer.
๐@cveNotify
GitHub
my_vuln/TRENDnet/vuln_6/6.md at main ยท wudipjq/my_vuln
Contribute to wudipjq/my_vuln development by creating an account on GitHub.
๐จ CVE-2026-10120
A vulnerability was detected in TRENDnet TEW-432BRP 3.10B20. The affected element is the function formSetFirewallRule of the file /goform/formSetFirewallRule. The manipulation of the argument firewall_name results in stack-based buffer overflow. The attack can be executed remotely. The exploit is now public and may be used. The vendor explains: "This product has been EOL for 15 years (since 2009). As the item has been EOL for such a long time, we are not able to replicate or fix any vulnerabilities." This vulnerability only affects products that are no longer supported by the maintainer.
๐@cveNotify
A vulnerability was detected in TRENDnet TEW-432BRP 3.10B20. The affected element is the function formSetFirewallRule of the file /goform/formSetFirewallRule. The manipulation of the argument firewall_name results in stack-based buffer overflow. The attack can be executed remotely. The exploit is now public and may be used. The vendor explains: "This product has been EOL for 15 years (since 2009). As the item has been EOL for such a long time, we are not able to replicate or fix any vulnerabilities." This vulnerability only affects products that are no longer supported by the maintainer.
๐@cveNotify
GitHub
my_vuln/TRENDnet/vuln_7/7.md at main ยท wudipjq/my_vuln
Contribute to wudipjq/my_vuln development by creating an account on GitHub.
๐จ CVE-2018-25405
eNdonesia Portal 8.7 contains multiple SQL injection vulnerabilities that allow unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through parameters in mod.php. Attackers can inject SQL through the artid, cid, did, contid, and aboutid parameters to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
eNdonesia Portal 8.7 contains multiple SQL injection vulnerabilities that allow unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through parameters in mod.php. Attackers can inject SQL through the artid, cid, did, contid, and aboutid parameters to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
www.endonesia.org
endonesia.org - endonesia Resources and Information.
endonesia.org is your first and best source for information about endonesia. Here you will also find topics relating to issues of general interest. We hope you find what you are looking for!
๐จ CVE-2018-25406
eNdonesia Portal 8.7 contains multiple SQL injection vulnerabilities that allow unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through parameters in mod.php. Attackers can inject SQL through the artid, cid, did, contid, and aboutid parameters across publisher, diskusi, galeri, content, and about modules to extract database credentials, usernames, and version information.
๐@cveNotify
eNdonesia Portal 8.7 contains multiple SQL injection vulnerabilities that allow unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through parameters in mod.php. Attackers can inject SQL through the artid, cid, did, contid, and aboutid parameters across publisher, diskusi, galeri, content, and about modules to extract database credentials, usernames, and version information.
๐@cveNotify
www.endonesia.org
endonesia.org - endonesia Resources and Information.
endonesia.org is your first and best source for information about endonesia. Here you will also find topics relating to issues of general interest. We hope you find what you are looking for!
๐จ CVE-2018-25409
SIM-PKH 2.4.1 contains an arbitrary file upload vulnerability that allows authenticated attackers to upload malicious files by submitting PHP code through the fupload parameter. Attackers can upload PHP files via the aksi_pengurus.php endpoint with module=pengurus and act=update parameters, which are stored in the foto directory and executed as web scripts.
๐@cveNotify
SIM-PKH 2.4.1 contains an arbitrary file upload vulnerability that allows authenticated attackers to upload malicious files by submitting PHP code through the fupload parameter. Attackers can upload PHP files via the aksi_pengurus.php endpoint with module=pengurus and act=update parameters, which are stored in the foto directory and executed as web scripts.
๐@cveNotify
SourceForge
SIM-PKH
Download SIM-PKH for free. Aplikasi untuk mengelola data peserta PKH. Untuk saat ini project SIM-PKH dihentikan, sudah digantikan oleh HaPe-PKH (Harian Pendamping PKH). Info lebih lanjut kunjungi http://www.sitejo.id dan untuk petunjuk instalasi kunjungiโฆ
๐จ CVE-2018-25410
SIM-PKH 2.4.1 contains an SQL injection vulnerability that allows authenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'id' parameter. Attackers can send GET requests to /admin/media.php with module=pengurus and act=editpengurus parameters containing SQL UNION statements to extract database information including usernames, database names, and version details.
๐@cveNotify
SIM-PKH 2.4.1 contains an SQL injection vulnerability that allows authenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'id' parameter. Attackers can send GET requests to /admin/media.php with module=pengurus and act=editpengurus parameters containing SQL UNION statements to extract database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
SIM-PKH
Download SIM-PKH for free. Aplikasi untuk mengelola data peserta PKH. Untuk saat ini project SIM-PKH dihentikan, sudah digantikan oleh HaPe-PKH (Harian Pendamping PKH). Info lebih lanjut kunjungi http://www.sitejo.id dan untuk petunjuk instalasi kunjungiโฆ
๐จ CVE-2018-25411
MGB OpenSource Guestbook 0.7.0.2 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'id' parameter. Attackers can send GET requests to email.php with crafted SQL payloads in the 'id' parameter to extract sensitive database information including table and column names.
๐@cveNotify
MGB OpenSource Guestbook 0.7.0.2 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'id' parameter. Attackers can send GET requests to email.php with crafted SQL payloads in the 'id' parameter to extract sensitive database information including table and column names.
๐@cveNotify
www.m-gb.org
MGB - Startseite - The OpenSource PHP, JavaScript & MySQL Guestbook
An open source guestbook written in PHP and JavaScript. Uses a MySQL database to store data. Maybe the best free guestbook on the internet.
๐จ CVE-2018-25412
Delta Sql 1.8.2 contains an arbitrary file upload vulnerability that allows unauthenticated attackers to upload malicious files by sending POST requests to docs_upload.php with crafted multipart form data. Attackers can upload PHP files with arbitrary content to the upload directory and execute them on the server for remote code execution.
๐@cveNotify
Delta Sql 1.8.2 contains an arbitrary file upload vulnerability that allows unauthenticated attackers to upload malicious files by sending POST requests to docs_upload.php with crafted multipart form data. Attackers can upload PHP files with arbitrary content to the upload directory and execute them on the server for remote code execution.
๐@cveNotify
deltasql.sourceforge.net
deltasql - A software to synchronize Database Schemas
deltasql is a tool to synchronize database schemas. It has similarities to version controls used with normal source code.
๐จ CVE-2026-28369
A flaw was found in Undertow. When Undertow receives an HTTP request where the first header line starts with one or more spaces, it incorrectly processes the request by stripping these leading spaces. This behavior, which violates HTTP standards, can be exploited by a remote attacker to perform request smuggling. Request smuggling allows an attacker to bypass security mechanisms, access restricted information, or manipulate web caches, potentially leading to unauthorized actions or data exposure.
๐@cveNotify
A flaw was found in Undertow. When Undertow receives an HTTP request where the first header line starts with one or more spaces, it incorrectly processes the request by stripping these leading spaces. This behavior, which violates HTTP standards, can be exploited by a remote attacker to perform request smuggling. Request smuggling allows an attacker to bypass security mechanisms, access restricted information, or manipulate web caches, potentially leading to unauthorized actions or data exposure.
๐@cveNotify
๐จ CVE-2018-25408
The Open ISES Project 3.30A contains a path traversal vulnerability in the ajax/download.php endpoint that allows unauthenticated attackers to download arbitrary files by manipulating the filename parameter. Attackers can supply directory traversal sequences ../ in the filename parameter to access files outside the intended directory, including configuration files and system files.
๐@cveNotify
The Open ISES Project 3.30A contains a path traversal vulnerability in the ajax/download.php endpoint that allows unauthenticated attackers to download arbitrary files by manipulating the filename parameter. Attackers can supply directory traversal sequences ../ in the filename parameter to access files outside the intended directory, including configuration files and system files.
๐@cveNotify
openises.sourceforge.net
Tickets CAD - Free Open Source Computer Aided Dispatch
Free, open source Computer Aided Dispatch for volunteer fire departments, ARES/RACES, CERT teams, EMS, and campus security. 30+ years of real-world use.
๐จ CVE-2018-25413
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'q' parameter. Attackers can send GET requests to search.php with crafted SQL payloads to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'q' parameter. Attackers can send GET requests to search.php with crafted SQL payloads to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25414
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the actor parameter. Attackers can send GET requests to actor.php with crafted SQL payloads in the actor parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the actor parameter. Attackers can send GET requests to actor.php with crafted SQL payloads in the actor parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25415
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the director parameter. Attackers can send GET requests to director.php with crafted SQL payloads in the director parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the director parameter. Attackers can send GET requests to director.php with crafted SQL payloads in the director parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25416
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the country parameter. Attackers can send GET requests to country.php with crafted SQL payloads in the country parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the country parameter. Attackers can send GET requests to country.php with crafted SQL payloads in the country parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25417
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the quality parameter. Attackers can send GET requests to quality.php with crafted SQL payloads in the quality parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the quality parameter. Attackers can send GET requests to quality.php with crafted SQL payloads in the quality parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25418
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the year parameter. Attackers can send GET requests to year.php with crafted SQL payloads in the year parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the year parameter. Attackers can send GET requests to year.php with crafted SQL payloads in the year parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25419
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the genre parameter. Attackers can send GET requests to genre.php with crafted SQL payloads in the genre parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the genre parameter. Attackers can send GET requests to genre.php with crafted SQL payloads in the genre parameter to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25420
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'id' parameter. Attackers can send GET requests to watch.php with crafted SQL payloads to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
AiOPMSD Final 1.0.0 contains an SQL injection vulnerability that allows unauthenticated attackers to execute arbitrary SQL queries by injecting malicious code through the 'id' parameter. Attackers can send GET requests to watch.php with crafted SQL payloads to extract sensitive database information including usernames, database names, and version details.
๐@cveNotify
SourceForge
MOVIE STREAMING DOWNLOAD v1.0.0 FINAL
Download MOVIE STREAMING DOWNLOAD v1.0.0 FINAL for free. All in one pack Online Movie Streaming (AiOPMSD) is free MySQL Databas.
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
ALL IN ONE PACK ONLINE MOVIE STREAMING DOWNLOAD (AiOPMSD) v1.0.0 FINAL VERSION BUILD 4
yeah, this is FINAL version. pleaseโฆ
๐จ CVE-2018-25421
Open STA Manager 2.3 contains a path traversal vulnerability that allows authenticated users to download arbitrary files by manipulating the file parameter. Attackers can send GET requests to modules/backup/actions.php with op=getfile and traverse directories using ../ sequences to access sensitive system files.
๐@cveNotify
Open STA Manager 2.3 contains a path traversal vulnerability that allows authenticated users to download arbitrary files by manipulating the file parameter. Attackers can send GET requests to modules/backup/actions.php with op=getfile and traverse directories using ../ sequences to access sensitive system files.
๐@cveNotify