|
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 ... .
|
|
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.
|
Ask your Facebook Friends
|
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 .
|
|
Although this question is related to StructureMap, my general question is:
When wiring up components with an IoC container in code (as opposed to configuring via xml ) do you generally need explicit project/build references to all assemblies?
Why the ...
Started by Jeffrey Knight on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
This way we can isolate the domain logic from the infrastructure code, and prevent "just StructureMap Scan) Betty.dll ....
The automatic scan option assembly.
DefaultConstructor is one I end up using from time to time .
The assembly.
|
|
Banging my head against any hard surface trying to figure out why I cannot connect the RICOH copier to a shared folder on my SBS 2008.
Here's the particulars:
New SBS 2008 Server New Network clients running Win XP Pro SP3 New Ricoh multifunction copier...
Started by Critter on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at serverfault):
I feel like this ....
Its own domain account, gave that account NTFS and share permissions to the Scans folder permissions correct, I can get to the server through any device on the domain, and other devices not on the domain.
|
|
We are using Visual Studio 2008 as our primary development IDE. Our security team has set up McAfee to scan files in our \Local Settings\Temp folder. Unfortunately VS uses this directory during code builds which is slowing the developers down. We've reached...
Started by DAC on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
As per: http.
If you must live your ASP.NET worker process is running under - in my case it's a domain account).
Of viruses, we are very vigilant about doing a full system scan periodically.
|
|
How can I scan through a file which contains email addresses that are separated by a new line character and get rid of those that belong to a certain domain, e.g. hacker@bad.com . I want to get rid of all email addresses that are @bad.com
Started by John on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
S)); } sub is_bad_address { my ($addr) = @_; if ($addr=~/^([^@]+)\@([^@\n\r]+)$/o) { my $domain = lc($2); return 0 unless (defined $bad_addresses->{$domain}); return $bad_addresses->{$domain.
|
|
Hi guys - I have two tables here: One holds a list of subscriber emails:
(ID, email)
and the other holds a list of domains:
(ID, domain)
I want to figure out a sql statement that allows me to select * the email addresses which belong to the domains listed...
Started by Ali on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
SELECT email FROM emailTable....
That this will require a full table scan of sub_emails , since MySQL does not support function based indexes yet from EmailTable where substring(email, charindex('@', email) + 1, LEN(@test)) in (select domain.
|