Lucene search
+L

540 matches found

Fedora
Fedora
added 2023/11/03 6:54 p.m.25 views

[SECURITY] Fedora 39 Update: compiler-rt-17.0.2-1.fc39

The compiler-rt project is a part of the LLVM project. It provides implementation of the low-level target-specific hooks required by code generation, sanitizer runtimes and profiling library for code instrumentation, and Blocks C language extension...

5.5CVSS7.5AI score0.00215EPSS
SaveExploits0
OSV
OSV
added 2023/11/01 4:15 p.m.5 views

CVE-2023-33226

The Network Configuration Manager was susceptible to a Directory Traversal Remote Code Execution Vulnerability. This vulnerability allows a low-level user to perform the actions with SYSTEM privileges...

8.8CVSS5.9AI score0.0184EPSS
SaveExploits0References2
Prion
Prion
added 2023/11/01 4:15 p.m.32 views

Remote code execution

The Network Configuration Manager was susceptible to a Directory Traversal Remote Code Execution Vulnerability. This vulnerability allows a low-level user to perform the actions with SYSTEM privileges...

6.5CVSS8.8AI score0.0184EPSS
SaveExploits0References2Affected Software1
Prion
Prion
added 2023/11/01 4:15 p.m.23 views

Remote code execution

The Network Configuration Manager was susceptible to a Directory Traversal Remote Code Execution Vulnerability This vulnerability allows a low level user to perform the actions with SYSTEM privileges...

6.5CVSS8.8AI score0.0184EPSS
SaveExploits0References2Affected Software1
Vulnrichment
Vulnrichment
added 2023/11/01 3:31 p.m.20 views

CVE-2023-33227 Directory Traversal Remote Code Execution Vulnerability

The Network Configuration Manager was susceptible to a Directory Traversal Remote Code Execution Vulnerability This vulnerability allows a low level user to perform the actions with SYSTEM privileges...

8CVSS7.3AI score0.0184EPSS
SaveExploits0References2
Cvelist
Cvelist
added 2023/11/01 3:31 p.m.38 views

CVE-2023-33227 Directory Traversal Remote Code Execution Vulnerability

The Network Configuration Manager was susceptible to a Directory Traversal Remote Code Execution Vulnerability This vulnerability allows a low level user to perform the actions with SYSTEM privileges...

8CVSS9.1AI score0.0184EPSS
SaveExploits0References2
Vulnrichment
Vulnrichment
added 2023/11/01 3:31 p.m.24 views

CVE-2023-33226 Directory Traversal Remote Code Execution Vulnerability

The Network Configuration Manager was susceptible to a Directory Traversal Remote Code Execution Vulnerability. This vulnerability allows a low-level user to perform the actions with SYSTEM privileges...

8CVSS7.3AI score0.0184EPSS
SaveExploits0References2
Code423n4
Code423n4
added 2023/10/04 12:0 a.m.12 views

No zero address check in PrimeLiquidityProvider.sol:sweepTokens

Lines of code Vulnerability details Impact Possible loss of funds due to sending them to the address0, the developer's assumption is that safeTransfer is checking for to not being the address0. In reality, it doesn’t implement such a check and we can see from the implementation of the function:...

7.2AI score
SaveExploits0
Code423n4
Code423n4
added 2023/09/11 12:0 a.m.7 views

Failure to Return Value from Low-Level Call

Lines of code Vulnerability details In Solidity, the "low-level call" operation, often used with inline assembly, is a powerful tool for interacting with external contracts. However, there is a specific bug related to low-level calls that can result in unexpected behavior. Instances 1: File:...

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

A malicious contract could steal assets via a flash loan

Lines of code Vulnerability details Impact A malicious contract could fail to return the assets, essentially stealing the Proof of Concept The key vulnerability is in the flashloan function. It transfers the assets to the receiver contract specified in info.receiver without any checks. Then it...

7AI score
SaveExploits0
Code423n4
Code423n4
added 2023/09/11 12:0 a.m.13 views

Unchecked return value of low level call()/delegatecall()

Lines of code Vulnerability details The vulnerability related to an "Unchecked return value of low-level call/delegatecall" is a common and critical issue in Ethereum smart contracts. Let's break down this vulnerability and discuss its implications: 1. Low-Level Calls in Solidity: In Solidity,...

7.5AI score
SaveExploits0
Code423n4
Code423n4
added 2023/09/10 12:0 a.m.15 views

M-08 Unmitigated

Lines of code Vulnerability details Comments The success of low-level calls is not checked in V3Proxy. If msg.sender is a contract and the fallback function has additional logic, the protocol will succeed transfer by default, which will result in the loss of user funds. Mitigation There is no...

6.7AI score
SaveExploits0
Code423n4
Code423n4
added 2023/09/07 12:0 a.m.20 views

Low level calls to accounts with no code will succeed in multiexcall function

Lines of code Vulnerability details Impact Low level calls behave differently than function calls in Solidity. Calls at the EVM level to accounts with no code are successful, this is the expected and normal behavior. It is Solidity that adds checks to prevent accidental calls to accounts with no...

7.2AI score
SaveExploits0
Huntr
Huntr
added 2023/08/28 2:23 a.m.25 views

IDOR Vulnerability Allow Low-Level User change role Everyone Includes Admin

Description By manipulating the userid in API PUT /answer/admin/api/user/role, users with low privilege can change role any users Proof of Concept Step 1: Login as user1 with user privilege Step2: Call API PUT /answer/admin/api/user/role with user privilege , change role everyone includes Admin...

6.5CVSS7AI score0.00682EPSS
SaveExploits1
Code423n4
Code423n4
added 2023/08/10 12:0 a.m.24 views

Failed transfer with low level call could be overlooked

Lines of code Vulnerability details Impact In LendingLedger.sol and votingEscrow.sol, low level call made using the call, According to the Solidity docs, "The low-level functions call, delegatecall and staticcall return true as their first return value if the account called is non-existent, as pa...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2023/08/07 12:0 a.m.10 views

RETURN VALUE OF LOW LEVEL call FUNCTION IS NOT CHECKED FOR SUCCESFUL VALUE TRANSFER

Lines of code Vulnerability details Impact The V3Proxy.swapTokensForExactETH and V3Proxy.swapExactTokensForETH functions use the low level call function to transfer Eth to the msg.sender as shown below: payablemsg.sender.callvalue: amountOut""; But there is no verification of the return value of...

7.1AI score
SaveExploits0
Code423n4
Code423n4
added 2023/08/07 12:0 a.m.13 views

Unchecked Call Return Value

Lines of code Vulnerability details Impact The functions do not check the return value of low-level calls. This can lock Ether in the contract if the call fails or may compromise the contract if the ownership is being changed. The following calls were detected without return value validations -...

6.9AI score
SaveExploits0
NVD
NVD
added 2023/07/07 12:15 a.m.12 views

CVE-2023-35765

PiiGAB M-Bus stores credentials in a plaintext file, which could allow a low-level user to gain admin credentials...

6.5CVSS6.9AI score0.00509EPSS
SaveExploits0References1
OSV
OSV
added 2023/06/22 5:15 p.m.7 views

CVE-2023-3256

Advantech R-SeeNet versions 2.4.22 allows low-level users to access and load the content of local files...

8.1CVSS5.8AI score0.00647EPSS
SaveExploits0References1
NVD
NVD
added 2023/06/22 5:15 p.m.30 views

CVE-2023-3256

Advantech R-SeeNet versions 2.4.22 allows low-level users to access and load the content of local files...

8.8CVSS8.6AI score0.00647EPSS
SaveExploits0References1
Rows per page
Query Builder