Download mitmproxy from https://mitmproxy.org/
start mitmproxy with following code :
mitmproxy -s c2unban.py
change Proxy settings in phone :)
go to http://mitm.it in your phone browser and install certificate for ssl requests.
Download mitmproxy from https://mitmproxy.org/
start mitmproxy with following code :
mitmproxy -s c2unban.py
change Proxy settings in phone :)
go to http://mitm.it in your phone browser and install certificate for ssl requests.
| import requests | |
| import random | |
| import json | |
| def gonder(): | |
| cinsiyet = ['Erkek','Kadın'] | |
| cinsiyet_sec = random.choice(cinsiyet) | |
| yas = ['18-25','26-35','36-45','45 ve üstü'] | |
| yas_sec = random.choice(yas) | |
| medeni = ['Evli','Bekar'] | |
| if yas.index(yas_sec)>0: |
| <?php | |
| function crul($url,$header,$cookie_path,$post=false,$cookie=false){ | |
| $ch = curl_init($url); | |
| curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); | |
| curl_setopt($ch, CURLINFO_HEADER_OUT, true); | |
| curl_setopt($ch, CURLOPT_HEADER, 1); | |
| if($post !== false){ | |
| curl_setopt($ch, CURLOPT_POSTFIELDS, $post); | |
| } |
| // ==UserScript== | |
| // @name Equipment Manager | |
| // @license MIT | |
| // @version 1.1 | |
| // @namespace localhost | |
| // @author XianThi | |
| // @description e-Sim Equipment Manager Tool (easy merge for now) | |
| // @downloadUrl https://gist.github.com/XianThi/98f4ba3746211baf3b3ee21a97d504c9/raw/9ddb908576373f0a1c0d9fc427da01733d7a5e3b/eSim-EquManager.user.js | |
| // @match https://*.e-sim.org/storage.html?storageType=EQUIPMENT* | |
| // @require https://code.jquery.com/jquery-3.2.1.min.js |
| var j, htmlstr; | |
| var prompttext = ""; | |
| var itemarray = Array(); | |
| var intervalId = 1; | |
| var itemquality = 1; | |
| var selecteditemtype = null; | |
| var itemtype = 1; | |
| function post(e, t, n = "post") { | |
| const o = document.createElement("form"); |
| import java.math.BigInteger; | |
| import java.security.MessageDigest; | |
| import java.security.NoSuchAlgorithmException; | |
| import java.security.SecureRandom; | |
| import java.io.IOException; | |
| import java.io.UnsupportedEncodingException; | |
| public class CreateAnonNickPass { | |
| public static void main(String[] args) { | |
| String anonPass = (new BigInteger(200, new SecureRandom())).toString(32); |
| import java.security.MessageDigest; | |
| import java.nio.charset.Charset; | |
| public class checksumGenerator { | |
| public static void main(String[] args) { | |
| StringBuilder stringBuilder = new StringBuilder(); | |
| String encodedstr = encodeFile("upload.jpg"); | |
| stringBuilder.append(get()); | |
| stringBuilder.append("|"); | |
| stringBuilder.append("nick"); |
| <?php | |
| ##################################################### | |
| # USAGE # | |
| # include(CreateAnonNickPass.php) # | |
| # CreateAnonNickPass::getAnonNickPassword(); # | |
| ##################################################### | |
| class SecureRandomException extends Exception { | |
| } |
| var wepquality; | |
| var uselimit; | |
| var prompttext; | |
| var limitreset; | |
| var intervalId = 1; | |
| var side = 0; | |
| var start = false; | |
| var selectedbtn; | |
| var hp = 100; |
| import requests, json | |
| from sys import argv | |
| import argparse | |
| plus_list = [] | |
| def get_plus_accounts(loop): | |
| global plus_list | |
| i = 1 | |
| while(loop>i): |