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
// ==UserScript== | |
// @name chango | |
// @namespace vabarbosa.simple-data-vis | |
// @description add simple data visualizations to cloudant.com and couchdb views | |
// @match *://*.cloudant.com/dashboard.html* | |
// @include /^http://127.0.0.1:5984/_utils/#/database/.*/_design/.*/_view/.*$/ | |
// @require https://d3js.org/d3.v4.min.js | |
// @require https://raw.githubusercontent.com/vabarbosa/simple-data-vis/master/simpledatavis.js | |
// @require https://raw.githubusercontent.com/vabarbosa/simple-data-vis/master/vis/simpledatavis-barchart.js | |
// @require https://raw.githubusercontent.com/vabarbosa/simple-data-vis/master/vis/simpledatavis-bubblechart.js |
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
// ==UserScript== | |
// @name chango | |
// @namespace vabarbosa.simple-data-vis | |
// @description add simple data visualizations to cloudant.com and couchdb views | |
// @match *://*.cloudant.com/dashboard.html* | |
// @include /^http://127.0.0.1:5984/_utils/#/database/.*/_design/.*/_view/.*$/ | |
// @require https://d3js.org/d3.v4.min.js | |
// @require https://raw.githubusercontent.com/vabarbosa/simple-data-vis/master/simpledatavis.js | |
// @require https://raw.githubusercontent.com/vabarbosa/simple-data-vis/master/vis/simpledatavis-barchart.js | |
// @require https://raw.githubusercontent.com/vabarbosa/simple-data-vis/master/vis/simpledatavis-bubblechart.js |
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 sh | |
if [ $# -eq 0 ]; then | |
echo "Usage: $0 domain" | |
exit 1 | |
fi | |
target=$1 | |
domain=$(echo $target | cut -f 1 -d ".") |
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 json,xmltodict | |
""" | |
Nmap XML Output to Json Output in Python | |
example : data = xml2json('nmap_output.xml') | |
""" | |
def xml2json(xml): | |
xmlfile = open(xml) | |
xml_content = xmlfile.read() | |
xmlfile.close() | |
xmljson = json.dumps(xmltodict.parse(xml_content), indent=4, sort_keys=True) |