这是什么编码格式?
我正在尝试编辑一种(稍微)专有格式,并且在其中一个文件中它将对连接字符串进行编码。
我有办法用它来编码我自己的数据,所以我可以对它进行一些逆向工程。
ABC123"/3
将编码为
rijcmlqXxEeLA4tSspHg5XfWJiq4w==
并
AB120";2
编码为
rijcmlqiF3LjnFJnYfEi2WvcSoPSg==
这是已知的编码格式吗?我尝试过 Base64,但没有产生任何有用的东西。
I'm trying to edit a (slightly) proprietary format and within one of the files it will encode a connection string.
I have a way to encode my own data with it, so I can reverse engineer it a bit.
ABC123"/3
will encode to
rijcmlqXxEeLA4tSspHg5XfWJiq4w==
and
AB120";2
encodes to
rijcmlqiF3LjnFJnYfEi2WvcSoPSg==
Is this a known encoding format? I've tried Base64 and it didn't produce anything useful.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
可能是加密后是 Base64。许多应用程序都会对其连接字符串进行加密。
Probably encryption followed by Base64. Many apps encrypt their connection strings.
编写一个将两者转换为二进制的程序。以这种方式扫描相似之处。
在 ascii 中不可能看到不完全是 8 位的模式。
Write a program that converts both to binary. Scan for similarities that way.
It will be impossible to see patterns that are not exactly 8 bits in ascii.