What are the security concerns I need to consider while coding?

后端 未结 15 911
栀梦
栀梦 2021-02-06 17:14

I know SQL Injection is one... what are the others...

15条回答
  •  南笙
    南笙 (楼主)
    2021-02-06 17:35

    This is for web stuff but since you left it open ended...

    JavaScript injection. If you allow any input from any source that's being outputting somewhere JavaScript could be typed in the input and then when it's outputting (unless properly encoded/decoded) it will output the raw javascript.

提交回复
热议问题