WordPress still insecure by design

Some major WordPress design flaws have led to widespread attacks on our and your servers. The only hope is reasonably long and strong passwords or WordPress security plugins. The first flaw. By default WordPress have enabled “feature”, when you visit your blog with author query string appended, it nicely reveals your usernames. For example, if …

If your source code is a trade secret, then make sure that employees and management knows that too…

When management tries to save money, and there are no formal policies and procedures, then don’t get surprised when data leaks occur… Ungrounded Lightning shares the following story at Slashdot. Reminds me of story about a graphics chip company I’ll leave the company name out (mostly to protect my source B-) ) This was in …

How to save / receive jpg image or any binary data in C# Web Api 2

Searched all through the web for a simple way to save / receive binary data or image file using Web Api 2. Solutions range from very complex to complex: using JSON (30% overhead?) BSON (looks nice, but not widely supported – bsonspec.org) Multipart MIME (why multi-part, if we have only one file?) Complex Web Api …