编译时字符串加密

时间:2011-09-01 12:44:40

标签: c++ encryption macros reverse-engineering

我不希望逆向工程师在我的应用程序中读取硬编码字符串的纯文本。对此的简单解决方案是使用简单的XOR-Encryption。问题是我需要一个转换器,在我的应用程序中它看起来像这样:

//Before (unsecure)
char * cString = "Helllo Stackoverflow!";
//After (secure)
char * cString = XStr( 0x06, 0x15, 0x9D, 0xD5FBF3CC, 0xCDCD83F7, 0xD1C7C4C3, 0xC6DCCEDE, 0xCBC2C0C7, 0x90000000 ).c();

是否有可能通过使用像

这样的构造来维护干净的代码
//Before (unsecure)
char * cString = "Helllo Stackoverflow!";
//After (secure)
char * cString = CRYPT("Helllo Stackoverflow!");

它也适用于很长的字符串(1000个字符?:-))。提前谢谢

8 个答案:

答案 0 :(得分:11)

确实存在完美的解决方案,就在这里。

我也认为这是不可能的,即使它非常简单,人们编写的解决方案需要一个自定义工具来扫描构建的文件,然后扫描字符串并加密字符串,这不是很糟糕,但我想要一个从Visual Studio编译的包,现在可以了!

您需要的是C++ 11(开箱即用的Visual Studio 2015 Update 1)

这个新命令constexpr

会发生魔力

魔术发生在#define

#define XorString( String ) ( CXorString<ConstructIndexList<sizeof( String ) - 1>::Result>( String ).decrypt() )

它在编译时不会在运行时解密XorString,但它只会在编译时加密字符串,因此字符串不会出现在可执行文件中

printf(XorString( "this string is hidden!" ));

它将打印出"this string is hidden!",但您无法在可执行文件中找到它作为字符串!,请使用Microsoft Sysinternals Strings程序下载链接自行检查:https://technet.microsoft.com/en-us/sysinternals/strings.aspx

完整的源代码非常大,但可以很容易地包含在一个头文件中。但也非常随机,所以加密的字符串输出将始终改变每个新的编译,种子根据编译时间而改变,非常可靠,完美的解决方案。

创建名为XorString.h

的文件
#pragma once

//-------------------------------------------------------------//
// "Malware related compile-time hacks with C++11" by LeFF   //
// You can use this code however you like, I just don't really //
// give a shit, but if you feel some respect for me, please //
// don't cut off this comment when copy-pasting... ;-)       //
//-------------------------------------------------------------//

////////////////////////////////////////////////////////////////////
template <int X> struct EnsureCompileTime {
    enum : int {
        Value = X
    };
};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
//Use Compile-Time as seed
#define Seed ((__TIME__[7] - '0') * 1  + (__TIME__[6] - '0') * 10  + \
              (__TIME__[4] - '0') * 60   + (__TIME__[3] - '0') * 600 + \
              (__TIME__[1] - '0') * 3600 + (__TIME__[0] - '0') * 36000)
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
constexpr int LinearCongruentGenerator(int Rounds) {
    return 1013904223 + 1664525 * ((Rounds> 0) ? LinearCongruentGenerator(Rounds - 1) : Seed & 0xFFFFFFFF);
}
#define Random() EnsureCompileTime<LinearCongruentGenerator(10)>::Value //10 Rounds
#define RandomNumber(Min, Max) (Min + (Random() % (Max - Min + 1)))
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
template <int... Pack> struct IndexList {};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
template <typename IndexList, int Right> struct Append;
template <int... Left, int Right> struct Append<IndexList<Left...>, Right> {
    typedef IndexList<Left..., Right> Result;
};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
template <int N> struct ConstructIndexList {
    typedef typename Append<typename ConstructIndexList<N - 1>::Result, N - 1>::Result Result;
};
template <> struct ConstructIndexList<0> {
    typedef IndexList<> Result;
};
////////////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////////
const char XORKEY = static_cast<char>(RandomNumber(0, 0xFF));
constexpr char EncryptCharacter(const char Character, int Index) {
    return Character ^ (XORKEY + Index);
}

template <typename IndexList> class CXorString;
template <int... Index> class CXorString<IndexList<Index...> > {
private:
    char Value[sizeof...(Index) + 1];
public:
    constexpr CXorString(const char* const String)
    : Value{ EncryptCharacter(String[Index], Index)... } {}

    char* decrypt() {
        for(int t = 0; t < sizeof...(Index); t++) {
            Value[t] = Value[t] ^ (XORKEY + t);
        }
        Value[sizeof...(Index)] = '\0';
        return Value;
    }

    char* get() {
        return Value;
    }
};
#define XorS(X, String) CXorString<ConstructIndexList<sizeof(String)-1>::Result> X(String)
#define XorString( String ) ( CXorString<ConstructIndexList<sizeof( String ) - 1>::Result>( String ).decrypt() )
////////////////////////////////////////////////////////////////////

答案 1 :(得分:6)

我的首选解决方案:

// some header
extern char const* const MyString;

// some generated source
char const* const MyString = "aioghaiogeubeisbnuvs";

然后使用您最喜欢的脚本语言生成这个存储“加密”资源的源文件。

答案 2 :(得分:4)

This blog为C ++中的编译时字符串散列提供了解决方案。我猜原理是一样的。不幸的是,你必须为每个字符串长度创建一个Makro。

答案 3 :(得分:2)

这是一个迟到的答案,但我确信有更好的解决方案。

请参阅接受的答案here

基本上,它显示了如何使用ADVobfuscator lib来混淆字符串,如下所示:

#include "MetaString.h"

using namespace std;
using namespace andrivet::ADVobfuscator;

void Example()
{
    /* Example 1 */

    // here, the string is compiled in an obfuscated form, and
    // it's only deobfuscated at runtime, at the very moment of its use
    cout << OBFUSCATED("Now you see me") << endl;

    /* Example 2 */

    // here, we store the obfuscated string into an object to
    // deobfuscate whenever we need to
    auto narrator = DEF_OBFUSCATED("Tyler Durden");

    // note: although the function is named `decrypt()`, it's still deobfuscation
    cout << narrator.decrypt() << endl;
}

答案 4 :(得分:1)

我认为你必须做一些像使用gettext(i18n)时所做的事情:

  • 像你的CRYPT一样使用宏。
  • 使用一个解析器,它会在找到CRYPT时加密字符串。
  • 编写一个解密的函数,由宏调用。

对于gettext,使用_()宏来生成i18ned字符串dictionnary并调用gettext函数。

顺便说一下,你还要管理i18n :),你需要这样的东西:

_CRYPT_()
_CRYPT_I18N_()

您必须使用构建系统对其进行管理,以使其可维护。我用gettext做到了......

我的2美分

答案 5 :(得分:1)

如果您愿意使用C ++ 11功能,可以使用可变参数模板对可变长度字符串进行编译时加密,例如this

另请参阅this,您可能会对此进行更好的解释。

答案 6 :(得分:1)

如果人们对简单的字符串加密感兴趣。我编写了一个代码示例,描述了使用MACRO进行字符串自解密和标记。提供外部加密代码来修补二进制文件(因此在程序编译后字符串会被加密)。字符串在内存中一次解密一次。

http://www.sevagas.com/?String-encryption-using-macro-and

这不会阻止调试器的反向器最终找到字符串,但它会阻止字符串列出可执行文件和内存转储。

答案 7 :(得分:0)

我无法编译,编译器抛出无数错误,我正在寻找快速字符串加密的其他解决方案并找到关于这个小玩具https://www.stringencrypt.com(并不难,谷歌的字符串加密关键字的第一个结果)。

这是它的工作原理:

  1. 您输入标签名称,例如sString
  2. 您输入字符串内容
  3. 您点击加密
  4. 它需要字符串并对其进行加密
  5. 它使用C ++生成解密源代码(支持许多其他语言)
  6. 您将此代码段粘贴到代码中
  7. 示例字符串“StackOverflow很棒!”,输出代码(每次生成略有不同的代码)。它支持ANSI(char)和UNICODE(wchar_t)类型字符串

    ANSI输出:

    // encrypted with https://www.stringencrypt.com (v1.1.0) [C/C++]
    // sString = "StackOverflow is awesome!"
    unsigned char sString[26] = { 0xE3, 0x84, 0x2D, 0x08, 0xDF, 0x6E, 0x0B, 0x87,
                                  0x51, 0xCF, 0xA2, 0x07, 0xDE, 0xCF, 0xBF, 0x73,
                                  0x1C, 0xFC, 0xA7, 0x32, 0x7D, 0x64, 0xCE, 0xBD,
                                  0x25, 0xD8 };
    
    for (unsigned int bIFLw = 0, YivfL = 0; bIFLw < 26; bIFLw++)
    {
            YivfL = sString[bIFLw];
            YivfL -= bIFLw;
            YivfL = ~YivfL;
            YivfL = (((YivfL & 0xFF) >> 7) | (YivfL << 1)) & 0xFF;
            YivfL ++;
            YivfL ^= 0x67;
            YivfL = (((YivfL & 0xFF) >> 6) | (YivfL << 2)) & 0xFF;
            YivfL += bIFLw;
            YivfL += 0x0F;
            YivfL = ((YivfL << 4) | ( (YivfL & 0xFF) >> 4)) & 0xFF;
            YivfL ^= 0xDA;
            YivfL += bIFLw;
            YivfL ++;
            sString[bIFLw] = YivfL;
    }
    
    printf(sString);
    

    UNICODE输出:

    // encrypted with https://www.stringencrypt.com (v1.1.0) [C/C++]
    // sString = "StackOverflow is awesome!"
    wchar_t sString[26] = { 0x13A6, 0xA326, 0x9AA6, 0x5AA5, 0xEBA7, 0x9EA7, 0x6F27, 0x55A6,
                            0xEB24, 0xD624, 0x9824, 0x58A3, 0x19A5, 0xBD25, 0x62A5, 0x56A4,
                            0xFC2A, 0xC9AA, 0x93AA, 0x49A9, 0xDFAB, 0x9EAB, 0x9CAB, 0x45AA,
                            0x23CE, 0x614F };
    
    for (unsigned int JCBjr = 0, XNEPI = 0; JCBjr < 26; JCBjr++)
    {
            XNEPI = sString[JCBjr];
            XNEPI -= 0x5D75;
            XNEPI = (((XNEPI & 0xFFFF) >> 14) | (XNEPI << 2)) & 0xFFFF;
            XNEPI = ~XNEPI;
            XNEPI -= 0xA6E5;
            XNEPI ^= JCBjr;
            XNEPI = (((XNEPI & 0xFFFF) >> 10) | (XNEPI << 6)) & 0xFFFF;
            XNEPI --;
            XNEPI ^= 0x9536;
            XNEPI += JCBjr;
            XNEPI = ((XNEPI << 1) | ( (XNEPI & 0xFFFF) >> 15)) & 0xFFFF;
            sString[JCBjr] = XNEPI;
    }
    
    wprintf(sString);
    

    现在我知道它可能不是完美的解决方案,但它适用于我和我的编译器。