Lucene search
+L

3583 matches found

Github Security Blog
Github Security Blog
added 2022/02/15 1:57 a.m.28 views

Improper Input Validation in vault-ssh-helper

HashiCorp vault-ssh-helper github.com/hashicorp/vault-ssh-helper/helper up to and including version 0.1.6 incorrectly accepted Vault-issued SSH OTPs for the subnet in which a host's network interface was located, rather than the specific IP address assigned to that interface. Fixed in 0.2.0...

7.5CVSS7.2AI score0.01036EPSS
SaveExploits0References5Affected Software1
CNNVD
CNNVD
added 2022/02/15 12:00 a.m.10 views

Hashicorp HashiCorp Vault 安全漏洞

Jenkins is a Jenkins open source application. An open source automation server, Jenkins provides hundreds of plugins to support building, deploying, and automating any project. Jenkins HashiCorp Vault Plugin 336.v182c0fbaaeb7 and earlier versions contain an arbitrary file read vulnerability that...

6.5CVSS5.9AI score0.00809EPSS
SaveExploits0References4
CNNVD
CNNVD
added 2022/02/15 12:00 a.m.25 views

Jenkins 插件 信息泄露漏洞

Jenkins is a Jenkins open source application. An open source automation server, Jenkins provides hundreds of plugins to support building, deploying, and automating any project.Jenkins HashiCorp Vault Plugin 3.8.0 and earlier versions are vulnerable to an information disclosure vulnerability that...

6.5CVSS5.7AI score0.00809EPSS
SaveExploits0References5
Positive Technologies
Positive Technologies
added 2022/02/15 12:00 a.m.7 views

PT-2022-1879 · Hashicorp +1 · Jenkins Hashicorp Vault Plugin +1

Name of the Vulnerable Software and Affected Versions: Jenkins HashiCorp Vault Plugin versions 336.v182c0fbaaeb7 and earlier Description: The issue allows agent processes to read arbitrary files on the Jenkins controller file system. This can be exploited by attackers who can control agent...

6.8CVSS6.2AI score0.00809EPSS
SaveExploits0References8
Positive Technologies
Positive Technologies
added 2022/02/15 12:00 a.m.8 views

PT-2022-17126 · Hashicorp +1 · Jenkins Hashicorp Vault Plugin +1

Name of the Vulnerable Software and Affected Versions: Jenkins HashiCorp Vault Plugin versions 3.8.0 and earlier Description: The issue allows agent processes to retrieve any Vault secrets for use on the agent. Attackers able to control agent processes can obtain Vault secrets for an...

6.5CVSS6.3AI score0.00809EPSS
SaveExploits0References6
IBM Security Bulletins
IBM Security Bulletins
added 2022/02/03 3:15 a.m.18 views

Security Bulletin: A Security Vulnerability Has Been Identified In IBM Security Verify Privilege Vault

Summary A Security Vulnerability in IBM Security Verify Privilege Vault previously known as IBM Security Secret Server have been addressed in the release 11.1.000007. Vulnerability Details The 11.1.000007 update resolves a security vulnerability that was discovered during third-party penetration...

3.4AI score
SaveExploits0Affected Software1
Code423n4
Code423n4
added 2022/01/30 12:00 a.m.17 views

Malicious Users Can Transfer Vault Collateral To Other Accounts To Extract Additional Yield From The Protocol

Handle leastwood Vulnerability details Impact ConvexYieldWrapper.sol is a wrapper contract for staking convex tokens on the user's behalf, allowing them to earn rewards on their deposit. Users will interact with the Ladle.sol contract's batch function which: Approves Ladle to move the tokens...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/30 12:00 a.m.13 views

Miscalculation of rewards due to removal of vaults

Handle hack3r-0m Vulnerability details Location: getDepositedBalance gives balance of account + collateralbalance of all vaults if a malicious party removes the vault of the usersince anyone can add/remove vaults of anyone if they are present in the cauldron before some critical action involving ...

6.9AI score
SaveExploits0
Github Security Blog
Github Security Blog
added 2022/01/13 12:00 a.m.24 views

Improper credentials masking in Jenkins HashiCorp Vault Plugin

Jenkins HashiCorp Vault Plugin 3.7.0 and earlier does not mask Vault credentials in Pipeline build logs or in Pipeline step descriptions when Pipeline: Groovy Plugin 2.85 or later is installed...

6.5CVSS1.2AI score0.00959EPSS
SaveExploits0References5Affected Software1
OSV
OSV
added 2022/01/13 12:00 a.m.22 views

GHSA-H6X7-JQ46-FP33 Improper credentials masking in Jenkins HashiCorp Vault Plugin

Jenkins HashiCorp Vault Plugin 3.7.0 and earlier does not mask Vault credentials in Pipeline build logs or in Pipeline step descriptions when Pipeline: Groovy Plugin 2.85 or later is installed...

6.5CVSS6.6AI score0.00959EPSS
SaveExploits0References5
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.17 views

[WP-H20] Wrong implementation of withdrawRedundant() allows the Vault owner to drain all the funds

Handle WatchPug Vulnerability details Based on the context, withdrawRedundant intends to disallow the owner to withdraw more Vault tokens than the surplus amount. However, the current implementation is wrong, which allows the Vault owner to drain all the funds. function withdrawRedundantaddress...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.15 views

If Vault contains tokens that charge a fee on transfer the internally kept balance will be wrong

Handle Ruhum Vulnerability details Impact Some tokens charge a fee for each transfer. USDT, for example, has the possibility of enabling fees at any time. If the vault is used for that kind of token, the internal balance keeping will be wrong. The vault will think that it owns more tokens than it...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.11 views

[WP-H30] A malicious/compromised Registry or Factory admin can drain all the funds from the Vault contracts

Handle WatchPug Vulnerability details modifier onlyMarket require IRegistryregistry.isListedmsg.sender, "ERRORONLYMARKET" ; ; function borrowValueuint256 amount, address to external onlyMarket override debtsmsg.sender += amount; totalDebt += amount; IERC20token.safeTransferto, amount; The current...

7AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.12 views

backdoor in withdrawRedundant

Handle cmichel Vulnerability details The Vault.withdrawRedundant has wrong logic that allows the admins to steal the underlying vault token. function withdrawRedundantaddress token, address to external override onlyOwner if token == addresstoken && balance 0 // @audit they can rug users. let's sa...

7AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.8 views

Vault.withdrawRedundant() allows the owner to accidentally take out the vault's whole balance

Handle Ruhum Vulnerability details Impact The Vault.withdrawRedundant allows the owner to withdraw funds that are not accounted for. The function has a check that is supposed to stop the owner from withdrawing funds of the vault's underlying token that the vault "knows" about. But, there's an edg...

6.8AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.12 views

[WP-H29] Vault#setController() owner of the Vault contracts can drain funds from the Vault

Handle WatchPug Vulnerability details function setControlleraddress controller public override onlyOwner requirecontroller != address0, "ERRORZEROADDRESS"; if addresscontroller != address0 controller.migrateaddresscontroller; controller = IControllercontroller; else controller =...

7AI score
SaveExploits0
Code423n4
Code423n4
added 2022/01/13 12:00 a.m.21 views

Initial pool deposit can be stolen

Handle cmichel Vulnerability details Note that the PoolTemplate.initialize function, called when creating a market with Factory.createMarket, calls a vault function to transfer an initial deposit amount conditions1 from the initial depositor references4: // PoolTemplate function initialize string...

6.8AI score
SaveExploits0
NVD
NVD
added 2022/01/12 8:15 p.m.17 views

CVE-2022-23109

Jenkins HashiCorp Vault Plugin 3.7.0 and earlier does not mask Vault credentials in Pipeline build logs or in Pipeline step descriptions when Pipeline: Groovy Plugin 2.85 or later is installed...

6.5CVSS0.00959EPSS
SaveExploits0References2
ATTACKERKB
ATTACKERKB
added 2022/01/12 8:15 p.m.12 views

CVE-2022-23109

Jenkins HashiCorp Vault Plugin 3.7.0 and earlier does not mask Vault credentials in Pipeline build logs or in Pipeline step descriptions when Pipeline: Groovy Plugin 2.85 or later is installed...

6.5CVSS5.8AI score0.00959EPSS
SaveExploits0References3
OSV
OSV
added 2022/01/12 8:15 p.m.6 views

CVE-2022-23109

Jenkins HashiCorp Vault Plugin 3.7.0 and earlier does not mask Vault credentials in Pipeline build logs or in Pipeline step descriptions when Pipeline: Groovy Plugin 2.85 or later is installed...

6.5CVSS5.8AI score0.00959EPSS
SaveExploits0References2
Rows per page
Query Builder