Save a vi file that requires root
avatar

I hate it when I try to save a file only to find I didn’t edit it as root.  This is how you can save it anyway.

http://www.cyberciti.biz/faq/vim-vi-text-editor-save-file-without-root-permission/

Posted in News | Leave a comment

See the Contents of Password Fields Easily
avatar

When you go to a site that shows a password field, have you ever wondered what was behind those stars?  Instead of viewing source and finding that spot in the code you can easily run this piece of javascript in the url bar of Chrome and Firefox

javascript: var oInputs = new Array();oInputs = document.getElementsByTagName( ‘input’ );for ( i = 0; i < oInputs.length; i++ ){     if ( oInputs[i].type == ‘password’ )    { oInputs[i].type =’text’; }}alert(‘done’);

Just make sure the javascript word is there (chrome seems to automatically remove it).  When you run this it will change the password fields to clear text and then notify you that it finished.

Posted in Hacks | Leave a comment

How To Patch and Protect Linux Server Against the VENOM Vulnerability
avatar

http://www.cyberciti.biz/faq/cve-2015-3456-patch-venom-on-debian-ubuntu-fedora-centos-rhel-linux/

Posted in Linux | Leave a comment

Authentication Fix
avatar

I new version of Harptabs.com Mobile for android has been released.  This version contains fixes for authentication on bars android device as well as some misc other bug fixes.

Posted in Harptabs.com Mobile App, News, Our Apps | Leave a comment

Multiplexing Tutorial
avatar

Nice tutorial on how to setup multiplexing, http://www.cyberciti.biz/faq/linux-unix-osx-bsd-ssh-multiplexing-to-speed-up-ssh-connections/

Posted in Linux | Leave a comment