Skip to content

Instantly share code, notes, and snippets.

View XianThi's full-sized avatar

Abdulsamet SAYLIK XianThi

View GitHub Profile
@XianThi
XianThi / pedal.ino
Last active January 26, 2023 22:54
uint8_t buf[8] = {
0 }; /* Keyboard report buffer */
#define MINOR_PIN 5
#define LF_PIN 6
int pedal_state = 1;
int lf_state = 1;
void setup()
@XianThi
XianThi / getplusaccounts.py
Created May 23, 2020 01:13
Connected2 plus account usernames from shuffle. usage : getplusaccounts.py -c count -f filename
import requests, json
from sys import argv
import argparse
plus_list = []
def get_plus_accounts(loop):
global plus_list
i = 1
while(loop>i):
var wepquality;
var uselimit;
var prompttext;
var limitreset;
var intervalId = 1;
var side = 0;
var start = false;
var selectedbtn;
var hp = 100;
@XianThi
XianThi / CreateAnonNickPass.php
Last active March 25, 2022 20:17
connected2 anon nick & password generator
<?php
#####################################################
# USAGE #
# include(CreateAnonNickPass.php) #
# CreateAnonNickPass::getAnonNickPassword(); #
#####################################################
class SecureRandomException extends Exception {
}
@XianThi
XianThi / checksumGenerator.java
Created January 28, 2020 23:18
connected2 media upload checksum generator for spoof media
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");
@XianThi
XianThi / CreateAnonNickPass.java
Created January 28, 2020 21:29
connected2 anon nick & password generator
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);
@XianThi
XianThi / equmerger.js
Last active February 2, 2020 18:50
e-Sim mass equipment merger script
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");
@XianThi
XianThi / eSim-EquManager.user.js
Last active August 22, 2019 15:41
e-Sim Equipment Manager (easy merge for now)
// ==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
@XianThi
XianThi / wt.php
Created November 8, 2018 15:57
e-sim work train script
<?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);
}
@XianThi
XianThi / bot.py
Created May 1, 2018 18:10
bot for google forms
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: