Login Register






Reverse SSH HELP filter_list
Author
Message
Reverse SSH HELP #1
Is there someone who can learn me about Reverse SSH'ing? I want to have acces to my work computer while i'm at home...

[+] 1 user Likes YassinowHacks's post
Reply

RE: Reverse SSH HELP #2
I think what you mean is just SSH. First you have to set up an SSH server on your work computer, and then connect to it from your computer at home using an SSH client. Make sure the port you're running your SSH server on is open/port-forwarded so you can reach it from anywhere, otherwise it's not going to work.
(This post was last modified: 02-26-2020, 10:41 PM by zn0.)

Reply

RE: Reverse SSH HELP #3
(02-26-2020, 10:41 PM)zn0 Wrote: I think what you mean is just SSH. First you have to set up an SSH server on your work computer, and then connect to it from your computer at home using an SSH client. Make sure the port you're running your SSH server on is open/port-forwarded so you can reach it from anywhere, otherwise it's not going to work.

Can i set up the SSH server on my work computer without administrator rights or is it needed? And I can let it listen with just 1 command right?

Reply

RE: Reverse SSH HELP #4
(02-28-2020, 11:01 PM)YassinowHacks Wrote:
(02-26-2020, 10:41 PM)zn0 Wrote: I think what you mean is just SSH. First you have to set up an SSH server on your work computer, and then connect to it from your computer at home using an SSH client. Make sure the port you're running your SSH server on is open/port-forwarded so you can reach it from anywhere, otherwise it's not going to work.

If you not know much of the theme just use VNC it's a alternative to RDP & SSH, of course you can set-up an SSH shell but it takes more work to run it (for example if the place your work have port filtering and things like that), you can use any RAT too but is at your own risk....
Can i set up the SSH server on my work computer without administrator rights or is it needed? And I can let it listen with just 1 command right?
Developing
Nocturnal RAT (C++)
Constellar RAT (C#)
(ALPHA)
>> Shop
Quote:
-- Did you find my stub? --
[Image: network.png]

Reply

RE: Reverse SSH HELP #5
(02-25-2020, 01:14 PM)YassinowHacks Wrote: I want to have acces to my work computer while i'm at home...
I think it's important to mention that if you're going to create a door to your work computer that you at least secure it using private keys. If you can't access it remotely by default you're probably not meant to for security reasons.

You probably also do not need to be using a reverse shell, why not use a VPN? There are plenty of clients that do not require admin privileges to use/install (portable install.)

What operating system is the computer running?

To set up OpenSSH (Typical on *nix systems) for reverse SSH see this.
To set up OpenVPN for regular SSH via VPN see this.
Discord: Request#0001
Wickr/Email: miyako@miyako.rocks

[+] 2 users Like Request's post
Reply

RE: Reverse SSH HELP #6
Do you mean's SSH Tunnel?

Reply

RE: Reverse SSH HELP #7
(04-01-2020, 03:07 PM)gogreendv Wrote: Do you mean's SSH Tunnel?

Yes

Reply

RE: Reverse SSH HELP #8
You can do this using serveo, a service to forward local ports to the WAN.  First, make sure your SSH service is running on your work PC.  On Linux:

Code:
service ssh start

You might need admin privileges to do this, but it might already be running.  Then forward your work PC's SSH port, assuming it's running on port 22:

Code:
ssh -R 4567:localhost:22

Then on your home PC (or any other for that matter), you can connect to your work PC:

Code:
ssh -p 4567 YourUserName@serveousercontent.com

I have tested this on  my computer, it works.  Remember, you can't do this if your work PC isn't already listening for SSH connections and you are not allowed to start the service.  Good luck!

EDIT:

Also, check out my serveo automation script: https://sinister.ly/Thread-DedTunnel-Por...eo--122248

There's a link to my github repo there and full instructions on how to get it running.
(This post was last modified: 07-17-2020, 07:21 PM by DedSpace.)
Code:
  _______              _   _________   \      \            | | /        /   |      | _____  ____| | |   ____/ _____  _____  _____  _____   |   |  |/  _  \/      | \____   |/     \/     \/  ___\/  _  \   |      |    __/|  |   |/        |   |  |   |   \  \__ |   __/  /_______/\_____/\____|_/________/|  ____/\_____|_\____/\_____/                                   | |                                   |_/                         BTC Address:  bc1qds8uqnt4ga0zn9ftrm45cq9u9hfct0qluqes5a

Reply

RE: Reverse SSH HELP #9
I will give you a hint. Read about remote ssh forwarding. Profit.

[+] 1 user Likes Tivoli's post
Reply