Skip to content

Commit 339f872

Browse files
committed
release v0.0.2
1 parent dd72fdd commit 339f872

File tree

5 files changed

+57
-33
lines changed

5 files changed

+57
-33
lines changed

MANIFEST.in

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#MANIFEST.in
2+
exclude .gitignore
3+
exclude .coverage
4+
exclude .travis.yml
5+
include README.rst
6+
include setup.cfg
7+
prune .cache
8+
prune .git
9+
prune build
10+
prune dist
11+
recursive-exclude *.egg-info *
12+
recursive-include tests *

README.rst

Lines changed: 0 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +0,0 @@
1-
# instagram-py
2-
3-
Instagram-py uses tor to conduct a simple brute force attack on any Instagram account.
4-
It uses python to bypass bot verification and tor to bypass login limiting,
5-
As tested Instagram-py tested over 6M passwords on a single account without any limitation.
6-
**Depends on**: python3 , requests , stem , and colorama.
7-
8-
# Installation
9-
10-
**You should have tor server up and running**
11-
12-
### Configuring torrc
13-
14-
**open** your tor configuration file (**/etc/tor/torrc**)
15-
```
16-
$ sudo vim /etc/tor/torrc
17-
```
18-
19-
**uncomment** , ControlPort
20-
**restart your tor server now.**
21-
22-
23-
```
24-
$ git clone https://github.com/deathsec/instagram-py
25-
$ cd instagram-py
26-
$ chmod +x instagram.py
27-
$ ./instagram.py -vvv account_username path_to_password_list.txt
28-
```
29-
30-
# License
31-
32-
The MIT License
33-
Copyright (C) 2017 The Future Shell , DeathSec

instagram_py/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
from .colors import Fore , Back , Style , init
1212
from .instagram_bot import InjectPassword
1313

14+
__version__ = appInfo['version']
15+
1416
init(autoreset=True) # set to automatically reset colors!
1517

1618
# set current proc globals

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal=1

setup.py

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
from codecs import open
2+
from os.path import abspath, dirname, join , expanduser
3+
from subprocess import call
4+
5+
from setuptools import Command, find_packages, setup
6+
7+
from instagram_py import __version__
8+
9+
10+
this_dir = abspath(dirname(__file__))
11+
with open(join(this_dir, 'README.rst'), encoding='utf-8') as file:
12+
long_description = file.read()
13+
14+
setup(
15+
name = 'intagram-py',
16+
version = __version__,
17+
description = 'A python script to execute brute force attack on Instagram',
18+
long_description = long_description,
19+
url = 'https://github.com/DeathSec/Instagram-Py',
20+
author = 'DeathSec',
21+
author_email = '[email protected]',
22+
license = 'MIT',
23+
classifiers = [
24+
'Intended Audience :: Hackers',
25+
'Topic :: Utilities',
26+
'License :: MIT',
27+
'Natural Language :: English',
28+
'Operating System :: OS Independent',
29+
'Programming Language :: Python :: 3.4',
30+
'Programming Language :: Python :: 3.6'
31+
],
32+
keywords = 'cli',
33+
packages = find_packages(exclude=['docs', 'tests*']),
34+
install_requires = ['requests' , 'requests[socks]' , 'stem'],
35+
entry_points = {
36+
'console_scripts': [
37+
'instagram-py=instagram_py:main',
38+
],
39+
},
40+
41+
)

0 commit comments

Comments
 (0)