首页
社区
课程
招聘
[讨论]New Protection - CopyMinder
发表于: 2006-6-3 16:21 4636

[讨论]New Protection - CopyMinder

2006-6-3 16:21
4636
新的加密软件
New Protection - CopyMinder

官方网站 : http://www.copyminder.com
给大家研究


[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)

收藏
免费 0
支持
分享
最新回复 (7)
雪    币: 817
活跃值: (1927)
能力值: ( LV12,RANK:2670 )
在线值:
发帖
回帖
粉丝
2
2006-6-3 17:18
0
雪    币: 200
活跃值: (10)
能力值: ( LV2,RANK:10 )
在线值:
发帖
回帖
粉丝
3
I shall not understand. And somebody has direct reference to uploading of the program or it was broken open yet?
2006-6-3 17:22
0
雪    币: 817
活跃值: (1927)
能力值: ( LV12,RANK:2670 )
在线值:
发帖
回帖
粉丝
4
我没有卡,下载不了,从网页源码中提取的合法卡识别验证代码:

function begin()
  {
  var t=0;

  for (var i = 0; i < document.PaymentForm.CardCu.length; i++)
    if (document.PaymentForm.CardCu.options[i].value=="CMR")
      t=i;
  document.PaymentForm.CardCu.options[t].selected=true;
}

function ValidCard(CreditCard){
// Valid Input Syntax:
// Type1: **************** (16 columns)
// Type2: **** **** **** **** (19)
// Type3: ****-****-****-**** (19)
// Input is a credit card number in the form of a string.
// Validates numbers which use a "double-add-double MOD 10"
// check digit Output is False if not valid, True if valid.

var Validity = false;       // Assume invalid card
var LN = CreditCard.length;	 // Get input value length

  if ((16 <= LN) && (LN <= 19)){
    LN --;
    CheckSum = 0;	// start with 0 checksum
    Dbl = false;	// Start with a non-doubling

    //------------------------------------------------------------
    //	Beginning backward loop through string
    //-------------------------------------------------------------

    for (Idx = LN; Idx >= 0; Idx --){
	Digit = CreditCard.substr(Idx, 1);	  // Isolate character
	if (("0" <= Digit && Digit <= "9")
             || Digit == " " || Digit == "-"){
	    if (Digit != " " && Digit != "-"){ // Skip connector
		Digit -= "0";	  // Remove ASCII bias
		if (Dbl){		  // If in the "double-add" phase
		    Digit += Digit; // Then double first
		    if (Digit > 9){ // Cast nines
			Digit -= 9;
		    }
		}
		Dbl = !Dbl; // Flip doubling flag
		CheckSum += Digit;  // Add to running sum
		if (CheckSum > 9){  // Cast tens
		    CheckSum -= 10; // Same as MOD 10, but faster
		}
	    }
	} else {
	    return(Validity);	// Invalid
	}
    }
    Validity = (CheckSum == 0) ? true : false; // Must sum to 0
  }
  return(Validity);
}


function check(){
    if (document.PaymentForm.cardtype.value=="NONE") alert("You must select a card type"); else
//    if (document.PaymentForm.expire2.value=="02" && (document.details.expire1.value=="01" ||
//        document.PaymentForm.expire1.value=="02")) alert("You must enter a valid expiry date"); else
    if (document.PaymentForm.cardname.value=="") alert("You must enter a name"); else
    if (document.PaymentForm.SecurityCode.value=="") alert("You must enter the Security Code"); else
    if (document.PaymentForm.cardno.value=="") alert("You must enter a card number"); else
    if (!ValidCard(document.PaymentForm.cardno.value)) alert("Invalid card number"); else
    document.PaymentForm.submit();
}

function ExpandTxt(In) {
  if (In == 1) {
    document.getElementById('txt1').style.display = '';
    document.getElementById('txt2').style.display = 'none';
    document.getElementById('txt3').style.display = 'none';
  }
  if (In == 2) {
    document.getElementById('txt1').style.display = 'none';
    document.getElementById('txt2').style.display = '';
    document.getElementById('txt3').style.display = 'none';
  }
  if (In == 3) {
    document.getElementById('txt1').style.display = 'none';
    document.getElementById('txt2').style.display = 'none';
    document.getElementById('txt3').style.display = '';
  }
}
2006-6-3 17:33
0
雪    币: 372
活跃值: (31)
能力值: ( LV12,RANK:410 )
在线值:
发帖
回帖
粉丝
5
老K果然是老K,强。。。
2006-6-3 17:35
0
雪    币: 223
活跃值: (70)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
6
这个看说明好像是建立网络验证的东西,老k给个可用的id,网页看不懂
2006-6-3 17:37
0
雪    币: 817
活跃值: (1927)
能力值: ( LV12,RANK:2670 )
在线值:
发帖
回帖
粉丝
7
最初由 aki 发布
这个看说明好像是建立网络验证的东西,老k给个可用的id,网页看不懂


我也没有ID,那个与其说是网页代码,不如说是借用Delphi的语言而写成的XXXX...
2006-6-3 17:53
0
雪    币: 223
活跃值: (70)
能力值: ( LV6,RANK:90 )
在线值:
发帖
回帖
粉丝
8
最初由 KuNgBiM 发布
我也没有ID,那个与其说是网页代码,不如说是借用Delphi的语言而写成的XXXX...

晕了,看样子应该是能从那个网页上编出个id的,网页我不认识 ,不如你编个注册机出来,呵呵
2006-6-3 17:59
0
游客
登录 | 注册 方可回帖
返回
//