Código [Seleccionar]
http://patch.articgamers.net/Gunz.exe
http://patch.articgamers.net/system/strings.xml
http://patch.articgamers.net/system/strings.xml
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Menú Mostrar Mensajeshttp://patch.articgamers.net/Gunz.exe
http://patch.articgamers.net/system/strings.xml
http://patch.articgamers.net/system/strings.xml
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"
using namespace std;
// use this line to compile
// g++ -I. -fPIC -shared -g -o doubleclick.net.so doubleclick.net.cpp
// regex
// http.{1,4}\w*google(\.\w|\w)*\.doubleclick\.net\/pagead\/ads\?.*
extern "C" resposta getmatch(const string url) {
resposta r;
string find = "";
string find2 = "";
int len;
if(url.find("www.youtube.com") != string::npos) {
if ( ( (find = regex_match("[\\?&]ad_type=skippablevideo($|&)",url)) != "" || (find = regex_match("[\\?&]ad_type=video($|&)",url)) != "" || (find = regex_match("[\\?&]ad_type=text_image_flash($|&)",url)) != "" || (find = regex_match("[\\?&]ad_type=text($|&)",url)) != "" || (find = regex_match("[\\?&]ad_type=image($|&)",url)) != "" ) && ( (find2 = regex_match("[\\?&]url=http.{2,15}www.youtube.com([a-zA-Z0-9]|%|-|_)*&?",url)) != "" ) ) {
r.domain = "rewrite";
r.file = "googleads.g.doubleclick.net/pagead/ads";
r.match = true;
return r;
}
}
r.match = false;
return r;
}
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"
// use this line to compile
// g++ -I. -fPIC -shared -g -o xtube.com.so xtube.com.cpp
// regex http.*\.(publicvideo|publicphoto)\.xtube\.com\/(videowall\/)?videos?\/.*(\.flv\?.*|\_Thumb\.flv$)
string get_filename(string url) {
vector<string> resultado;
stringexplode(url,"/",&resultado);
url = resultado.at(resultado.size() - 1);
if (url.find("?") == string::npos) {
return url;
} else {
resultado.clear();
stringexplode(url, "?", &resultado);
string tmp;
if( (tmp = regex_match("[\\?&]fs=[0-9]+",resultado.at(1))) != "" ) {
tmp.erase(0,4);
}
return resultado.at(0);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "xtube";
} else {
r.match = false;
}
return r;
}
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include "../utils.cpp"
using namespace std;
//Gildope
// regex
// http.*(\.skype\.com).*(\.cab|\.exe|\.zip|\.msi)
// http://download.skype.com/7781251b62871315174c8fca7d5adca8/partner/73/SkypeSetupFull.exe
// use this line to compile
// g++ -I. -fPIC -shared -g -o skype.com.so skype.com.cpp
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find("download.skype.com/") != string::npos) )
{
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "Skype";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}
/*
* @autor xtanctp, xtanctp@gmail.com
* http.*(\.socialpointgames\.com.|\.socialpoint\.es.)*(\.jpg|\.png|\.gif|\.swf|\.mp3)
* g++ -I. -fPIC -shared -g -o socialpointgames.com.so socialpointgames.com.cpp
*/
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include "../utils.cpp"
using namespace std;
string dominiotxt="socialpg";
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find(".socialpointgames.com") != string::npos) and (url.find("dragoncity/") != string::npos)
) {
dominiotxt="socialpg/dragoncity";
}
if ( (url.find(".socialpointgames.com") != string::npos) and (url.find("socialwars/")!= string::npos)
) {
dominiotxt="socialpg/socialwars";
}
if ( (url.find(".socialpointgames.com") != string::npos) and (url.find("socialempires/")!= string::npos)
) {
dominiotxt="socialpg/socialempires";
}
if ( (url.find(".socialpointgames.com") != string::npos) or
(url.find(".socialpoint.es") != string::npos)
{
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = dominiotxt;
} else {
r.match = false;
}
}
else {
r.match = false;
}
return r;
}
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"
// use this line to compile
// g++ -fPIC -shared -g -o mbamupdates.com.so mbamupdates.com.cpp
// http://data-cdn.mbamupdates.com/v0/program/data/mbam-setup-1.70.0.1100.exe
// Regex
// http.*\.mbamupdates.com.*(\.exe)
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find(".mbamupdates.com/") != string::npos)
) {
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "mbamupdates";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"
// use this line to compile
// g++ -I. -fPIC -shared -g -o tube8.com.so tube8.com.cpp
//regex
//http.*\.tube8\.com.*(\.flv|\.mp4)
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find(".tube8.com/") != string::npos) and
(url.find(".mp4") != string::npos) and (url.find("?start=") == string::npos) // tirar start para nao fazer cache de file incompleto
) {
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "tube8";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}
/*
*plugin partial content google pack
*created by grage95
*example http://dl.google.com/chrome/install/1025.168_1025.162/chrome_updater.exe
*http://o-o.preferred.pttelkom-bth1.v10.lscache6.c.pack.google.com/edgedl/chrome/install/1025.168/chrome_installer.exe?
* Use ^http.*\.google\.com.*\.(exe|msi|msp|cab) no bfwcache.acl
* Vida longa ao BFW!
*/
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include "../utils.cpp"
using namespace std;
// use this line to compile
// g++ -I. -fPIC -shared -g -o google.com.so google.com.cpp
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find(".google.com/") != string::npos) and
( (url.find(".exe") != string::npos) || (url.find(".msp") != string::npos) || (url.find(".msi") != string::npos) || (url.find(".cab") != string::npos) )
) {
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "googlepack";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}
http.*\.macromedia\.com.*(\.exe|\.msi|\.z)
/*
* @autor xtanctp. use http.*\.phncdn\.com.*(\.flv|\.mp4) no bfwcache.acl
* xtanctp@gmail.com
*/
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.cpp"
// use this line to compile 64
// g++ $BUILD64 -I. -fPIC -shared -g -o phncdn.com.so phncdn.com.cpp
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta get_match(const string url) {
resposta r;
if ( (url.find(".phncdn.com/") != string::npos)
) {
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "phncdn-xno";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}
#include <iostream>
#include <cstring>
#include <vector>
#include "../utils.h"
#include "../utils.cpp"
// Gildo
// use this line to compile
// g++ -I. -fPIC -shared -g -o kaspersky.com.so kaspersky.com.cpp
// http://products.kaspersky-labs.com/multilanguage/i_gateways/proxyserver/linux/kav4proxy_5.5-80_i386.deb
// acl http.*(\.kaspersky-labs\.com|\.kasperskyamericas\.com|\.geo\.kaspersky\.com|kasperskyusa\.com).*(\.avc|\.kdc|\.klz|\.bz2|\.dat|\.dif|\.apk|\.exe|\.dmg|\.deb)
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( ((url.find("kaspersky.com/diffs/bases/") != string::npos) or (url.find("kaspersky.com/bases/") != string::npos) or (url.find("kaspersky.com") != string::npos) or (url.find("kasperskyamericas.com") != string::npos) or (url.find("kasperskyusa.com") != string::npos) or (url.find("kaspersky-labs.com") != string::npos) ) and (url.find(".bz2") != string::npos) or (url.find("/diffs/") != string::npos) or (url.find(".avc") != string::npos) or
(url.find(".kdc") != string::npos) or (url.find(".klz") != string::npos) or (url.find(".dif") != string::npos) or
(url.find(".dat") != string::npos) or (url.find(".exe") != string::npos) or (url.find(".kdz") != string::npos) or
(url.find(".kdl") != string::npos) or (url.find(".kfb") != string::npos)
) {
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "kaspersky";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}
#include <iostream>
#include <cstring>
#include <string>
#include <vector>
#include "../utils.cpp"
using namespace std;
//Gildo
//acl http.*\.avira-update\.com.*(\.bin|\.vdf|\.gz|\.exe|\.zip|\.rar)
//http://personal.avira-update.com/package/wks_avira/win32/es/pecl/avira_free_antivirus_es.exe
// use this line to compile
// g++ -I. -fPIC -shared -g -o avira-update.com.so avira-update.com.cpp
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()-1);
} else {
stringexplode(url, "/", &resultado);
return resultado.at(resultado.size()-1);
}
}
extern "C" resposta getmatch(const string url) {
resposta r;
if ( (url.find("personal.avira-update.com/") != string::npos) or (url.find("premium.avira-update.com/") != string::npos) or (url.find("professional.avira-update.com/") != string::npos) )
{
r.file = get_filename(url);
if (!r.file.empty()) {
r.match = true;
r.domain = "avira";
} else {
r.match = false;
}
} else {
r.match = false;
}
return r;
}