AndroGhostInjector

(★ 39)

Undetectable Android library injector powered by eBPF. Zero-ptrace execution via executable caves with automated memory footprint scrubbing.

파일 탐색기

  • .gitignore
  • build.sh
  • Dockerfile
  • elf_parser.c
  • elf_parser.h
  • injector.bpf.c
  • main.c
  • Makefile
  • README.md

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

adb shell

설명 보기 ▼

Run shell commands on a connected Android device or emulator.

adb shell

Start a remote interactive shell on the emulator or device:

tldr {{[-p|--platform]}} android getprop

View documentation for showing Android system properties:

tldr {{[-p|--platform]}} android pm

View documentation for the Android package manager:

🔍

adb

설명 보기 ▼

안드로이드 디버그 브릿지: 안드로이드 에뮬레이터 객체 또는 연결된 안드로이드 기기와 통신하는 도구.
shell과 같은 일부 하위 명령어는 별도의 사용법 문서를 제공.
더 많은 정보: <https://developer.android.com/tools/adb>.

adb start-server

adb 서버 프로세스가 실행되고 있고, 시작하는지 확인:

adb kill-server

adb 서버 프로세스 종료:

adb shell

대상 에뮬레이터/장치 객체에서 원격 쉘 시작:

🔍

apt install

설명 보기 ▼

Install packages for Debian-based distributions.

sudo apt install {{package}}

Install a package, or update it to the latest version:

sudo apt install {{[-V|--verbose-versions]}} {{package}}

Display verbose package version information during installation or update:

🔍

bpftool

설명 보기 ▼

eBPF 프로그램 및 맵을 간단하게 검사하고 조작.
`prog`와 같은 일부 하위 명령에는 자체 사용 설명서가 있습니다.
더 많은 정보: <https://manned.org/bpftool>.

bpftool prog list

로드된 `eBPF` 프로그램 정보 나열:

bpftool net list

커널 네트워킹 하위 시스템의 `eBPF` 프로그램 연결 나열:

bpftool link list

모든 활성 링크 나열:

// repository documentation