KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
tracing_the_kucoin_hacker
★ 8
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
codescream
:
No description available.
ImguiSFMLBazel
:
A template repository for Imgui-SFML integration with Bazel
MICCAI2023-Camera-Motion-Prediction
:
Predicting and estimating camera motion in endoscopic interventions
2020-DBLAB
:
2020-数据库系统概论-大作业
fe-career-archive
:
个人职业生涯技术总结
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
tracing_the_kucoin_hacker
?
Download (.md)
# Deanonymising the Kucoin hacker This repository contains the data and code I used for [this post](https://docs.google.com/document/d/e/2PACX-1vR81n3zxgbgNSibvXeFltSsdOVrvPyJKMNTGXIF57ut3sGQOh9k1yLzF0Mfju0Am8z0mvNC1IOHXQm8/pub) identifying the September 2020 Kucoin hacker's withdrawal addresses from Tornado Cash. I used Google BigQuery to obtain the data in `data/TC\ transactions.csv`. The SQL was: ```sql SELECT * FROM `bigquery-public-data.crypto_ethereum.transactions` WHERE ( to_address="0x12d66f87a04a9e220743712ce6d9bb1b5616b8fc" OR to_address="0x47ce0c6ed5b0ce3d3a51fdb1c52dc66a7c3c2936" OR to_address="0x910cbd523d972eb0a6f4cae4618ad62622b39dbf" OR to_address="0xa160cdab225685da1d56aa342ad8841c3b53f291" ) AND (input LIKE "0xb214faa5%" OR input LIKE "0x21a0adb6%") AND receipt_status=1 ORDER BY to_address, block_number, from_address, nonce ``` To run the Jupyter Notebook, clone this repository and run: ```bash virtualenv venv source venv/bin/activate pip3 install -r requirements.txt jupyter notebook ```