random - HttpWebRequest via C# -
so can see down here i'm using random change account info i've problem email don't want change email , if delete it won't work. how can make not change email , leave alone ?
byte[] postdata = encoding.ascii.getbytes(string.format("csrfmiddlewaretoken={0}&first_name={1}&email={2}%40gmail.com&username={3}&phone_number=&gender=3&biography=&external_url=&chaining_enabled=on",
class threadsaferandom { private static random random = new random(); private static string _chars = "abcdefghijklmnopqrstuvwxyz"; private static string _nums = "0123456789"; public static string nextstring(int size = 8) { lock (random) { return new string(enumerable.repeat(_chars, size) .select(s => s[random.next(s.length)]).toarray()); } } public static int next(int low, int max) { lock (random) { return random.next(low, max); } } } class instagram { private cookiecontainer s0; public string proxy = ""; private const string csrfpattern = "csrf_token\":\"(.*?)\""; public instagram() { s0 = new cookiecontainer(); } public bool c = false; public void claim(object username) { byte[] postdata = encoding.ascii.getbytes(string.format("csrfmiddlewaretoken={0}&first_name={1}&email={2}%40gmail.com&username={3}&phone_number=&gender=3&biography=&external_url=&chaining_enabled=on", getcsrf2(), threadsaferandom.nextstring(), threadsaferandom.nextstring(), username.tostring()));
Comments
Post a Comment