Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
64 views

Lua/NSE socket connection problem

I can telnet to a certain host and port no problem and issue commands. However when i try to script a socket connection (using nmap NSE and Lua) to the same host and port, it fails with the following ...
1
vote
0answers
38 views

Faking a FTP service

I am writing a piece of software which can fool Nmap into believing that GuildFTPd FTP Server is running on port 21. My python code so far looks like this: import socket s = socket.socket( ) ...
1
vote
2answers
334 views

vim : <silent> nmap

In vim I have this nmap nmap <silent> ,mu : marks ABCDEFGHIJKLMNOPQRSTUVWXYZ<CR> If I don“t have Upper marks and try ,mu I get E283: No marks matching "ABCDEFGHIJKLMNOPQRSTUVWXYZ" ...
1
vote
1answer
178 views

Vim multiple meta keys

Update: It turns out to be a bug in MacVim (or perhaps a feature that has yet to be implemented). I am trying Vim, coming from TextMate. TextMate has a Ruby plugin where you can type ...
1
vote
1answer
177 views

How do I perform a massive amount of concurrent pings?

I'm needing to ping about 2500 servers at one time, in intervals of about 15-30 minutes. This is to show semi-real time server status information. This could potentially scale to tens of thousands of ...
1
vote
4answers
228 views

How to find out how many clients are on a certain address range?

I tried googling for this but i didnt find anything... I am building a port scanner and i would like to make it so, that i can scan a network range e.g 192.168.2.* and find out how many computers are ...
1
vote
2answers
230 views

Lua Script Pattern Matching Problem

First of all, I have been using this site as a reference through the entire scripting process and it has been wonderful. I appreciate how useful and knowledgeable everyone is here. With that in mind, ...
1
vote
2answers
732 views

Should I use Nmap::Parser or Nmap::Scanner to audit a network?

I'd like to audit the equipment of my large network in the fastest way possible. Should i use Nmap::Parser or Nmap::Scanner? I want to create a list of IP addresses that return a ping as well as a ...
1
vote
2answers
1k views

Creating an Excel list with Ruby

I'm generating an excel in ruby which each line represents the results of an nmap scan. An example of a line could look like that: ip, yes (because port is 22 open), no (because port 80 is not open), ...
0
votes
0answers
19 views

Nmap won't recognize service

I am trying to write a program that emulates different services. I am starting off with CoreFTP. When I look in the service probes file of Nmap I find this entry: "match ftp m|^220 Core FTP ...
0
votes
0answers
29 views

How to bundle Nmap and Wireshark with app?

I've written a java app. It depends on Nmap, Wireshark and other command line tools which it invokes via a DOS prompt on Windows. If I'd like to make an installer for the app, how can I make sure ...
0
votes
0answers
48 views

Find Defaut Router Address in Xcode And inserting into Nmap command

I need MyApp to find the connected "default router" IP address. Its usually "X.X.X.1" (Not the self assigned IP address for a network) Then insert that IP address into the nmap command I have setup to ...
0
votes
2answers
91 views

Java Runtime.getRuntime().exec on Windows error

I am trying to run this line of code: Process p = Runtime.getRuntime().exec(new String[] {"nmap -sP 192.168.1.0/24", g}); The above gives this error: Exception in thread "main" ...
0
votes
1answer
68 views

NMap wrapper for Java

Is there an NMap wrapper implementation for Java ? I searched for it but could not find one. I want to scan network and detect applications running based on some port's state. I guess this must be a ...
0
votes
1answer
84 views

Nmap scan range output file problem

Okay, I want to have Nmap scan an IP range for computers with a certain port open (port 80 in this case) and have it output all the IP's it finds into a text file, stored in this format: 192.168.0.1 ...
0
votes
4answers
108 views

Any way to optimize/properly refine this <50 line script?

I'm still learning python, and one of the first projects I decided to dive into was something to sort through large nmap logs, pull out the OPEN ports, and dump them to a separate text file in IP:Port ...
0
votes
2answers
199 views

Is there any reliable tool to test the open ports of a given global ip address of a given server from the outside where i can test all ports at once?

I need to scan the open ports of my server. I tried nmap by: nmap ***.dyndns.info from within my local network. It gave me: Starting Nmap 5.21 ( http://nmap.org ) at 2011-04-09 16:05 JST Nmap scan ...
0
votes
0answers
71 views

UnauthorizedAccessException NMAP->HDD c#

im trying to wrote some application, which has some fragment of code copying file from mapped NMAP-drive into the local-drive. It works on almost all PCs but doesnt on some which have either domain ...
0
votes
2answers
473 views

Get live hosts MAC in local network

Hi I'm working on a small bash script that will scan lan every 5 minutes and get live host and then get theirs MAC addresses. So far I have this: nmap -sP -n -oG - 10.0.0.1-20 | grep "Up" | awk ...
0
votes
1answer
261 views

Locating computer on subnet/network

Here is situation: I have special device that I can communicate via ethernet. It's connected to my computer via ethernet cable and the problem is that these devices are changed from time to time and ...
0
votes
1answer
57 views

How can I find the IP of a network service from the iPhone

I want to use some sort of nmap-like functionality to autodiscover a ASP.NET web server (running on port 443) somewhere on the network. This way users don't have to find and enter the IP manually. ...
0
votes
1answer
157 views

Invoking nmap (nse) from python

All, Is there an easy way to access/utilize the nse packages from python? Thanks
0
votes
1answer
157 views

how to develop Nmap?

I want to analyze Nmap source code,for a start, what should I do? Nmap have many files and folders,and I don't know where to start, what should I do? i want know some Nmap work like how nmap detects ...
0
votes
1answer
2k views

Nmap in a bash script / only check the “80” open ports

I'm completely new to bash scripting and I'm trying to get this working: Scanning an ip range for finding devices with the port 80 open... I think it has to look like this: #!/bin/bash echo ...
0
votes
1answer
259 views

Queuing Nmap Commands in a visible command prompt window in Java

I am trying to run multiple Nmap commands one after another. Ideally, each Nmap command will be created in its own command prompt window. The Nmap command will execute and finish. Then another ...
0
votes
1answer
172 views

Is there a way to find out if an IP address belongs to an iPhone?

I am trying to find a simple way to check if an IP address belongs to an iPhone. A solution that I can imagine is to use nmap to determine the operating system of the specified IP address and then ...
0
votes
1answer
1k views

Problem with Java Runtime.exec() when trying to start Nmap.exe

I'm using Java 1.6 , Eclipse , Windows 7. I'm trying to run commands in a java program to use NMAP. The code : String cmd[] = { "cmd.exe", "/c","start notepad.exe"}; Process pr = rt.exec(cmd); ...
0
votes
3answers
643 views

How to write bash script to search for IP's in a file and put write them to another file?

I need to write a bash script that will take a grepable nmap output file that displays IP addresses with port 80 open and copy the IPs that have port 80 open to another text file. The output looks ...
0
votes
4answers
396 views

Any ideas on how to integrate with nmap programatically?

I'm just starting to look into how to integrate nmap, an open source security product, into some c++ code. If anyone's tried this, and has some ideas on the best approach, I'd certainly appreciate it. ...
-1
votes
1answer
34 views

questions about nmap [closed]

i have several questions about nmap: first, nmap can detect servers via: link-layer network-layer transport-layer where are the differences (not in the layer, but in the way how nmap does it) and ...
-1
votes
1answer
121 views

NMap (client on Mac) port scan on Ubuntu server

I have to scan a Ubuntu server (installed as a virtual machine on my Mac) for open ports. I used the netcat utility and it shows a nice list of all the open ports on my virtual machine. However, when ...