This tag is used for topics relating to application security and attacks against software. If your question is not about a specific programming problem, please consider asking it at security.stackexchange.com instead.

learn more… | top users | synonyms (3)

2
votes
1answer
50 views
+100

HTML5 Cross-document messaging: can Malicious code sniff messages between domainA.com and domainB.com?

According to 10.4 Cross-document messaging: domainA.com can send messages to domainB.com using cross-document messaging in the way that prevents cross-site scripting attack when origin and data ...
16
votes
2answers
321 views
+50

Run executable from php without spawning a shell

I need to call an executable from an imposed context of a PHP script. Both performance and security wise it's better not to call a shell at all between web server process and executable. Of course I ...