This file is indexed.

/usr/share/radare2/0.9.6/www/enyo/js/graph.js is in libradare2-common 0.9.6-3.1ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
enyo.kind ({
  name: "Graph",
  kind: "Scroller",
  style: "background-color:#c0c0c0",
  components: [
    {tag: "h2", content: "Open graph", style:"margin-left:10px;"},
    {kind: "Group", classes: "enyo-border-box group", defaultKind: "onyx.Button", components: [
      {content: "Basic blocks", classes: "onyx-dark menu-button", ontap:"openGraphBB" },
      {content: "Callgraph", classes: "onyx-dark menu-button", ontap:"openGraphCG" }
    ]}
  ],
  openGraphBB: function () {
    window.open ('/graph/', '_self');
  },
  openGraphCG: function () {
    window.open ('/d3/', '_self');
  }
});