mirror of
https://github.com/Jieyab89/OSINT-Cheat-sheet.git
synced 2025-12-05 20:40:30 -08:00
fix web based
This commit is contained in:
@@ -2,8 +2,6 @@
|
||||
|
||||
# USAGE
|
||||
|
||||
*Search is case sensitive
|
||||
|
||||
## Update Items
|
||||
|
||||
Please run the python script on folder gen node
|
||||
|
||||
@@ -3,11 +3,13 @@ import json
|
||||
import os
|
||||
|
||||
url = "https://raw.githubusercontent.com/Jieyab89/OSINT-Cheat-sheet/refs/heads/main/README.md"
|
||||
# URL (add another soon)
|
||||
|
||||
response = requests.get(url)
|
||||
data = response.text
|
||||
|
||||
json_file = "osint_data.json"
|
||||
json_file = os.path.join(os.pardir, "osint_data.json")
|
||||
|
||||
if os.path.exists(json_file):
|
||||
with open(json_file, "r", encoding="utf-8") as f:
|
||||
try:
|
||||
@@ -18,19 +20,18 @@ else:
|
||||
existing_data = []
|
||||
|
||||
existing_categories = {cat["category"]: cat for cat in existing_data}
|
||||
|
||||
new_categories = {}
|
||||
current_category = None
|
||||
|
||||
for line in data.split("\n"):
|
||||
line = line.strip()
|
||||
|
||||
if line.startswith("# "):
|
||||
if line.startswith("# "):
|
||||
current_category = line[2:].strip()
|
||||
if current_category not in new_categories:
|
||||
new_categories[current_category] = {"category": current_category, "items": []}
|
||||
|
||||
elif line.startswith("- [") and "](" in line:
|
||||
elif line.startswith("- [") and "](" in line:
|
||||
parts = line.split("[", 1)[1].split("](")
|
||||
name = parts[0].strip()
|
||||
link = parts[1].split(")")[0].strip()
|
||||
@@ -50,4 +51,4 @@ for category, new_data in new_categories.items():
|
||||
with open(json_file, "w", encoding="utf-8") as f:
|
||||
json.dump(list(existing_categories.values()), f, indent=4, ensure_ascii=False)
|
||||
|
||||
print("Data updated: osint_data.json")
|
||||
print(f"Data updated: {json_file}")
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -3,8 +3,36 @@
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta name="description" content="Jieyab89 OSINT cheat sheet, list OSINT tools, wiki, dataset, article, book , red team OSINT for hackers and OSINT tips and OSINT branch. This repository will grow every time will research, there is a research, science and technology, tutorial. Please use it wisely.">
|
||||
<meta name="keywords" content="OSINT, SOCMINT, SIGINT, cheat sheet, MASINT, jieyab89">
|
||||
<meta name="author" content="Jieyab89">
|
||||
<meta name="robots" content="index, follow">
|
||||
<meta name="revisit-after" content="7 days">
|
||||
|
||||
<meta property="og:title" content="Jieyab89 OSINT Cheat Sheet">
|
||||
<meta property="og:description" content="Jieyab89 OSINT cheat sheet, list OSINT tools, wiki, dataset, article, book , red team OSINT for hackers and OSINT tips and OSINT branch. This repository will grow every time will research, there is a research, science and technology, tutorial. Please use it wisely">
|
||||
<meta property="og:image" content="https://private-user-images.githubusercontent.com/71226310/428317009-37d7d761-c1f3-40f5-9ecd-d79457ee8a6e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NDMyNTg0OTEsIm5iZiI6MTc0MzI1ODE5MSwicGF0aCI6Ii83MTIyNjMxMC80MjgzMTcwMDktMzdkN2Q3NjEtYzFmMy00MGY1LTllY2QtZDc5NDU3ZWU4YTZlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAzMjklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMzI5VDE0MjMxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBkNTNlMWQwNmQ4NTNkYjQ0NzBlOTg4NmI1YWZjYzM5OTUyMWE5MDQzMjc1MjBkOTE4YmZiZWUxYTAwZmQxZjAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.qn1nKRcHpLc_b9MH7EwEip5_XFFkWimN_3091SDCvzg">
|
||||
<meta property="og:url" content="https://github.com/Jieyab89/OSINT-Cheat-sheet">
|
||||
<meta property="og:type" content="website">
|
||||
|
||||
<meta name="twitter:card" content="summary_large_image">
|
||||
<meta name="twitter:title" content="Jieyab89 OSINT Cheat Sheet">
|
||||
<meta name="twitter:description" content="Jieyab89 OSINT cheat sheet, list OSINT tools, wiki, dataset, article, book , red team OSINT for hackers and OSINT tips and OSINT branch. This repository will grow every time will research, there is a research, science and technology, tutorial. Please use it wisely">
|
||||
<meta name="twitter:image" content="https://private-user-images.githubusercontent.com/71226310/428317009-37d7d761-c1f3-40f5-9ecd-d79457ee8a6e.png?jwt=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NDMyNTg0OTEsIm5iZiI6MTc0MzI1ODE5MSwicGF0aCI6Ii83MTIyNjMxMC80MjgzMTcwMDktMzdkN2Q3NjEtYzFmMy00MGY1LTllY2QtZDc5NDU3ZWU4YTZlLnBuZz9YLUFtei1BbGdvcml0aG09QVdTNC1ITUFDLVNIQTI1NiZYLUFtei1DcmVkZW50aWFsPUFLSUFWQ09EWUxTQTUzUFFLNFpBJTJGMjAyNTAzMjklMkZ1cy1lYXN0LTElMkZzMyUyRmF3czRfcmVxdWVzdCZYLUFtei1EYXRlPTIwMjUwMzI5VDE0MjMxMVomWC1BbXotRXhwaXJlcz0zMDAmWC1BbXotU2lnbmF0dXJlPTBkNTNlMWQwNmQ4NTNkYjQ0NzBlOTg4NmI1YWZjYzM5OTUyMWE5MDQzMjc1MjBkOTE4YmZiZWUxYTAwZmQxZjAmWC1BbXotU2lnbmVkSGVhZGVycz1ob3N0In0.qn1nKRcHpLc_b9MH7EwEip5_XFFkWimN_3091SDCvzg">
|
||||
<meta name="twitter:site" content="@jieyab89">
|
||||
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
<meta name="format-detection" content="telephone=no">
|
||||
|
||||
<link rel="canonical" href="https://jieyab89.github.io/OSINT-Cheat-sheet/Web-Based/">
|
||||
|
||||
<!-- Favicon -->
|
||||
<link rel="icon" href="https://avatars.githubusercontent.com/u/71226310?s=96&v=4" type="image/x-icon">
|
||||
|
||||
<title>Jieyab89 OSINT Cheat Sheet</title>
|
||||
|
||||
<script src="https://d3js.org/d3.v6.min.js"></script>
|
||||
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
@@ -43,6 +71,7 @@
|
||||
pointer-events: none;
|
||||
}
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<h1>Jieyab89 OSINT Cheat Sheet</h1>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[
|
||||
{
|
||||
"category": "OSINT CHEAT SHEET - List OSINT Tools",
|
||||
"category": "OSINT CHEAT SHEET - List OSINT Tools [](https://github.com/Jieyab89)",
|
||||
"items": []
|
||||
},
|
||||
{
|
||||
@@ -163,6 +163,10 @@
|
||||
{
|
||||
"name": "CSE Search comment",
|
||||
"url": "https://cse.google.com/cse?cx=006368593537057042503:ig4r3rz35qi#gsc.tab=0"
|
||||
},
|
||||
{
|
||||
"name": "voilanorbert",
|
||||
"url": "https://www.voilanorbert.com/"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -5772,6 +5776,10 @@
|
||||
{
|
||||
"name": "darkradar",
|
||||
"url": "https://www.darkradar.io/mail-breach"
|
||||
},
|
||||
{
|
||||
"name": "voilanorbert",
|
||||
"url": "https://www.voilanorbert.com/"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -8835,6 +8843,10 @@
|
||||
{
|
||||
"name": "ipification API",
|
||||
"url": "https://www.ipification.com/"
|
||||
},
|
||||
{
|
||||
"name": "rayhunter",
|
||||
"url": "https://github.com/EFForg/rayhunter"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -11785,6 +11797,10 @@
|
||||
{
|
||||
"name": "browser-use",
|
||||
"url": "https://github.com/browser-use/browser-use"
|
||||
},
|
||||
{
|
||||
"name": "interviewcoder",
|
||||
"url": "https://www.interviewcoder.co/"
|
||||
}
|
||||
]
|
||||
},
|
||||
@@ -12419,6 +12435,10 @@
|
||||
"name": "caido",
|
||||
"url": "https://caido.io/"
|
||||
},
|
||||
{
|
||||
"name": "MobileApp-Pentest-Cheatsheet",
|
||||
"url": "https://github.com/tanprathan/MobileApp-Pentest-Cheatsheet"
|
||||
},
|
||||
{
|
||||
"name": "social engineering",
|
||||
"url": "https://www.social-engineer.org/"
|
||||
|
||||
Reference in New Issue
Block a user