This gist shows how to create a GIF screencast using only free OS X tools: QuickTime, ffmpeg, and gifsicle.
To capture the video (filesize: 19MB), using the free "QuickTime Player" application:
| var Registry = function () { | |
| this.initialize.apply(this, arguments); | |
| }; | |
| Registry.prototype = { | |
| initialize: function(computer) { | |
| var locator = new ActiveXObject("WbemScripting.SWbemLocator"); | |
| var server = locator.ConnectServer(computer, "root\\default"); | |
| this.stdregprov = server.Get("StdRegProv"); |
| namespace JoeKingry | |
| { | |
| using System; | |
| using System.Collections.Generic; | |
| using System.Diagnostics; | |
| using System.IO; | |
| class Program | |
| { | |
| static void Main(string[] args) |
| import java.io.IOException; | |
| import java.util.List; | |
| import org.snmp4j.CommunityTarget; | |
| import org.snmp4j.Snmp; | |
| import org.snmp4j.TransportMapping; | |
| import org.snmp4j.mp.SnmpConstants; | |
| import org.snmp4j.smi.Address; | |
| import org.snmp4j.smi.GenericAddress; | |
| import org.snmp4j.smi.OID; | |
| import org.snmp4j.smi.OctetString; |
sudo -i and type in your Mac Administrator account password. sudo gives you root level or administrator level privileges.dsconfigad -show
| source "https://rubygems.org" | |
| gem "octokit" |
Hi guys! Since I started to write Bluebox-ng I've been tracking the different security projects I found written in Node.js. Now we've published the first stable version we think it's the right moment to speak among us (and, of course, everyone interested in it :).
| # Call this from inside a startup task/batch file as shown in the next two lines (minus the '# ') | |
| # PowerShell -ExecutionPolicy Unrestricted .\HardenSsl.ps1 >> log-HardenSsl.txt 2>&1 | |
| # EXIT /B 0 | |
| # Credits: | |
| # http://azure.microsoft.com/blog/2014/10/19/how-to-disable-ssl-3-0-in-azure-websites-roles-and-virtual-machines/ | |
| # http://lukieb.blogspot.com/2014/11/tightening-up-your-azure-cloud-service.html | |
| $nl = [Environment]::NewLine | |
| $regkeys = @( |
| { | |
| "variables": { | |
| "aws_access_key": "", // This helps me connect to AWS | |
| "aws_secret_key": "" | |
| }, | |
| "builders": [{ | |
| "type": "amazon-ebs", | |
| "access_key": "{{user `aws_access_key`}}", | |
| "secret_key": "{{user `aws_secret_key`}}", | |
| "region": "us-east-1", |
| echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections | |
| add-apt-repository -y ppa:webupd8team/java | |
| apt-get -qq update | |
| apt-get install -y oracle-java8-installer xfce4 xvfb | |
| wget http://download.nomachine.com/download/4.6/Linux/nomachine_4.6.4_13_amd64.deb | |
| dpkg -i nomachine_4.6.4_13_amd64.deb | |
| echo 'DefaultDesktopCommand "/usr/bin/X11/startxfce4"' >> /usr/NX/etc/server.cfg | |
| echo "PhysicalDesktopAuthorization 0" >> /usr/NX/etc/server.cfg | |
| echo "VirtualDesktopAuthorization 0" >> /usr/NX/etc/server.cfg | |
| COOKIE=`ps -ef | md5sum | cut -f 1 -d " "` |