Skip to content

Instantly share code, notes, and snippets.

@vasturiano
Last active September 13, 2019 11:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save vasturiano/0c8eebe43d5c827ab03e to your computer and use it in GitHub Desktop.
Save vasturiano/0c8eebe43d5c827ab03e to your computer and use it in GitHub Desktop.
Whois Database Explorer

Browser of Address Space hierarchy in a Whois Database. Navigate up/down/sideways in the hierarchy using the arrows or by clicking on the blocks.

<!DOCTYPE html>
<meta charset="utf-8">
<head>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://stat.ripe.net/widgets/widget_api.js"></script>
</head>
<body>
<div class="statwdgtauto"></div>
<script>
ripestat.init(
"address-space-hierarchy",
{
"get_org_names": true,
"aggr_levels_below": 7,
"resource": "90.0.0.0/9"
},
null,
{
"show_controls":"no",
"size": window.innerHeight*1.05,
"disable":[
'feedback',
'maximize',
'container',
'logo',
'title'
]}
);
$('.stat-widget').css('margin-left', (window.innerWidth-$('.stat-widget').width())/2);
</script>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment