Lucene search
+L

4437 matches found

Cvelist
Cvelist
added 2021/11/18 3:5 p.m.30 views

CVE-2021-43668

Go-Ethereum 1.10.9 nodes crash denial of service after receiving a serial of messages and cannot be recovered. They will crash with "runtime error: invalid memory address or nil pointer dereference" and arise a SEGV signal...

5.8AI score0.00251EPSS
SaveExploits0References1
CVE
CVE
added 2021/11/18 3:5 p.m.59 views

CVE-2021-43668

Go-Ethereum, version 1.10.9, is affected by a vulnerability that can cause a denial-of-service crash. The issue manifests as a runtime error: invalid memory address or nil pointer dereference, leading to a SEGV signal after the node processes a sequence of messages and cannot recover. The provide...

5.5CVSS5.4AI score0.00251EPSS
SaveExploits0References1Affected Software1
CNNVD
CNNVD
added 2021/11/18 12:0 a.m.9 views

Ethereum Go-ethereum 代码问题漏洞

Ethereum Go-ethereum is a codebase from the Ethereum community that implements the ethereum protocol in the Go language. A code issue vulnerability exists in Go-Ethereum 1.10.9 that allows attackers to conduct denial of service attacks...

5.5CVSS5.8AI score0.00251EPSS
SaveExploits0References2
Code423n4
Code423n4
added 2021/11/17 12:0 a.m.17 views

Passing multiple ETH deposits in orders array will use the same msg.value many times

Handle hyh Vulnerability details Impact Contract holdings can be emptied as malicious user will do deposit/withdraw to extract value. This is possible because after transferInputTokens system uses contract balance for user's operations, assuming that equivalent value was transferred. Proof of...

6.9AI score
SaveExploits0
Code423n4
Code423n4
added 2021/10/30 12:0 a.m.12 views

pricePerShare is only lazily updated

Handle cmichel Vulnerability details The pricePerShare value is cached in updatePricePerShare and this value can be old and not reflect the actual core.pricePerShare value. The same issue exists on the sidechain variant when oracle price updates happen infrequently. This leads to potentially big...

6.9AI score
SaveExploits0
Code423n4
Code423n4
added 2021/10/29 12:0 a.m.11 views

Ethereum wibBTC price per share dependant on being updated every X time, but contract has no checks whether price is updated

Handle loop Vulnerability details The price of pricePerShare in WrappedIbbtcEth.sol is dependant on two things: The pricePerShare of core. updatePricePerShare being invoked every X time to update the pricePerShare of wibBTC. The only time updatePricePerShare is invoked inside the contract is duri...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2021/10/27 12:0 a.m.9 views

Lack of data validation in update function

Handle Koustre Vulnerability details Impact There is no data validation of the data input into update function in MochiCSSRv0.sol. Allowing anyone to set the price of any non ERC20 token that is not a bluechip asset DAI, WETH, ETH, etc. Proof of Concept Provide direct links to all referenced code...

7AI score
SaveExploits0
NVD
NVD
added 2021/10/26 2:15 p.m.15 views

CVE-2021-41173

Go Ethereum is the official Golang implementation of the Ethereum protocol. Prior to version 1.10.9, a vulnerable node is susceptible to crash when processing a maliciously crafted message from a peer. Version v1.10.9 contains patches to the vulnerability. There are no known workarounds aside fro...

5.7CVSS0.01202EPSS
SaveExploits0References4
OSV
OSV
added 2021/10/26 2:15 p.m.15 views

CVE-2021-41173

Go Ethereum is the official Golang implementation of the Ethereum protocol. Prior to version 1.10.9, a vulnerable node is susceptible to crash when processing a maliciously crafted message from a peer. Version v1.10.9 contains patches to the vulnerability. There are no known workarounds aside fro...

5.7CVSS5.6AI score
SaveExploits0References4
ATTACKERKB
ATTACKERKB
added 2021/10/26 2:15 p.m.4 views

CVE-2021-41173

Go Ethereum is the official Golang implementation of the Ethereum protocol. Prior to version 1.10.9, a vulnerable node is susceptible to crash when processing a maliciously crafted message from a peer. Version v1.10.9 contains patches to the vulnerability. There are no known workarounds aside fro...

5.7CVSS6.2AI score0.01202EPSS
SaveExploits0References5Affected Software1
Prion
Prion
added 2021/10/26 2:15 p.m.17 views

Design/Logic Flaw

Go Ethereum is the official Golang implementation of the Ethereum protocol. Prior to version 1.10.9, a vulnerable node is susceptible to crash when processing a maliciously crafted message from a peer. Version v1.10.9 contains patches to the vulnerability. There are no known workarounds aside fro...

3.5CVSS5.6AI score0.01202EPSS
SaveExploits0References4Affected Software1
CVE
CVE
added 2021/10/26 2:5 p.m.76 views

CVE-2021-41173

CVE-2021-41173 affects go-ethereum prior to v1.10.9, where processing a malicious snap/1 message could crash a node (DoS). The Red Hat and OSV details corroborate a crash in Go Ethereum’s P2P handling, specifically the GetTrieNodes path in the snap protocol. The root cause involved unsafe handlin...

5.7CVSS5.5AI score0.01202EPSS
SaveExploits0References4Affected Software1
Cvelist
Cvelist
added 2021/10/26 2:5 p.m.24 views

CVE-2021-41173 DoS via maliciously crafted p2p message

Go Ethereum is the official Golang implementation of the Ethereum protocol. Prior to version 1.10.9, a vulnerable node is susceptible to crash when processing a maliciously crafted message from a peer. Version v1.10.9 contains patches to the vulnerability. There are no known workarounds aside fro...

5.7CVSS5.8AI score0.01202EPSS
SaveExploits0References4
Code423n4
Code423n4
added 2021/10/22 12:0 a.m.9 views

Transfer function is unreliable

Handle Koustre Vulnerability details Impact Opcode pricing is not stable and should not be relied upon to protect against re-entrancy attacks. Proof of Concept Provide direct links to all referenced code in GitHub. Add screenshots, logs, or any other relevant proof that illustrates the concept...

7.1AI score
SaveExploits0
Code423n4
Code423n4
added 2021/10/22 12:0 a.m.18 views

transfer() is not recommended for sending ETH

Handle WatchPug Vulnerability details Since the introduction of transfer, it has typically been recommended by the security community because it helps guard against reentrancy attacks. This guidance made sense under the assumption that gas costs wouldn’t change. It's now recommended that transfer...

6.9AI score
SaveExploits0
Code423n4
Code423n4
added 2021/10/22 12:0 a.m.11 views

use of transfer() instead of call() to send eth

Handle JMukesh Vulnerability details Impact Use of transfer might render ETH impossible to withdraw becuase after istanbul hardfork , there is increases in the gas cost of the SLOAD operation and therefore breaks some existing smart contracts.Those contracts will break because their fallback...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2021/10/22 12:0 a.m.8 views

.transfer is used for transferring ether

Handle pauliax Vulnerability details Impact payablemsg.sender.transfertoTransfer; feeRecipient.transferaddressthis.balance; It is no longer recommended to use .transfer when sending ether as recipients with custom fallback functions smart contracts will not be able to handle that. You can read mo...

6.9AI score
SaveExploits0
OSV
OSV
added 2021/10/20 8:15 p.m.6 views

CVE-2021-42766

The Proof-of-Stake PoS Ethereum consensus protocol through 2021-10-19 allows an adversary to cause a denial of service long-range consensus chain reorganizations, even when this adversary has little stake and cannot influence network message propagation. This can cause a protocol stall, or an...

9.1CVSS5.8AI score0.0093EPSS
SaveExploits0References1
OSV
OSV
added 2021/10/20 8:15 p.m.8 views

CVE-2021-42764

The Proof-of-Stake PoS Ethereum consensus protocol through 2021-10-19 allows an adversary to cause a denial of service delayed consensus decisions, and also increase the profits of individual validators, via short-range reorganizations of the underlying consensus chain...

9.1CVSS5.8AI score0.0093EPSS
SaveExploits0References1
OSV
OSV
added 2021/10/20 8:15 p.m.5 views

CVE-2021-42765

The Proof-of-Stake PoS Ethereum consensus protocol through 2021-10-19 allows an adversary to leverage network delay to cause a denial of service indefinite stalling of consensus decisions...

7.5CVSS5.8AI score0.0093EPSS
SaveExploits0References1
Rows per page
Query Builder