What are the answers to these questions?NicTheQuick wrote: Mon Feb 03, 2025 6:12 pm Why do you need these values in the first place? What is the reason to even look at these numbers or memory locations?
If you allow a user to input a memory location and your program does something with it, then that sounds like a good indicator for crashes and security problems.
#PB_Any object result values after PB 6.20
-
- Addict
- Posts: 4777
- Joined: Thu Jun 07, 2007 3:25 pm
- Location: Berlin, Germany
Re: #PB_Any object result values after PB 6.20
Re: #PB_Any object result values after PB 6.20
I read about /dynamicbase:no Fred, and it seems that's all we need, in favour of allocating low memory over the randomisation in high memory.
We happened to try PB 6.20 Beta 1 64-bit with /dynamicbase:no inserted at the start of the code and it gives us the same range as PB 6.00. There appears to be no need for /HIGHENTROPYVA:no as we certainly don't want to store a 64-bit address in a 32-bit.
Code: Select all
... Client
... 36914048
... 36901120
Code: Select all
Import "/dynamicbase:no"
EndImport
Import "/HIGHENTROPYVA:no"
EndImport
- NicTheQuick
- Addict
- Posts: 1504
- Joined: Sun Jun 22, 2003 7:43 pm
- Location: Germany, Saarbrücken
- Contact:
Re: #PB_Any object result values after PB 6.20
Can you please explain why this is so important for you? It still makes no sense to me.
The english grammar is freeware, you can use it freely - But it's not Open Source, i.e. you can not change it or publish it in altered way.