You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Numpy sometimes fails to properly install when just within the install_requires (see
[#2434](numpy/numpy#2434)) so I also added it to setup_requires.
Also changed from using scripts => entry_points:{'console_scripts'} and the command to `VHostScan`
within the README for consistency.
Copy file name to clipboardExpand all lines: README.md
+7-4Lines changed: 7 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,9 @@ Using pip install via:
28
28
$ pip install -r requirements.txt
29
29
```
30
30
31
+
Or simply run `python setup.py install` and the dependencies should be installed. If there is an issue regarding
32
+
running `python setup.py build_ext`, you will need to reinstall `numpy` using `pip uninstall numpy` and `pip install numpy==1.12.0`. This should resolve the issue as there are sometimes issues with numpy being installed through setup.py.
33
+
31
34
# Usage
32
35
33
36
| Argument | Description |
@@ -65,7 +68,7 @@ _Note that a number of these examples reference 10.10.10.29. This IP refers to B
65
68
The most straightforward example runs the default wordlist against example.com using the default of port 80:
Say you have an SSH port forward listening on port 4444 fowarding traffic to port 80 on example.com's development machine. You could use the following to make VHostScan connect through your SSH tunnel via localhost:4444 but format the header requests to suit connecting straight to port 80:
Here is an example with fuzzy logic enabled. You can see the last comparison is much more similar than the first two (it is comparing the content not the actual hashes):
0 commit comments