Skip to content
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

more features added by SteveSplash and changed version to v1.3.2 #478

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,15 @@ Once your template is ready, **do not forget to propose it to the community via

## Installation

### Requirements
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is unnecessary, please revert this

Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

lines 106 - 109

* Python3
* ngrok [signup here and get your token](https://dashboard.ngrok.com/signup)

### Kali Linux / Arch Linux / Ubuntu / Fedora / Parrot OS / Termux

```bash
git clone https://github.com/thewhiteh4t/seeker.git
python3 -m pip install -r requirements.txt
cd seeker/
chmod +x install.sh
./install.sh
Expand All @@ -127,6 +132,7 @@ docker pull thewhiteh4t/seeker
### OSX
```bash
git clone https://github.com/thewhiteh4t/seeker.git
python3 -m pip install -r requirements.txt
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is unnecessary, please revert this

cd seeker/
python3 seeker.py
````
Expand All @@ -152,7 +158,8 @@ options:
-u, --update Check for updates
-v, --version Prints version
-t TEMPLATE, --template TEMPLATE Auto choose the template with the given index
-d, --debugHTTP Disable auto http --> https redirection for testing purposes
-d, --debugHTTP Disable auto http --> https redirection for testing purposes
-sh, --seekerHistory Show all your Seeker Clients
(only works for the templates having index_temp.html file)
--telegram Send info to a telegram bot, provide telegram token and chat to use
format = token:chatId separated by a colon
Expand Down Expand Up @@ -190,10 +197,10 @@ Variables:
##################

# Step 1 : In first terminal
$ python3 seeker.py
$ python3 -m pip install -r requirements.txt
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is unnecessary, please revert this


# Step 2 : In second terminal start a tunnel service such as ngrok
$ ./ngrok http 8080
$ python3 seeker.py
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is unnecessary, please revert this


###########
# Options #
Expand All @@ -204,7 +211,6 @@ $ python3 seeker.py -k <filename>

# Use Custom Port
$ python3 seeker.py -p 1337
$ ./ngrok http 1337
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is unnecessary, please revert this


# Pre-select a specific template
$ python3 seeker.py -t 1
Expand Down
2 changes: 2 additions & 0 deletions config.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# put your ngrok token below
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

config.py is not required since ngrok is not being added, please remove this file
also
bad security practice : you have leaked your ngrok token

ngrok_token = "2RcH4lZVKczaYwKZoSeeQoahYb6_6aHBuhQMhuHcDZSRgLtJe"
2 changes: 2 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
colorama
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

requirements.txt is not required as these 2 dependencies are not being added

ngrok
Loading