Enterprise Cyber Security United States Market Top Key Players –Venustech , Westone , H3C …

OpenPR is clearly structured and remains true to its principle of confining itself to the essential parts.

OpenPR has proven to be a very good and reliable partner to our media agency:

Within the shortest time the releases are online and go down well with the media representatives.

The success of OpenPR is reflected in the steadily increasing number of press releases.

It is good that OpenPR exists!

Ursula Koslik,Director Marketing & PR, F+W Hamburg

Related:

  • No Related Posts

Escaping double quotes in bootstrap.properties and securityUtility…

This is actually a report of a horrible inconsistency that caused me quite some pain!

With wlp-webProfile7-16.0.0.4 on Mac (OS X El Capitan), I tried to define a system property in the `bootstrap.properties` as follows:

key=”test”

The double quotes were meant to be part of the value associated to the system property `key`.
By printing out the system properties of my webapp, I realized that the double quotes were gone!

Then I tried to escape them using the usual Java syntax:

key=”test”

but this didn’t solve the problem. Both, backslash and double quotes were ignored!

For some reason, I tried also the following:

property=””test””

and that finally worked even though I couldn’t find any trace in the documentation!

Done? Not quite! After that, I tried to encode something containing double quotes with `securityUtility`. Specifically, I tried the following:

./securityUtility encode –encoding=xor test
{xor}KzosKw==
./securityUtility encode –encoding=xor “test”
{xor}KzosKw==
./securityUtility encode –encoding=xor “”test””
{xor}KzosKw==

Mmmm…that is very interesting! It seems that double quotes are completely ignored by `securityUtility`.

So how do we escape double quotes in order to encode them?

./securityUtility encode –encoding=xor “test”
{xor}fSs6LCt9

That is very consistent!

Now, unless Liberty’s goal is to drive developers crazy, could you please, **at least**, document this?

Related: