Since last April in 2016, the main BBC Homepage has been accessible only via HTTPS, which I thought was a good step forward, heading in the right direction. However, most pages or URLs still use insecure HTTP. Trying to navigate to a page while manually typing HTTPS in the browser address bar will force a 301 re-direct to HTTP.
Here’s an example of cURL while navigating to /news/ path:
$ curl -IL https://www....
Whilst studying at University I became interested in hardware keyloggers, and so decided to purchase one for a research paper. This device is specifically for wired USB keyboards (non Wi-Fi or Bluetooth) which records every single key stroke typed, without the need for drivers or worrying about any security product. I thought why not write a review and share some interesting findings.
I DO NOT condone or encourage the use of any such devices for ILLEGAL purposes....
UPDATE: Kali Team have migrated to a new Kernel Version I’ve tested the new kernel 4.12.13-1kali2 and can confirm it fixes issues with my wireless card. I’d advise people to update their packages and use this kernel. I’ll keep this page as it’s still a useful guide on how to downgrade for falling back on an other kernel. More info available: https://pkg.kali.org/pkg/linux
As you may of heard the recent 4.12.6-1kali1 kernel version broke functionality on most wireless devices, resulting in serious performance and range issues making devices almost unusable....
Reload bash_profile Apply any changes made to ~/.bash_profile with reload: alias reload='source ~/.bash_profile'
Network Connections List all network connections with nets: alias nets='lsof -i'
Internet Speed test Speed test using a 100Mbyte file from OVH Hosting:
alias speedtest='curl -o /dev/null http://ovh.net/files/100Mio.dat' WAN IP Address Show WAN IP address with myip: alias myip='curl ifconfig.co'
Web Server Banner A curl function to grab web server banner information with headers followed by a URL:...
Lets face it remembering passwords for dozens of sites is a pain which is why some people re-use their password or change it very slightly to avoid the hassle. If you’re one of those who would rather generate random complex passwords for each site, the question on how those are stored will arise. Storing passwords in plaintext text file on your desktop is a big no no.
Password Managers are great, when they’re implemented correctly....