w******1 发帖数: 520 | 1 这个例子
https://www.securecoding.cert.org/confluence/display/seccode/ARR01-C.+Do+not
+apply+the+sizeof+operator+to+a+pointer+when+taking+the+size+of+an+array
void clear(int array[], size_t len) {
for (size_t i = 0; i < len; i++) {
array[i] = 0;
}
}
void dowork(void) {
int dis[12];
clear(dis, sizeof(dis) / sizeof(dis[0]));
/* ... */
}
However, array has a pointer type because it is a parameter. As a result, sizeof(array) is equal to the sizeof(int *). For example, on an architecture |
|
|
|
|
|
a*****n 发帖数: 682 | 6 Note: Your card may be eligible for or enrolled in the MasterCard SecureCode
authentication program. After clicking the 'Purchase' button, you may be
prompted to provide your payer authentication password to complete your
purchase.
结果点了后没这东西出现,直接扣钱了,靠 |
|
o*o 发帖数: 5155 | 7 又一个英语不好的。You may be ...
^^^^^^
SecureCode |
|
h******o 发帖数: 979 | 8 浅谈信用卡的安全使用
2013-04-09 16:12:34
近日很多网友at我,让我评评招行信用卡。我原不是很想表态,因为大家都知道我大爱
中国银行,我说任何话,会被认为带有偏向性。
但是,午饭后来到办公室,同事告诉我,她的同事,也是我的学妹,其招行信用卡,3
月中旬被盗刷了2000美元。我就跑去学妹办公室,向她了解完具体情况,又想说几句了
。(有几句,其实我在微博里说过不止一次。)
她持有的是招行携程联名卡银联威士(VISA)双标版,也就是俗称的双币卡,额度为人
民币15000元或等额美元。申请此卡是在2009年,是唯一的信用卡,但平时用得不多,
出国消费过。
2009年以来,在哪几个外国用过呢?亚洲是印度和印尼,欧洲是法国和西班牙。
注意:学妹对信用卡安全使用并不是特别了解。我问她平时是否把卡背面的三位码(如
是带美国运通American Express标志的卡,三位码则可能在卡正面)用贴纸掩盖时,她
说没有。因此,在海外,她可能也不曾注意遵守“刷卡必须当着持卡人之面进行”等原
则。
盗刷很刁钻,是在某周末的凌晨,在一家叫iherb.com的海外食品销售网站。第一笔刷
了2000... 阅读全帖 |
|
|
c*******7 发帖数: 3763 | 10 还是那个国际信用卡(VISA, MASTERCARD)通过首易信支付平台,需要使用VISA验证密
码(VERIFIED BY VISA)和MASTERCARD SECURECODE环节么?这个很麻烦,很多发卡银
行都不在之列。 |
|
|