找回密码
 注册
【阿里云】2核2G云新老同享 99元/年,续费同价华为云精选云产品特惠做网站就用糖果主机Jtti,新加坡服务器,美国服务器,香港服务器
查看: 2263|回复: 6

Run WHMCS 3.7.1 FREE!!! - License Bypass

[复制链接]
发表于 2008 年 11 月 9 日 13:02:59 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

×
Guys i found a solution for bupassing whmcs license!

Firstly you need to make a fake license server, this is pretty easy if you have a VPS/Dedicated and either cPanel or Plesk


Root into your server and type the following command followed by enter

vi /etc/hosts



add a new line to this file by pressing "i" and then using the keyboard arrows to enter this text on a new line (tabs between information, not spaces)
127.0.0.1    www.whmcs.com    whmcs    whmcs    whmcs.localdomain


press escape then type
:x




and hit enter to save and close the file

Now using cPanel/Plesk create a new domain whmcs.com
FTP into your server and locate the document root for this new whmcs.com domain you have created
(In plesk its /var/www/vhosts/whmcs.com/httpdocs/)

Make a new folder in here called license and then go into that folder
create a new file called index.php

open the file and insert the following text and save and close

<registeredto>Free User</registeredto>
<pid>2</pid>
<type>Monthly Lease</type>
<domain></domain>
<ip></ip>
<created>17/01/2008</created>
<expires>15/11/2050</expires>
<latestversion>3.7.1</latestversion>



Ok thats the fake license server done!

You should be able to install WHMCS now typing any old number for the license (WRITE IT DOWN THOUGH YOU NEED IT LATER)


This would work great only whmcs has a fail-safe method built in and it will notice within 7 days that it hasn't reached the genuine whmcs.com server

Open up phpmyadmin for the database that your whmcs install uses

go into the table called "tblconfiguration"

Look for a row thats called "License" and has either an empty string for value or what looks like random data.

Download and upload the following keygen.php file, somewhere and run it.
http://rapidshare.com/files/156458502/keygen.rar



Put your IP Address, your Domain where free whmcs will run and your Expired License Key from whmcs.com client area and click "Generate License String".

Place the result from this into the database into the "value" part of the table "tblconfiguration"

Save the row

Check back to whmcs, should work untill 2050

Now you have a fully functional whmcs, but there is the "Powered by WHMCompleteSolution" shit at the frontend and admin area. Just download the following file "display.php" and upload it to the root of the whmcs installation.

You are ready to go for business for FREE!!!
http://rapidshare.com/files/156460482/display.rar

Advantages:
Can use latest whmcs (checked this method using 3.7.1)
Don't have to wait for latest version to be nulled so can update to fix bugs if you can find the unnulled versions (usually available pretty quick)
Unmodified whmcs! no chance of any nasty code added

Disadvantages
lots of work
root access required


Good luck!!
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
 楼主| 发表于 2008 年 11 月 9 日 13:03:57 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价

附件

附件
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

 楼主| 发表于 2008 年 11 月 9 日 13:09:18 | 显示全部楼层

信息

<?php
function xencrypt ($ckey, $string)
{
$string = base64_encode ($string);
$keys = array ();
$c_key = base64_encode (sha1 (md5 ($ckey)));
$c_key = substr ($c_key, 0, round (ord ($ckey[0]) / 5));
$c2_key = base64_encode (md5 (sha1 ($ckey)));
$last = strlen ($ckey) - 1;
$c2_key = substr ($c2_key, 1, round (ord ($ckey[$last]) / 7));
$c3_key = base64_encode (sha1 (md5 ($c_key) . md5 ($c2_key)));
$mid = round ($last / 2);
$c3_key = substr ($c3_key, 1, round (ord ($ckey[$mid]) / 9));
$c_key = $c_key . $c2_key . $c3_key;
$c_key = base64_encode ($c_key);
$i = 0;
while ($i < strlen ($c_key))
{
$keys[] = $c_key[$i];
++$i;
}

$i = 0;
while ($i < strlen ($string))
{
$id = $i % count ($keys);
$ord = ord ($string[$i]);
($ord = $ord OR ord ($keys[$id]));
++$id;
($ord = $ord AND ord ($keys[$id]));
++$id;
$ord = $ord XOR ord ($keys[$id]);
++$id;
$ord = $ord + ord ($keys[$id]);
$string[$i] = chr ($ord);
++$i;
}

return base64_encode ($string);
}



if(!isset($_POST['license'])){
echo "<form method=\"POST\">";
echo "Enter domain whmcs is installed on: <input name=\"domain\"> e.g. support.yourdomain.com (NO http://, trailing slash or folders!!)<br />";
echo "Enter IP whmcs is installed on: <input name=\"ip\"> e.g. 123.456.789.012<br />";
echo "Enter License whmcs was installed with: <input name=\"license\"> e.g. 123.456.789.012<br />";
echo "<input type=\"submit\" value=\"Generate License String\" />";
echo "</form>";
}else{
echo xencrypt(md5 (substr ($_POST['$license'], 2, 5) . 'keudjslq15'),"active||||20501009||".$_POST['domain'].",www.".$_POST['domain']."||".$_POST['ip']."||");
}

?>
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2008 年 12 月 1 日 12:59:00 | 显示全部楼层
早在国外的论坛上弄到了
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2009 年 3 月 13 日 12:08:25 | 显示全部楼层
我顶
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2009 年 3 月 13 日 18:11:33 | 显示全部楼层
看不懂 路过
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

发表于 2012 年 7 月 23 日 21:09:04 | 显示全部楼层
【腾讯云】2核2G云服务器新老同享 99元/年,续费同价
很好!非常好!
Jgwy.Com - Free Web Hosting Guide & Directory In China since 2001! Jgwy.Net-Jglt.Net
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

Archiver|手机版|小黑屋|金光论坛

GMT+8, 2024 年 11 月 17 日 02:32 , Processed in 0.020520 second(s), 20 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表