Subject: | Library Hex Editing Experiment
| Date: | Thu, 9 Mar 2023 18:28:58 -0800
| From: | Peter <peterspammenot@whiteknight.email>
| Newsgroups: | pnews.paradox-programming
|
I have attached two delivered libraries with sample data containing
employee name and ID number. Nothing else.
I'm hoping someone has time to open each with a hex editor to let me
know if they can see sensitive information. I tried but saw nothing
other than the names, but I don't know much about hacking.
Int.ldl
has a dynarray with three elements in the format
var dynint dynarray[]smallint
dynInt["Jack"] = 99
dynInt["Jill"] = 5
dynInt["Sam"] = 105
The names can be seen but can the smallint value be seen?
Str.ldl
var dynname dynarray[]string
dynName[99] = "Jack"
dynName[5] = "Jill"
dynName[105] = "Sam"
Again, the names can be seen but can the elements be seen?
str.ldl int.ldl |