mirror of
https://github.com/Jieyab89/OSINT-Cheat-sheet.git
synced 2025-12-05 20:40:30 -08:00
Add wiki and add osm query
This commit is contained in:
@@ -960,7 +960,6 @@ Example
|
||||
- [Maltego social links](https://www.maltego.com/transform-hub/social-links-ce/)
|
||||
- [indokontraktor ID](https://indokontraktor.com/)
|
||||
- [opentender ID](https://opentender.net/)
|
||||
- [lpse lkpp ID](https://lpse.lkpp.go.id/eproc4)
|
||||
- [ahu ID](https://ahu.go.id/pencarian/profil-pt)
|
||||
- [Minerba ESDM ID](https://momi.minerba.esdm.go.id/gisportal/home/)
|
||||
- [MODI ID](https://modi.esdm.go.id/portal/dataPerusahaan)
|
||||
|
||||
@@ -1,4 +1,50 @@
|
||||
# Notes
|
||||
|
||||
You understand IMINT, to map the search, next you know the place to search, for example Jakarta, Indonesia this will help narrow down the search in searching through OSM
|
||||
|
||||
Things to you should take a look:
|
||||
|
||||
1. Place object
|
||||
2. Object of the building
|
||||
3. Road object
|
||||
4. Building object
|
||||
5. Pole objects, lights, signs
|
||||
6. Billboard or advertising board object
|
||||
7. Are there other inventions such as license plates? Place names? Building characteristics
|
||||
8. Measurement on the object
|
||||
|
||||
# Pro Tips
|
||||
|
||||
1. You can navigate in the search on osm or turbo overpass
|
||||
2. You can learn through wikimapia to understand the object and the place of the object https://wikimapia.org/#lang=en&lat=-6.225886&lon=106.829681&z=10&m=w
|
||||
3. You need to understand IMINT, extract information from what you can
|
||||
4. Verify the data like coordinate and see on the Google maps or other things
|
||||
|
||||
Example
|
||||
|
||||
1. Search data from OSM overpass
|
||||
|
||||

|
||||
|
||||
2. Detail data
|
||||
|
||||

|
||||
|
||||
3. Verify on Google Maps
|
||||
|
||||

|
||||
|
||||
4. Dont forget check street view
|
||||
|
||||
# Overpass Tutorial Script or Query
|
||||
|
||||
- [osm-queries](https://osm-queries.ldodds.com/tutorial/index.html)
|
||||
- [osm-tag-info](https://taginfo.openstreetmap.org/keys)
|
||||
- [osm-tag-info](https://taginfo.openstreetmap.org/keys)
|
||||
|
||||
# Guide
|
||||
|
||||
>
|
||||
> Or you can use chatgpt for make this query if you still confused about osm query on documentation
|
||||
>
|
||||
|
||||
- [How to user overpass](https://publish.obsidian.md/dukera-gewel/How+to+Use+Overpass+Turbo)
|
||||
12
Script/OSM-QUERY-LIST/osm-query-search-bridge.md
Normal file
12
Script/OSM-QUERY-LIST/osm-query-search-bridge.md
Normal file
@@ -0,0 +1,12 @@
|
||||
```
|
||||
/*
|
||||
This query looks for nodes, ways and relations
|
||||
with the given key/value combination.
|
||||
Choose your region and hit the Run button above!
|
||||
*/
|
||||
[out:json][timeout:25];
|
||||
// gather results
|
||||
nwr["bridge"="yes"]({{bbox}});
|
||||
// print results
|
||||
out geom;
|
||||
```
|
||||
33
Script/OSM-QUERY-LIST/osm-query-search-bts-tower.md
Normal file
33
Script/OSM-QUERY-LIST/osm-query-search-bts-tower.md
Normal file
@@ -0,0 +1,33 @@
|
||||

|
||||
|
||||
````
|
||||
/*
|
||||
This query looks for nodes, ways and relations
|
||||
with the given key/value combination.
|
||||
Choose your region and hit the Run button above!
|
||||
*/
|
||||
[out:json][timeout:25];
|
||||
// gather results
|
||||
nwr["tower:type"="communication"]({{bbox}});
|
||||
// print results
|
||||
out geom;
|
||||
````
|
||||
|
||||
### Script by Dhukera OSINT Mindset
|
||||
|
||||
```
|
||||
{{geocodeArea:<change your area>}}->.searchArea;
|
||||
|
||||
node["man_made"="tower"]["tower:type"="communication"](area.searchArea) -> .tower;
|
||||
|
||||
way["power"="line"](around.tower:200) -> .tower_line;
|
||||
|
||||
way["building"="yes"](around.tower_line:50) -> .tower_line_building;
|
||||
|
||||
way["amenity"="parking"]["parking"="street_side"](around.tower_line_building:30);
|
||||
|
||||
out;
|
||||
>;
|
||||
out skel;
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user