Do security consultants routinely demonstrate hacking into attendees’ PCs within minutes?

From this Quora answer:

Years ago when I was in China I was getting updated on cyber security
from one of our partnerships.

We were going over everything from basic hacks a 9 year old could do
to more sophisticat… Continue reading Do security consultants routinely demonstrate hacking into attendees’ PCs within minutes?

Are most Linux systems that allow non-root users to execute code straightforwardly rootable?

long story short if you can execute code on a box it is usually straightforward to get root

(quote source)

The immediate implication of this quote (if it’s accurate) is that if you’re running a multi-user system and don’t try your da… Continue reading Are most Linux systems that allow non-root users to execute code straightforwardly rootable?

Should untrusted strings be sanitized server-side if they’re inserted into the document body through document.createTextNode?

Chat webapp. Clients (that is, web browsers) send messages to the server, which the server broadcasts to all connected clients. Client-side code looks like this:

let p = document.createElement(‘p’)
p.appendChild(document.cre… Continue reading Should untrusted strings be sanitized server-side if they’re inserted into the document body through document.createTextNode?

Is there any way to estimate the safety of arbitrary binaries, which are usually released with unofficial patches?

Frequent scenario:

An old game is released on GOG / Steam.
It proves to be incompatible with new Windows systems. (Crashes, game breaking bugs, fps of 0.5 and the likes)
An unofficial patch is released by the fanbase, eithe… Continue reading Is there any way to estimate the safety of arbitrary binaries, which are usually released with unofficial patches?

Is it inherently insecure to fetch HTML and JS content from server and attach it to an existing HTML node (while executing all scripts)?

Two ways to develop a web app: Either the “classical” way, completely reloading the page with each request, or the “API” way, that is make the server only send JSON data and make the client fetch it by AJAX and rebuild the pa… Continue reading Is it inherently insecure to fetch HTML and JS content from server and attach it to an existing HTML node (while executing all scripts)?