File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 4
4
import time
5
5
import logging
6
6
from datetime import datetime
7
- from pwn import log
7
+ try :
8
+ from pwn import log
9
+ except :
10
+ print ("You should install python3-pwntools log module !" )
11
+ print (">apt-get update" )
12
+ print (">apt-get install python3 python3-dev python3-pip git" )
13
+ print (">pip3 install --upgrade git+https://github.com/arthaud/python3-pwntools.git" )
14
+ exit ()
8
15
from .request import Request
9
16
from .utils import replace_kv_dict
10
17
from .matching import Matching
Original file line number Diff line number Diff line change 8
8
'fuzzy = fuzzy.__main__:main' ,
9
9
]
10
10
},
11
- version = '0.0.6 ' ,
11
+ version = '0.0.11 ' ,
12
12
description = "Fuzzy - An other web fuzzer" ,
13
13
long_description = "It is used to test website URLs with a wordlist." ,
14
14
author = "SakiiR SakiiR (@SakiiR)" ,
15
15
url = "https://github.com/SakiiR/fuzzy" ,
16
16
install_requires = [
17
17
'aiohttp' ,
18
18
'colored' ,
19
- 'git+https://github.com/arthaud/python3-pwntools.git'
20
19
],
20
+ dependency_links = [
21
+ "git+https://github.com/arthaud/[email protected] #egg=pwntools-2.2.0"
22
+ ]
21
23
)
You can’t perform that action at this time.
0 commit comments