I hereby claim:
- I am joaoescribano on github.
- I am escribano (https://keybase.io/escribano) on keybase.
- I have a public key ASC3-t_7oDxBgl9XiwNZOTNU-MFpoElzhpOPhz8FidSU1Ao
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Here is how I've been able to replicate the same "behavior" showed at Atlas "prove" video.
Take a closer look when the balance page starts to show, and "error" appears at the page top, this specific error ONLY triggers when the website could not establish a connection to the HitBTC socket (as anyone can see at the code) So to test it, I've developed this in 30 minutes:
Step 1) Edit computer network hosts and add:
127.0.1.1 st.hitbtc.com
This will prevent the website to find the socket to account info, so the error will appear at the top of the balance page, as we can see here:
| #!/usr/bin/env python3 | |
| # Usage: | |
| # ./binance.py <email> <senha> <otp> <wallet to test json> | |
| from solver import PuzleSolver | |
| import calendar | |
| import json | |
| import os | |
| import pyotp |
| #!/usr/bin/env python3 | |
| # usage: python3 kucoin_collector.py <username> <password> <otp_secret> | |
| import datetime | |
| import math | |
| import os | |
| import sys | |
| import tempfile | |
| import pyotp | |
| import time |
| <?php | |
| $craftables = array( | |
| 't_normal' => array( | |
| 0 => 'i_gorgon_lens', | |
| 1 => '0190e', | |
| 2 => '0207f', | |
| 3 => '024d0', | |
| 4 => '024d2', | |
| 5 => '02ddd', | |
| 6 => '02de1', |
| <?php | |
| $scriptFolder = "../script-original/"; | |
| $scriptFiles = glob("{$scriptFolder}*.scp"); | |
| $scriptFiles = array_merge($scriptFiles, glob("{$scriptFolder}/*/*.scp")); | |
| $scriptFiles = array_merge($scriptFiles, glob("{$scriptFolder}/*/*/*.scp")); | |
| $scriptFiles = array_merge($scriptFiles, glob("{$scriptFolder}/*/*/*/*.scp")); | |
| $scriptFiles = array_merge($scriptFiles, glob("{$scriptFolder}/*/*/*/*/*.scp")); | |
| $scriptFiles = array_merge($scriptFiles, glob("{$scriptFolder}/*/*/*/*/*/*.scp")); | |
| $scriptFiles = array_merge($scriptFiles, glob("{$scriptFolder}/*/*/*/*/*/*/*.scp")); |
| #!/usr/bin/env python3 | |
| import datetime | |
| import math | |
| import os | |
| import sys | |
| import tempfile | |
| # third-party imports | |
| from PIL import Image |
| import os, sys, re, time | |
| from bitstring import ConstBitStream | |
| def getPid(program): | |
| os.system('(pidof ' + program + ') > .tmp') | |
| pid = open('.tmp', 'r').read() | |
| return pid.strip() | |
| def seekData(pid, lookForStr): | |
| maps_file = open("/proc/"+str(pid)+"/maps", 'r') |
| #! python3 | |
| from PIL import Image | |
| import pyautogui, sys, time, random, pytesseract, os | |
| print('At any time, press Ctrl-C to quit the bot.\n') | |
| clientDetected = False | |
| clientPlaying = False | |
| accountName = 'account' # Account |
| #! python3 | |
| import os, time | |
| def getWindow(program): | |
| os.system('(xdotool search --pid $(pidof '+program+')) > .tmp') | |
| window = open('.tmp', 'r').read() | |
| return window.strip() | |
| def getActualDesktop(): | |
| os.system('(xdotool get_desktop) > .tmp') |