CWE-134: Uncontrolled Format String

http://cwe.mitre.org/data/definitions/134.html

Example 2

The following code copies a command line argument into a bufferusing snprintf().

(Bad Code)
ExampleLanguage:
int main(int argc, char **argv){
char buf[128];
...
snprintf(buf,128,argv[1]);
}

This code allows an attacker to view the contents of the stack andwrite to the stack using a command line argument containing a sequenceof formatting directives. The attacker can read from the stack byproviding more formatting directives, such as %x, than the functiontakes as arguments to be formatted. (In this example, the function takesno arguments to be formatted.) By using the %n formatting directive, theattacker can write to the stack, causing snprintf() to write the numberof bytes output thus far to the specified argument (rather than readinga value from the argument, which is the intended behavior). Asophisticated version of this attack will use four staggered writes tocompletely control the value of a pointer on the stack.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值