Creating string of hashes from PVOID variable #1489
Unanswered
Airick73
asked this question in
Questions / Answers
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I was trying to find a way to create a string of hashes from a PVOID variable in a for loop. For reference I have the following code
resultTempList->Items[i]
is a PVOID*jsonString
is a PHH_STRING.Inside the
MDCBuildJsonArray
function I want to retrieve the hash fromresultTempList->Items[i]
and concatenate it tojsonString
. Note I am able to successfully retrieve the hash with the following method.My problem is finding a good function within Process Hacker that successfully concatenate a string. I've tried the functions such as
PPH_STRING PhConcatStrings2( _In_ PWSTR String1, _In_ PWSTR String2 )
andPPH_STRING PhConcatStringRef2( _In_ PPH_STRINGREF String1, _In_ PPH_STRINGREF String2 )
but they seem to lead to errors which lead to no where for me such as Ntdll.dll. If anyone has experience with concatenating strings from different objects within Process Hacker and can share insight I would greatly appreciate it.Beta Was this translation helpful? Give feedback.
All reactions