Jump to content

Netcat reverse shell auto reconnect


l34n

Recommended Posts

I found myself having issues with the netcat listener closing when the LanTurtle disconnected. This created challenges when power outages occurred.

My solution was to loop the netcat listener so that it auto restarts when it closes.

You'll want to run this in a screen session so if you don't have screen installed on a VPS do that first.

- yum install screen

- apt-get install screen

Once you have screen installed open a session by typing 'screen' (no quotes)

Then run the following:

while :; do netcat -l -v 8080; done

This is an infinite loop where everytime `netcat -l -v 8080` closes it starts a new process with the same commands.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...