posted in C, Coders corner, Tools & sources on Nov 6th, 2012
Tool name : ProtectLocalData Description : ProtectLocalData is a tool to encode/encrypt data you want to save on a Windows system. It is based on the CryptProtectData/CryptUnprotectData methods which dont’t require a secret password to protect the sensitive data. The pseudo password Windows uses to encrypt the data is based on the users logon [...]
read full post »
posted in C, Coders corner on Nov 1st, 2012
Source name iePass Author – Written in C Description Internet Explorer saves the auto completion login data (URL, Username, Password) in the current users Registry hive. But before it is saved Internet Explorer encrypts the data by calling CryptProtectData(). iePass.cpp is a simple and straightforward tool to [...]
read full post »
posted in C, Coders corner on Oct 26th, 2012
Source name chromePass Author – Written in C Description Google Chrome saves the auto completion login data (URL, Username, Password) in a local SQLite data base. But before it gets there Google Chrome encrypts and encodes the data. chromePass.cpp is a simple and straightforward tool to [...]
read full post »
posted in C, Coders corner on Oct 21st, 2012
Source name firePass Author – Written in C Description Firefox saves the auto completion login data (URL, Username, Password) in a local SQLite data base. But before it gets there Firefox encrypts and encodes the data. firePass.cpp is a simple and straightforward tool to extract and recover [...]
read full post »
posted in C#, Coders corner on Sep 8th, 2012
Letting processes communicate on Windows can be done on several ways. By sending Windows messages, opening network connections via sockets or via Named Pipes. Here a minimalistic example of a Named Pipe Client and also its counter part, the server. With this example code only one client can connect to the server. If you want [...]
read full post »