Skip to content

Commit

Permalink
Patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Karmaz95 committed Mar 17, 2021
1 parent 10db2bd commit e043289
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 6 deletions.
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,8 @@ Install Burp Suite

```
* If you are interested in how this module works, I encourage you to study the source code. I tried to describe in the comments how the individual tools work.
* Additionally, you can learn more by reading my article at medium:

```bash
https://karol-mazurek95.medium.com/automation-of-the-reconnaissance-phase-during-web-application-penetration-testing-i-574fd9dce53e

```
* Additionally, you can learn more by reading my article at [medium](https://karol-mazurek95.medium.com/automation-of-the-reconnaissance-phase-during-web-application-penetration-testing-i-574fd9dce53e)

##### :diamonds: Second module needs `subdomain name`. You can additionally put `authorization cookie` :diamonds:
```bash
./crimson_target -d "example.domain.com" -c "Cookie: auth1=123;"
Expand Down
31 changes: 31 additions & 0 deletions get-pip.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
#!/usr/bin/env python
from __future__ import print_function
import sys
import textwrap

message = """
Hi there!
The URL you are using to fetch this script has changed, and this one will no
longer work. Please use get-pip.py from the following URL instead:
https://bootstrap.pypa.io/pip/2.7/get-pip.py
Sorry if this change causes any inconvenience for you!
We don't have a good mechanism to make more gradual changes here, and this
renaming is a part of an effort to make it easier to us to update these
scripts, when there's a pip release. It's also essential for improving how we
handle the `get-pip.py` scripts, when pip drops support for a Python minor
version.
There are no more renames/URL changes planned, and we don't expect that a need
would arise to do this again in the near future.
Thanks for understanding!
- Pradyun, on behalf of the volunteers who maintain pip.
"""

print(message, file=sys.stderr)
sys.exit(1)

0 comments on commit e043289

Please sign in to comment.