Skip to content
KitploitKITPLOIT
ツールブログ
提出
ツールブログ
提出

ハッキング、侵入テスト、サイバーセキュリティツールをあなたのセキュリティアーセナルに!

Kitploitはハッキング、サイバーセキュリティ、ペネトレーションテストのツールディレクトリです。最新のプロジェクトアップデートを見つけて、脆弱性の発見、システム分析、テストの自動化、セキュリティの強化を行いましょう。

··フィード·お問い合わせ·プライバシー·© 2026 Kitploit

ツールディレクトリ

カテゴリ

すべてのカテゴリを見る
Loading categories
Telegra_Csharp_C2 — C#記述用のコマンド&コントロール | Kitploit
ツール/GitHubGitHub/sf197/telegra_csharp_c2
ペイロード生成ポストエクスプロイトコマンド&コントロールレッドチーミングリモートアクセスツール
GitHubsf197/telegra_csharp_c2

Telegra_Csharp_C2

C#記述用のコマンド&コントロール

リポジトリを見る
68194年前Kitploit レビュー済み

人気

すべて見る →

コミュニティで最も使われているツールを見つけましょう。

すべてのツールを探索

ツールコレクションを閲覧

すべてのツールを見る →
共有

Telegra_Csharp_C2

C# で記述された Command and Control

作者: Leiothrix

Telegram: @Leiothrix

Twitter: @wh4am1

チーム: QQ愛&Love

logo

VirusTotal チェック結果

もう Virus Total に流さないでください。こちらで試しました。

VirusTotal

link:https://www.virustotal.com/gui/file/ad1cd12bd6c8bee46ab35aa21a4fb48c2bcf9fdddbf1af82ad6f20eb75daa663/detection

全表示

  • インストール
  • 使い方
  • プロキシ
  • コンパイル方法

インストール

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;
「参照」に関連クラスを追加
root@kitploit:~
System.Drawing;
System.Windows.Forms;

使い方

プログラムに自分のトークンを設定
root@kitploit:~
 static void Main(){
            botClient = new TelegramBotClient("token");		//Your Token
            botClient.OnMessage += Bot_OnMessage;
            botClient.StartReceiving();
            Thread.Sleep(int.MaxValue);
}

1566355269804

お楽しみください。

プロキシ

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);

SOCKS5

外部 NuGet パッケージ HttpToSocks5Proxy を利用できます。
root@kitploit:~
// using MihaZupan;

var proxy = new HttpToSocks5Proxy(Socks5ServerAddress, Socks5ServerPort);

// またはプロキシサーバーに認証が必要な場合:
var proxy = new HttpToSocks5Proxy(
  Socks5ServerAddress, Socks5ServerPort, "USERNAME", "PASSWORD"
);

// Telegram への接続のみを許可するプロキシを使用可能にします
// 一部のプロキシで必要です
proxy.ResolveHostnamesLocally = true;

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

コンパイル方法

すべての DLL ファイルを 1 つの 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 -> library=>DLL exe=>exe
/targetplatform:v4 -> コンパイルプラットフォームは .NET 4.0
/out -> 統合後の出力ファイル。パラメータの後には統合するファイルを指定します。

最後に、out パラメータで指定したディレクトリに出力が生成されます

まだ改良中!まだ改良中!まだ改良中!

ツールをダウンロード