Skip to content

Commit

Permalink
Merge branch 'feature'
Browse files Browse the repository at this point in the history
  • Loading branch information
plague-anon committed Sep 2, 2020
2 parents f1e6990 + 0fd4e46 commit ab323aa
Show file tree
Hide file tree
Showing 7 changed files with 478 additions and 66 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@
/tests/*
*.logs
*.egg-info/*
__pycache__/*
4 changes: 2 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
----------------

* plague <plague_anon@protonmail.com>
* _AKA_ Ian


## Contributors
------------

* imsi | Anonops IRC #python

### Special thanks to
* Audreyr | https://github.com/audreyr/cookiecutter
* rootVIII | https://github.com/rootVIII/proxy_requests
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
# History
* **1.1.0**
* You can now specify which domain to start from _(when doing a full TLD scan)_ by using the -dc flag `-dc <Domain_To_Continue_From>`
* You can now save the output of a scan into a file by using the `-o <output_file_name>` flag
* **1.0.6**
* Fixed bug with files
* **1.0.5**
* Added __main__ file to root directory to prevent error when starting via python3
* **1.0.4**
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,22 +29,22 @@ You can now use the `tldsearcher` command from anywhere on your system


### PyPI
You can install **TLDSearcher** via pip with 2 methods.
You can install **TLDSearcher** via pip
**Method 1**
Issue the following command from the terminal to download the [latest version](https://pypi.org/project/tldsearcher/) from [pypi.org](https://pypi.org)

> `pip3 install tldsearcher`
**Method 2**
Issue the following command from the terminal to download the [latest version](https://github.com/plague-anon/TLDSearcher/releases) from [Github](https://www.github.com)

> `pip3 install -e git+https://github.com/plague-anon/TLDSearcher#egg=pkg`
## Usage Examples
To verbosely search for **all** TLDs for _example_:
`tldsearcher -t example -v`

## Usage Example
```
tldsearcher -t example -d com,co.uk,.net,.org -v
```
_The `-d` flag must be a string of TLDs, separated with a comma. The preceding `.` does not have to be supplied_
To verbosely search for specific TLDs for _example_ and output into _scan.txt_:
`tldsearcher -t example -d com,net,info,org -o scan.txt -v `

To see a list of TLD categories to scan for _example_:
`tldSearcher -t example -dC -o scan.txt -v`

_For more examples and usage, please refer to the [Wiki][wiki]._

Expand Down
2 changes: 1 addition & 1 deletion tldsearcher/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__author__ = """plague"""
__email__ = 'plague_anon@protonmail.com'
__version__ = '1.0.6'
__version__ = '1.1.0'
Loading

0 comments on commit ab323aa

Please sign in to comment.