5.21 Beta Available (5.22 Release version)

Listing issues addressed in Beta version 5.21

Moderator: Barb@Invincea

Barb@Invincea
Sandboxie Support
Sandboxie Support
Posts: 2337
Joined: Mon Nov 07, 2016 3:10 pm

5.21 Beta Available (5.22 Release version)

Post by Barb@Invincea » Wed Jul 26, 2017 5:02 pm

Combined 32/64 installer:
http://www.sandboxie.com/SandboxieInstall.exe

Separate:
http://www.sandboxie.com/SandboxieInstall32.exe
http://www.sandboxie.com/SandboxieInstall64.exe


Full list of changes added to 5.22
https://www.sandboxie.com/VersionChanges#v_5.22

------------------------------------------------------------------------------------------------------------------------------------------------------------
Changes in 5.21.7 -- Release Candidate
1) Added full Support for Windows 10 Creator's Fall Update (and Windows 10 Fast Ring 17017).
2) Fixed an issue causing Windows Explorer to become non-responsive for 5+ minutes in Windows Fall Creator's update
3) Created a template to address "SBIE2101" issues caused by Windows Defender "App & Browser Control" in Windows 8.1 and 10. This needs to be added manually by right-clicking on your Sandbox ---> Sandbox Settings --> Applications ---> Miscellaneous ---> Windows SmartScreen [The template will be added automatically in future versions of Sandboxie].
------------------------------------------------------------------------------------------------------------------------------------------------------------
Changes in 5.21.6 (5.21.5 was skipped).
1)Fixed a leak introduced in Fast Ring 1709 / Windows 10 Creator's Fall Update (1709)
2) Improved ForceFolder functionality to allow Registry files to run in Sandboxie [viewtopic.php?p=130420#p130420]
3) Made further improvements to ForceFolder including adding support for "Open With" .
4) Improved proxy fixes previously addressed in beta 5.21.4
------------------------------------------------------------------------------------------------------------------------------------------------------------
Changes in 5.21.4 (5.21.3 was skipped).
1) Fixed an issue in which Sandboxed Internet Explorer proxy settings would modify the registry on the host [viewtopic.php?p=129638#p129638]
2) Fixed Save/Recovery issues for Adobe/MS Office [viewtopic.php?p=129386#p129386]
3) Added support and templates for AVG and BitDefender
4) Updated Babylon's template to improve functionality

------------------------------------------------------------------------------------------------------------------------------------------------------------
Changes in 5.21.2 (Yes, we skipped 5.21.1 [It was created, tested internally, then updated to 5.21.2]).
1) Fixed licensing issues causing MS Office applications to crash after 5 minutes [viewtopic.php?f=11&t=24350]
2) Fixed Powerpoint issue preventing it from opening files [viewtopic.php?f=11&t=24286]
3) Fixed Firefox Drag-Drop issues [viewtopic.php?f=11&t=24469]
4) Added support for Windows 10 Fast Ring v16241
5) Updated Opera templates for direct access to bookmarks and profile.

123456
Posts: 15
Joined: Thu Jan 06, 2011 11:24 am

Re: 5.21 Beta Available

Post by 123456 » Thu Jul 27, 2017 5:21 am


Anocs
Posts: 2
Joined: Thu Nov 10, 2016 5:51 am

Re: 5.21 Beta Available

Post by Anocs » Thu Jul 27, 2017 5:50 am

Anyone can me explain the problem of different results of "GetVersionEx" function (https://msdn.microsoft.com/en-us/librar ... s.85).aspx) in vanilla W10 and Sandboxie:

Result in vanilla W10:

Code: Select all

MajorVersion: 6
MinorVersion: 2
BuildNumber : 9200
PlatformId  : 2
Result in Sandboxie in W10:

Code: Select all

MajorVersion: 10
MinorVersion: 0
BuildNumber : 15063
PlatformId  : 2

Code: Select all

#include "stdafx.h"
#include "windows.h""
#include "stdio.h"

int main()
{
	OSVERSIONINFO osvi;
	BOOL bIsWindowsXPorLater;

	ZeroMemory(&osvi, sizeof(OSVERSIONINFO));
	osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);

	GetVersionEx(&osvi);

	printf("MajorVersion: %d\n", osvi.dwMajorVersion);
	printf("MinorVersion: %d\n", osvi.dwMinorVersion);
	printf("BuildNumber : %d\n", osvi.dwBuildNumber);
	printf("PlatformId  : %d\n", osvi.dwPlatformId);

	return 0;
}

henryg
Posts: 520
Joined: Wed Nov 22, 2006 9:38 am

Re: 5.21 Beta Available

Post by henryg » Thu Jul 27, 2017 11:04 am

Any chance of stopping installs overwriting the locations for HostInjectDll & HostInjectDll64 in the templates.ini file? I assume this one will do the same.
Henry

Barb@Invincea
Sandboxie Support
Sandboxie Support
Posts: 2337
Joined: Mon Nov 07, 2016 3:10 pm

Re: 5.21 Beta Available

Post by Barb@Invincea » Thu Jul 27, 2017 11:50 am

123456,

The fixes are listed in the post.
The other 2 threads were updated before, please see them for further information.
----------------------------- X ----------------------------------------
Anocs,

Per the devs:
Your app is not properly manifested for Windows 10 so Windows just returns Windows 8 - as mentioned in the API docs.
Sandboxie ignores that fact and returns the actual OS info.
----------------------------- X ----------------------------------------
henryg,

How are you saving your templates? Are you putting them in your Sandboxie.ini file?
If so, they should stay there as long as you select to keep your configuration (or if you just overwrite the current installation).

Regards,
Barb.-

APMichael
Posts: 152
Joined: Sun Sep 07, 2014 5:54 am
Location: Germany

Re: 5.21 Beta Available

Post by APMichael » Thu Jul 27, 2017 12:12 pm

I think henryg refers to:
viewtopic.php?f=2&t=23015&p=122309#p122303
viewtopic.php?f=17&t=22168&p=123620#p123627
The installer overwrites the Templates.ini file and therefore the corrected paths get overwritten too.
An Expandable Variable for the installation path would be nice! Or is there another possibility of changing these two paths?

Barb@Invincea
Sandboxie Support
Sandboxie Support
Posts: 2337
Joined: Mon Nov 07, 2016 3:10 pm

Re: 5.21 Beta Available

Post by Barb@Invincea » Thu Jul 27, 2017 1:06 pm

Hello APMichael,

Please see viewtopic.php?f=4&t=5418

Regards,
Barb.-

bo.elam
Sandboxie Guru
Sandboxie Guru
Posts: 2809
Joined: Wed Apr 22, 2009 9:17 pm

Re: 5.21 Beta Available

Post by bo.elam » Thu Jul 27, 2017 1:58 pm

Hi Barb, all programs seem to be working well for me under Sandboxie in W7 32 bits and W10 64 bits (1703). :)

Bo

CHEF-KOCH
Posts: 1
Joined: Thu Jul 27, 2017 10:28 pm

Re: 5.21 Beta Available

Post by CHEF-KOCH » Thu Jul 27, 2017 10:44 pm

https://www.talosintelligence.com/repor ... -2016-0256, CVE-2016-9038. I quickly tested a POC which crashes the entire driver, I guess this seems to be urgent but it seems not a read threat cause after that the entire system becomes unstable (windows 10 x64 1607).

Barb@Invincea
Sandboxie Support
Sandboxie Support
Posts: 2337
Joined: Mon Nov 07, 2016 3:10 pm

Re: 5.21 Beta Available

Post by Barb@Invincea » Fri Jul 28, 2017 11:47 am

Hello CHEF-KOCH,

Regarding the vulnerability:
This exploit cannot be run within an isolated environment, and cannot be exploited without already being outside of the protection of the isolated environment.
So, if you run your apps Sandboxed, it is highly unlikely that you wold be affected by it.

For Sandboxie, this issue was addressed and fixed on May 2017.

Here's the official response/fix for Dell Protected Workspace users:
https://dellprotectedworkspace.com/support/talos.html

Regards,
Barb.-

henryg
Posts: 520
Joined: Wed Nov 22, 2006 9:38 am

Re: 5.21 Beta Available

Post by henryg » Mon Jul 31, 2017 9:30 am

The latest beta seems slow when using Firefox 55 x64, so I 've gone back to 5.20. That also feels slow by comparison to non-sandboxed version but maybe a bit better than 5.21-2. Can't provide proff/timings.
Henry

Barb@Invincea
Sandboxie Support
Sandboxie Support
Posts: 2337
Joined: Mon Nov 07, 2016 3:10 pm

Re: 5.21 Beta Available

Post by Barb@Invincea » Mon Jul 31, 2017 11:16 am

Hi henryg ,

Be sure to empty the contents of your Sandbox or create a new one with default settings and re-try Firefox.
If needed, use a new Firefox profile to see if that alleviates the issue.

If the issue is not beta related (if it is, provide the info here instead), please start a new thread providing the required info so that we can test it:
viewtopic.php?f=11&t=19746

Regards,
Barb.-

henryg
Posts: 520
Joined: Wed Nov 22, 2006 9:38 am

Re: 5.21 Beta Available

Post by henryg » Tue Aug 01, 2017 10:03 am

Barb@Invincea wrote:
Thu Jul 27, 2017 11:50 am
How are you saving your templates? Are you putting them in your Sandboxie.ini file?
If so, they should stay there as long as you select to keep your configuration (or if you just overwrite the current installation).
Regards,
Barb.-
This is the templates.ini file that resides in the Sandboxie install directory; and which in my case is not in the default location.

To get Office 365 to run sandboxed, per topic/s round here somewhere, it is necessary to edit the templates.ini file manually to change the install folder to the correct location, in my case to

HostInjectDll=c:\Program Files\UTILS\Sandboxie\SboxHostDll.dll
HostInjectDll64=c:\Program Files\UTILS\Sandboxie\SboxHostDll.dll

but when I install or update the program it overwrites the ini file. It's not the biggest issue in the world, but why can't Sandbox work out for itself where it is installed eg from the Registry.
Henry

henryg
Posts: 520
Joined: Wed Nov 22, 2006 9:38 am

Re: 5.21 Beta Available

Post by henryg » Tue Aug 01, 2017 10:05 am

Barb@Invincea wrote:
Mon Jul 31, 2017 11:16 am
Hi henryg ,

Be sure to empty the contents of your Sandbox or create a new one with default settings and re-try Firefox.
If needed, use a new Firefox profile to see if that alleviates the issue.

If the issue is not beta related (if it is, provide the info here instead), please start a new thread providing the required info so that we can test it:
viewtopic.php?f=11&t=19746

Regards,
Barb.-
My sandboxes are ram based, so clear on reboot; and I tried a new profile and install. Don't have the time to play with this, and no other comments so perhaps it is specific to my setup.
Henry

henryg
Posts: 520
Joined: Wed Nov 22, 2006 9:38 am

Re: 5.21 Beta Available

Post by henryg » Fri Aug 04, 2017 2:35 pm

henryg wrote:
Mon Jul 31, 2017 9:30 am
The latest beta seems slow when using Firefox 55 x64, so I 've gone back to 5.20. That also feels slow by comparison to non-sandboxed version but maybe a bit better than 5.21-2. Can't provide proff/timings.
OK mea culpa time. After A LOT more testing/messing around, inc a full reinstall of Firefox and all addons (oh, the pain!) the problem was the Engadget (uk) website :cry: :cry: :cry:

Ther must still be some sort of Firefox issue as Chrome handles it better (did I mention that I also installed Chrome and replicated so far as possible my Firefox addons). But at least I know I still prefer Firefox.

I haven't even got around to adding Sandboxie (beta or otherwise) into the mix, as it became clear when I installed Chrome (outside of Sandboxie) that something else was up.

At least I have a squeaky clean install of Firefox with fewer addons!!

MERGED POST
henryg wrote:
Thu Jul 27, 2017 11:04 am
Any chance of stopping installs overwriting the locations for HostInjectDll & HostInjectDll64 in the templates.ini file? I assume this one will do the same.
Thanks to Syrinx for sorting this out for me :D
Henry

Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests