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)
+
+