Lucene search
+L

14926 matches found

Code423n4
Code423n4
•added 2021/11/11 12:00 a.m.•13 views

Users Can Frontrun revoke() By Calling vest()

Handle leastwood Vulnerability details Impact The onlyOwner role typically calls revoke if a member leaves the BootFinance team, resulting in vested tokens being transferred to the multisig account. Each vesting account has a revocable state variable that is set to either true or false. As any us...

7AI score
SaveExploits0
CNNVD
CNNVD
•added 2021/11/10 12:00 a.m.•14 views

Puppet Server 安全漏洞

Puppet Server is a software from Puppet Labs in the U.S. for pushing configurations from the primary server to other servers. an information disclosure vulnerability exists in Puppet Agent and Puppet Server, which stems from a lack of restrictions and protections in the HTTP transport process,...

9.8CVSS5.5AI score0.01372EPSS
SaveExploits0References13
Code423n4
Code423n4
•added 2021/11/10 12:00 a.m.•12 views

ERC20 return values not checked

Handle cmichel Vulnerability details The ERC20.transfer and ERC20.transferFrom functions return a boolean value indicating success. This parameter should checked for success. Some functions perform ERC20 transfers without checking for the return value: BasicSale.processWithdrawal...

6.9AI score
SaveExploits0
Code423n4
Code423n4
•added 2021/11/10 12:00 a.m.•20 views

Unsafe token transfer

Handle WatchPug Vulnerability details Calling ERC20.transfer without handling the returned value is unsafe. function processWithdrawal uint era, uint day, address member private returns uint value uint memberUnits = mapEraDayMemberUnitseradaymember; // Get Member Units if memberUnits == 0 value =...

6.9AI score
SaveExploits0
Code423n4
Code423n4
•added 2021/11/10 12:00 a.m.•8 views

Use safeTransferFrom instead of transferFrom can improve safety and consistency

Handle WatchPug Vulnerability details vestingToken.transferFrommsg.sender, addressthis, amount; Recommendation Change to: vestingToken.safeTransferFrommsg.sender, addressthis, amount; --- The text was updated successfully, but these errors were encountered: All reactions...

7.1AI score
SaveExploits0
RedHat Linux
RedHat Linux
•added 2021/11/09 6:09 p.m.•13 views

bind: Broken inbound incremental zone update (IXFR) can cause named to terminate unexpectedly

Incremental zone transfers IXFR provide a way of transferring changed portions of a zone between servers. An IXFR stream containing SOA records with an owner name other than the transferred zone's apex may cause the receiving named server to inadvertently remove the SOA record for the zone in...

6.5CVSS7.2AI score0.05989EPSS
SaveExploits0References5
Prion
Prion
•added 2021/11/09 5:15 p.m.•27 views

Input validation

NLnet Labs Routinator versions 0.9.0 up to and including 0.10.1, support the gzip transfer encoding when querying RRDP repositories. This encoding can be used by an RRDP repository to cause an out-of-memory crash in these versions of Routinator. RRDP uses XML which allows arbitrary amounts of whi...

5CVSS7.6AI score0.01481EPSS
SaveExploits0References2Affected Software2
CVE
CVE
•added 2021/11/09 4:41 p.m.•95 views

CVE-2021-43174

CVE-2021-43174 affects NLnet Labs Routinator 0.9.0 up to and including 0.10.1. The issue arises when querying RRDP repositories that use gzip transfer encoding: RRDP’s XML data can include large amounts of whitespace, and gzip compression can massively shrink this whitespace, causing decompressed...

7.5CVSS7.6AI score0.01206EPSS
SaveExploits0References2Affected Software1
Cvelist
Cvelist
•added 2021/11/09 4:41 p.m.•49 views

CVE-2021-43174 gzip transfer encoding caused out-of-memory crash

NLnet Labs Routinator versions 0.9.0 up to and including 0.10.1, support the gzip transfer encoding when querying RRDP repositories. This encoding can be used by an RRDP repository to cause an out-of-memory crash in these versions of Routinator. RRDP uses XML which allows arbitrary amounts of whi...

7.9AI score0.01206EPSS
SaveExploits0References2
Debian CVE
Debian CVE
•added 2021/11/09 4:41 p.m.•54 views

CVE-2021-43174

NLnet Labs Routinator versions 0.9.0 up to and including 0.10.1, support the gzip transfer encoding when querying RRDP repositories. This encoding can be used by an RRDP repository to cause an out-of-memory crash in these versions of Routinator. RRDP uses XML which allows arbitrary amounts of whi...

7.5CVSS7.5AI score0.01206EPSS
SaveExploits0
OSV
OSV
•added 2021/11/09 12:15 p.m.•11 views

CVE-2021-31885

A vulnerability has been identified in APOGEE MBC PPC BACnet All versions, APOGEE MBC PPC P2 Ethernet All versions, APOGEE MEC PPC BACnet All versions, APOGEE MEC PPC P2 Ethernet All versions, APOGEE PXC Compact BACnet All versions = V2.3 and = V2.3 and = V2.3 and = V2.3 and = V2.3 and = V2.3 and...

7.5CVSS5.9AI score0.01237EPSS
SaveExploits0References3
attackerkb
attackerkb
•added 2021/11/09 12:15 p.m.•8 views

CVE-2021-31885

A vulnerability has been identified in APOGEE MBC PPC BACnet All versions, APOGEE MBC PPC P2 Ethernet All versions, APOGEE MEC PPC BACnet All versions, APOGEE MEC PPC P2 Ethernet All versions, APOGEE PXC Compact BACnet All versions = V2.3 and = V2.3 and = V2.3 and = V2.3 and = V2.3 and = V2.3 and...

7.5CVSS6.9AI score0.01237EPSS
SaveExploits0References4
attackerkb
attackerkb
•added 2021/11/09 12:15 p.m.•9 views

CVE-2021-31886

A vulnerability has been identified in APOGEE MBC PPC BACnet All versions, APOGEE MBC PPC P2 Ethernet All versions, APOGEE MEC PPC BACnet All versions, APOGEE MEC PPC P2 Ethernet All versions, APOGEE PXC Compact BACnet All versions = V2.3 and = V2.3 and = V2.3 and = V2.3 and = V2.3 and = V2.3 and...

9.8CVSS7.3AI score0.03049EPSS
SaveExploits0References3
Code423n4
Code423n4
•added 2021/11/09 12:00 a.m.•12 views

Unchecked transfer

Handle 0v3rf10w Vulnerability details Impact Unchecked transfer leading to free deposits to attacker account Proof of Concept function :: BasicSale.processWithdrawaluint256,uint256,address tge/contracts/PublicSale.sol212-229 Several tokens do not revert in case of failure and return false. The...

7AI score
SaveExploits0
CNNVD
CNNVD
•added 2021/11/09 12:00 a.m.•15 views

Siemens Nucleus ReadyStart 缓冲区错误漏洞

The Nucleus NET module integrates a range of standards-compliant networking and communications protocols, drivers and utilities to provide full-featured networking support in any embedded device, and the Nucleus RTOS is a microkernel-based real-time operating system. A security vulnerability exis...

8.8CVSS6.6AI score0.02449EPSS
SaveExploits0References7
Code423n4
Code423n4
•added 2021/11/09 12:00 a.m.•14 views

setAdmin function use one-phase owner transfership instead of two-phases safer ownership transfer

Handle mics Vulnerability details one-phase ownership transfer sometimes used wrong and the ownership is transferred to a not existing account. The safe way to use it is to suggest new owner and then the new owner should claim its ownership. InvestorDistribution line 212 --- The text was updated...

6.9AI score
SaveExploits0
Positive Technologies
Positive Technologies
•added 2021/11/09 12:00 a.m.•5 views

PT-2021-6893

Name of the Vulnerable Software and Affected Versions APOGEE MBC PPC BACnet versions All APOGEE MBC PPC P2 Ethernet versions All APOGEE MEC PPC BACnet versions All APOGEE MEC PPC P2 Ethernet versions All APOGEE PXC Compact BACnet versions prior to V3.5.4 APOGEE PXC Compact P2 Ethernet versions...

9.8CVSS8.9AI score0.03049EPSS
SaveExploits0References21
CNNVD
CNNVD
•added 2021/11/09 12:00 a.m.•23 views

Siemens Nucleus ReadyStart 缓冲区错误漏洞

Nucleus NET modules integrate a range of standards-compliant networking and communications protocols, drivers and utilities to provide full-featured networking support in any embedded device. A security vulnerability exists in several Siemens products, which stems from the FTP server not properly...

8.8CVSS6.6AI score0.02449EPSS
SaveExploits0References7
CNNVD
CNNVD
•added 2021/11/09 12:00 a.m.•20 views

Siemens Nucleus ReadyStart 安全漏洞

Siemens Nucleus ReadyStart is a bundled solution from Siemens Germany. It is used to accelerate the fast startup of complete systems and provides a rich board-level support package Bsp. Siemens Nucleus ReadyStart suffers from an incorrect access vulnerability that could be exploited by an attacke...

7.5CVSS5.9AI score0.01237EPSS
SaveExploits0References10
Github Security Blog
Github Security Blog
•added 2021/11/08 9:51 p.m.•35 views

Signature verification vulnerability in Stark Bank ecdsa libraries

An attacker can forge signatures on arbitrary messages that will verify for any public key. This may allow attackers to authenticate as any user within the Stark Bank platform, and bypass signature verification needed to perform operations on the platform, such as send payments and transfer funds...

3.8AI score
SaveExploits0References8Affected Software2
Rows per page
Query Builder