├── LICENSE ├── README.md └── ideas ├── ORCS Project Steps.pptx ├── ORCS Project Tags.xlsx ├── ORCS_concept_model.pdf ├── ORCtags.json ├── database model1.xlsx ├── orcs_concept_model_pic.png └── orcs_logo.png /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (C) 2018 Spotlight Infosec LLC 2 | 3 | This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License. To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/ or send a letter to Creative Commons, PO Box 1866, Mountain View, CA 94042, USA. 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ORCS 2 | OSINT Resource Classification System 3 | - https://orcs.osint.ninja 4 | - https://github.com/WebBreacher/orcs 5 | 6 | # What is this? 7 | This site is (hopefully) where a bunch of people will get together and create an OSINT Resource Classification System that can be used to systematically organize and refer to types of resources used in OSINT work. 8 | 9 | # The problem 10 | If you look around the internet, you will see many resources showing links to a variety of web sites, tools, and documents that can be useful in OSINT/ThreatIntel/Recon work. The problem is that each site owner makes their own names for the categories. An example would be the https://start.me/p/b56G5Q/search-engines has 15 different types of search engines whereas http://osintframework.com/ has about 10...and they do not overlap. So comparing "apples-to-apples" and looking for similar sites across these bookmark sites is extremely challenging. 11 | 12 | # The solution 13 | I'm hoping that this site will serve as a central place for many of us to come together and begin making OSINT simpler by agreeing on standard categories and subcats for our resources. 14 | 15 | If this happens, sites like https://yoga.osint.ninja will be extremely powerful as it could link directly to each person's bookmark site at a specific category. 16 | 17 | # The plea 18 | I need help with this. I need those people that have bookmark sites, PDFs, and other resources to join up and make their voices heard (in a positive way). Participate and let's make something great together. 19 | 20 | # The location 21 | I imagine using this Github project for this work...at least initially. The Wiki https://github.com/WebBreacher/orcs/wiki and Projects features can help organize and publish our content. 22 | 23 | We have a private channel in the Rocket Chat https://osint.team server for discussions. 24 | 25 | 26 | 27 | # License 28 | Creative Commons License
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International License. 29 | -------------------------------------------------------------------------------- /ideas/ORCS Project Steps.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/orcs/ef152a7b81f1e69625a802cba8e1c7ed734e86d9/ideas/ORCS Project Steps.pptx -------------------------------------------------------------------------------- /ideas/ORCS Project Tags.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/orcs/ef152a7b81f1e69625a802cba8e1c7ed734e86d9/ideas/ORCS Project Tags.xlsx -------------------------------------------------------------------------------- /ideas/ORCS_concept_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/orcs/ef152a7b81f1e69625a802cba8e1c7ed734e86d9/ideas/ORCS_concept_model.pdf -------------------------------------------------------------------------------- /ideas/ORCtags.json: -------------------------------------------------------------------------------- 1 | { 2 | "license" : ["Creative Commons Attribution-ShareAlike 4.0 International License", 3 | "Copyright (c) 2018, Spotlight Infosec LLC.", 4 | "This work is licensed under the Creative Commons", 5 | "Attribution-ShareAlike 4.0 International License.", 6 | "To view a copy of this license, visit", 7 | "http://creativecommons.org/licenses/by-sa/4.0/ or", 8 | "send a letter to Creative Commons, PO Box 1866,", 9 | "Mountain View, CA 94042, USA. 10 | "], 11 | "contributors" : ["WebBreacher"], 12 | "projectHome" : "https://github.com/webbreacher/orcs", 13 | "tags" : [ 14 | { 15 | "name" : "geography", 16 | "abbreviation" : "GEOG", 17 | "description" : "Geographic region that this resource contains info on", 18 | "values" : ["global","international","country","regional","local","other"], 19 | "" 20 | }, 21 | { 22 | "name" : "transportation", 23 | "abbreviation" : "TRNS", 24 | "description" : "Transportation resources", 25 | "values" : ["aircraft","ship","train","truck","auto","other"] 26 | }, 27 | { 28 | "name" : "computerNetworking", 29 | "abbreviation" : "NETW", 30 | "description" : "Resources with data about computer networks", 31 | "values" : ["ip","domain","asn","netblock","service","other"] 32 | }, 33 | { 34 | "name" : "searchEngine", 35 | "abbreviation" : "SRCH", 36 | "description" : "Search engines", 37 | "values" : ["general","people","image","computer","custom"] 38 | }, 39 | { 40 | "name" : "dataTypesOutput", 41 | "abbreviation" : "DATO", 42 | "description" : "What data formats are returned from resource?", 43 | "values" : ["any","text","audio","video","image","files",""] 44 | } 45 | ] 46 | } 47 | -------------------------------------------------------------------------------- /ideas/database model1.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/orcs/ef152a7b81f1e69625a802cba8e1c7ed734e86d9/ideas/database model1.xlsx -------------------------------------------------------------------------------- /ideas/orcs_concept_model_pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/orcs/ef152a7b81f1e69625a802cba8e1c7ed734e86d9/ideas/orcs_concept_model_pic.png -------------------------------------------------------------------------------- /ideas/orcs_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebBreacher/orcs/ef152a7b81f1e69625a802cba8e1c7ed734e86d9/ideas/orcs_logo.png --------------------------------------------------------------------------------