zoukankan      html  css  js  c++  java
  • CSV Injection

    CSV Injection

    Author: Timo Goosen, Albinowax
    Contributor(s): kingthorin

    CSV Injection, also known as Formula Injection, occurs when websites embed untrusted input inside CSV files.

    When a spreadsheet program such as Microsoft Excel or LibreOffice Calc is used to open a CSV, any cells starting with = will be interpreted by the software as a formula. Maliciously crafted formulas can be used for three key attacks:

    • Hijacking the user’s computer by exploiting vulnerabilities in the spreadsheet software, such as CVE-2014-3524.
    • Hijacking the user’s computer by exploiting the user’s tendency to ignore security warnings in spreadsheets that they downloaded from their own website.
    • Exfiltrating contents from the spreadsheet, or other open spreadsheets.

    This attack is difficult to mitigate, and explicitly disallowed from quite a few bug bounty programs. To remediate it, ensure that no cells begin with any of the following characters:

    • Equals to (=)
    • Plus (+)
    • Minus (-)
    • At (@)
    • Tab (0x09)
    • Carriage return (0x0D)

    Keep in mind that it is not sufficient to make sure that the untrusted user input does not start with these characters. You also need to take care of the field separator (e.g., ‘,’, or ‘;’) and quotes (e.g., ', or "), as attackers could use this to start a new cell and then have the dangerous character in the middle of the user input, but at the beginning of a cell.

    Alternatively, apply the following sanitization to each field of the CSV, so that their content will be read as text by the spreadsheet editor:

    • Wrap each cell field in double quotes
    • Prepend each cell field with a single quote
    • Escape every double quote using an additional double quote

    Two examples:

    InputEscaped Output
    =1+2";=1+2 "'=1+2"";=1+2"
    =1+2'" ;,=1+2 "'=1+2'"" ;,=1+2"

    For further information, please refer to the following articles:

  • 相关阅读:
    词法分析
    HTTP学习笔记
    Servlet入门
    UDP与TCP的区别
    C语言实现血型查询系统
    Mysql的索引、回表查询及覆盖索引浅析
    ReentranLock浅析
    CAS是个什么鬼?
    synchronize和volatile 小知识点总结
    写一个简单的阻塞队列
  • 原文地址:https://www.cnblogs.com/chucklu/p/15232798.html
Copyright © 2011-2022 走看看