Skip to content
KitploitKITPLOIT
도구블로그
제출
도구블로그
제출

해킹, 침투 테스트 및 사이버 보안 도구를 당신의 보안 무기고에!

Kitploit은 해킹, 사이버 보안 및 침투 테스트 도구 디렉토리입니다. 최신 프로젝트 업데이트를 발견하여 취약점을 찾고, 시스템을 분석하고, 테스트를 자동화하고, 보안을 강화하세요.

··피드·문의·개인정보·© 2026 Kitploit

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
Arti Mobile - Tor in Rust for Android and iOS — Android 및 iOS용 Rust 기반 Tor 라이브러리로, 개인 정보 보호 및 검열 저항 네트워크 통신을 위해 Arti Tor 런타임을 모바일 앱에 통합하는 표준 API를 제공합니다. | Kitploit
도구/GitLabGitLab/guardianproject/tormobile/arti-mobile
Android SecurityiOS SecurityNetwork SecurityMobile SecurityPrivacy
GitLabguardianproject/tormobile/arti-mobile

Arti Mobile - Tor in Rust for Android and iOS

Android 및 iOS용 Rust 기반 Tor 라이브러리로, 개인 정보 보호 및 검열 저항 네트워크 통신을 위해 Arti Tor 런타임을 모바일 앱에 통합하는 표준 API를 제공합니다.

저장소 보기

인기

모두 보기 →

커뮤니티에서 가장 많이 사용되는 도구를 찾아보세요.

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
161개월 전아직 검토되지 않음

Arti Mobile: Android 및 iOS용 Rust 기반 Tor

Tor Project가 지원하는 공식 Arti Mobile 라이브러리로, 새로운 Tor Rust 런타임을 모바일 기기에 제공합니다.

이 프로젝트는 Tor Arti의 표준 API를 Android 및 iOS 애플리케이션에 제공하기 위한 공유 프로젝트입니다.


다음 프로젝트를 기반으로 합니다:

  • Trinity의 https://gitlab.torproject.org/trinity-1686a/arti-mobile-example/
  • uniq의 https://codeberg.org/uniqx/arti-android
  • ahf의 https://gitlab.torproject.org/ahf/arti-orbot-ios

자세한 내용은 다음에서 확인하세요: https://guide.onionmobile.dev/tor-on-android/arti-mobile-on-android 및 https://arti.torproject.org/

무엇을 하는지에 대한 더 자세한 설명은 Arti 문서 Android용 및 iOS용을 읽어보세요.

빠른 통합

  • "Android" 폴더에서 Android 샘플 프로젝트를 확인하고, Onion Mobile Devsite에서 추가 Android 통합 가이드를 찾을 수 있습니다.
  • "iOS" 폴더에서 iOS 샘플 프로젝트를 확인하고, Onion Mobile Devsite에서 추가 iOS 통합 가이드를 찾을 수 있습니다.

JNI 인터페이스를 갖춘 Arti용 Android 라이브러리

  • 실험적인 메이븐 의존성으로 게시됨:

repositories { maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" } }

dependencies { implementation("org.torproject:arti-mobile:1.7.0.1") }

사용 예:

root@kitploit:~
var artiProxy = ArtiProxy.Builder(this)
            .setLogListener((log) -> {
                Log.d("artilog", log);
                App.logOutput(getApplicationContext(), log + "\n");
            })
            .setWrapWebView(true)
            .build();
    mArtiProxy.start();
    var socksPort = mArtiProxy.getSocksPort();

빌드

Android용 빌드 방법

  • Rust와 Android Studio를 설치합니다. 두 가지 모두로 Hello World를 실행할 수 있는지 확인합니다.
  • common 폴더로 이동하여 make android를 실행합니다.
  • 커피 한 잔, 또는 두 잔을 마십니다.
  • Android Studio에서 android 폴더를 열거나 평소처럼 gradle을 사용하여 앱을 빌드합니다.

iOS용 빌드 방법

  • Mac을 준비합니다 (PC에서는 iOS 앱을 만들 수 없습니다).
  • Rust와 XCode를 설치합니다. 두 가지 모두로 Hello World를 실행할 수 있는지 확인합니다.
  • common 폴더로 이동하여 make ios를 실행합니다.
  • 커피 한 잔, 또는 두 잔을 마십니다.
  • XCode에서 ios 폴더를 열고 평소처럼 앱을 컴파일합니다.

Vagrant를 사용하여 Rust 코드 빌드

root@kitploit:~
vagrant up
vagrant ssh -c "cd /vagrant/common && make android"
도구 다운로드