Help
RSS
API
Feed
Maltego
Contact
Domain > briancox.co
×
Welcome!
Right click nodes and scroll the mouse to navigate the graph.
×
More information on this domain is in
AlienVault OTX
Is this malicious?
Yes
No
DNS Resolutions
Date
IP Address
2018-09-07
54.231.235.38
(
ClassC
)
2024-12-10
104.21.63.87
(
ClassC
)
2025-02-01
172.67.144.88
(
ClassC
)
Port 80
HTTP/1.1 200 OKDate: Sat, 01 Feb 2025 16:20:55 GMTContent-Type: text/html; charsetutf-8Transfer-Encoding: chunkedConnection: keep-aliveLast-Modified: Sun, 20 Feb 2022 06:27:19 GMTAccess-Control-Allow-Origin: *expires: Sat, 01 Feb 2025 16:30:55 GMTCache-Control: max-age600x-proxy-cache: MISSX-GitHub-Request-Id: 41BF:3F85B7:70E8:74EB:679E49E6Age: 0Via: 1.1 varnishX-Served-By: cache-pao-kpao1770054-PAOX-Cache: MISSX-Cache-Hits: 0X-Timer: S1738426855.341704,VS0,VE94Vary: Accept-EncodingX-Fastly-Request-ID: c42400bf48130b4462d2a410f53556c19eaa5e16cf-cache-status: DYNAMICReport-To: {endpoints:{url:https:\/\/a.nel.cloudflare.com\/report\/v4?sNLO80ZKESouneKxb9qsmD0ttGhcWNCqY6MX%2BVDYyOwswvXyzs2PgTcXO%2FkMq1r8ay3EYWIOv34Db2%2FqoN9%2BO7q8UeK86D%2FBr22YTgToN1g4Na1ZHRdBB1xNaT%2B%2BZDw%3D%3D},group:cf-nel,max_age:604800}NEL: {success_fraction:0,report_to:cf-nel,max_age:604800}Server: cloudflareCF-RAY: 90b345857fed682a-SEAalt-svc: h3:443; ma86400server-timing: cfL4;desc?protoTCP&rtt9980&min_rtt9980&rtt_var4990&sent1&recv3&lost0&retrans0&sent_bytes0&recv_bytes50&delivery_rate0&cwnd247&unsent_bytes0&cid0000000000000000&ts0&x0 !DOCTYPE html>!-- Want to know a secret? Go back to the site and click in the bottom right of the screen.-->head> title> Brian Cox /title> !-- Meta --> meta propertyog:title contentBrian Cox> meta propertyog:image content/brian.jpg> meta propertyog:image:alt contentA long haired Brian Cox in the wild /> meta namedescription propertyog:description contentBrian makes computery things for profit and pleasure.> meta namekeywords contentBrian,Cox,BrianCox,Founder,SierraSpaceAgency,Index,Atlanta,Tahoe,Code> meta nameauthor contentBrian Cox> meta nameviewport contentwidthdevice-width, initial-scale1> meta charsetutf-8> !-- Icons --> link relapple-touch-icon hreffavicon.png> link relshortcut icon hreffavicon.png typeimage/x-icon> style> html { width: 100vw; height: 100vh; } body { background-color: #000000; overflow:hidden; width: 100vw; height: 100vh; position: relative; } #hexgrid { width: 100vw; height: 100%; overflow: hidden; position: absolute; } .hexagons { fill: none; stroke: #000; stroke-width: 4px; } .index-image { position: absolute; top: 24px; left: 24px; z-index: 1; width: 50px; height: auto; transition: all .2s ease-in-out; } .index-image:hover { transform: scale(1.1); -webkit-filter: brightness(120%); } .shh { position: absolute; right: 0; bottom: 0; z-index: 1; width: 80px; height: 80px; background-color: black; outline: 0; } .shh:hover { cursor: none; background-color: #080A0C; transform: scale(1.1); } .autohover { background-color: #080A0C; animation: fadein 2s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /style> script typetext/javascript> setTimeout(function() { var shh document.getElementById(shh); shh.className + autohover }, 18000) /script>/head>body> div idhexgrid> /div> div classindex> a hrefhttps://sierraspaceagency.com> img classindex-image src/ssa-logo.png> /a> /div> a idshh classshh hrefquestions.html>/a>/body>script srchttps://d3js.org/d3.v3.min.js>/script>script srchttps://d3js.org/d3.hexbin.v0.min.js>/script>script> /* * Hexagon grid generation with d3. * Distribute log-randomly colored hexagons a log-random distance from the center of the screen. * Looks like some smarty pants backpropping neural net visualization but its actually just a dumb kid playing horseshoes with hexagons. */ element document.documentElement body document.getElementsByTagName(body)0 /* Settings abstractions */ console.log(body.offsetWidth, body.offsetHeight) var width body.offsetWidth, height body.offsetHeight, hexrad 24, // radius of hexagons iterator -1, // iterator elapsed 0, // initial time elapsed- none increment .3, // frame interval increment lifetime 333, // hex lifetime birthrate 4; // samples to replace per frame var distribution Math.min(width, height) / 6; // average distance from center /* Birthing setup */ var randomX d3.random.logNormal(width / 2, hexrad), randomY d3.random.logNormal(height / 2, hexrad), points d3.range(lifetime).map(function() { return randomX(), randomY(); }); var color d3.scale.linear() .domain(0, 20) .range(black, steelblue) .interpolate(d3.interpolateLab); var hexbin d3.hexbin() .size(width, height) .radius(hexrad); var svg d3.select(body).append(svg) .attr(width, width) .attr(height, height); var hexagon svg.append(g) .attr(class, hexagons) .selectAll(path) .data(hexbin(points)) .enter().append(path) .attr(d, hexbin.hexagon(hexrad - .5)) .attr(transform, function(d) { return translate( + d.x + , + d.y + ); }) .style(fill, function(d) { return color(d.length); }); /* Every so often, slap some paint on a hexagon and throw it yonder */ d3.timer(function() { elapsed + increment; randomX d3.random.normal(width / 2 + hexrad * Math.cos(elapsed), distribution), randomY d3.random.normal(height / 2 + hexrad * Math.sin(elapsed), distribution); for (var j 0; j birthrate; ++j) { iterator (iterator + 1) % lifetime; pointsiterator0 randomX(); pointsiterator1 randomY(); } hexagon hexagon .data(hexbin(points), function(d) { return d.i + , + d.j; }); hexagon.exit().remove(); hexagon.enter().append(path) .attr(d, hexbin.hexagon(hexrad-0.5)) .attr(transform, function(d) { return translate( + d.x + , + d.y + ); }); hexagon .style(fill, function(d) { return color(d.length); }); });/script>!-- PS I love you. Please love me XD -->
Port 443
HTTP/1.1 200 OKDate: Sat, 01 Feb 2025 16:20:55 GMTContent-Type: text/html; charsetutf-8Transfer-Encoding: chunkedConnection: keep-aliveLast-Modified: Sun, 20 Feb 2022 06:27:19 GMTAccess-Control-Allow-Origin: *expires: Sat, 01 Feb 2025 16:30:55 GMTCache-Control: max-age600x-proxy-cache: MISSX-GitHub-Request-Id: FBB3:3F85B7:7100:7506:679E49E7Age: 0Via: 1.1 varnishX-Served-By: cache-pao-kpao1770061-PAOX-Cache: MISSX-Cache-Hits: 0X-Timer: S1738426856.561034,VS0,VE94Vary: Accept-EncodingX-Fastly-Request-ID: 172db3b51612ff91afe14aa1af6ee4e1b0f924a8cf-cache-status: DYNAMICReport-To: {endpoints:{url:https:\/\/a.nel.cloudflare.com\/report\/v4?s0uEhTosZLzOuuCjBeNZJ4O34dtce%2BCzdnmo3zBs%2FLMOBVL6bVOpQeKO6CTr04rTJJRRdWT2HDu2xHXUnOwrCKT4o2HaAs9V%2BocjkkA1Bwu703xrPKlp5HaU4KRjjvA%3D%3D},group:cf-nel,max_age:604800}NEL: {success_fraction:0,report_to:cf-nel,max_age:604800}Server: cloudflareCF-RAY: 90b3458709cac3c0-SEAalt-svc: h3:443; ma86400server-timing: cfL4;desc?protoTCP&rtt9663&min_rtt9560&rtt_var2871&sent5&recv6&lost0&retrans0&sent_bytes2850&recv_bytes722&delivery_rate290792&cwnd245&unsent_bytes0&cidd2d4e064c9f24e55&ts170&x0 !DOCTYPE html>!-- Want to know a secret? Go back to the site and click in the bottom right of the screen.-->head> title> Brian Cox /title> !-- Meta --> meta propertyog:title contentBrian Cox> meta propertyog:image content/brian.jpg> meta propertyog:image:alt contentA long haired Brian Cox in the wild /> meta namedescription propertyog:description contentBrian makes computery things for profit and pleasure.> meta namekeywords contentBrian,Cox,BrianCox,Founder,SierraSpaceAgency,Index,Atlanta,Tahoe,Code> meta nameauthor contentBrian Cox> meta nameviewport contentwidthdevice-width, initial-scale1> meta charsetutf-8> !-- Icons --> link relapple-touch-icon hreffavicon.png> link relshortcut icon hreffavicon.png typeimage/x-icon> style> html { width: 100vw; height: 100vh; } body { background-color: #000000; overflow:hidden; width: 100vw; height: 100vh; position: relative; } #hexgrid { width: 100vw; height: 100%; overflow: hidden; position: absolute; } .hexagons { fill: none; stroke: #000; stroke-width: 4px; } .index-image { position: absolute; top: 24px; left: 24px; z-index: 1; width: 50px; height: auto; transition: all .2s ease-in-out; } .index-image:hover { transform: scale(1.1); -webkit-filter: brightness(120%); } .shh { position: absolute; right: 0; bottom: 0; z-index: 1; width: 80px; height: 80px; background-color: black; outline: 0; } .shh:hover { cursor: none; background-color: #080A0C; transform: scale(1.1); } .autohover { background-color: #080A0C; animation: fadein 2s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /style> script typetext/javascript> setTimeout(function() { var shh document.getElementById(shh); shh.className + autohover }, 18000) /script>/head>body> div idhexgrid> /div> div classindex> a hrefhttps://sierraspaceagency.com> img classindex-image src/ssa-logo.png> /a> /div> a idshh classshh hrefquestions.html>/a>/body>script srchttps://d3js.org/d3.v3.min.js>/script>script srchttps://d3js.org/d3.hexbin.v0.min.js>/script>script> /* * Hexagon grid generation with d3. * Distribute log-randomly colored hexagons a log-random distance from the center of the screen. * Looks like some smarty pants backpropping neural net visualization but its actually just a dumb kid playing horseshoes with hexagons. */ element document.documentElement body document.getElementsByTagName(body)0 /* Settings abstractions */ console.log(body.offsetWidth, body.offsetHeight) var width body.offsetWidth, height body.offsetHeight, hexrad 24, // radius of hexagons iterator -1, // iterator elapsed 0, // initial time elapsed- none increment .3, // frame interval increment lifetime 333, // hex lifetime birthrate 4; // samples to replace per frame var distribution Math.min(width, height) / 6; // average distance from center /* Birthing setup */ var randomX d3.random.logNormal(width / 2, hexrad), randomY d3.random.logNormal(height / 2, hexrad), points d3.range(lifetime).map(function() { return randomX(), randomY(); }); var color d3.scale.linear() .domain(0, 20) .range(black, steelblue) .interpolate(d3.interpolateLab); var hexbin d3.hexbin() .size(width, height) .radius(hexrad); var svg d3.select(body).append(svg) .attr(width, width) .attr(height, height); var hexagon svg.append(g) .attr(class, hexagons) .selectAll(path) .data(hexbin(points)) .enter().append(path) .attr(d, hexbin.hexagon(hexrad - .5)) .attr(transform, function(d) { return translate( + d.x + , + d.y + ); }) .style(fill, function(d) { return color(d.length); }); /* Every so often, slap some paint on a hexagon and throw it yonder */ d3.timer(function() { elapsed + increment; randomX d3.random.normal(width / 2 + hexrad * Math.cos(elapsed), distribution), randomY d3.random.normal(height / 2 + hexrad * Math.sin(elapsed), distribution); for (var j 0; j birthrate; ++j) { iterator (iterator + 1) % lifetime; pointsiterator0 randomX(); pointsiterator1 randomY(); } hexagon hexagon .data(hexbin(points), function(d) { return d.i + , + d.j; }); hexagon.exit().remove(); hexagon.enter().append(path) .attr(d, hexbin.hexagon(hexrad-0.5)) .attr(transform, function(d) { return translate( + d.x + , + d.y + ); }); hexagon .style(fill, function(d) { return color(d.length); }); });/script>!-- PS I love you. Please love me XD -->
View on OTX
|
View on ThreatMiner
Please enable JavaScript to view the
comments powered by Disqus.
Data with thanks to
AlienVault OTX
,
VirusTotal
,
Malwr
and
others
. [
Sitemap
]