This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Taken from: https://hackerlists.com/hacking-sites/ | |
22 Hacking Sites, CTFs and Wargames To Practice Your Hacking Skills | |
InfoSec skills are in such high demand right now. As the world continues to turn everything into an app and connect even the most basic devices to the internet, the demand is only going to grow, so it’s no surprise everyone wants to learn hacking these days. | |
However, almost every day I come across a forum post where someone is asking where they should begin to learn hacking or how to practice hacking. I’ve compiled this list of some of the best hacking sites to hopefully be a valuable resource for those wondering how they can build and practice their hacking skill set. I hope you find this list helpful, and if you know of any other quality hacking sites, please let me know in the comments, so I can add them to the list. | |
1. CTF365 https://ctf365.com/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Extracting more detailed GPU information in a browser. | |
// NOTE: This won't work with some privacy settings enabled | |
// and has only been tested with the following return values | |
// Could be used to guess at a GPUs power using existing benchmarks here: | |
// https://www.videocardbenchmark.net/GPU_mega_page.html | |
// https://www.techpowerup.com/gpu-specs/ | |
// http://codeflow.org/entries/2016/feb/10/webgl_debug_renderer_info-extension-survey-results/ | |
// http://www.gpuzoo.com/ | |
// https://docs.google.com/spreadsheets/d/1wGRZ-5sl7G9DhIgwW36g2KnrwVfZqBW7GDKHOd2vbaM/edit#gid=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Extracting more detailed GPU information in a browser. | |
// NOTE: This won't work with some privacy settings enabled | |
// and has only been tested with the following return values | |
// Could be used to guess at a GPUs power using existing benchmarks here: | |
// https://www.videocardbenchmark.net/GPU_mega_page.html | |
// https://www.techpowerup.com/gpu-specs/ | |
// http://codeflow.org/entries/2016/feb/10/webgl_debug_renderer_info-extension-survey-results/ | |
// http://www.gpuzoo.com/ | |
// https://docs.google.com/spreadsheets/d/1wGRZ-5sl7G9DhIgwW36g2KnrwVfZqBW7GDKHOd2vbaM/edit#gid=0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
me=$(basename $0) | |
set -e # exit on error | |
function print_help { | |
echo | |
echo $me - create a virtualenv with relative paths in a certain buildroot and fix the relative path to make it work after install | |
echo | |
echo OPTIONS |