Archive for the ‘Tools’ Category

Mikrotik Winbox Saved Password Recovery

No Comments »

Forget your Mikrotik winbox saved password?
No need to worry, Download this and recover your saved passwords Mikrotik Winbox Password Tool

Please give your feedback.
&
Enjoy


Increase the SMS limit in Android (100 SMS per hour to unlimited)

No Comments »

 

Make sure you got rooted phone.

  • Install Android SDK (for basic command line tools, such as ADB)
  • Add Android tools to the PATH
  • Turned on USB debugging on Phone
  •  Connect with USB Cable, USB Drivers must be installed (with SDK etc)

Open Command Terminal and enter the following:

adb shell
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system

adb shell
sqlite3 /data/data/com.android.providers.settings/databases/settings.db

Then you’ll see:

sqlite>

Then enter the following to alter the limit

INSERT INTO gservices (name, value) VALUES('sms_outgoing_check_max_count', 101);

(change 101 to your new limit)

I didnt try altering the limit so I hope it works for you guys.. but I can confirm this next one works. It completely turns off the limit altogether.

To turn off the limit enter:

INSERT INTO gservices (name, value) VALUES('sms_outgoing_check_interval_ms', 0);

Growl Notifications for MSOutlook (Any Version)

8 Comments »

Growl is very good tool for local and remote notifications, we can compare it with libnotify in Linux plus growl is already available on multiple platforms, So now I want to use it with Microsoft Outlook to notify me when new email arrives, but unfortunately there is no Add-on available for growl after Outlook 2007 onwards, so I did the work for myself, basically it is too simple to write a procedure in VBA for Office (Macros) but the only drawback is that you need to allow macros (security involved) OR sign it with Digital Certificate (money involved) Read the rest of this entry »


Mirror of the Google Libraries API CDN

No Comments »

 

A subset mirror of the Google Libraries API CDN meant to be served from your local development machine when internet access is lacking. This will increase your overall browsing experience. (for sites like wordpress, Blogspot, Google products etc)

Read the rest of this entry »


How To Download a RPM Package Using yum Command Without Installing On Linux

No Comments »

If you ever wanted to download the rpm package instead of installing it with yum ! you can do that with ease, that is useful when you want to keep backup of some RPMs or want to see what’s inside RPM etc.
Read the rest of this entry »


Security problem in PuTTY SSH client fixed

1 Comment »

 

In previous versions of PuTTY, 0.59, 0.60 and 0.61, the password used to log on to an SSH2 server was retained in memory.
The password was then retrievable by other programs that could read the memory, or could be found in swap files and crash dumps.
The update also fixes non-security-related errors including correcting the rendering of underlines and VT100 line-drawing characters, removing a spurious GSSAPI authentication message, restoring saved sessions, and closing a leak of file mapping handles when authentication failed.

Details of the changes are in the release notes. Pre-built binaries and source code for the MIT-licensed PuTTY are available to download.