How to log in to administrator account on any Windows PC Image Tutorial
avatar

PeregrineX shows on Imgur how to log in to administrator account of any Windows PC

A very clever way to gain Administrator access if you have physical access to a machine.

Source: How to log in to administrator account on any Windows PC Image Tutorial

Posted in Hacks | Leave a comment

How to Hack a Computer Using Just An Image
avatar

Stegosploit: Hack a Computer Using Just An Image

This is just another example of how dangerous the internet can be no matter what precautions you take.

Source: How to Hack a Computer Using Just An Image

Posted in News | Leave a comment

11 pointless but awesome Linux terminal tricks
avatar

Here are some great Linux terminal tips and tricks, each one as pointless as it is awesome.

Source: 11 pointless but awesome Linux terminal tricks

Posted in News | Leave a comment

Re-enable Disabled Select Boxes
avatar

You can run the following javascript code in the url bar on a page to enable you to change pull-down boxes which are disabled.

javascript: var oInputs = new Array();oInputs = document.getElementsByTagName( ‘select’ );for ( i = 0; i < oInputs.length; i++ ){ if ( oInputs[i].disabled == true ) { oInputs[i].disabled =false; }}alert(‘done’);

When the code finishes you will then be able to change any select boxes on the page which had been disabled.  When the code finishes to run a done alert will pop-up.

Posted in Hacks | Leave a comment

Multiple windows in Vim
avatar

Using multiple windows in VIM can make things a lot easier and it really isn’t hard to do.  To split the screen just do the following command:

:split <filename>

:vsplit <filename>

If you would like to switch between the windows you can use ctrl+w then use the arrow keys or ctrl+w again to just switch to the next window.  Follow the source link for some more advanced things you can do with the windows.

Source: vim tips and tricks: multiple windows

Posted in Linux | Leave a comment