-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
base: master
Are you sure you want to change the base?
Changes from 1 commit
829efd7
ee7bab2
4bb6dc1
928359d
ff88736
e16472e
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 |
---|---|---|
|
@@ -103,10 +103,15 @@ Once your template is ready, **do not forget to propose it to the community via | |
|
||
## Installation | ||
|
||
### Requirements | ||
* 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 | ||
|
@@ -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 | ||
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. this change is unnecessary, please revert this |
||
cd seeker/ | ||
python3 seeker.py | ||
```` | ||
|
@@ -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 | ||
|
@@ -190,10 +197,10 @@ Variables: | |
################## | ||
|
||
# Step 1 : In first terminal | ||
$ python3 seeker.py | ||
$ python3 -m pip install -r requirements.txt | ||
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. 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 | ||
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. this change is unnecessary, please revert this |
||
|
||
########### | ||
# Options # | ||
|
@@ -204,7 +211,6 @@ $ python3 seeker.py -k <filename> | |
|
||
# Use Custom Port | ||
$ python3 seeker.py -p 1337 | ||
$ ./ngrok http 1337 | ||
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. this change is unnecessary, please revert this |
||
|
||
# Pre-select a specific template | ||
$ python3 seeker.py -t 1 | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# put your ngrok token below | ||
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.
|
||
ngrok_token = "2RcH4lZVKczaYwKZoSeeQoahYb6_6aHBuhQMhuHcDZSRgLtJe" |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
colorama | ||
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. requirements.txt is not required as these 2 dependencies are not being added |
||
ngrok |
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.
this change is unnecessary, please revert this
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.
lines 106 - 109