├── Bookmarklet Templates ├── Cryptocurrency └── Cryptocurrency OSINT Attack Surface.pdf ├── DarkWeb └── DWM OSINT Attack Surface.pdf ├── Discord └── Discord OSINT Attack Surface.pdf ├── Email └── EMAIL OSINT Attack Surface.pdf ├── Gab ├── Bookmarklet Tools ├── Gab OSINT Attack Surface.pdf └── Gab OSINT Techniques.pdf ├── Gettr └── Gettr OSINT Attack Surface.pdf ├── Github └── Github OSINT Attack Surface.pdf ├── IP └── IP Address OSINT Attack Surface.pdf ├── Image Analysis ├── Bookmarklet Tool ├── IMAGE OSINT Attack Surface.odg └── IMAGE OSINT Attack Surface.pdf ├── Instagram └── Instagram OSINT Attack Surface.pdf ├── LinkedIn ├── Bookmarklet Tools ├── LinkedIn OSINT Attack Surface.pdf └── LinkedIn OSINT Techniques Part I and II.pdf ├── MISC ├── Account Knocking For Fun and OSINT.pdf ├── DiagramTemplate.odg ├── Make Your Own Custom OSINT Bookmarklets.pdf ├── The 7 Deadly Sins of OSINT.pdf └── URL Expander Bookmarklet ├── Mastodon └── Mastodon OSINT Attack Surface.pdf ├── OpenSea └── OpenSea OSINT Attack Surface.pdf ├── Person └── Person OSINT Attack Surface.pdf ├── Phone └── Telephone Number OSINT Attack Surface.pdf ├── Pinterest ├── Bookmarklet Tools └── Pinterest OSINT Attack Surface.pdf ├── PokemonGo ├── Bookmarklet Tools ├── PokemonGo OSINT Attack Surface.pdf └── Pokémon GO OSINT Techniques_ Part I and II.pdf ├── README.md ├── Reddit ├── Bookmarklet Tools ├── Reddit OSINT Attack Surface.pdf └── Reddit OSINT Techniques.pdf ├── SULTAN ├── Build An OSINT Username Search Tool Using SULTAN.pdf ├── RequestsValidator.py ├── SULTAN.py └── SULTAN_DATA.xlsx ├── Skype └── Skype OSINT Attack Surface.pdf ├── Snapchat └── Snapchat OSINT Attack Surface.pdf ├── TikTok ├── Bookmarklet Tools ├── OSINT Investigations on TikTok.pdf └── TikTok OSINT Attack Surface.pdf ├── Tumblr ├── Bookmarklet Tools ├── OSINT Investigations On Tumblr.pdf └── Tumblr OSINT Attack Surface.pdf ├── Twitter └── Twitter OSINT Attack Surface.pdf ├── Username └── USERNAME OSINT Attack Surface.pdf ├── Websites └── Website OSINT Attack Surface.pdf └── Youtube └── Youtube OSINT Attack Surface.pdf /Bookmarklet Templates: -------------------------------------------------------------------------------- 1 | // Template for extracting targeted text from source code 2 | 3 | javascript: 4 | var html = document.documentElement.innerHTML; 5 | var subhtml = html.split('$leftlimittext’)[1]; 6 | var output = subhtml.split('$rightlimittext’)[0]; 7 | alert(output) 8 | 9 | 10 | // Template for running multiple URL-structured queries 11 | 12 | javascript: 13 | var input = prompt("Prompt user for Input"); 14 | 15 | var variable1 = "$URLSTRUCTUREONE" + input; 16 | var variable2 = "$URLSTRUCTURETWO" + input; 17 | var variable3 = "$URLSTRUCTURETHREE" + input; 18 | 19 | SiteOneFunction(); 20 | SiteTwoFunction(); 21 | SiteThreeFunction(); 22 | 23 | function SiteOneFunction() { setTimeout(function(){ window.open(variable1, "_blank"); }, 1000); } 24 | function SiteTwoFunction() { setTimeout(function(){ window.open(variable2, "_blank"); }, 1000); } 25 | function SiteThreeFunction() { setTimeout(function(){ window.open(variable3, "_blank"); }, 1000); } 26 | -------------------------------------------------------------------------------- /Cryptocurrency/Cryptocurrency OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Cryptocurrency/Cryptocurrency OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /DarkWeb/DWM OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/DarkWeb/DWM OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Discord/Discord OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Discord/Discord OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Email/EMAIL OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Email/EMAIL OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Gab/Bookmarklet Tools: -------------------------------------------------------------------------------- 1 | # Copy and paste the below bookmarklets into a new bookmark in your browser of choice 2 | 3 | # Username Search 4 | 5 | javascript: 6 | var username = prompt("Please enter Gab username: "); 7 | var url = "https://gab.com/" + username; window.open(url, "_self"); 8 | 9 | # Hashtag Search 10 | 11 | javascript: 12 | var hashtag = prompt("Please enter Gab Hashtag: "); 13 | var url = "https://gab.com/tags/" + hashtag; window.open(url,"_self"); 14 | 15 | # Pull Fullsize Avatar from Profile 16 | 17 | javascript: 18 | var html = document.documentElement.innerHTML; 19 | var subhtml = html.split('parallax"')[1]; 20 | var subhtml2 = subhtml.split('"')[1]; 21 | window.open(subhtml2,"_self"); 22 | 23 | # Pull Fullsize Header from Profile 24 | 25 | javascript: 26 | var html = document.documentElement.innerHTML; 27 | var subhtml = html.split('account__header__info')[1]; 28 | var subhtml2 = subhtml.split('="')[1]; 29 | var subhtml2 = subhtml2.split('"')[0]; 30 | window.open(subhtml2,"_self") 31 | 32 | # Opens video in window so it can be downloaded with right-click and save as. Must be on Gab with video. 33 | 34 | javascript: 35 | var html = document.documentElement.innerHTML; 36 | var subhtml = html.split('playsinline=')[1]; 37 | var subhtml2 = subhtml.split('src="')[1]; 38 | var subhtml2 = subhtml2.split('"')[0]; 39 | window.open(subhtml2,"_self"); 40 | 41 | # Opens video thumbnail in window so it can be downloaded with right-click and save as. Must be on Gab with video. 42 | 43 | javascript: 44 | var html = document.documentElement.innerHTML; 45 | var subhtml = html.split('playsinline=')[1]; 46 | var subhtml2 = subhtml.split('poster="')[1]; 47 | var subhtml2 = subhtml2.split('"')[0]; 48 | window.open(subhtml2,"_self"); 49 | -------------------------------------------------------------------------------- /Gab/Gab OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Gab/Gab OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Gab/Gab OSINT Techniques.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Gab/Gab OSINT Techniques.pdf -------------------------------------------------------------------------------- /Gettr/Gettr OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Gettr/Gettr OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Github/Github OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Github/Github OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /IP/IP Address OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/IP/IP Address OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Image Analysis/Bookmarklet Tool: -------------------------------------------------------------------------------- 1 | //Copy and paste the entiretity of the code below into a new bookmark. Be advised that your browser will likely 2 | block the results other than the first popup and you may need to allow popups for the initial use. 3 | 4 | //Removed Fotoforensics as it might result in users being blacklisted until I can do further testing 5 | 6 | javascript: 7 | var imageurl = prompt("Paste image URL here: "); 8 | 9 | var google = "https://www.google.com/searchbyimage?&image_url=" + imageurl; 10 | var yandex = "https://yandex.com/images/search?source=collections&rpt=imageview&url=" + imageurl; 11 | var tineye = "https://www.tineye.com/search/?url=" + imageurl; 12 | var bing = "https://www.bing.com/images/search?view=detailv2&iss=sbi&form=SBIIRP&sbisrc=UrlPaste&q=imgurl:" + imageurl; 13 | var baidu = "https://graph.baidu.com/details?isfromtusoupc=1tn=pc&carousel=0&image=&image=" + imageurl; 14 | var exif = "http://exif.regex.info/exif.cgi?&url=" + imageurl; 15 | 16 | GoogleFunction(); 17 | TineyeFunction(); 18 | YandexFunction(); 19 | BingFunction(); 20 | BaiduFunction(); 21 | ExifFunction(); 22 | 23 | function YandexFunction() { setTimeout(function(){ window.open(yandex, "_blank"); }, 1000); } 24 | function GoogleFunction() { setTimeout(function(){ window.open(google, "_blank"); }, 1000); } 25 | function TineyeFunction() { setTimeout(function(){ window.open(tineye, "_blank"); }, 1000); } 26 | function BingFunction() { setTimeout(function(){ window.open(bing, "_blank"); }, 1000); } 27 | function BaiduFunction() { setTimeout(function(){ window.open(baidu, "_blank"); }, 1000); } 28 | function ExifFunction() { setTimeout(function(){ window.open(exif, "_blank"); }, 1000); } 29 | -------------------------------------------------------------------------------- /Image Analysis/IMAGE OSINT Attack Surface.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Image Analysis/IMAGE OSINT Attack Surface.odg -------------------------------------------------------------------------------- /Image Analysis/IMAGE OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Image Analysis/IMAGE OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Instagram/Instagram OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Instagram/Instagram OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /LinkedIn/Bookmarklet Tools: -------------------------------------------------------------------------------- 1 | # Copy and paste the below bookmarklets into a new bookmark in your browser of choice 2 | 3 | # Extract Larger Profile Photo (Must be activated when viewing a Linkedin Profile) 4 | 5 | javascript: 6 | var currentLocation = window.location.href; 7 | var newLocation = currentLocation + "detail/photo/"; 8 | window.location.replace(newLocation); 9 | 10 | #View Recent Activity on a profile 11 | 12 | javascript: 13 | var currentLocation = window.location.href; 14 | var newLocation = currentLocation + "detail/recent-activity/"; 15 | window.location.replace(newLocation); 16 | 17 | # Find Account Via Email (Functionality removed by LinkedIn) 18 | 19 | javascript: 20 | var email = prompt("Please enter target's email address: "); 21 | var url = "https://www.linkedin.com/sales/gmail/profile/viewByEmail/" + email; 22 | window.open(url,"_self"); 23 | 24 | 25 | -------------------------------------------------------------------------------- /LinkedIn/LinkedIn OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/LinkedIn/LinkedIn OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /LinkedIn/LinkedIn OSINT Techniques Part I and II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/LinkedIn/LinkedIn OSINT Techniques Part I and II.pdf -------------------------------------------------------------------------------- /MISC/Account Knocking For Fun and OSINT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/MISC/Account Knocking For Fun and OSINT.pdf -------------------------------------------------------------------------------- /MISC/DiagramTemplate.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/MISC/DiagramTemplate.odg -------------------------------------------------------------------------------- /MISC/Make Your Own Custom OSINT Bookmarklets.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/MISC/Make Your Own Custom OSINT Bookmarklets.pdf -------------------------------------------------------------------------------- /MISC/The 7 Deadly Sins of OSINT.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/MISC/The 7 Deadly Sins of OSINT.pdf -------------------------------------------------------------------------------- /MISC/URL Expander Bookmarklet: -------------------------------------------------------------------------------- 1 | // Copy the below code into a bookmark to run a bit.ly or other shortened URL through three URL expander services 2 | 3 | javascript: 4 | var input = prompt("Paste in the shortened URL to be expanded: "); 5 | 6 | var getlinkinfo = "http://www.getlinkinfo.com/info?link=" + input; 7 | var checkshorturl = "https://checkshorturl.com/expand.php?u=" + input; 8 | var expandurl = "https://www.expandurl.net/expand?&url=" + input; 9 | 10 | GetLinkInfoFunction(); 11 | CheckShortUrlFunction(); 12 | ExpandUrlFunction(); 13 | 14 | function GetLinkInfoFunction() { setTimeout(function(){ window.open(getlinkinfo, "_blank"); }, 1000); } 15 | function CheckShortUrlFunction() { setTimeout(function(){ window.open(checkshorturl, "_blank"); }, 1000); } 16 | function ExpandUrlFunction() { setTimeout(function(){ window.open(expandurl, "_blank"); }, 1000); } 17 | -------------------------------------------------------------------------------- /Mastodon/Mastodon OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Mastodon/Mastodon OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /OpenSea/OpenSea OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/OpenSea/OpenSea OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Person/Person OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Person/Person OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Phone/Telephone Number OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Phone/Telephone Number OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /Pinterest/Bookmarklet Tools: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Pinterest/Pinterest OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/Pinterest/Pinterest OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /PokemonGo/Bookmarklet Tools: -------------------------------------------------------------------------------- 1 | ##### General Websites Useful in Pokemon GO Investigations ##### 2 | 3 | # Search by Location 4 | https://pogotrainer.club/ 5 | https://gamepress.gg/pokemongo/trainer-codes-list 6 | 7 | # Mapping 8 | https://pokelytics.com/ 9 | https://www.openstreetmap.org/ 10 | 11 | # QR Codes 12 | https://webqr.com/index.html 13 | 14 | 15 | ##### Copy and paste the below bookmarklets into a new bookmark in your browser of choice to use the tools ##### 16 | 17 | 18 | # Search for user by trainer code 19 | 20 | javascript: 21 | var code = prompt("Paste Trainer Code here: "); 22 | var google = "https://www.google.com/search?&q=" + '"' + code + '"'; 23 | var reddit = "https://www.reddit.com/r/PokemonGoFriends/search/?q=" + code +"&restrict_sr=1"; 24 | var twitter = "https://twitter.com/search?q=" + code; 25 | 26 | GoogleFunction(); 27 | RedditFunction(); 28 | TwitterFunction(); 29 | 30 | function GoogleFunction() { setTimeout(function(){ window.open(google, "_blank"); }, 1000); } 31 | function RedditFunction() { setTimeout(function(){ window.open(reddit, "_blank"); }, 1000); } 32 | function TwitterFunction() { setTimeout(function(){ window.open(twitter, "_blank"); }, 1000); } 33 | 34 | # Search for user by username 35 | 36 | javascript: 37 | var username = prompt("Enter username here: "); 38 | var friendhunter = "https://api.friendhuntr.com/distribute/payload-search?username=" + username; 39 | var silph = "https://sil.ph/" + username; 40 | var pokebattler = "https://www.Pokebattler.com/profiles?search=" + username + "&page=0#searchResult"; 41 | var trainerdex = "https://www.trainerdex.co.uk/u/" + username; 42 | 43 | FriendHunterFunction(); 44 | SilphFunction(); 45 | TrainerDexFunction(); 46 | PokeBattlerFunction(); 47 | 48 | function FriendHunterFunction() { setTimeout(function(){ window.open(friendhunter, "_blank"); }, 1000); } 49 | function PokeBattlerFunction() { setTimeout(function(){ window.open(pokebattler, "_blank"); }, 1000);} 50 | function SilphFunction() { setTimeout(function(){ window.open(silph, "_blank"); }, 1000);} 51 | function TrainerDexFunction() { setTimeout(function(){ window.open(trainerdex, "_blank"); }, 1000);} 52 | -------------------------------------------------------------------------------- /PokemonGo/PokemonGo OSINT Attack Surface.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/PokemonGo/PokemonGo OSINT Attack Surface.pdf -------------------------------------------------------------------------------- /PokemonGo/Pokémon GO OSINT Techniques_ Part I and II.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sinwindie/OSINT/d886b9b847925bbe8f037d1fe308452aae1af9b3/PokemonGo/Pokémon GO OSINT Techniques_ Part I and II.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # OSINT 2 | Collections of Tools, Bookmarks, and other guides created to aid in OSINT collection 3 | 4 | Feel free to add to your own investigative toolkit, however you may NOT sell or host this without obtaining prior permission. 5 | 6 | I accept no liability in what you decide to use these for, so do no evil. 7 | 8 | -Sin 9 | -------------------------------------------------------------------------------- /Reddit/Bookmarklet Tools: -------------------------------------------------------------------------------- 1 | 2 | Removeddit Bookmarklet (From Reddit Thread) 3 | javascript: {document.location = document.URL.replace("www.reddit.com/","www.removeddit.com/");} 4 | 5 | Reddit Full-Size Banner (From User Profile) 6 | javascript: var html = document.documentElement.innerHTML; var subhtml = html.split('