-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
70 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
#### Clone buffer overflow to current directory | ||
``` | ||
git clone https://[email protected]/alecjmaly/hacking-myTools.git && mv hacking-myTools/buffer_overflow/* . && rm -rf hacking-myTools | ||
git clone https://[email protected]/alecjmaly/hacking-myTools.git && mv hacking-myTools/exploit_development/buffer_overflow/* . && rm -rf hacking-myTools | ||
``` | ||
|
||
#### Install depedency packages | ||
|
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# WINDOWS | ||
|
||
# [online] create | ||
## virtual environment | ||
python -m venv ./venv | ||
.\venv\Scripts\activate.bat | ||
|
||
# install from requirements (pip install -r requirements.txt) | ||
pip install pyperclip pykd pwntools keystone-engine | ||
#### INSTALL NEW DEPENDENCIES | ||
|
||
### pip freeze and download | ||
pip freeze > requirements.txt | ||
powershell remove-item packages -recurse | ||
pip3 download -r requirements.txt -d packages | ||
|
||
## download + zip packages | ||
copy requirements.txt packages | ||
powershell Compress-Archive .\packages\*.* packages.zip -force | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
# [offline] install | ||
powershell Expand-Archive packages.zip -force | ||
cd packages | ||
pip install --no-index --find-links . -r requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters