Skip to content

Instantly share code, notes, and snippets.

View lost-rob0t's full-sized avatar
💾

nsaspy lost-rob0t

💾
View GitHub Profile
@lost-rob0t
lost-rob0t / chango.user.js
Created October 24, 2024 20:16 — forked from vabarbosa/chango.user.js
add simple data visualizations to Cloudant and CouchDB views
// ==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
@lost-rob0t
lost-rob0t / chango.user.js
Created October 24, 2024 20:15 — forked from vabarbosa/chango.user.js
add simple data visualizations to Cloudant and CouchDB views
// ==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
#!/usr/bin/env sh
if [ $# -eq 0 ]; then
echo "Usage: $0 domain"
exit 1
fi
target=$1
domain=$(echo $target | cut -f 1 -d ".")
@lost-rob0t
lost-rob0t / xml_json.py
Created March 14, 2023 03:36 — forked from safebuffer/xml_json.py
Nmap XML output to Json
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)