Finalshell Offline Activation Pro or Premium

Original link: https://blog.lipux.cn/archives/351.html

foreword

finalshell is a remote connection tool. I think this software is still very good. The interface at least looks comfortable and does not make people feel that this is something from the ancient times. However, some functions need to be paid to use, but as a freelancer, Free to prostitute.

202282016710.png

activation method

FinalShell Premium Edition Offline Activation (Java Edition)

But because I don’t know Java and I don’t have a Java environment, it’s quite troublesome to do it.
Here I found another php version.

PHP version activation algorithm

 <?php if(!empty($_POST['k'])){ if($_POST['s'] == 1){ $a = '激活码为:'.strtolower(substr(md5('2356'.$_POST['k'].'13593'),8,16)); } if($_POST['s'] == 0){ $a = '激活码为:'.strtolower(substr(md5('61305'.$_POST['k'].'8552'),8,16)); } } ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>激活码计算-molure.cn</title> </head> <body> <form action="#" method="post"> <input type="text" name="k" id="k"> <input type="radio" name="s" id="s" value="1">专业版<input type="radio" name="s" id="s" value="0">高级版<input type="submit" value="提交"> </form> <?php echo $a ?> </body> </html>

The activation step is the same as the Java method, except that the algorithm for generating the activation code is executed by PHP.
This version is even more convenient. If your environment is built by a pagoda, then we can directly drop the php file on the server to run, and then access this URL.

This article is reproduced from: https://blog.lipux.cn/archives/351.html
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment