Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
OSINT/Image Analysis/Bookmarklet Tool
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
28 lines (23 sloc)
1.58 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Copy and paste the entiretity of the code below into a new bookmark. Be advised that your browser will likely | |
block the results other than the first popup and you may need to allow popups for the initial use. | |
//Removed Fotoforensics as it might result in users being blacklisted until I can do further testing | |
javascript: | |
var imageurl = prompt("Paste image URL here: "); | |
var google = "https://www.google.com/searchbyimage?&image_url=" + imageurl; | |
var yandex = "https://yandex.com/images/search?source=collections&rpt=imageview&url=" + imageurl; | |
var tineye = "https://www.tineye.com/search/?url=" + imageurl; | |
var bing = "https://www.bing.com/images/search?view=detailv2&iss=sbi&form=SBIIRP&sbisrc=UrlPaste&q=imgurl:" + imageurl; | |
var baidu = "https://graph.baidu.com/details?isfromtusoupc=1tn=pc&carousel=0&image=&image=" + imageurl; | |
var exif = "http://exif.regex.info/exif.cgi?&url=" + imageurl; | |
GoogleFunction(); | |
TineyeFunction(); | |
YandexFunction(); | |
BingFunction(); | |
BaiduFunction(); | |
ExifFunction(); | |
function YandexFunction() { setTimeout(function(){ window.open(yandex, "_blank"); }, 1000); } | |
function GoogleFunction() { setTimeout(function(){ window.open(google, "_blank"); }, 1000); } | |
function TineyeFunction() { setTimeout(function(){ window.open(tineye, "_blank"); }, 1000); } | |
function BingFunction() { setTimeout(function(){ window.open(bing, "_blank"); }, 1000); } | |
function BaiduFunction() { setTimeout(function(){ window.open(baidu, "_blank"); }, 1000); } | |
function ExifFunction() { setTimeout(function(){ window.open(exif, "_blank"); }, 1000); } |