/*
Made by [egyJs.com](https://www.instagram.com/egyjs/);
*/
install it on your localhost and try it :
| { | |
| "rules": [ | |
| { | |
| "key": "INVALID_PASS_LENGTH", | |
| "message": "Şifreniz 7 ile 15 karakter arasında olmalıdır.", | |
| "value": "^.{7,15}$" | |
| }, | |
| { | |
| "key": "AT_LEAST_ONE_CHARACTER", | |
| "message": "Şifreniz en az 1 harf içermelidir.", |
| #Hooking SafetyNet stuff for fun (no profit tho :( ) | |
| #Several Functions just uncomment to use or modify :) | |
| #by T31M | |
| import frida | |
| import sys | |
| PACKAGE_NAME = "com.nianticlabs.pokemongo" | |
| process = frida.get_usb_device().attach(PACKAGE_NAME) |
| import os, binascii, hashlib | |
| #supply password | |
| secret = 'your password here you want to use' # all you need to change! | |
| #static 'count' value later referenced as "c" | |
| indicator = chr(96) | |
| #used to generate salt | |
| rng = os.urandom |
| DNSPort 9053 | |
| ExcludeSingleHopRelays 0 | |
| AllowSingleHopCircuits 1 | |
| KeepalivePeriod 60 | |
| #NewCircuitPeriod 15 | |
| UseEntryGuards 1 | |
| NumEntryGuards 8 | |
| CircuitBuildTimeout 5 | |
| EnforceDistinctSubnets 0 | |
| OptimisticData 1 |
/*
Made by [egyJs.com](https://www.instagram.com/egyjs/);
*/
install it on your localhost and try it :
| <?php | |
| if (file_exists('sig1.php')) { | |
| unlink('sig1.php'); | |
| } | |
| function getc($url) | |
| { | |
| $ch = curl_init($url); | |
| curl_setopt($ch, CURLOPT_ENCODING, 'gzip'); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
| curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); |
| /** | |
| * Metni url'de kullanılabilir hale çevirir. Boşluklar tireye çevrilir, | |
| * alfanumerik olmayan katakterler silinir. | |
| * | |
| * Transform text into a URL path slug(with Turkish support). | |
| * Spaces turned into dashes, remove non alnum | |
| * | |
| * @param string text | |
| */ | |
| slugify = function(text) { |
Create a folder to store the databases :
mkdir -p /usr/share/GeoIP
Download Country IP database
wget http://geolite.maxmind.com/download/geoip/database/GeoLiteCountry/GeoIP.dat.gz
gunzip GeoIP.dat.gz
| <?php | |
| // Based on <https://github.com/mecha-cms/x.minify> | |
| namespace x\minify\_ { // start namespace | |
| $n = __NAMESPACE__; | |
| \define($n . "\\token_boolean", '\b(?:true|false)\b'); | |
| \define($n . "\\token_number", '-?(?:(?:\d+)?\.)?\d+'); |
| <?php | |
| /** | |
| * ----------------------------------------------------------------------------------------- | |
| * Based on `https://github.com/mecha-cms/mecha-cms/blob/master/system/kernel/converter.php` | |
| * ----------------------------------------------------------------------------------------- | |
| */ | |
| // HTML Minifier | |
| function minify_html($input) { |