ubuntu2022.04安装SecureCRT9.3
官网下载 SecureCRT 9.3.2:https://www.vandyke.com/cgi-bin/account_login.php?pid=scrt_ubuntu2264_deb_932
安装:
1
sudo dpkg -i scrt-9.3.2-2978.ubuntu22-64.x86_64.deb
创建
securecrt_linux_crack.pl
文件:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28#!/usr/bin/perl
use strict;
use warnings;
use File::Copy qw(move);
sub license {
print "\n".
"License:\n\n".
"\tName:\t\tygeR\n".
"\tCompany:\tTEAM ZWT\n".
"\tSerial Number:\t03-69-167482\n".
"\tLicense Key:\tACM9SP KG5KUX E276JS N3NEMG ACM2M3 Q9FSC4 116U6V GDEPA2\n".
"\tIssue Date:\t04-24-2023\n\n\n";
}
sub usage {
print "\n".
"help:\n\n".
"\tperl securecrt_forgeek_crack.pl <file>\n\n\n".
"\tperl securecrt_forgeek_crack.pl /usr/bin/SecureCRT\n\n\n".
"\n";
&license;
exit;
}
&usage() if ! defined $ARGV[0] ;my $file = $ARGV[0];
open FP, $file or die “can not open file $!”;
binmode FP;open TMPFP, ‘>’, ‘/tmp/.securecrt.tmp’ or die “can not open file $!”;
my $buffer;
my $unpack_data;
my $crack = 0;while(read(FP, $buffer, 1024)) {
$unpack_data = unpack(‘H*’, $buffer);
if ($unpack_data =~ m/785782391ad0b9169f17415dd35f002790175204e3aa65ea10cff20818/) {
$crack = 1;
last;
}
if ($unpack_data =~ s/6e533e406a45f0b6372f3ea10717000c7120127cd915cef8ed1a3f2c5b/785782391ad0b9169f17415dd35f002790175204e3aa65ea10cff20818/ ){
$buffer = pack(‘H*’, $unpack_data);
$crack = 2;
}
syswrite(TMPFP, $buffer, length($buffer));
}close(FP);
close(TMPFP);if ($crack == 1) {
unlink ‘/tmp/.securecrt.tmp’ or die “can not delete files $!”;
print “It has been cracked\n”;
&license;
exit 1;
} elsif ($crack == 2) {
move ‘/tmp/.securecrt.tmp’, $file or die ‘Insufficient privileges, please switch the root account.’;
chmod 0755, $file or die ‘Insufficient privileges, please switch the root account.’;
print “crack successful\n”;
&license;
} else {
die ‘error’;
}1
2
3
4
5
6
7
8
4. 破解:
```sh
sudo chmod +x securecrt_linux_crack.pl
cp /usr/bin/SecureCRT /tmp/ # 拷贝SecureCRT到/tmp
./securecrt_linux_crack.pl /tmp/SecureCRT # 开始破解,如果破解成功,会提示 crack successful 并输出license信息
cp /tmp/SecureCRT /usr/bin/ # 将破解后的SecureCRT覆盖原SecureCRT启动 SecureCRT 并输入 license,如果不成功,则随便百度一个 SecureCRT9.3.2 的 license 填上就行,如果百度搜不到,就用 windows 系统生成一个,因为 license 是通用的。