cheaterforlifex88

Members
  • Content Count

    16
  • Last visited

Community Reputation

1 Neutral

Recent Profile Visitors

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

  1. https://stackoverflow.com/questions/6287918/how-to-decompile-an-exe-file-compiled-by-py2exe https://github.com/countercept/python-exe-unpacker https://reverseengineering.stackexchange.com/questions/160/how-do-you-reverse-engineer-an-exe-compiled-with-pyinstaller Hope I could help
  2. Coded that yesterday in C#. Requires HTTP proxies. Put combolist.txt and proxylist.txt in the same folder. Download: [hide] https://anonfile.com/32bbJbocb5/AntiPublic_zip [/hide] Im always happy about feedback.
  3. My second release for here. Requires combolist.txt and proxylist.txt in same folder. HTTP proxies only. Warning: Chaturbate silent bans. Program working fine, tried with an test account. Saves accs with tokens and without in different files. Captures tokens. Download: [hide] https://anonfile.com/Ee0eH1o2b3/ChaturbateCracker_zip [/hide] Takes some time to startup due to antidebugging^^ Always happy about feedback!
  4. Most c++ tools are vm protected, so you wanna go for debuggers.
  5. hey homie, what language it's coded in?
  6. Thank you! just released my spotify checker (proxyless) Thank you too for welcoming me, are vpns forbidden here?
  7. Obfuscators, Confusers, Junk code adders, Code virtualization. Google that, hope I was able to help :)
  8. 1) Declare your proxyQueue: private static Queue proxyQueue = new Queue(); 2) Load your proxies: foreach (string item in File.ReadLines("proxies.txt")) { Program.proxyQueue.Enqueue(item); } 3) Pick random proxy Random rdn = new Random(); string ProxyAdress = Program.proxyQueue.ElementAt(rdn.Next(0, Program.proxyQueue.Count - 1)); string proxyip = ProxyAdress.Split(':')[0]; string proxyport = Convert.ToInt32(ProxyAdress.Split(':')[1]); httpWebRequest.Proxy = new WebProxy(proxyip, proxyport); Hope I helped.
  9. Depends on what you want to do. If you wanna go for software development i'd go for C#. (.NET) Webdev: HTML, CSS, JS, SQL, PHP
  10. This is my first contribution here. Fastest spotify cracker you prob ever seen. Coded that like 4 months or something ago - still working fast and proxyless. YOU HAVE TO PUT combolist.txt otherwise the tool won't work. [hide] https://anonfile.com/t9k4H7o8bd/SpotifyChecker_zip [/hide] I hope you enjoy it. Always happy about feedback. Because someone said I didn't make the checker myself: Coded it in C# and can show proofs if needed.