HelpAnyone know the Http post url

Posts 115 of 21 · Page 1 of 2
Anyone know the Http post url
I need to automated the process of verifying a ton of mules

Does anyone know the realmofthemadgod.appspot.com http post commands
To change the email of already created account, and to send a verification email
PLEASE DON'T HELP HIM,
Dude We Dont WANT YOUR SHIT BACK
Thank you
Quote Originally Posted by IziLife View Post
PLEASE DON'T HELP HIM,
Dude We Dont WANT YOUR SHIT BACK
Thank you


This for spam bots?
I just wondering if anyone had some code to verify 100s of accounts, it would save me a bit of time
Looks like I forgot to verify 1000 mule accounts I need a automated script
How are you so rich Botmaker in rotmg??
Quote Originally Posted by HappyMan20 View Post
How are you so rich Botmaker in rotmg??
I spent my time teaching my self how to program from many great learning sources, luckily the internet exists at the same time of my life on planet earth , the internet is the best source of true knowledge,
my young years spent learning how things work, many years of persisting finally pay off

My real wealth/riches is my knowledge, my dreams are knowledge of all things.
only to see it all fade, in the end I know I will live my dreams/life.

Quote Originally Posted by Botmaker View Post
I spent my time teaching my self how to program from many great learning sources, luckily the internet exists at the same time of my life on planet earth , the internet is the best source of true knowledge,
my young years spent learning how things work, many years of persisting finally pay off

My real wealth/riches is my knowledge, my dreams are knowledge of all things.
only to see it all fade, in the end I know I will live my dreams/life.

Ready to trade?
Quote Originally Posted by krazyshank View Post
Ready to trade?
sure us mid west next to vault

edit
waited for you, nvm got to sleep
Quote Originally Posted by bb1234bb View Post
I don't think its possible, or I am maybe missing sth. Found http://realmofthemadgod.appspot.com/account/changeEmail with newGuid, but wasnt able to make it work yet.
It takes the following parameters: newGuid, guid, and password. The guid being your current email, newGuid is the email you want to change to, and pass is of course the current password. I doubt you missed any of these so I wonder why it didn't work for you...

Edit: Just saw you use http (not https). Maybe your problem? Hopefully no one was looking at your internet traffic as that was sent.
Quote Originally Posted by nilly View Post
Edit: Just saw you use http (not https). Maybe your problem? Hopefully no one was looking at your internet traffic as that was sent.
No it works with both http and https, I had "passwodr" instead of "password"

I think account/verify is to resend verification e-mail, changeEmail to change from mail1@gmail.com to mail2@gmail.com and send another verification.
Quote Originally Posted by bb1234bb View Post
No it works with both http and https, I had "passwodr" instead of "password"



I think account/verify is to resend verification e-mail, changeEmail to change from mail1@gmail.com to mail2@gmail.com and send another verification.
Ah ok sorry lol
send the verification email
i use "realmofthemadgod.appspot.com/char/verify?guid=fdfdfdfd@drdrb.com&password=123456"

conformation email reply link
"realmofthemadgod.appspot.com/account/v?b=4J314rX27VKa3za_&a=59222229345153718" <--random

imap php
it has some features like ignore duplicate verification emails (uses most recent) and it shows which mule it is working on

Code:
	

    <?php
     
    // requirements:
    // sudo apt-get install php5-imap php5-curl
     
    /* connect to gmail */
    $hostname = '{imap.gmail.com:993/imap/ssl}INBOX';
    $username = 'user@domain.com';
    $password = 'foo';
     
    /* try to connect */
    $inbox = imap_open($hostname,$username,$password) or die('Cannot connect to Gmail: ' . imap_last_error());
     
    /* grab emails */
    $emails = imap_search($inbox,'SUBJECT "Verify email for Realm of the Mad God" SINCE "12 September 2013"');
     
    $total = count($emails);
     
    $current = 0;
     
    /* if emails are returned, cycle through each... */
    if($emails) {
     
      /* put the newest emails on top */
      rsort($emails);
     
     
      /* for every email... */
      foreach($emails as $email_number) {
       
        /* get information specific to this email */
     
        $overview = imap_fetch_overview($inbox,$email_number,0);
        $emailto = $overview[0]->to;
     
        $message = imap_fetchbody($inbox,$email_number,1);
     
        preg_match_all('/.+realmofthemadgod.appspot.com\/account\/v.+/', $message, $matches);
     
        $url = $matches[0][0];
     
        $data = array('email' => $emailto,'url'=>$url);
     
        $output[] = $data;
     
        $urls[] =  $url;
     
        $current++;
     
        echo "reading email: $current of $total $emailto \n";
     
      }
     
    /* close the connection */
    imap_close($inbox);
     
    $muleguids=array();
     
    foreach ($output as $entry) {
      if (in_array($entry["email"],$muleguids)) {
      //mule guid already in array
      }
      else {
    //    var_dump($entry);
        $muleguids[] = $entry["email"];
        $unique[]=$entry;
      }
    }
     
      $uniquecount = count($unique);
      $count = 0;
     
      foreach ($unique as $entry) {
     
        $returned_content = get_data($entry["url"]);
     
        $count++;
     
        $good = preg_match("/Thank you!/",$returned_content);
     
        if (  $good == true ) {
        echo "verify success: $count of $uniquecount ".$entry["email"]."\n";
        }
        else {
        echo "verify failure: $count of $uniquecount ".$entry["email"]."\n";
        }
     
      }
    }
     
     
    /* gets the data from a URL */
    function get_data($url) {
      $ch = curl_init();
      $timeout = 5;
      curl_setopt($ch, CURLOPT_URL, $url);
      curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
      curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
      $data = curl_exec($ch);
      curl_close($ch);
      return $data;
    }
     
    ?>
Posts 115 of 21 · Page 1 of 2

Post a Reply

Similar Threads

Tags for this Thread

None

Need help?