If you are seeing a error on your desktop bottom right corner saying “The copy of Windows is not genuine” then that means either you are using the OS
Source: How to fix Window is Not Genuine error | Tech & Filmmaking
If you are seeing a error on your desktop bottom right corner saying “The copy of Windows is not genuine” then that means either you are using the OS
Source: How to fix Window is Not Genuine error | Tech & Filmmaking
If you are like me you used two factory authentication everywhere that you can. This is a nice tutorial on how to added it to your ssh authentication.
https://www.howtoforge.com/tutorial/secure-ssh-with-google-authenticator-on-centos-7/
This is a good list of software to practice Hacking with
https://www.dionach.com/blog/review-of-purposefully-vulnerable-applications-to-practice-hacking
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.
http://www.cyberciti.biz/faq/cve-2015-3456-patch-venom-on-debian-ubuntu-fedora-centos-rhel-linux/