-
Notifications
You must be signed in to change notification settings - Fork 359
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update Documentation #158
base: master
Are you sure you want to change the base?
Update Documentation #158
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -181,9 +181,7 @@ utilities (i.e. `pip`). Use an administrative command prompt where applicable | |
for installing Python modules for all users. | ||
|
||
Pre-requisites: | ||
* Python 2.7 x86 with `pip` | ||
* Visual C++ for Python 2.7 development, available at: | ||
<https://aka.ms/vcpython27> | ||
* Python 3.7.x x86 with `pip` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. only Python There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I mentioned 3.7 because that's what we have tested with. Since support for 3.7 is ending soon, we have plans to move on to 3.10+ in the near future at which point I think this line can be updated. |
||
|
||
Before installing `pyinstaller`, you may wish to take the following steps to | ||
prevent the error `ImportError: No module named PyInstaller`: | ||
|
@@ -199,13 +197,6 @@ Install FakeNet-NG to acquire most modules: | |
python setup.py install | ||
``` | ||
|
||
Obtain PyDivert 2.0.9, the only version known to work with FakeNet-NG releases | ||
prepared with PyInstaller: | ||
|
||
``` | ||
pip install pydivert==2.0.9 | ||
``` | ||
|
||
Install `pyinstaller`: | ||
|
||
``` | ||
|
@@ -245,7 +236,6 @@ fakenet1.4.3\ | |
| +-- CustomProviderExample.py | ||
| +-- sample_custom_response.ini | ||
| +-- sample_raw_response.txt | ||
| +-- sample_raw_tcp_response.txt | ||
| | ||
+-- defaultFiles\ | ||
| +-- FakeNet.gif | ||
|
@@ -260,7 +250,7 @@ fakenet1.4.3\ | |
| | ||
+-- listeners\ | ||
+-- ssl_utils | ||
+-- __init__.pyc | ||
+-- __init__.py | ||
+-- privkey.pem | ||
+-- server.pem | ||
+-- ssl_detector.py | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -905,7 +905,7 @@ def __init__(self, startingpath, singlehost=True): | |
self.listener_host_white = 8083 # HTTP listener with host whitelists | ||
self.localhost = '127.0.0.1' | ||
self.dns_expected = '192.0.2.123' | ||
self.domain_dne = 'does-not-exist-amirite.fireeye.com' | ||
self.domain_dne = 'does-not-exist-amirite.mandiant.com' | ||
self.sender = '[email protected]' | ||
self.recipient = '[email protected]' | ||
self.smtpmsg = 'FakeNet-NG SMTP test email' | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😎