Requests:
POST /api/user/reg HTTP/1.1
Host:
User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0
| #!/bin/bash | |
| BOTID='' #change me | |
| MYID='108474952' #change me | |
| echo "Run command: " $* | |
| #start=`date +%s` | |
| res1=$(date +%s.%N) | |
| $* | |
| res2=$(date +%s.%N) | |
| dt=$(echo "$res2 - $res1" | bc) | |
| dd=$(echo "$dt/86400" | bc) |
| curl -s "https://crt.sh/?q=%.ya.ru&output=json" | grep -Po 'name_value":"([^"]+)"' | awk -F':' '{ print $2 }' | sed 's/"//g' | sort -u |
| package main | |
| import ( | |
| "encoding/hex" | |
| "fmt" | |
| "log" | |
| "os" | |
| "github.com/ethereum/go-ethereum/crypto/sha3" | |
| ) |
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "log" | |
| "net" | |
| "os" | |
| "regexp" | |
| "sort" |
Requests:
POST /api/user/reg HTTP/1.1
Host:
User-Agent: Mozilla/5.0 (Windows NT 10.0; rv:78.0) Gecko/20100101 Firefox/78.0
| #!/usr/bin/python | |
| # -*- coding: utf-8 -*- | |
| import hashlib | |
| hash = 'tlJwpbo6' # for example | |
| def sofia_hash(msg): | |
| h = "" | |
| m = hashlib.md5() |