DbgGPT
1.0.0

DBGGPT adalah plugin X64DBG sumber terbuka.
Saya ingin mengkode plugin untuk x64dbg. Saya ingin itu sederhana. Saya menggabungkannya dengan chatgpt .. itu tidak memiliki banyak tujuan tetapi jika Anda menggabungkannya dengan plugin salju itu akan bagus. seperti gepetto.
cmake -B build64 -A x64
cmake --build build64 --config Release
Ada beberapa hal yang perlu Anda perhatikan dalam proyek. Jika area yang dipilih besar, chatgpt tidak akan merespons, untuk ini Anda perlu meningkatkan nilai MAX_TOKENS .
const auto OPENAI_KEY = " OPENAI_API_KEY " ; // https://platform.openai.com/account/api-keys
const json openaiRequest = {
{ " model " , " gpt-3.5-turbo " },
{ " messages " , json::array ({{{ " role " , " user " },
{ " content " , openaiRequestContent}}})},
{ " max_tokens " , 300 }, // If the selected area is large, ChatGPT will not respond, for this you need to increase the MAX_TOKENS value.
{ " temperature " , 0 }};