├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── arch_install.sh ├── db └── results.csv ├── install.sh ├── logs ├── php.log └── serveo.txt ├── seeker.py ├── template ├── __init__.py ├── gdrive │ ├── css │ │ └── main.css │ ├── fonts │ │ ├── Roboto-Black.ttf │ │ ├── Roboto-BlackItalic.ttf │ │ ├── Roboto-Bold.ttf │ │ ├── Roboto-BoldItalic.ttf │ │ ├── Roboto-Italic.ttf │ │ ├── Roboto-Light.ttf │ │ ├── Roboto-LightItalic.ttf │ │ ├── Roboto-Medium.ttf │ │ ├── Roboto-MediumItalic.ttf │ │ ├── Roboto-Regular.ttf │ │ ├── Roboto-Thin.ttf │ │ ├── Roboto-ThinItalic.ttf │ │ └── pxiDypQkot1TnFhsFMOfGShVF9eO.woff2 │ ├── images │ │ ├── 580b57fcd9996e24bc43c51f.png │ │ ├── Google-Drive-logo1.png │ │ ├── drive_favicon1.ico │ │ ├── googlelogo_color_116x41dp.png │ │ ├── locked_doc-1.svg │ │ └── locked_doc-2.svg │ ├── index.html │ ├── js │ │ ├── info.js │ │ ├── location.js │ │ └── location_temp.js │ └── php │ │ ├── error.php │ │ ├── info.php │ │ ├── info.txt │ │ ├── result.php │ │ └── result.txt ├── mod_gdrive.py ├── mod_telegram.py ├── mod_whatsapp.py ├── nearyou │ ├── css │ │ ├── main.css │ │ └── worldmap.jpg │ ├── index.html │ ├── js │ │ ├── info.js │ │ ├── location.js │ │ ├── main.js │ │ └── warpspeed.min.js │ └── php │ │ ├── error.php │ │ ├── info.php │ │ ├── info.txt │ │ ├── result.php │ │ └── result.txt ├── sample.kml ├── telegram │ ├── css │ │ ├── bootstrap.min.css │ │ ├── css │ │ └── telegram.css │ ├── favicon.ico │ ├── images │ │ └── Arrow_1x.png │ ├── index.html │ ├── index_temp.html │ ├── js │ │ ├── info.js │ │ └── location.js │ └── php │ │ ├── error.php │ │ ├── info.php │ │ ├── info.txt │ │ ├── result.php │ │ └── result.txt ├── templates.json └── whatsapp │ ├── css │ ├── Epf3I8GM5jv.css │ └── s9hWiNS5894.css │ ├── images │ ├── -r3j-x8ZnM7.svg │ ├── ZIvBTrQd9nP.png │ └── rYZqPCBaG70.png │ ├── index.html │ ├── index_temp.html │ ├── js │ ├── info.js │ └── location.js │ └── php │ ├── error.php │ ├── info.php │ ├── info.txt │ ├── result.php │ └── result.txt ├── termux_install.sh └── version.txt /.gitignore: -------------------------------------------------------------------------------- 1 | db/results.csv 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/README.md -------------------------------------------------------------------------------- /arch_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/arch_install.sh -------------------------------------------------------------------------------- /db/results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/db/results.csv -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/install.sh -------------------------------------------------------------------------------- /logs/php.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/logs/php.log -------------------------------------------------------------------------------- /logs/serveo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/logs/serveo.txt -------------------------------------------------------------------------------- /seeker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/seeker.py -------------------------------------------------------------------------------- /template/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/gdrive/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/css/main.css -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /template/gdrive/fonts/pxiDypQkot1TnFhsFMOfGShVF9eO.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/fonts/pxiDypQkot1TnFhsFMOfGShVF9eO.woff2 -------------------------------------------------------------------------------- /template/gdrive/images/580b57fcd9996e24bc43c51f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/images/580b57fcd9996e24bc43c51f.png -------------------------------------------------------------------------------- /template/gdrive/images/Google-Drive-logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/images/Google-Drive-logo1.png -------------------------------------------------------------------------------- /template/gdrive/images/drive_favicon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/images/drive_favicon1.ico -------------------------------------------------------------------------------- /template/gdrive/images/googlelogo_color_116x41dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/images/googlelogo_color_116x41dp.png -------------------------------------------------------------------------------- /template/gdrive/images/locked_doc-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/images/locked_doc-1.svg -------------------------------------------------------------------------------- /template/gdrive/images/locked_doc-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/images/locked_doc-2.svg -------------------------------------------------------------------------------- /template/gdrive/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/index.html -------------------------------------------------------------------------------- /template/gdrive/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/js/info.js -------------------------------------------------------------------------------- /template/gdrive/js/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/js/location.js -------------------------------------------------------------------------------- /template/gdrive/js/location_temp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/js/location_temp.js -------------------------------------------------------------------------------- /template/gdrive/php/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/php/error.php -------------------------------------------------------------------------------- /template/gdrive/php/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/php/info.php -------------------------------------------------------------------------------- /template/gdrive/php/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/gdrive/php/result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/gdrive/php/result.php -------------------------------------------------------------------------------- /template/gdrive/php/result.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/mod_gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/mod_gdrive.py -------------------------------------------------------------------------------- /template/mod_telegram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/mod_telegram.py -------------------------------------------------------------------------------- /template/mod_whatsapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/mod_whatsapp.py -------------------------------------------------------------------------------- /template/nearyou/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/css/main.css -------------------------------------------------------------------------------- /template/nearyou/css/worldmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/css/worldmap.jpg -------------------------------------------------------------------------------- /template/nearyou/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/index.html -------------------------------------------------------------------------------- /template/nearyou/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/js/info.js -------------------------------------------------------------------------------- /template/nearyou/js/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/js/location.js -------------------------------------------------------------------------------- /template/nearyou/js/main.js: -------------------------------------------------------------------------------- 1 | function main() 2 | { 3 | locate(); 4 | } 5 | -------------------------------------------------------------------------------- /template/nearyou/js/warpspeed.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/js/warpspeed.min.js -------------------------------------------------------------------------------- /template/nearyou/php/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/php/error.php -------------------------------------------------------------------------------- /template/nearyou/php/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/php/info.php -------------------------------------------------------------------------------- /template/nearyou/php/info.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/php/info.txt -------------------------------------------------------------------------------- /template/nearyou/php/result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/nearyou/php/result.php -------------------------------------------------------------------------------- /template/nearyou/php/result.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/sample.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/sample.kml -------------------------------------------------------------------------------- /template/telegram/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/css/bootstrap.min.css -------------------------------------------------------------------------------- /template/telegram/css/css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/css/css -------------------------------------------------------------------------------- /template/telegram/css/telegram.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/css/telegram.css -------------------------------------------------------------------------------- /template/telegram/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/favicon.ico -------------------------------------------------------------------------------- /template/telegram/images/Arrow_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/images/Arrow_1x.png -------------------------------------------------------------------------------- /template/telegram/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/index.html -------------------------------------------------------------------------------- /template/telegram/index_temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/index_temp.html -------------------------------------------------------------------------------- /template/telegram/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/js/info.js -------------------------------------------------------------------------------- /template/telegram/js/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/js/location.js -------------------------------------------------------------------------------- /template/telegram/php/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/php/error.php -------------------------------------------------------------------------------- /template/telegram/php/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/php/info.php -------------------------------------------------------------------------------- /template/telegram/php/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/telegram/php/result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/telegram/php/result.php -------------------------------------------------------------------------------- /template/telegram/php/result.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/templates.json -------------------------------------------------------------------------------- /template/whatsapp/css/Epf3I8GM5jv.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/css/Epf3I8GM5jv.css -------------------------------------------------------------------------------- /template/whatsapp/css/s9hWiNS5894.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/css/s9hWiNS5894.css -------------------------------------------------------------------------------- /template/whatsapp/images/-r3j-x8ZnM7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/images/-r3j-x8ZnM7.svg -------------------------------------------------------------------------------- /template/whatsapp/images/ZIvBTrQd9nP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/images/ZIvBTrQd9nP.png -------------------------------------------------------------------------------- /template/whatsapp/images/rYZqPCBaG70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/images/rYZqPCBaG70.png -------------------------------------------------------------------------------- /template/whatsapp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/index.html -------------------------------------------------------------------------------- /template/whatsapp/index_temp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/index_temp.html -------------------------------------------------------------------------------- /template/whatsapp/js/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/js/info.js -------------------------------------------------------------------------------- /template/whatsapp/js/location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/js/location.js -------------------------------------------------------------------------------- /template/whatsapp/php/error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/php/error.php -------------------------------------------------------------------------------- /template/whatsapp/php/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/php/info.php -------------------------------------------------------------------------------- /template/whatsapp/php/info.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /template/whatsapp/php/result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/template/whatsapp/php/result.php -------------------------------------------------------------------------------- /template/whatsapp/php/result.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /termux_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gameye98/seeker/HEAD/termux_install.sh -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 1.2.5 2 | --------------------------------------------------------------------------------