🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Sign inDemoInstall
Socket

github.com/leixiao-nv/antideb

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/leixiao-nv/antideb

v0.0.0-20230320105536-66c96686a2d2
Source
Go
Version published
Created
Source

antideb

Package antideb - basic anti-debugging and anti-reverse engineering protection for your application. Performs basic detection functions such as ptrace, int3, time slots, vdso and others (don't foget to obfuscate your code).

GoDoc GoDev Go Walker Documentation Status codeclimate GolangCI GoReport Codacy Badge codecov Coverage Status Coverage License FOSSA Status Build Status Build status Circle CI Semaphore Status Build Status Codeship Status Gluten Free DepShield Badge

installation

go get github.com/leixiao-nv/antideb

usage

func main() {
	debug := false // set to false for production
	// ... do litle work
	if !debug {
		go antideb.Detect(true)
	}
	// ... do main work
}

options

import "github.com/leixiao-nv/antideb"

For more complex options, consult the documentation.

contributing

FAQs

Package last updated on 20 Mar 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts