Ramblings of a Coder's Mind

Engineering × AI × Scale

K

Tag: security

Posts tagged with security

Managing multiple signatures for git repositories

Github explains pretty well how to sign commits. You can make it automatic by globally setting commit.gpgsign = true by using git config --global commit.gpgsign true What if you have different signatures for your personal ID and your work ID? First, you create multiple signatures. It is important that the...

Read on →

Fixing broken Social logins on your browser

Privacy vs Convienience is a constant battle. Personally, I prefer dialing up my privacy up to 11 to avoid being tracked. Every once in a while, social logins are important because it’s the only way to use a service. If this service is an internal company login that only uses...

Read on →

Modern Operating Systems Phoning Home

It seriously irks me when general public operating systems build in default features that send data to their servers without clearly indicating so. Both Microsoft (with Windows 10) and Apple (with Yosemite) have done so. Disabling these features doesn’t take long so here’s what you need to do. Windows 10...

Read on →

Forced HTTPs on your website with CloudFlare

I’m a supporter of the HTTPS everywhere movement by the EFF. They advocate users use (all) websites with HTTPS for extra security. This means everyone should probably fork out a few dollars to get their own certificates. Unless you’re buying a domain at NameCheap (in which case they tend to...

Read on →

Fix for Chrome redirecting to URL when opening a new tab

I was helping a friend fix his hacked site when I had to disable ESET to check where his injected code was (because the website ran an img iframe hack to download a trojan on the user’s machines). I found the issue and told him what to do but had...

Read on →

UAC = false;

So finally I got bugged with UAC enough to switch it off a few weeks back. Not all of it though. Just the module for approval from an admin and the elevation without prompting. Here is how you can do it. Click Start > Type “local” and enter (to open...

Read on →

The Undeletables

I had to reinstall vista once and so vista copied its already existing files into Windows.old like any other decent OS does. This was of course a move to help me keep the data I already had in C drive at that time. Now that my work with it was...

Read on →