mirror of
https://github.com/lockfale/OSINT-Framework.git
synced 2026-09-10 19:57:46 +02:00
@@ -16,6 +16,20 @@ body {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.dark-Mode{
|
||||
background-color: #000;
|
||||
color: #fff;
|
||||
.node text {
|
||||
fill: #fff;
|
||||
}
|
||||
.legend{
|
||||
color: #fff;
|
||||
}
|
||||
path.link{
|
||||
stroke: #444;
|
||||
}
|
||||
}
|
||||
|
||||
.legend {
|
||||
position: absolute;
|
||||
top: 0px;
|
||||
|
||||
+3
-2
@@ -20,8 +20,9 @@
|
||||
<div class="legend"><p>(T) - Indicates a link to a tool that must be installed and run locally<br>
|
||||
(D) - Google Dork, for more information: <a href="https://en.wikipedia.org/wiki/Google_hacking">Google Hacking</a><br>
|
||||
(R) - Requires registration<br>
|
||||
(M) - Indicates a URL that contains the search term and the URL itself must be edited manually<br></p></div>
|
||||
|
||||
(M) - Indicates a URL that contains the search term and the URL itself must be edited manually<br></p>
|
||||
<button onclick="goDark()">Toggle dark mode</button></div>
|
||||
|
||||
<h3>Notes</h3>
|
||||
OSINT framework focused on gathering information from free tools or resources. The intention is to help people find free OSINT resources. Some of the sites included might require registration or offer more data for $$$, but you should be able to get at least a portion of the available information for no cost.<br>
|
||||
|
||||
|
||||
+6
-1
@@ -148,4 +148,9 @@ function toggle(d) {
|
||||
d.children = d._children;
|
||||
d._children = null;
|
||||
}
|
||||
}
|
||||
}
|
||||
//Togle Dark Mode
|
||||
function goDark() {
|
||||
var element = document.body;
|
||||
element.classList.toggle("dark-Mode");
|
||||
}
|
||||
Reference in New Issue
Block a user