diff --git a/.bowerrc b/.bowerrc
new file mode 100644
index 0000000..b811a58
--- /dev/null
+++ b/.bowerrc
@@ -0,0 +1,3 @@
+{
+ "directory" : "public/js/vendor"
+}
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..8b9e4f1
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,14 @@
+# vendor packages #
+######################
+public/js/vendor
+node_modules
+
+# OS generated files #
+######################
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
diff --git a/README.md b/README.md
index c694879..7277470 100644
--- a/README.md
+++ b/README.md
@@ -3,26 +3,40 @@ Advanced Reconnaissance Framework
http://osintframework.com
-
-
## Notes
-OSINT framework focused on gathering information from free tools or resources. Everything inlcuded in the framework should be either entirely free, return some free information, or at the very least have a free trial available.
+OSINT framework focused on gathering information from free tools or resources. Everything included in the framework should be either entirely free, return some free information, or at the very least have a free trial available.
I originally created this framework with an information security point of view. Since then, the response from other fields and disciplines has been awesome. I would love to be able to include any other OSINT resources, especially from fields outside of infosec. Please let me know about anything that might be missing!
+### Instructions for installing/running locally
+
+
Clone this repo
+
Open a terminal in repo directory
+
-##For Update Notifications
-Follow me on Twitter: @jnordine - https://twitter.com/jnordine
+_and then..._
+#### install dependencies with npm:
+
+
Run `npm install`
+
Run `npm start` to start SimpleHTTPServer in the /public directory on port 8000 (you'll need python installed for this, of course)
+
Open your browser to http://localhost:8000
+
+
+##### install dependencies with bower:
+
+
Run `bower install`
+
Run `cd ./public; python -m SimpleHTTPServer 8000` (you'll need python installed for this, of course)
+
Open your browser to http://localhost:8000
+
+
+### For Update Notifications
+Follow me on Twitter: @jnordine - https://twitter.com/jnordine
Watch or star the project on Github: https://github.com/lockfale/arf
-
-
-##Suggestions, Comments, Feedback
-Feedback or new tool suggestions are extremely welcome! Please feel free to submit an issue on github or reach out on Twitter.
-
-
+### Suggestions, Comments, Feedback
+Feedback or new tool suggestions are extremely welcome! Please feel free to submit a pull request or open an issue on github or reach out on Twitter.
## To Do
- [ ] Expand / Collapse all buttons
@@ -30,4 +44,4 @@ Feedback or new tool suggestions are extremely welcome! Please feel free to sub
- [ ] Fix "the boldening"
- [ ] Look into best way to display extra information for each site/tool
- [ ] Find a good way to crowdsource rating information
-- [ ] Update d3js
\ No newline at end of file
+- [ ] Update d3js
diff --git a/bower.json b/bower.json
new file mode 100644
index 0000000..f42d5b1
--- /dev/null
+++ b/bower.json
@@ -0,0 +1,13 @@
+{
+ "name": "ARF",
+ "main": "index.html",
+ "homepage": "https://github.com/lockfale/ARF",
+ "authors": [
+ "Justin Nordine (s0lray)"
+ ],
+ "description": "Advanced Reconnaissance Framework",
+ "license": "",
+ "dependencies": {
+ "d3": "3.5.16"
+ }
+}
diff --git a/index.html b/index.html
deleted file mode 100644
index 81d0963..0000000
--- a/index.html
+++ /dev/null
@@ -1,46 +0,0 @@
-
-
-
-
-Adv Recon Framework
-
-
-
-
-
-
+ The preferred method for sending new tool suggestions or to let me know about dead links would be to submit an issue on github but I will take them in any fashion.
+ For general feedback or just to chat, Twitter is the best way to reach out.
+
+
+
+
+
diff --git a/arf.js b/public/js/arf.js
similarity index 96%
rename from arf.js
rename to public/js/arf.js
index 4478db2..4301003 100644
--- a/arf.js
+++ b/public/js/arf.js
@@ -14,13 +14,13 @@
var diagonal = d3.svg.diagonal()
.projection(function(d) { return [d.y, d.x]; });
- var svg = d3.select("body").append("svg")
+ var svg = d3.select(".arf_content").append("svg")
.attr("width", width + margin.right + margin.left)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
- d3.json("arf.json", function(error, flare) {
+ d3.json("../arf.json", function(error, flare) {
if (error) throw error;
root = flare;
@@ -82,9 +82,9 @@
.attr("dy", ".35em")
.attr("text-anchor", function(d) { return d.children || d._children ? "end" : "start"; })
.text(function(d) { return d.name; })
- .style("fill-opacity", 1e-6);
- }
- });
+ .style("fill-opacity", 1e-6);
+ }
+ });
// Transition nodes to their new position.
var nodeUpdate = node.transition()
@@ -162,4 +162,4 @@
}
-}();
\ No newline at end of file
+}();