Here's a step by step guide to convert a Virtualbox .ova to a Vagrant box.
- List your VMs to find the VM id you want to convert:
$ VBoxManage list vms
"testing" {a3f59eed-b9c5-4a5f-9977-187f8eb8c4d4}
- You can now package the .ova VM as Vagrant box:
Here's a step by step guide to convert a Virtualbox .ova to a Vagrant box.
$ VBoxManage list vms
"testing" {a3f59eed-b9c5-4a5f-9977-187f8eb8c4d4}
Download
http://kickass.to/infiniteskills-learning-jquery-mobile-working-files-t7967156.html
http://kickass.to/lynda-bootstrap-3-advanced-web-development-2013-eng-t8167587.html
http://kickass.to/lynda-css-advanced-typographic-techniques-t7928210.html
http://kickass.to/lynda-html5-projects-interactive-charts-2013-eng-t8167670.html
http://kickass.to/vtc-html5-css3-responsive-web-design-course-t7922533.html
http://kickass.to/10gen-m101js-mongodb-for-node-js-developers-2013-eng-t8165205.html
| 1. Open Chrome and search for User-Agent Switcher for Chrome extension, link https://chrome.google.com/webstore/detail/user-agent-switcher-for-c/djflhoibgkdhkhhcedjiklpkjnoahfmg and select Add to Chrome | |
| 2. After the extension is installed/added, click the User-Agent extension and change User-Agent to Safari or Android mode | |
| 3. Open this link https://www.microsoft.com/en-us/software-download/windows10ISO | |
| 4. You will see the April Update ISO files, select the language and bit what you want, finally you can download it using download manager | |
| 5. Done, that's all, the direct link are valid only 24 hours after you created them. | |
| Mirrors are here via adguard: | |
| https://tb.rg-adguard.net/public.php |
| #!/bin/bash | |
| #set -x | |
| [[ ! "$1" =~ .*\.iso ]] && { echo ".iso file name needed"; exit; } | |
| TEMP=$(mktemp -d) | |
| PDIR=$(pwd) | |
| if [[ "$1" =~ ^/ ]]; then | |
| SRC=$1 |
You must have already performed the following in one form or another as well as properly set a STATIC IP. Bear in mind many instructions do not properly show how to commit iptables changes on Photon which then survive reboots.
iptables -A INPUT -p tcp --dport 2375 -j ACCEPT
iptables -A INPUT -p tcp --dport 2376 -j ACCEPT
iptables-save > /etc/systemd/scripts/ip4save
| # Generating let's encrypt manual cert with ease | |
| # Usage: ./cert.sh me@company.com my.domain.com | |
| # Output: ~/certbot/.certbot/config | |
| # | |
| generate_certificate() { | |
| email=$1 | |
| domain=$2 | |
| sudo docker run -it --rm -v ~/certbot:/home/root \ | |
| certbot/certbot certonly --config-dir /home/root/.certbot/config \ | |
| --logs-dir /home/root/.certbot/logs \ |
| ### DEBIAN STRETCH ### | |
| PART I: python script | |
| Become root. | |
| 1. $ sudo -i | |
| Make fbctf directory in /opt | |
| 2. # cd /opt | |
| 3. # mkdir fbctf | |
| Get my modified score_base.py script | |
| 4. # wget https://gist.githubusercontent.com/Bryan1998/772cf58e6aff7cf360387886f5af56ff/raw/0eae6687df97af7c8246ff468f142730c8375c3c/score_base.py |
| { | |
| "_id": "generic_theme", | |
| "name": "Rocket.Chat Theme", | |
| "description": "An overview of the theming JSON for Rocket.Chat.", | |
| "variables": { | |
| "main": { | |
| "error": "#CC243A", | |
| "error-light": "#A6303F", | |
| "alert": "#E8BE19", | |
| "alert-light": "#CEAB20", |
| echo "Connecting to 192.168.1.100" | |
| $Server="192.168.1.100" | |
| $User="Administrator" | |
| $Password="AdminPassword" | |
| cmdkey /generic:TERMSRV/$Server /user:$User /pass:$Password | |
| mstsc /v:$Server |
| Security Onion | |
| Aug 2014: | |
| ... my purpose for installing this was to: | |
| - learn more about security stuff | |
| - steal the packet captures (pcap) provided so I can replay them using tcpreplay for snort testing, | |
| as it's not so sexy to just test using ICMP ping data or local rules that match anything | |
| see: | |
| http://blog.securityonion.net/ |