Lucene search
+L

2194 matches found

Code423n4
Code423n4
โ€ขadded 2022/07/14 12:0 a.m.โ€ข10 views

Migration's withdrawContribution ignores the exchange between fractional tokens and ETH happened during Buyout attempt

Lines of code Vulnerability details withdrawContribution aims to return the funds to Migration participants. However, it uses initial userProposalFractionsproposalIdmsg.sender and userProposalEthproposalIdmsg.sender records for withdrawal accounting. Real funds structure is different after Buyout...

6.8AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/07/14 12:0 a.m.โ€ข19 views

Loss of funds in an underlying protocol would cause catostrophic loss of funds for swivel

Lines of code Vulnerability details Impact Loss of all user funds Proof of Concept This exploit stems from a quirk in the way that exchange rate is tracked for matured positions. We first need to breakdown how interest is calculate for a matured position. In L124 the yield for a matured position ...

6.7AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/07/14 12:0 a.m.โ€ข16 views

function mint() in FERC1155 don't follow check-effect-interact pattern, it's possible to call protocol contracts after tokens minted and before totalSupply updated

Lines of code Vulnerability details Impact Function mint mints new fractions for an ID and is only callable by VaultRegistry. code mints tokens then updates totalSupply value. when minting contract may make external call to target address, in that external call contract state is wrong, tokens are...

6.9AI score
SaveExploits0
ATTACKERKB
ATTACKERKB
โ€ขadded 2022/07/12 9:15 p.m.โ€ข5 views

CVE-2022-2211

A vulnerability was found in libguestfs. This issue occurs while calculating the greatest possible number of matching keys in the getkeys function. This flaw leads to a denial of service, either by mistake or malicious actor...

6.5CVSS6.7AI score0.00881EPSS
SaveExploits0References7
NVD
NVD
โ€ขadded 2022/07/12 9:15 p.m.โ€ข16 views

CVE-2022-2211

A vulnerability was found in libguestfs. This issue occurs while calculating the greatest possible number of matching keys in the getkeys function. This flaw leads to a denial of service, either by mistake or malicious actor...

6.5CVSS0.00881EPSS
SaveExploits0References1
BDU FSTEC
BDU FSTEC
โ€ขadded 2022/07/11 12:0 a.m.โ€ข15 views

The vulnerability of Schneider Electric CanBrass software for designing and calculating the cost of hose pipelines lies in the fact that operations can be executed outside the buffer in memory, allowing an attacker to execute arbitrary code.

The vulnerability of Schneider Electric CanBrassโ€™s software for designing and calculating hose pipe costs is related to the execution of operations beyond the buffer boundaries in memory. Exploiting this vulnerability could allow an attacker to execute arbitrary code...

5.3CVSS7.9AI score0.00263EPSS
SaveExploits0References2Affected Software1
Code423n4
Code423n4
โ€ขadded 2022/07/08 12:0 a.m.โ€ข9 views

No check for stale chainlink oracle data in currentPrice function

Lines of code Vulnerability details Impact There is no check if the value of price returned by chainlink latestRoundData is latest or stale. If stale price is returned, it may result in wrong calculation used further, and in JBPrices.sol Proof of Concept Contract : JBChainlinkV3PriceFeed.sol Line...

6.8AI score
SaveExploits0
Oracle linux
Oracle linux
โ€ขadded 2022/07/07 12:0 a.m.โ€ข445 views

libgcrypt security update

1.8.5-7fips - Add API to provide hash calculation in RSA/DSA/ECDSA signature operations Orabug: 33081130 - Change Epoch from 1 to 10 1.8.5-7 - Fix CVE-2021-33560 2018525...

7.5CVSS1AI score0.02342EPSS
SaveExploits1
Code423n4
Code423n4
โ€ขadded 2022/07/02 12:0 a.m.โ€ข11 views

The stable ctoken underlying price quote could be manipulated

Lines of code...

6.7AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/26 12:0 a.m.โ€ข7 views

Inaccurate fee calculation

Lines of code Vulnerability details Impact The equation in the calculateFee function has a high degree of inaccuracy Solidity use integers, when divide an uint256 for other uint256 the divition take the floor number and ignore the decimal part In example: a = 1999 ETH feenominator = 1000 the retu...

6.8AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/24 12:0 a.m.โ€ข12 views

Avoid using address(this).balance for internal accounting

Lines of code Vulnerability details Impact This could reduce or increase the amount of ETH that token-holders are able to redeem for a reserve token in the case of a buyout success. Proof of Concept Using addressthis.balance for any internal accounting for smart contract poses risks. Using...

6.7AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/24 12:0 a.m.โ€ข13 views

Issue with TWAV calculation.

Lines of code Vulnerability details Impact To calculate time weighted average value, current valuation is used. This is not appropriate way to decide the TWAV while other locations considers only time. This might not be the stable one. Proof of Concept uint256 currentValuation =...

7AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/24 12:0 a.m.โ€ข12 views

_getTwav is not correct. It is not considering all last 4 blocks.

Lines of code Vulnerability details Impact This will result in invalid deadline to decide the buyout end. Proof of Concept /// @notice returns the TWAV of the last 4 blocks /// @return twav TWAV of the last 4 blocks function getTwav internal view returnsuint256 twav if...

6.8AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/24 12:0 a.m.โ€ข12 views

[PNM-004] Calculation of _secondaryReserveRatio can be overflowed

Lines of code Vulnerability details Description uint32 secondaryReserveRatio = uint32msg.value SCALE 1e18 / initialTokenSupply initialTokenPrice; secondaryReserveRatio can be overflowed by setting a relatively small initialTokenSupply and initialTokenPrice. The result will be truncated by uint32,...

7.1AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/24 12:0 a.m.โ€ข13 views

[PNM-005] Reentrancy of function sell

Lines of code Vulnerability details Description In function chargeFee, a potential reetrancy can be triggered by the factory. Since function sell invokes chargeFee in the middle of its function body, it potentially impacts the calculation, e.g., the totalSupply would be incorrect since the tokens...

6.8AI score
SaveExploits0
Code423n4
Code423n4
โ€ขadded 2022/06/19 12:0 a.m.โ€ข12 views

The amount of gas calculation for refunding is incorrect

Lines of code Vulnerability details Impact While matching the orders the gas cost is calculated so that it can be refunded back to the contract. The calculation for this gas is incorrect. The function keeps track of the gasleft at the beginning of the loop and adds additional amount of gas for pr...

6.8AI score
SaveExploits0
Prion
Prion
โ€ขadded 2022/06/17 8:15 p.m.โ€ข18 views

Out-of-bounds

All versions of package fast-string-search are vulnerable to Out-of-bounds Read due to incorrect memory freeing and length calculation for any non-string input as the source. This allows the attacker to read previously allocated memory...

5CVSS5.2AI score0.01068EPSS
SaveExploits1References2
Cvelist
Cvelist
โ€ขadded 2022/06/17 8:5 p.m.โ€ข35 views

CVE-2022-25872 Out-of-bounds Read

All versions of package fast-string-search are vulnerable to Out-of-bounds Read due to incorrect memory freeing and length calculation for any non-string input as the source. This allows the attacker to read previously allocated memory...

5.3CVSS5.5AI score0.01068EPSS
SaveExploits1References2
Prion
Prion
โ€ขadded 2022/06/14 10:15 a.m.โ€ข27 views

Buffer overflow

Possible buffer over read due to improper calculation of string length while parsing Id3 tag in Snapdragon Auto, Snapdragon Compute, Snapdragon Connectivity, Snapdragon Consumer IOT, Snapdragon Industrial IOT, Snapdragon Mobile, Snapdragon Voice & Music, Snapdragon Wearables...

7.8CVSS7.6AI score0.00568EPSS
SaveExploits0References1
Code423n4
Code423n4
โ€ขadded 2022/06/14 12:0 a.m.โ€ข18 views

Division round down 2 times may cause convertToShares calculation incorrect if underlying token with decimals less than 8.

Lines of code Vulnerability details Impact In case fCash has not matured yet, convertToShares may return incorrect value due to division round down 2 times. It may leads to the case that user need more amount of share than expected to withdraw assets. In wfCashERC4626.convertToShares function, it...

6.8AI score
SaveExploits0
Rows per page
Query Builder