nmap scan for survey command


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers nmap scan for survey command
# 1  
Old 05-29-2012
nmap scan for survey command

Hello guys, i'm having a problem with nmap, what i'd like to do is a scan to find around 100 or so IP address that are up, and that correspond to sites.
The command i need should basically find sites through ip address randomly generated, let's say i generate 2000 ip, i'd like to know how many of those i can actually open to then go in the sites and make a survey of let's say word usage or whatever.
I hope i was clear enough.

Thanks in advance!
 
Login or Register to Ask a Question

Previous Thread | Next Thread

6 More Discussions You Might Find Interesting

1. Homework & Coursework Questions

How to scan IP range using nmap?

Scripting language : Bash Shell Script 1. problem statement I have to create function in which read IP addresses one by one from one file (iplist.txt) and scan these IP using nmap. This scan IP's output is saved in output.txt file and parse output.txt to save only open ports with particular IP... (3 Replies)
Discussion started by: sk151993
3 Replies

2. Shell Programming and Scripting

How to scan IP range using nmap?

Scripting language : Bash Shell Script I have to create function in which read IP addresses one by one from one file (ip.txt) and scan these IP using nmap. (4 Replies)
Discussion started by: sk151993
4 Replies

3. What is on Your Mind?

Please Help with ComputerWeekly Survey, Thanks!

If you have two or three minutes to spare, can you help with this ComputerWeekly survey? They are evaluating our site, asking a few questions like how often you visit the forums, what do you like the most, what can we improve, etc. ... (0 Replies)
Discussion started by: Neo
0 Replies

4. UNIX for Dummies Questions & Answers

Questions for User Survey

Hello, I'm a sysadmin in training and need to create/gather a survey from all the users about the servers that they use, problems, challenges etc. Main purpose of the survey is to identify areas & room for improvement on the existing UNIX environment. I have in mind these questions... (8 Replies)
Discussion started by: rahzzbietel
8 Replies

5. Solaris

command to scan Enterprise storage Lun disk in Solaris

I just installed IBMsdd on Solaris diver along with the patches recommended. I also installed 2 - 2Gigs qlogic fiber cards & the corresponding pkges for the cards. What command can I use to scan this LUN disks from my Soalris servers. Solaris doen't seem to be seeing this disks presented on it.... (2 Replies)
Discussion started by: Remi
2 Replies

6. Post Here to Contact Site Administrators and Moderators

results survey

Hi guys! I was wondering what the outcome was of your survey of a few months ago? One of the questions was if people were willing to pay for additional services like an own account, like username@unix.com with mail box, etc. Sorry if I missed the results if you had already posted them. Ivo (1 Reply)
Discussion started by: Ivo
1 Replies
Login or Register to Ask a Question
XSetPointerMapping()													      XSetPointerMapping()

Name
  XSetPointerMapping - set the pointer button mapping.

Synopsis
  int XSetPointerMapping(display, map, nmap)
	Display *display;
	unsigned char map[];
	int nmap;

Arguments
  display   Specifies a connection to an X server; returned from XOpenDisplay().

  map	    Specifies the mapping list.

  nmap	    Specifies the number of items in the mapping list.

Returns
  MappingSuccess on success; MappingBusy on failure.

Description
  XSetPointerMapping()	sets  the  mapping  of the pointer buttons.  Elements of the map list are indexed starting from 1.  The length of the
  list nmap must be the same as XGetPointerMapping() returns (you must call that first).  The index is a physical button number, and the ele-
  ment of the list defines the effective button number.  In other words, if map[2] is set to 1, when the second physical button is pressed, a
  ButtonPress event will be generated if Button1Mask was selected but not if Button2Mask was selected.	The button member in the  event  will
  read Button1.

  No  two  elements  can  have the same non-zero value (else a BadValue error).  A value of zero for an element of map disables a button, and
  values for elements are not restricted in value by the number of physical buttons.  If any of the buttons to be altered  are	currently  in
  the down state, the returned value is MappingBusy and the mapping is not changed.

  This	function returns either MappingSuccess or MappingBusy.	XSetPointerMapping() generates a MappingNotify event when it returns Mapping-
  Success.

Errors
  BadValue  Two elements of map[] have same non-zero value.
	    nmap not equal to XGetPointerMapping() return value.

See Also
  XChangeActivePointerGrab(), XChangePointerControl(), XGetPointerControl(), XGetPointerMapping(), XGrabPointer(), XQueryPointer(),  XUngrab-
  Pointer(), XWarpPointer().

Xlib - Pointer														      XSetPointerMapping()