Page 1 of 1

Deletion

Posted: Tue Jul 30, 2013 8:05 pm
by Unc3nZureD
Is it possible to delete files from the virtual enviroment? Simple deletion isn't working of course :)

Re: Deletion

Posted: Wed Jul 31, 2013 5:32 pm
by newuser
Havent seen this feature yet, why not just scramble the file(write 1 and 0... or something else) when you dont need it anymore.

Just tested, I write one word, and it overwrite the entire file, in memory.

Re: Deletion

Posted: Wed Jul 31, 2013 6:00 pm
by Unc3nZureD
How could you do it? Will simple fopen / fwrite work? Or any other method?

Re: Deletion

Posted: Wed Jul 31, 2013 6:29 pm
by newuser
Even the method below also work.

Two virtual files.

Virtual file A is data.
Virtual file B is scramble.

Overwrite virtual file A with virtual file B, confirm work too.

The first method(my first post), I'm using a compiled vbscript exe file, it work in virtual mode too after wrapping it with the virtual file using EVB.

The second method(this post), I'm using a macro language compiled exe file, since this macro language can only append file(dont have write line function), I use its copy file function, it work in virtual mode too, after wrapping the exe and the two virtual files A and B with EVB.

EVB is a good product(my only concern is the gameguard problem...).
With EVB, a little imagination is needed.

Re: Deletion

Posted: Thu Aug 01, 2013 12:22 am
by newuser
So which method did you use in the end? :?:

Re: Deletion

Posted: Thu Aug 01, 2013 8:11 am
by Enigma
newuser wrote:So which method did you use in the end? :?:
Perfect method by the way, topic starter may use it. So do not try to delete the file, just overwrite it.

Re: Deletion

Posted: Thu Aug 01, 2013 11:42 am
by Unc3nZureD
Thanks, awesome idea :) Since it was undeletable, I thought I can't even change it :D

I tried and replacing it with some random data works perfectly! (fwrite)