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

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

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

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

도구 디렉토리

카테고리

모든 카테고리 보기
Loading categories
도구/GitHubGitHub/sf197/telegra_csharp_c2
Payload GenerationPost-ExploitationCommand and ControlRed TeamingRemote Access Tool
GitHubsf197/telegra_csharp_c2

Telegra_Csharp_C2

C# 작성을 위한 명령 및 제어

저장소 보기
68194년 전Kitploit 검토 완료

인기

모두 보기 →

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

모든 도구 탐색

도구 컬렉션을 둘러보세요

모든 도구 보기 →
공유

Telegra_Csharp_C2

C# 작성을 위한 명령 및 제어

저자: Leiothrix

텔레그램: @Leiothrix

트위터: @wh4am1

팀: QQ愛&Love

logo

VirusTotal 확인 결과

더 이상 Virus Total에 전달하지 마세요. 제가 이미 시도해봤습니다.

VirusTotal

링크: https://www.virustotal.com/gui/file/ad1cd12bd6c8bee46ab35aa21a4fb48c2bcf9fdddbf1af82ad6f20eb75daa663/detection

모든 보기

  • Install
  • How to used
  • Proxy
  • How to compile

Install

Nuget에서 다음 패키지를 다운로드하세요.
root@kitploit:~
using System.IO;
using Telegram.Bot;
using Telegram.Bot.Args;
using Telegram.Bot.Types.InputFiles;
using AForge.Video;
using AForge.Controls;
using AForge.Video.DirectShow;
'References'에 관련 클래스 추가
root@kitploit:~
System.Drawing;
System.Windows.Forms;

How to used

프로그램에 토큰을 수정하세요.
root@kitploit:~
 static void Main(){
            botClient = new TelegramBotClient("token");		//Your Token
            botClient.OnMessage += Bot_OnMessage;
            botClient.StartReceiving();
            Thread.Sleep(int.MaxValue);
}

1566355269804

재미있게 즐기세요.

Proxy

TelegramBotClient를 사용하면 Bot API 연결에 프록시를 사용할 수 있습니다.

HTTP

HTTP 프록시를 위해 IWebProxy를 봇 클라이언트에 전달할 수 있습니다.
root@kitploit:~
	// using System.Net;

	var httpProxy = new WebProxy("https://example.org", 8080)
	{
     	Credentials = new NetworkCredential("USERNMAE", "PASSWORD")
	};
	var botClient = new TelegramBotClient("YOUR_API_TOKEN", httpProxy);

SOCKS 5

외부 NuGet 패키지: HttpToSocks5Proxy를 사용할 수 있습니다.
root@kitploit:~
// using MihaZupan;

var proxy = new HttpToSocks5Proxy(Socks5ServerAddress, Socks5ServerPort);

// Or if you need credentials for your proxy server:
var proxy = new HttpToSocks5Proxy(
  Socks5ServerAddress, Socks5ServerPort, "USERNAME", "PASSWORD"
);

// Allows you to use proxies that are only allowing connections to Telegram
// Needed for some proxies
proxy.ResolveHostnamesLocally = true;

var botClient = new TelegramBotClient("YOUR_API_TOKEN", proxy);

How to compile

모든 DLL 파일을 EXE 파일로 컴파일하는 방법
먼저 ILMerge 도구를 다운로드하세요. 이 도구는 .NET 프로그램의 모든 참조를 병합하는 도구입니다.
root@kitploit:~
ilmerge.exe /target:exe /out:TGbot.exe ConsoleApp1.exe  AForge.Controls.dll AForge.dll AForge.Imaging.dll AForge.Math.dll AForge.Video.DirectShow.dll AForge.Video.dll Newtonsoft.Json.dll Telegram.Bot.dll /targetplatform:v4
/target -> 라이브러리 => DLL, exe => exe
/targetplatform:v4 -> 컴파일러 플랫폼은 .NET 4.0
/out -> 병합된 출력 파일, 매개변수 뒤에 병합할 파일들 지정

마지막으로, out 매개변수로 지정된 디렉터리에 출력 파일이 생성됩니다.

아직 보완 중입니다! 아직 보완 중입니다! 아직 보완 중입니다!

도구 다운로드