port-scanning Questions
3
Solved
I am trying to scan a large set of domain names using nmap. I used the following command:
Nmap -PN -p443 -sS -T5 -oX out.xml -iL in.csv
I get the following warning:
Warning: xx.xx.xx.xx giving ...
Manage asked 6/2, 2013 at 18:50
11
Solved
So I'm making a port scanner in python...
import socket
ip = "External IP"
s = socket.socket(2, 1) #socket.AF_INET, socket.SOCK_STREAM
def porttry(ip, port):
try:
s.connect((ip, port))
return ...
Marimaria asked 3/10, 2014 at 7:16
8
Solved
I made a very simple port scanner, but it runs too slow, so I'm looking for a way to make it scan faster. Here is my code:
public boolean portIsOpen(String ip, int port, int timeout) {
try {
Sock...
Lailaibach asked 18/7, 2012 at 17:32
2
I'm trying to write a port scanner, I managed to get the open ports using sockets.
My problem is how to know which apps are listening on open ports.
Libyan asked 26/4, 2014 at 9:47
10
Solved
I was trying to check whether the port is opened or not using powershell like follows.
(new-object Net.Sockets.TcpClient).Connect("10.45.23.109", 443)
This method works , but the output is not u...
Guitar asked 5/3, 2012 at 11:44
3
Solved
I need to specify specific IP range for Nmap scan, for example:
192.168.1.140 - 192.168.3.255
If I do it like:
192.168.1-3.140-255
IP addresses like 192.168.2.7,192.168.3.7 won't be scann...
Disputatious asked 7/6, 2013 at 9:50
2
Solved
I need to retrieve both TCP and UDP ports in the same scan with Nmap in the fastest way possible. I'll try to explain it better. If I use the most common command:
nmap 192.168.1.1
It retri...
Jemmie asked 10/5, 2012 at 9:56
1
Solved
I'm trying to asynchronously scan TCP ports. Since the open ports take just a few hundredths of milliseconds to complete they're fine, but when ports are closed I have to wait for the response.
So...
Socialite asked 26/1, 2012 at 19:53
2
I am trying to write a port scanner in C#. I did some research on port scanning methods.
If you are interested, these are the
links I found useful:
http://www.cs.wright.edu/~pmateti/Intern...
Ironwood asked 4/1, 2010 at 18:35
1
© 2022 - 2024 — McMap. All rights reserved.