From 618fa82c18dc271f16ed274aa19f458e7ea6dea3 Mon Sep 17 00:00:00 2001 From: bt3gl <1130416+bt3gl@users.noreply.github.com> Date: Sat, 17 Sep 2022 18:06:41 -0700 Subject: [PATCH] Update proxies.md --- Smart-Contract-Security/proxies.md | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/Smart-Contract-Security/proxies.md b/Smart-Contract-Security/proxies.md index e07394b..eaff9e7 100644 --- a/Smart-Contract-Security/proxies.md +++ b/Smart-Contract-Security/proxies.md @@ -1,4 +1,4 @@ -## Proxies +## 🐊 Proxies
@@ -21,8 +21,23 @@
+--- + +### Unitialized proxy bug + +
+ +* Developers might leave proxies unitialized - this can be a problem when it leads to changes such as granting ownership to the caller +* the owners of the contract can upgrade the implementation contract +* this bug can lead to the self-destruction of the implementation contract (proxy contract is bricked) + + --- ### Resources
+ +* [Wormhole bridge protocol](https://github.com/immunefi-team/wormhole-uninitialized) + +