Skip to content

Safely investigates a link and takes screenshots of everything it finds. Good for checking shady links.

License

Notifications You must be signed in to change notification settings

jaivinwylde/check-link

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Check link

Safely investigates a link and takes screenshots of everything it finds. Good for checking shady links.


What it finds

The root of the URL

root example

It will follow where the root of the URL takes it. It ended up at https://grabify.link in this example, and this is the screenshot it took: root destination

The redirect

It will follow where the main link takes it. It ended up at https://google.com in this example, and this is the screenshot it took: redirect destination


Peace of mind

All requests are run through an anonymous proxy so your IP address is safe.

# Get proxy
collector = proxyscrape.create_collector("main", "https")
proxy = collector.get_proxy({
    "type": "https",
    "anonymous": True
})

# Initialize pyppeteer
browser = await pyppeteer.launch(
    ignoreHTTPSErrors=True,
    args=[f"--proxy-server={proxy.host}:{proxy.port}"])

This is all an attacker would see: ip grab example

About

Safely investigates a link and takes screenshots of everything it finds. Good for checking shady links.

Topics

Resources

License

Stars

Watchers

Forks

Languages