求那个啥visa卡号的卡号和ccv2啥的

(泰国代购一柔子)
(泰国代购一柔子)
第三方登录:(泰国代购一柔子)
(泰国代购一柔子)
第三方登录:信用卡知多少 信用卡卡号的生成规则-宜人贷问答
信用卡知多少 信用卡卡号的生成规则
问题分类:
请输入验证码
卡号不能定制吧,卡号的有编号规则,而且都是系统随机生成的。不过有的银行像建行是可以提出不希望尾号出现什么数字,然后只能保证不出现某些数字,像出现什么尾号是不可选的。
回答者:g***8 |
  若是招行信用卡,遗失、被窃或遭他人占有时,持卡人应即时办理挂失。信用卡挂失后的盗用风险由银行承担,挂失前48小时内的非凭密码消费按指定规则享受失卡保障。若卡片因未及时挂失产生的风险将由客户本人承担。挂失请拨打信用卡客户服务热线选择“2#”转客服专员处理。  目前以下渠道可以查询信用卡卡号,供您参考:
1.您回忆一下有没有通过第三方渠道绑定过信用卡,可以尝试通过绑定平台查询一下;
2.若您的家人帮您还过款,可以通过转出方网上银行查询一下是否有记录;
3.卡主本人通过当地招行柜台尝试查询;
4.如果卡片找不到了,建议您办理挂失补卡(工本费60元)。
回答者:x***0 |
很抱歉,虽然不知道你要这个是干嘛的,不过确实帮不了你...像上面所说的,国家有规定的,信用卡是属于个人用的,不能把卡片的资料告知他人,否则产生的所有风险都需要客户本人承担的...虽然你现在只是要一个过期的卡号,但是通过这个卡号依然是可以查询客户资料的...而且CCV2更是不能随便告知,在外国或者是登录外国的网站CCV2就等于密码了....
回答者:g***9 |
本文实例讲述了JavaScript随机生成信用卡卡号的方法。分享给大家供大家参考。具体分析如下:
这段JS代码根据信用卡卡号产生规则随机生成信用卡卡号,是可以通过验证的,仅供学习参考,请不要用于非法用途,否则后果自负。
var visaPrefixList = new Array(
var mastercardPrefixList = new Array(
var amexPrefixList = new Array(
var discoverPrefixList = new Array("6011");
var dinersPrefixList = new Array(
var enRoutePrefixList = new Array(
var jcbPrefixList = new Array(
var voyagerPrefixList = new Array("8699");
function strrev(str) {
if (!str) return '';
var revstr='';
for (i = str.length-1; i&=0; i--)
revstr+=str.charAt(i)
'prefix' is the start of the CC number as a string,
any number of digits.
'length' is the length of the CC number to generate.
Typically 13 or 16
function completed_number(prefix, length) {
var ccnumber =
// generate digits
while ( ccnumber.length & (length - 1) ) {
ccnumber += Math.floor(Math.random()*10);
// reverse number and convert to int
var reversedCCnumberString = strrev( ccnumber );
var reversedCCnumber = new Array();
for ( var i=0; i & reversedCCnumberString. i++ ) {
reversedCCnumber[i] = parseInt(reversedCCnumberString.charAt(i));
// calculate sum
var sum = 0;
var pos = 0;
while ( pos & length - 1 ) {
odd = reversedCCnumber[ pos ] * 2;
if ( odd & 9 ) {
if ( pos != (length - 2) ) {
sum += reversedCCnumber[ pos +1 ];
// calculate check digit
var checkdigit = ((Math.floor(sum/10)+1)*10-sum)%10;
ccnumber +=
function credit_card_number(prefixList, length, howMany) {
var result = new Array();
for (var i = 0; i & howM i++) {
var randomArrayIndex = Math.floor(Math.random() *
prefixList.length);
var ccnumber = prefixList[ randomArrayIndex ];
result.push( completed_number(ccnumber, length) );
调用方法:
将上面的代码保存为gencc.js文件
&script src="gencc.js" type="text/javascript"&&/script&
&h3&VISA:&/h3&
var visa = credit_card_number(visaPrefixList, 16, 3);
document.write( visa );
&h3&Amex:&/h3&
var amex = credit_card_number(amexPrefixList, 15, 3);
document.write( amex );
希望本文所述对大家的javascript程序设计有所帮助。
回答者:g***4 |
本文实例讲述了PHP随机生成信用卡卡号的方法。分享给大家供大家参考。具体分析如下:
这段PHP代码根据信用卡卡号产生规则随机生成信用卡卡号,是可以通过验证的,仅供学习参考,请不要用于非法用途,否则后果自负。
PHP credit card number generator
Copyright (C) 2006 Graham King graham@darkcoding
This prog you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software F either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
alo if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA , USA.
$visaPrefixList[] = "4539";
$visaPrefixList[] = "4556";
$visaPrefixList[] = "4916";
$visaPrefixList[] = "4532";
$visaPrefixList[] = "4929";
$visaPrefixList[] = "";
$visaPrefixList[] = "4485";
$visaPrefixList[] = "4716";
$visaPrefixList[] = "4";
$mastercardPrefixList[] = "51";
$mastercardPrefixList[] = "52";
$mastercardPrefixList[] = "53";
$mastercardPrefixList[] = "54";
$mastercardPrefixList[] = "55";
$amexPrefixList[] = "34";
$amexPrefixList[] = "37";
$discoverPrefixList[] = "6011";
$dinersPrefixList[] = "300";
$dinersPrefixList[] = "301";
$dinersPrefixList[] = "302";
$dinersPrefixList[] = "303";
$dinersPrefixList[] = "36";
$dinersPrefixList[] = "38";
$enRoutePrefixList[] = "2014";
$enRoutePrefixList[] = "2149";
$jcbPrefixList[] = "35";
$voyagerPrefixList[] = "8699";
'prefix' is the start of the CC number as a string, any number of digits.
'length' is the length of the CC number to generate. Typically 13 or 16
function completed_number($prefix, $length) {
$ccnumber = $
# generate digits
while ( strlen($ccnumber) & ($length - 1) ) {
$ccnumber .= rand(0,9);
# Calculate sum
$reversedCCnumber = strrev( $ccnumber );
while ( $pos & $length - 1 ) {
$odd = $reversedCCnumber[ $pos ] * 2;
if ( $odd & 9 ) {
$odd -= 9;
if ( $pos != ($length - 2) ) {
$sum += $reversedCCnumber[ $pos +1 ];
$pos += 2;
# Calculate check digit
$checkdigit = (( floor($sum/10) + 1) * 10 - $sum) % 10;
$ccnumber .= $
function credit_card_number($prefixList, $length, $howMany) {
for ($i = 0; $i & $howM $i++) {
$ccnumber = $prefixList[ array_rand($prefixList) ];
$result[] = completed_number($ccnumber, $length);
function output($title, $numbers) {
$result[] = "&div&";
$result[] = "&h3&$title&/h3&";
$result[] = implode('&br /&', $numbers);
$result[]= '&/div&';
return implode('&br /&', $result);
echo "&div&";
$mastercard = credit_card_number($mastercardPrefixList, 16, 10);
echo output("Mastercard", $mastercard);
$visa16 = credit_card_number($visaPrefixList, 16, 10);
echo output("VISA 16 digit", $visa16);
echo "&/div&";
echo "&div&";
$visa13 = credit_card_number($visaPrefixList, 13, 5);
echo output("VISA 13 digit", $visa13);
$amex = credit_card_number($amexPrefixList, 15, 5);
echo output("American Express", $amex);
echo "&/div&";
# Minor cards
echo "&div&";
$discover = credit_card_number($discoverPrefixList, 16, 3);
echo output("Discover", $discover);
$diners = credit_card_number($dinersPrefixList, 14, 3);
echo output("Diners Club", $diners);
echo "&/div&";
echo "&div&";
$enRoute = credit_card_number($enRoutePrefixList, 15, 3);
echo output("enRoute", $enRoute);
$jcb = credit_card_number($jcbPrefixList, 16, 3);
echo output("JCB", $jcb);
echo "&/div&";
echo "&div&";
$voyager = credit_card_number($voyagerPrefixList, 15, 3);
echo output("Voyager", $voyager);
echo "&/div&";
希望本文所述对大家的php程序设计有所帮助。
回答者:g***6 |
您目前处于未登录状态求一个有效信用卡号,有visa的 。谢谢咯。 。_百度知道
求一个有效信用卡号,有visa的 。谢谢咯。 。
我有更好的答案
.,但是通过这个卡号依然是可以查询客户资料的...,否则产生的所有风险都需要客户本人承担的很抱歉,虽然不知道你要这个是干嘛的,不过确实帮不了你..,在外国或者是登录外国的网站CCV2就等于密码了.虽然你现在只是要一个过期的卡号..而且CCV2更是不能随便告知.像上面所说的,国家有规定的,信用卡是属于个人用的,不能把卡片的资料告知他人
采纳率:11%
为您推荐:
其他类似问题
您可能关注的内容
visa的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。亚马逊的AWS到底要闹哪样?VISA信用卡无法通过验证!
16:05:57 +08:00 · 9576 次点击
想要搞个EC2来支撑项目,结果发现招行VISA卡竟然无法用于支付,这是神马回事.求大神指教,VPS是真心懒得用了,太不稳定了.
26 回复 &| &直到
08:00:00 +08:00
& & 16:08:13 +08:00
开境外支付了吗?卡号、姓名、CVV 输入是否正确?
& & 16:11:15 +08:00
@ 境外支付是神马玩意?第一次听说.我这个卡可以用在paypal上支付美元账单......
EC2的邮件是这样提示我的
We received an error while confirming the payment method associated with your Amazon Web Services account.
& & 16:17:04 +08:00 via iPad
当vps已然不稳定,你需要国内\外独服
& & 16:20:43 +08:00
@ 直接打客服电话问问吧。
& & 16:30:18 +08:00
用招行VISA卡在AWS开过免费一年,完全木有问题。。。
& & 17:40:30 +08:00
求QQ,求指教.折腾了一天了.文明用语.
@
& & 17:44:24 +08:00
信用卡信息这块怎么填,填中文吗?填中文好像要乱码.
& & 17:49:26 +08:00
@ 当然填英文,按照你卡面上的名字填。
& & 18:04:14 +08:00
@ 问题是我中英文都填过了.真心跪了...老是发那个验证未通过的邮件过来.
& & 18:17:22 +08:00 via Android
招行的卡如果是运通的话. 有个四位的码 不是三位的.
& & 18:19:26 +08:00
For Billing or Account inquiries
问问是什么情况
& & 18:20:53 +08:00
@ 我的卡是招行的VISA双币卡,,,不是运通.
& & 18:22:09 +08:00
可惜不能发图啊,我发一段邮件内容吧.
Greetings from Amazon Web Services,
We received an error while confirming the payment method associated with your Amazon Web Services account.
To use some Amazon Web Services, you must provide a valid payment method. Please update your payment method information using the Your Web Services Account section of the AWS web site:
& & 19:00:09 +08:00
我看了一下,好像是这条?
& & 19:00:26 +08:00
* Amazon is not set up to accept the CVV2 security code associated with credit cards. Your bank may be able to temporarily lift this requirement.
如何解决?
& & 19:24:25 +08:00
@ 意思就是 CVV2 不对。
& & 19:25:13 +08:00
@ 后半句的意思是建议你联系银行查证。
& & 19:30:08 +08:00
@ 突然想起来 Amazon 上信用卡支付是不用 CVV2 的。所以这句话应该是说 “亚马逊不使用 CVV2 来授权交易,你可以联系银行来取消这一限制。”
& & 08:38:59 +08:00
@ 联系了招行的客服,然后我再去重新发起请求的时候,通过了....我神马都没改....
& & & 08:44:09 +08:00
发帖子的时候请不要乱选节点!
这类和发布作品无关的主题请不要发布到
& & 10:10:10 +08:00
@ 不好意思,没注意到.
& & 11:11:45 +08:00
办理双币信用卡,带境外 维萨 万事达 就全球通啦
& & 12:41:57 +08:00 via iPhone
上次我申请,然后好像一个老外客服人工电话来验证信息,我听不懂就挂了…然后就帐号好像就进黑名单了还是啥…
& & 14:06:54 +08:00
@ 哥,电脑合成语言的....只需要输入屏幕上显示的数字就可以了,话说我当时也懵了...
& & 17:10:30 +08:00
@ 我还是分的清机器人和人工的。。机器人语音我已经验证通过。。后来打来的确实是人工。。。
& & 18:11:49 +08:00
联系了招行的客服,然后我再去重新发起请求的时候,通过了....我神马都没改....
你是怎么跟客服说的。。 我跟他说了半天还是没解决问题....
& · & 1100 人在线 & 最高记录 3541 & · &
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.0 · 57ms · UTC 17:31 · PVG 01:31 · LAX 10:31 · JFK 13:31? Do have faith in what you're doing.}

我要回帖

更多关于 visa卡号和安全码大全 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信