Cybrary – Free Cyber Security Training URL: http://www.cybrary.it
Hak5 – New Hacks Every Week URL: https://hak5.org
Tinkernut URL: http://www.tinkernut.com
Cyberpunk
| { | |
| "annotations": { | |
| "list": [ | |
| { | |
| "builtIn": 1, | |
| "datasource": { | |
| "type": "grafana", | |
| "uid": "-- Grafana --" | |
| }, | |
| "enable": true, |
| Step 1: Create Volume in OpenStack (Can be completed in GUI) | |
| CLI: | |
| cinder create SIZE_IN_GB --display-name NAME | |
| cinder create 10 --display-name mystorage | |
| cinder list | |
| Step 2: Attach volume to Openstack instance (Can be completed in GUI) | |
| CLI: | |
| nova volume-attach INSTANCE_ID VOLUME_ID auto | |
| nova volume-attach myhost f14e47ab-18f6-4f85-bd17-a3f63a38d609 auto |
Cybrary – Free Cyber Security Training URL: http://www.cybrary.it
Hak5 – New Hacks Every Week URL: https://hak5.org
Tinkernut URL: http://www.tinkernut.com
Cyberpunk
| ''' Code Inspired by http://github.com/tito 's NFC gist | |
| This is a complete implementation allowing for NFC tag or p2p detection | |
| Allows you to create any type of NdefRecord using functions like | |
| `create_RTDURI(uri)` | |
| This is the Android implementatoin of NFC Scanning using the | |
| built in NFC adapter of some android phones. | |
| ''' | |
| from kivy.app import App | |
| from kivy.clock import Clock |
https://github.com/PacktPublishing free to download books code by Packet
| service_region: regionTwo | |
| master_region_keystone_address: "10.53.3.2" | |
| keystone_service_region: regionOne | |
| keystone_service_adminuri: "{{ keystone_service_adminuri_proto }}://{{ master_region_keystone_address }}:{{ keystone_admin_port }}" | |
| keystone_service_internaluri: "{{ keystone_service_internaluri_proto }}://{{ master_region_keystone_address }}:{{ keystone_service_port }}" | |
| # Make sure your keystone_auth_admin_password in user_secrets for the second region matches the password from regionOne | |
| # These settings avoid username collisions when using the same keystone | |
| # deployment across multiple regions. |
| # Some notes from installing VirtualBox on CentOS 7. | |
| # These exact steps haven't been tested, as I ran them in a different order when manually installing. | |
| # Install dependencies | |
| yum -y install gcc make patch dkms qt libgomp | |
| yum -y install kernel-headers kernel-devel fontforge binutils glibc-headers glibc-devel | |
| # Install VirtualBox | |
| cd /etc/yum.repos.d | |
| wget http://download.virtualbox.org/virtualbox/rpm/rhel/virtualbox.repo |