PLUGIN Garena / Garena Plugins / Getdota / Playdota

Publicado por david_domh, Septiembre 10, 2013, 01:29:55 PM

Tema anterior - Siguiente tema

david_domh

Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o garenanow.com.so garenanow.com.cpp
// regex
// http.*\.garenanow\.com.*(\.exe|\.flv|\.swf|\.gif|\.png|\.jpg|\.rar)


string get_filename(string url) {
     vector<string> resultado;
               if (url.find("?") != string::npos) {
                       stringexplode(url, "?", &resultado);
                       stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);          
               } else {
                       stringexplode(url, "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);
               }
   }

extern "C" resposta getmatch(const string url) {
   resposta r;  

  if ( (url.find("garenanow.com") != string::npos) and
     (url.find(".exe") != string::npos) or
     (url.find(".flv") != string::npos) or
     (url.find(".swf") != string::npos) or
     (url.find(".gif") != string::npos) or
     (url.find(".png") != string::npos) or
     (url.find(".jpg") != string::npos) or
     (url.find(".rar") != string::npos)
  ) {
     
     r.file = get_filename(url);
     if (!r.file.empty()) {
        r.match = true;
        r.domain = "Garena/Client";
     } else {
        r.match = false;
     }
  } else {
     r.match = false;
  }
  return r;
}



Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o getdota.com.so getdota.com.cpp
// regex
// http.*\.getdota\.com.*(\.w3x|\.rar|\.zip)


string get_filename(string url) {
     vector<string> resultado;
               if (url.find("?") != string::npos) {
                       stringexplode(url, "?", &resultado);
                       stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);          
               } else {
                       stringexplode(url, "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);
               }
   }

extern "C" resposta getmatch(const string url) {
   resposta r;  

  if ( (url.find("getdota.com") != string::npos) and
     (url.find(".w3x") != string::npos) or
     (url.find(".rar") != string::npos) or
     (url.find(".zip") != string::npos)
  ) {
     
     r.file = get_filename(url);
     if (!r.file.empty()) {
        r.match = true;
        r.domain = "GetDota/Maps-II";
     } else {
        r.match = false;
     }
  } else {
     r.match = false;
  }
  return r;
}



Código (cpp) [Seleccionar]
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"

// use this line to compile
// g++ -I. -fPIC -shared -g -o playdota.com.so playdota.com.cpp
// regex
// http.*\.playdota\.com.*(\.w3x|\.rar|\.zip)


string get_filename(string url) {
     vector<string> resultado;
               if (url.find("?") != string::npos) {
                       stringexplode(url, "?", &resultado);
                       stringexplode(resultado.at(resultado.size()-2), "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);          
               } else {
                       stringexplode(url, "/", &resultado);
                       return resultado.at(resultado.size()-3)+"_"+resultado.at(resultado.size()-2)+"_"+resultado.at(resultado.size()-1);
               }
   }

extern "C" resposta getmatch(const string url) {
   resposta r;  

  if ( (url.find("playdota.com") != string::npos) and
     (url.find(".w3x") != string::npos) or
     (url.find(".rar") != string::npos) or
     (url.find(".zip") != string::npos)
  ) {
     
     r.file = get_filename(url);
     if (!r.file.empty()) {
        r.match = true;
        r.domain = "GetDota/Maps";
     } else {
        r.match = false;
     }
  } else {
     r.match = false;
  }
  return r;
}



David M.

ingjaab

Mueres siendo un héroe, o vives lo suficiente para convertirte en villano