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
<html> | |
<head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://code.jquery.com/jquery-1.9.0.min.js"></script></script> | |
<style type='text/css'> | |
svg {font: 12px sans-serif;} | |
.IndexBox {fill: #DDDDDD;stroke: #FFFFFF;} |
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/perl | |
# | |
# Script written to pull IP data from openIOC and search Splunk. | |
# | |
use strict; | |
use warnings; | |
$|=1; |
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
import codecs | |
import os | |
import commands | |
import re | |
import urllib | |
import dircache | |
import logging | |
import string, time | |
# import random, md5 |
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
<?xml version='1.0' encoding='utf-8'?> | |
<dashboard> | |
<label>box.com : API Status.</label> | |
<row> | |
<chart> | |
<searchName>Box Event Count</searchName> | |
<title>Box: Event Count (7 Days)</title> | |
<option name="charting.axisTitleX.text">Time</option> | |
<option name="charting.chart">column</option> | |
<option name="charting.chart.nullValueMode">connect</option> |
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/perl | |
# This prototype written to pull Box oAuth 2.0 authentication data via SSO Provider. | |
# | |
# If behind authenticating (NTLM) proxy there are dependencies: | |
# 1. Curl (/usr/bin/curl) to be available; NTLM to PingIdentity. | |
# 2. Transparent proxy available (cntlm/tsocks); NTLM via proxy (tested with TMG). | |
# | |
# There are some architectural assumptions: | |
# 1. Internet client -> Public forms based Auth -> PingIdentity -> Box |
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
<html><head><title>d3 world demo</title> | |
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script type="text/javascript" src="./topojson.js"></script> | |
<script type="text/javascript"> | |
jQuery(document).ready(function($) { | |
var data; |