Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed last year.
Improve this question
I've got a problem with a script for port scan at my virtual network1 at virtualbox. I tried many scripts in python. I want to scann ,,WAN" port but the scripts are frozen at first port, what you can see at picture below2( 192.168.3.101 is Kali Linux address). Do you know how can I fix it?
One of many scripts which i tried: Python3 Portscanner can't solve the socket pr0blem
I've got a network simulation in virtualbox:
Network topology
PfSenseLogs
the problem was probably that pfsense was refusing to scan multiple ports from the same address in a short amount of time and I had to add delay after each port.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Im trying to figure out how ansible executes the commands on the remote host, I get that it uses ssh/winrm to connect to the remote host but from there it would have to assume the remote host has python/powershell (depends on the os) and all the libraries their code need to run.
so basically what im asking is :
does ansible require the remote host to have python in the right version on it.
does it require the remote host to have the libraries their code uses.
if not does it transfer the modules when it connects and removes them afterwards.
else it may "compile" the modules and transfer them
Ansible works by connecting to your nodes and pushing out small programs, called "Ansible modules" to them. These programs are written to be resource models of the desired state of the system. Ansible then executes these modules (over SSH by default), and removes them when finished.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
So I am using VSCode Insiders to connect via SSH to my Ubuntu Server where I have all my project clones. Everything up to here works so far. I am doing a bit of pandas/matplotlib in python and say, I wanted to plot a graph and see it. Is it possible to do this?
In order to view graphical linux applications over SSH, you need to do a couple of things. First of all, you need to make sure that your Ubuntu Server is running an X windows server so the system knows how to process GUI events. Once you've verified this, you need to configure your SSH client to communicate with the X windows server. This will vary based on your host operating system and the SSH client you're using.
This guide could be helpful:
https://statistics.berkeley.edu/computing/x11-forwarding
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
"IDLE's subprocess didn't make connection. Either IDLE can't start a subprocess of personal firewall software is blocking the connection."
My python idle always says that so I cant do my work my pc is 32 bits on windows 10 hp brobook 4540s.
The message says your firewall is blocking it. You need to add an exception to the firewall settings.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need a simple example of a ssh server on python. I do not know much English, I find it difficult to understand the documentation. I tried to use paramiko and twisted conch. Help me, please. I find this, but documentation does not describe the things associated with ssh. I will be grateful if you could just comment this example.
I don't really believe an SSH server will ever be 'simple'. But I did get an SSH honeypot running a while back using python 2.7 on Ubuntu 12.04 LTS Server. You can see the code to it with my changes at
https://github.com/hydrogen18/kojoney
It uses twisted.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I am going over this tutorial: https://github.com/lionaneesh/RasPod/wiki/Setting-up-RasPod
However this command does not work: sudo modprobe snd_bcm2835.
I have got a raspberry pi but I am trying this on virtualbox using ubuntu.
Does anyone know why its not working?
snd_bcm2835 is a sound driver for the raspberry hardware. It will not work in virtualbox as virtualbox has a different - virtual - sound architecture.
Testing with virtualbox isn't a good approach, as you need virtualization of the special raspberry hardware. I would try qemu instead: http://xecdesign.com/qemu-emulating-raspberry-pi-the-easy-way/