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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
remote-control — 자격 증명을 공유하지 않고 사용자 계정에 원격 액세스 권한을 부여합니다. | Kitploit
도구/GitHubGitHub/katsana/remote-control
Authentication & AuthorizationWeb SecurityUtilities & FrameworksIdentity & Access Management (IAM)Remote Access Tool
GitHubkatsana/remote-control

remote-control

자격 증명을 공유하지 않고 사용자 계정에 원격 액세스 권한을 부여합니다.

저장소 보기
951년 전아직 검토되지 않음

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유
웹사이트

Laravel용 Remote Control

자격 증명을 공유하지 않고 사용자 계정에 대한 원격 액세스를 부여합니다.

tests Latest Stable Version Total Downloads Latest Unstable Version License Coverage Status

  • 설치
    • 구성
  • 사용법
    • 라우팅
    • 원격 액세스 생성
    • 생성된 액세스 토큰 사용

설치

Remote Control은 composer를 통해 설치할 수 있습니다:

root@kitploit:~
composer require "katsana/remote-control"

구성

이 패키지는 서비스 프로바이더를 자동으로 등록합니다.

다음으로, Remote Control 구성 파일을 게시해야 합니다:

root@kitploit:~
php artisan vendor:publish --provider="RemoteControl\RemoteServiceProvider" --tag="config"

사용법

라우팅

원격 액세스를 생성하기 전에 검증 라우트를 선언해야 합니다:

root@kitploit:~
RemoteControl\Remote::verifyRoute('remote-control')->middleware('web');

서명된 URL을 사용하려면 signed 미들웨어를 포함해야 합니다:

root@kitploit:~
RemoteControl\Remote::verifyRoute('remote-control')->middleware(['signed', 'web']);

원격 액세스 생성

다음 코드를 실행하여 원격 액세스를 생성할 수 있습니다:

root@kitploit:~
$user = request()->user();

$recipientEmail = '[email protected]';
$content = 'Please help me';

$accessToken = RemoteControl\Remote::create($user, $recipientEmail, $content);

생성된 액세스 토큰 사용

다음 메서드를 사용하여 URL을 얻을 수 있습니다:

root@kitploit:~
$accessToken->getUrl();

다음 메서드를 사용하여 서명된 URL도 얻을 수 있습니다:

root@kitploit:~
$accessToken->getSignedUrl();

다음 Mailable을 통해 수신자에게 이메일을 자동으로 보낼 수 있습니다:

root@kitploit:~
Mail::send(new RemoteControl\Mail\GrantRemoteAccess($user, $accessToken, $content));
도구 다운로드