|
How would you scan / query a local network for computers not on a particular domain (particularly windows)?
Started by MasterMax1313 on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
If they're not on a domain, it'll have to be a local at the results, especially the column....
Look/password of an admin account on those computers.
Scan the network from a domain member PC.
Display choose Only Alive , then OK & Save.
|
|
Greetings,
I have a list of 2 /24s worth of IP addresses in seperate text files. What I am interested in doing is finding a way to resolve the hosts of these IP addresses and filter out to display only the top level domain.
for example; 192.168.1.1 resolves...
Started by Nicholas O'Neil on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Once you have resolved the names, pipe your output to this :
awk -F'.' -v OFS='.' '{print $(NF-1),$NF}'
credit : http://groups.google.com/group/comp.lang.awk/browse%5Fthread/thread/518fadbf02c4eb74?pli=1
for IP in $(cat file1.txt file2.txt); do echo ... .
|
|
Scan 500k names at once |Domain Reseach Tool| Finds the GOOD available domain names!
The ALL NEW Domain Research Tool is now BETTER, BIGGER, MORE POWERFUL, and MORE BAD ASS THEN EVER BEFORE!
::: Purchase of this tool gives you a lifetime membership, about...
Started by Andrew Shaw on
, 16 posts
by 8 people.
Answer Snippets (Read the full thread at dnforum):
This tool is still available! Domain Research Tool
Save $120 off your order with this link!
Find Traffic Domain names with ease! at what price? $129.00 Domain Research Tool
Save $120 off your order with this link!
Find Traffic ....
|
Ask your Facebook Friends
|
I have two clocks in my design one at running at 80Mhz and another at 500Mhz.
The scope is we are using single test clock for the design. So when I stritch scan (DFTA) I am putting one mux at the output of clock_gen (clk generator module) to bypass the...
Started by kothandapani on
, 9 posts
by 5 people.
Answer Snippets (Read the full thread at edaboard):
Ii) For synthesis, we need to provide the TEST mode SDC paths you mentioned,
- scan shift path Q->SI for hold violation, there shold not be any overwrite?(design has internal PLL)."
Consider ....
Clock controllable to all the scan flops.
|
|
Anybody used domain research tool? Anybody used domain research tool? is it being updated or do people use SaaS instead now or something?
Thanks for any advice Last edited by gravitymarketing; 01-20-2012 at 08:39 AM . glaxxon likes this.
Started by gravitymarketing on
, 7 posts
by 5 people.
Answer Snippets (Read the full thread at dnforum):
Anybody used domain research tool? is it being updated or do people use SaaS instead now.
|
|
You have heard about it - Many of you have seen it in action.
Temporary sale price, let's make it $69.95 for encrypted code. $150 for code you can edit.
Want open source to resell ? $350 ... With this you can offer your own scanning services. I have now...
Started by CantonSatellite on
, 1 posts
by 1 people.
Answer Snippets (Read the full thread at namepros):
|
|
Hi,
How to hide web server name and openssh version on linux when scanning server ports?
when i nmap'ed( nmap -A -T4 192.168.40.12 ) ip server from the outside, the one shows:
Starting Nmap 4.62 ( http://nmap.org ) at 2009-11-05 14:11 IRST LUA INTERPRETER...
Started by M.Rezaei on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
You can change it by recompiling OpenSSH after modifying the SSH_VERSION #define, or where it is used in sshd.c :
snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor, SSH_VERSION, newline... .
The sshd version string is not configurable at runtime.
|
|
Hi,
How to hide web server name and openssh version on linux when scanning server ports?
when i nmap'ed( nmap -A -T4 192.168.40.12 ) ip server from the outside, the one shows:
Starting Nmap 4.62 ( http://nmap.org ) at 2009-11-05 14:11 IRST LUA INTERPRETER...
Started by M.Rezaei on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
As for OpenSSH, from the FAQ :
2.14 - Why does OpenSSH report its version to clients?
OpenSSH, like most... .
I don't believe you can hide the server type from NMap, as it's clever enough to detect software type from handshake negotiation, fault handling etc .
|
|
Hi,
How do I hide version of Linux I am running when I scan server ports?
When I nmap'ed (nmap -A -T4 192.168.40.12) the server's ip from the outside, this is the result:
Starting Nmap 4.62 ( http://nmap.org ) at 2009-11-07 11:27 IRST LUA INTERPRETER ...
Started by M.Rezaei on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at serverfault):
Details to nmap's OS detection:
http://nmap.org/book....
You can not prevent that except you change the way the TCP/IP stack of Linux works .
Nmap guesses the OS running on the target host by using (among other things) the characteristics of the TCP/IP stack .
|
|
There gotta be an easy way to do this, I can't believe there's none. I have scanned through net and found, like, 20 different methods to find in which domain current user is, but none to get domain (or workgroup) of current machine.
In unmanaged c++ this...
Started by galets on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Domain domain.
System.Environment.UserDomainName
To get the current domain of the system on which your progam is running you can use System.DirectoryServices.ActiveDirectory.Domain .
|