TC官方合作论坛

标题: 现在有人无聊做打码的没有啊 [打印本页]

作者: 未来战狼    时间: 2015-5-3 15:40
标题: 现在有人无聊做打码的没有啊
那个网站打码好呢  或者有没有弄好的打码软件啊 参考学习下

作者: qw362534335    时间: 2015-5-3 20:16
个人感觉 打码兔 和 联众打码 比较不错
作者: 君笨笨    时间: 2015-5-3 22:31
  1. //打码账号,密码,图片地址,图片类型
  2. function 打码兔(user,password,imgVcode,VcodeType)
  3.     code=""
  4.     if(help.regdll("rc:Dama2.dll",true))
  5.         Dama2 = com("Dama2Ctrl")
  6.         Dama2.SoftwareID = "8bbb99499051b46d0a02a5f08da09b23"
  7.         result = Dama2.D2File2(user, password, imgVcode,30,VcodeType)
  8.         var rstr
  9.         isok = str.split(result,  ",", rstr)
  10.         if (isok)
  11.             ID=rstr[0]
  12.             Vcode=rstr[1]
  13.             if(str.strleng(Vcode)==4)
  14.                //9宫格验证码转换
  15.                 if(VcodeType==108)
  16.                     code=打码.RepJiuGongGeNum(Vcode)
  17.                 else
  18.                     code=Vcode
  19.                 endif
  20.             else
  21.                 //如果答案不正确,请调用下面的报错函数,返还用户题分
  22.                 Dama2.ReportResult(ID, 0)
  23.                 code="验证码错误"
  24.             endif   
  25.         else  
  26.             code="验证码错误"
  27.         endif
  28.         Dama2.Uninit()
  29.     else
  30.         code="插件注册失败"
  31.     endif  
  32.     return code
  33. endfunction


  34. //替换九宫格验证码
  35. function RepJiuGongGeNum(Vcode)
  36.     if(Vcode=="NULL")
  37.         return "NULL"
  38.     else
  39.         num1=str.strsub(Vcode,0,1)
  40.         num2=str.strsub(Vcode,1,2)
  41.         num3=str.strsub(Vcode,2,3)
  42.         num4=str.strsub(Vcode,3,4)  
  43.         arrNum=array[10]
  44.         arrNum[0]="0"
  45.         arrNum[1]="00000000"
  46.         arrNum[2]="00010000"
  47.         arrNum[3]="00020000"
  48.         arrNum[4]="00000001"
  49.         arrNum[5]="00010001"
  50.         arrNum[6]="00020001"
  51.         arrNum[7]="00000002"
  52.         arrNum[8]="00010002"
  53.         arrNum[9]="00020002"
  54.         num=arrNum[num1]&arrNum[num2]&arrNum[num3]&arrNum[num4]
  55.         return num
  56.     endif
  57. endfunction
复制代码
以前的4.3的打码兔代码。自己可以修改用用




欢迎光临 TC官方合作论坛 (http://bbs.52tc.co/) Powered by Discuz! X3.1