finalshell查看连接远程linux的用户名和密码

2023-12-10 08:38

本文主要是介绍finalshell查看连接远程linux的用户名和密码,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

使用finalshell去连接linux,由于用户名和密码输入一次后,下次finalshell会替我们记住密码。接着,时间久了,密码忘了。
以mac为例,密码存放在/Users/$USER/Library/FinalShell/conn文件中,密码以密文形式保存。比如我的主机名叫"shuangyueliao.cn",查看主机对应密码,在conn目录下执行
grep -rni "shuangyueliao.cn" *
在这里插入图片描述
把密码放到下面文件中s1位置并执行,就能得到解密后的密码

pom.xml文件

		<dependency><groupId>commons-codec</groupId><artifactId>commons-codec</artifactId><version>1.15</version></dependency>

Test.java

//
// Source code recreated from a .class file by IntelliJ IDEA
// (powered by Fernflower decompiler)
//package com.shuang;import org.apache.commons.codec.digest.DigestUtils;import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.security.SecureRandom;
import java.util.Random;public class Test {
//    private static final String OO0O00OO00OOOOOO0000O0O000O0O0000OOOO00OO000OO0000OO000000O00O0O000OO00O0O000O00O0O00OOOOOO0OOO0 = "DES";public static long number = 3680984568597093857L;private static int num = 8;public static void main(String[] args) throws Exception {
//        String content = "sdsfew1tf45r1g3";
//        String s1 = encode(content);// 加密后的密码String s1 = "***********************";String s2 = decode(s1);System.out.println(s1);System.out.println(s2);}public static String decode(String data) throws IOException, Exception {if (data == null) {return null;} else {String rs = "";if (!fff(data)) {byte[] buf = ggg(data);byte[] head = new byte[num];System.arraycopy(buf, 0, head, 0, head.length);byte[] d = new byte[buf.length - head.length];System.arraycopy(buf, head.length, d, 0, d.length);byte[] bt = jjj(d, kkk(head));rs = new String(bt);}return rs;}}public static String encode(String content) throws Exception {byte[] head = aaa(num);byte[] d = bbb(content.getBytes("utf-8"), head);byte[] result = new byte[head.length + d.length];System.arraycopy(head, 0, result, 0, head.length);System.arraycopy(d, 0, result, head.length, d.length);String rs = ccc(result);return rs;}static byte[] aaa(int len) {byte[] data = new byte[len];for(int i = 0; i < len; ++i) {data[i] = (byte)(new Random()).nextInt(127);}return data;}public static byte[] bbb(byte[] data, byte[] head) throws Exception {SecureRandom sr = new SecureRandom();DESKeySpec dks = new DESKeySpec(kkk(head));SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");SecretKey securekey = keyFactory.generateSecret(dks);Cipher cipher = Cipher.getInstance("DES");cipher.init(1, securekey, sr);return cipher.doFinal(data);}public static String ccc(byte[] byteData) throws UnsupportedEncodingException {return ddd(byteData, "UTF-8");}public static String ddd(byte[] byteData, String encoding) throws UnsupportedEncodingException {if (byteData == null) {throw new IllegalArgumentException("byteData cannot be null");} else {return new String(eee(byteData), encoding);}}public static final byte[] eee(byte[] byteData) {if (byteData == null) {throw new IllegalArgumentException("byteData cannot be null");} else {byte[] byteDest = new byte[(byteData.length + 2) / 3 * 4];int iSrcIdx = 0;int iDestIdx;for(iDestIdx = 0; iSrcIdx < byteData.length - 2; iSrcIdx += 3) {byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx] >>> 2 & 63);byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx + 1] >>> 4 & 15 | byteData[iSrcIdx] << 4 & 63);byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx + 2] >>> 6 & 3 | byteData[iSrcIdx + 1] << 2 & 63);byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx + 2] & 63);}if (iSrcIdx < byteData.length) {byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx] >>> 2 & 63);if (iSrcIdx < byteData.length - 1) {byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx + 1] >>> 4 & 15 | byteData[iSrcIdx] << 4 & 63);byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx + 1] << 2 & 63);} else {byteDest[iDestIdx++] = (byte)(byteData[iSrcIdx] << 4 & 63);}}for(iSrcIdx = 0; iSrcIdx < iDestIdx; ++iSrcIdx) {if (byteDest[iSrcIdx] < 26) {byteDest[iSrcIdx] = (byte)(byteDest[iSrcIdx] + 65);} else if (byteDest[iSrcIdx] < 52) {byteDest[iSrcIdx] = (byte)(byteDest[iSrcIdx] + 97 - 26);} else if (byteDest[iSrcIdx] < 62) {byteDest[iSrcIdx] = (byte)(byteDest[iSrcIdx] + 48 - 52);} else if (byteDest[iSrcIdx] < 63) {byteDest[iSrcIdx] = 43;} else {byteDest[iSrcIdx] = 47;}}while(iSrcIdx < byteDest.length) {byteDest[iSrcIdx] = 61;++iSrcIdx;}return byteDest;}}public static boolean fff(String str) {if (str == null) {return true;} else {String s2 = str.trim();return s2.equals("");}}public static final byte[] ggg(String encoded) throws UnsupportedEncodingException {return hhh(encoded, "UTF-8");}public static final byte[] hhh(String encoded, String encoding) throws IllegalArgumentException, UnsupportedEncodingException {if (encoded == null) {throw new IllegalArgumentException("encoded cannot be null");} else {return iii(encoded.getBytes(encoding));}}public static final byte[] iii(byte[] byteData) throws IllegalArgumentException {if (byteData == null) {throw new IllegalArgumentException("byteData cannot be null");} else {byte[] byteTemp = new byte[byteData.length];int reviSrcIdx;for(reviSrcIdx = byteData.length; reviSrcIdx - 1 > 0 && byteData[reviSrcIdx - 1] == 61; --reviSrcIdx) {}if (reviSrcIdx - 1 == 0) {return null;} else {byte[] byteDest = new byte[reviSrcIdx * 3 / 4];int iSrcIdx;for(iSrcIdx = 0; iSrcIdx < reviSrcIdx; ++iSrcIdx) {if (byteData[iSrcIdx] == 43) {byteTemp[iSrcIdx] = 62;} else if (byteData[iSrcIdx] == 47) {byteTemp[iSrcIdx] = 63;} else if (byteData[iSrcIdx] < 58) {byteTemp[iSrcIdx] = (byte)(byteData[iSrcIdx] + 52 - 48);} else if (byteData[iSrcIdx] < 91) {byteTemp[iSrcIdx] = (byte)(byteData[iSrcIdx] - 65);} else if (byteData[iSrcIdx] < 123) {byteTemp[iSrcIdx] = (byte)(byteData[iSrcIdx] + 26 - 97);}}iSrcIdx = 0;int iDestIdx;for(iDestIdx = 0; iSrcIdx < reviSrcIdx && iDestIdx < byteDest.length / 3 * 3; iSrcIdx += 4) {byteDest[iDestIdx++] = (byte)(byteTemp[iSrcIdx] << 2 & 252 | byteTemp[iSrcIdx + 1] >>> 4 & 3);byteDest[iDestIdx++] = (byte)(byteTemp[iSrcIdx + 1] << 4 & 240 | byteTemp[iSrcIdx + 2] >>> 2 & 15);byteDest[iDestIdx++] = (byte)(byteTemp[iSrcIdx + 2] << 6 & 192 | byteTemp[iSrcIdx + 3] & 63);}if (iSrcIdx < reviSrcIdx) {if (iSrcIdx < reviSrcIdx - 2) {byteDest[iDestIdx++] = (byte)(byteTemp[iSrcIdx] << 2 & 252 | byteTemp[iSrcIdx + 1] >>> 4 & 3);byteDest[iDestIdx++] = (byte)(byteTemp[iSrcIdx + 1] << 4 & 240 | byteTemp[iSrcIdx + 2] >>> 2 & 15);} else {if (iSrcIdx >= reviSrcIdx - 1) {throw new IllegalArgumentException("Warning: 1 input bytes left to process. This was not Base64 input");}byteDest[iDestIdx++] = (byte)(byteTemp[iSrcIdx] << 2 & 252 | byteTemp[iSrcIdx + 1] >>> 4 & 3);}}return byteDest;}}}public static byte[] jjj(byte[] data, byte[] key) throws Exception {SecureRandom sr = new SecureRandom();DESKeySpec dks = new DESKeySpec(key);SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("DES");SecretKey securekey = keyFactory.generateSecret(dks);Cipher cipher = Cipher.getInstance("DES");cipher.init(2, securekey, sr);return cipher.doFinal(data);}static byte[] kkk(byte[] head) {long ks = number / (long)(new Random((long)head[5])).nextInt(127);Random random = new Random(ks);int t = head[0];for(int i = 0; i < t; ++i) {random.nextLong();}long n = random.nextLong();Random r2 = new Random(n);long[] ld = new long[]{(long)head[4], r2.nextLong(), (long)head[7], (long)head[3], r2.nextLong(), (long)head[1], random.nextLong(), (long)head[2]};ByteArrayOutputStream bos = new ByteArrayOutputStream();DataOutputStream dos = new DataOutputStream(bos);long[] var15 = ld;int var14 = ld.length;for(int var13 = 0; var13 < var14; ++var13) {long l = var15[var13];try {dos.writeLong(l);} catch (IOException var18) {var18.printStackTrace();}}try {dos.close();} catch (IOException var17) {var17.printStackTrace();}byte[] keyData = bos.toByteArray();keyData = DigestUtils.md5(keyData);return keyData;}
}

这篇关于finalshell查看连接远程linux的用户名和密码的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/476593

相关文章

数据库oracle用户密码过期查询及解决方案

《数据库oracle用户密码过期查询及解决方案》:本文主要介绍如何处理ORACLE数据库用户密码过期和修改密码期限的问题,包括创建用户、赋予权限、修改密码、解锁用户和设置密码期限,文中通过代码介绍... 目录前言一、创建用户、赋予权限、修改密码、解锁用户和设置期限二、查询用户密码期限和过期后的修改1.查询用

Linux使用fdisk进行磁盘的相关操作

《Linux使用fdisk进行磁盘的相关操作》fdisk命令是Linux中用于管理磁盘分区的强大文本实用程序,这篇文章主要为大家详细介绍了如何使用fdisk进行磁盘的相关操作,需要的可以了解下... 目录简介基本语法示例用法列出所有分区查看指定磁盘的区分管理指定的磁盘进入交互式模式创建一个新的分区删除一个存

Linux使用dd命令来复制和转换数据的操作方法

《Linux使用dd命令来复制和转换数据的操作方法》Linux中的dd命令是一个功能强大的数据复制和转换实用程序,它以较低级别运行,通常用于创建可启动的USB驱动器、克隆磁盘和生成随机数据等任务,本文... 目录简介功能和能力语法常用选项示例用法基础用法创建可启动www.chinasem.cn的 USB 驱动

Python如何使用seleniumwire接管Chrome查看控制台中参数

《Python如何使用seleniumwire接管Chrome查看控制台中参数》文章介绍了如何使用Python的seleniumwire库来接管Chrome浏览器,并通过控制台查看接口参数,本文给大家... 1、cmd打开控制台,启动谷歌并制定端口号,找不到文件的加环境变量chrome.exe --rem

高效管理你的Linux系统: Debian操作系统常用命令指南

《高效管理你的Linux系统:Debian操作系统常用命令指南》在Debian操作系统中,了解和掌握常用命令对于提高工作效率和系统管理至关重要,本文将详细介绍Debian的常用命令,帮助读者更好地使... Debian是一个流行的linux发行版,它以其稳定性、强大的软件包管理和丰富的社区资源而闻名。在使用

Debian如何查看系统版本? 7种轻松查看Debian版本信息的实用方法

《Debian如何查看系统版本?7种轻松查看Debian版本信息的实用方法》Debian是一个广泛使用的Linux发行版,用户有时需要查看其版本信息以进行系统管理、故障排除或兼容性检查,在Debia... 作为最受欢迎的 linux 发行版之一,Debian 的版本信息在日常使用和系统维护中起着至关重要的作

Linux Mint Xia 22.1重磅发布: 重要更新一览

《LinuxMintXia22.1重磅发布:重要更新一览》Beta版LinuxMint“Xia”22.1发布,新版本基于Ubuntu24.04,内核版本为Linux6.8,这... linux Mint 22.1「Xia」正式发布啦!这次更新带来了诸多优化和改进,进一步巩固了 Mint 在 Linux 桌面

LinuxMint怎么安装? Linux Mint22下载安装图文教程

《LinuxMint怎么安装?LinuxMint22下载安装图文教程》LinuxMint22发布以后,有很多新功能,很多朋友想要下载并安装,该怎么操作呢?下面我们就来看看详细安装指南... linux Mint 是一款基于 Ubuntu 的流行发行版,凭借其现代、精致、易于使用的特性,深受小伙伴们所喜爱。对

什么是 Linux Mint? 适合初学者体验的桌面操作系统

《什么是LinuxMint?适合初学者体验的桌面操作系统》今天带你全面了解LinuxMint,包括它的历史、功能、版本以及独特亮点,话不多说,马上开始吧... linux Mint 是一款基于 Ubuntu 和 Debian 的知名发行版,它的用户体验非常友好,深受广大 Linux 爱好者和日常用户的青睐,

Linux(Centos7)安装Mysql/Redis/MinIO方式

《Linux(Centos7)安装Mysql/Redis/MinIO方式》文章总结:介绍了如何安装MySQL和Redis,以及如何配置它们为开机自启,还详细讲解了如何安装MinIO,包括配置Syste... 目录安装mysql安装Redis安装MinIO总结安装Mysql安装Redis搜索Red