Skip to content

Commit

Permalink
Fix tonAPI
Browse files Browse the repository at this point in the history
  • Loading branch information
aaarghhh committed May 11, 2024
1 parent 708342c commit e2c1786
Show file tree
Hide file tree
Showing 6 changed files with 229 additions and 173 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
# CHANGELOG
## VER 0.2.02
- Improved the README.md
- Improved the speed of the search
- Added a proper analysis of the Owner of the NFT

## VER 0.1.11
- Added compatibility some improvements for Maltego-ltc
Expand Down
23 changes: 17 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# A TON of privacy v0.1.11
# A TON of privacy v0.2.02
## ATOP - A tool for investigating TON network and its NFT.

"A TON of Privacy" formally called ATOP ... is a tool for conducting OSINT investigations on TON (Telegram 🙃) NFTs.
Expand All @@ -17,21 +17,32 @@ ATOP supports:
- TON PHONE NUMBERS (+888)

## INSTALLATION
### 1. Git clone the repository.
```
$ git clone https://github.com/aaarghhh/a_TON_of_privacy.git
$ cd a_TON_of_privacy
```
Install dependencies using pip and the file requirements.
```
$ pip install -r requirements.txt
```
Install via pip
### 2. Via pipx
```
$ pip install atop
$ pipx install atop
```
## USAGE
If atop was installed as a **global package**:


If atop was installed as a **global package** (pipx):
```
$ a-ton-of-privacy --target "+888 12345678"
```
Retrieve information about a:

If atop was installed cloning the repository, from the root directory of the repository:
```
cd src/
# python -m atop.atop --target @whatiamlookingfor
```
It retrieves information about a:
- Telephone numbers
```
$ python3 /src/atop/atop.py --target "+888 12345678"
Expand Down
18 changes: 11 additions & 7 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
beautifulsoup4>=4.10.0
certifi
beautifulsoup4==4.12.2
bs4==0.0.1
build==1.0.3
certifi==2023.11.17
charset-normalizer==3.3.2
colorama
colorama==0.4.6
idna==3.6
load-dotenv==0.1.0
numpy
numpy==1.26.3
packaging==23.2
pyaes==1.6.1
pyasn1==0.5.1
pyproject_hooks==1.0.0
python-dotenv==1.0.0
requests
requests==2.31.0
rsa==4.9
soupsieve
Telethon
soupsieve==2.5
Telethon==1.33.1
urllib3==2.1.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="atop",
version="0.1.11",
version="0.2.02",
author="Aaarghhh",
author_email="[email protected]",
packages=["atop", "atop.modules"],
Expand Down
Loading

0 comments on commit e2c1786

Please sign in to comment.