Exploit Safety-net PoC
by Inexorable_Baer - Monday July 28, 2025 at 09:44 PM
#1
Hello forum members,

PoC By: @Inexorable_Baer

This is a safety-net I use for my tools and has saved my ass multiple times. For this to work, you need a VPN and Tor. The idea is for the code to check if you have your VPN up and then check if Tor is enabled. I use this to protect myself since I can't afford a VPS. The example payload is just sending a request to Google, but you can use your imagination to send any payloads.


import requests
import json


class Safetynet:
   def __init__(self):
      self.homeIP = ""# enter your home IP here
      self.VPNIP = ""
      self.TorIP = ""
      self.tor = requests.Session()
      self.tor.proxies = {"https":"socks5h://127.0.0.1:9050"}
      self.__setup()


   def __setup(self):
      """Check the connection is setup proporly"""
      r = requests.get("https://ip.me").text.strip()
      if r != self.homeIP:
         self.VPNIP = r
      else: raise Exception("VPN not On!")
         r = self.tor.get("https://ip.me").text.strip()
      if r != self.VPNIP:
         self.TorIP = r
      else: raise Exception("Tor not On!")

   def payload(self, website: str):
      req = self.tor.get(website)
      print(req.text)


Exploite = Safetynet()
Exploite.payload("https://www.google.com")
Reply
#2
How is this an exploit brother? and how this can save time? Just configure your VPN client to block network when tunnels are down.
Reply
#3
(Aug 02, 2025, 08:46 AM)tail Wrote: How is this an exploit brother? and how this can save time? Just configure your VPN client to block network when tunnels are down.

I never said it was an exploit; I said you should use it in conjunction with an exploit.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  {SECRET} DATABASE OF EXPLOITS lulagain 438 26,847 2 hours ago
Last Post: NUKEx
  [POC] Google OAuth "MultiLogin" endpoint 0-day Farfallaiero 108 13,821 Yesterday, 05:42 PM
Last Post: nobcoderfck
  Ban Any Discord Exploit phineasfisherman 7 475 Yesterday, 10:16 AM
Last Post: sniperx86
  Dokan Pro Unauthenticated SQL Injection POC | CVSS 10 Loki 42 3,785 Yesterday, 08:39 AM
Last Post: d39ug
  New Zer0 Day Wordpress A3g00n 81 3,418 May 05, 2026, 03:06 AM
Last Post: DirtyEra

Forum Jump:


 Users browsing this forum: 1 Guest(s)