Search found 3 matches

by ddlmaster
Tue Sep 18, 2018 7:29 pm
Forum: Technical questions
Topic: section names issue
Replies: 0
Views: 9880

section names issue

hi, ive now got the script working to randomize vmp section names however see below;

Image

is there not a way to have protected code in their original section .text / .data etc? this is quite alarming in certain scenarios.

thanks.
by ddlmaster
Tue Sep 18, 2018 7:27 pm
Forum: Technical questions
Topic: vmp3 randomize or hide section names
Replies: 3
Views: 6396

Re: vmp3 randomize or hide section names

thankyou.
by ddlmaster
Mon Sep 17, 2018 6:21 pm
Forum: Technical questions
Topic: vmp3 randomize or hide section names
Replies: 3
Views: 6396

vmp3 randomize or hide section names

hi, ive tried a script i had for 2.x but doesnt work, i see in 3 its changed to lua but this doesn't work either; function GetRandomSectionName() local res = "" for i = 1, 8 do res = res .. string.char(32 + math.random(string.byte("z") - 32)) end return res end function OnAfterSa...