HTML Javascript HTML Resource Loading IPX IPX Address IPX Enabled IPX Network Number Load HTML Resource MAC Address WIN32 Network Adapter Configuration WINS Primary Server WINS Secondary Server

IP PORT SECURITY ENABLED.ZIP

How to find the ip address of a client machine from a web application?   (created at Mar 21, 2009)   59  

You can get all the required values by javascript as following





How to find the ip address of a client machine from a web application?

CK1804 
Created at Mar 21, 2009 02:48:23 
60   0   0   0  
You can get all the required values by javascript as following

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title></title>
<meta name="GENERATOR" content="Microsoft Visual Studio .NET 7.1">
<meta name="vs_targetSchema" content="http://schemas.
microsoft.com/intellisense/ie5">
<script id="clientEventHandlersJS" language="javascript">
<!--

function Button1_onclick() {
var locator = new ActiveXObject
"WbemScripting.SWbemLocator");
var service = locator.ConnectServer(".");
var properties = service.ExecQuery("SELECT * FROM Win32_NetworkAdapterConfiguration");
var e = new Enumerator (properties);
document.write("<table border=1>");
dispHeading();
for (;!e.atEnd();e.moveNext ())
{
var p = e.item ();
document.write("<tr>");
document.write("<td>" + p.Caption + "</td>");
document.write("<td>" + p.IPFilterSecurityEnabled + "</td>");
document.write("<td>" + p.IPPortSecurityEnabled + "</td>");
document.write("<td>" + p.IPXAddress + "</td>");
document.write("<td>" + p.IPXEnabled + "</td>");
document.write("<td>" + p.IPXNetworkNumber + "</td>");
document.write("<td>" + p.MACAddress + "</td>");
document.write("<td>" + p.WINSPrimaryServer + "</td>");
document.write("<td>" + p.WINSSecondaryServer + "</td>");
document.write("</tr>");
}
document.write("</table>");
}

function dispHeading()
{
document.write("<thead>");
document.write("<td>Caption</td>");
document.write("<td>IPFilterSecurityEnab...
document.write("<td>IPPortSecurityEnable...
document.write("<td>IPXAddress</td>");
document.write("<td>IPXEnabled</td>");
document.write("<td>IPXNetworkNumber</td...
document.write("<td>MACAddress</td>");
document.write("<td>WINSPrimaryServer</t...
document.write("<td>WINSSecondaryServer<...
document.write("</thead>");
}

//-->
</script>
</head>
<body>
<INPUT id="Button1" type="button" value="Button"
name="Button1" language="javascript" onclick="return Button1_onclick()">
</body>
</html>



Tags: HTML HTML Resource Loading IPX IPX Address IPX Enabled IPX Network Number Javascript Load HTML Resource MAC Address WIN32 Network Adapter Configuration WINS Primary Server WINS Secondary Server Share on Facebook Share on X

◀ PREVIOUS
Put Date Time on HTML
▶ NEXT
Simple RSS Reader based on javascript
  댓글 0
로그인을 하시면 댓글을 등록 할 수 있습니다.
SIMILAR POSTS

Simple RSS Reader based on javascript (created at Jul 01, 2009)

Select All, None, Invert checkbox (created at Aug 21, 2009)

How to know the browser name in Javascript ? (updated at Mar 10, 2024)

How to know browser version in javascript ? (created at Aug 22, 2009)

Javascript Prompts (created at Aug 22, 2009)

Javascript Confirmation (created at Aug 22, 2009)

Clipboard copy function working (created at Oct 17, 2008)

Photo thumbnail viewer implement in javascript (created at Aug 27, 2009)

To get web browser capability (updated at Mar 10, 2024)

Javascript based query parser for AJAX application (created at Aug 27, 2009)

Displays the html tags without rendering on a webpage (created at Aug 27, 2009)

To hide/show area of web page without re-loading a page (created at Aug 27, 2009)

To compare two HTML tables on web page in real time (updated at Mar 10, 2024)

Photoshop script programming in Javascript (created at Sep 14, 2009)

IFRAME Auto Resize in IE, FireFox by Javascript (created at May 02, 2008)

How to include Javascript from anonther ? (created at Jan 25, 2008)

Javascript based Browser Sniffing (created at Jan 25, 2008)

Javascript based Regular Expression Tester (created at Jan 15, 2008)

Two useful string functions - substr & substring (created at Jan 15, 2008)

Is there URLEncode function in Javascript ? (created at Oct 11, 2007)

Move window (created at Sep 07, 2007)

How to calculate page loading time ? (created at Sep 07, 2007)

Number Of Vists (created at Sep 07, 2007)

Add Message On Mouse Traling (created at Sep 07, 2007)

Tooltip (created at Sep 07, 2007)

Document Fader (created at Sep 07, 2007)

Book Mark This Site (created at Sep 07, 2007)

Icon Coupled Url (created at Sep 07, 2007)

Button That Will Close The Browser Window (created at Sep 07, 2007)

Button That Will Show The Page's Source (created at Sep 07, 2007)

OTHER POSTS IN THE SAME CATEGORY

To block copy & paste on your blog content (created at Mar 03, 2013)

Shake your browser window by Javascript (updated at Mar 10, 2024)

Photoshop script programming in Javascript (created at Sep 14, 2009)

To compare two HTML tables on web page in real time (updated at Mar 10, 2024)

To hide/show area of web page without re-loading a page (created at Aug 27, 2009)

Displays the html tags without rendering on a webpage (created at Aug 27, 2009)

Javascript based query parser for AJAX application (created at Aug 27, 2009)

To get web browser capability (updated at Mar 10, 2024)

Photo thumbnail viewer implement in javascript (created at Aug 27, 2009)

Javascript Confirmation (created at Aug 22, 2009)

Javascript Prompts (created at Aug 22, 2009)

How to know browser version in javascript ? (created at Aug 22, 2009)

How to know the browser name in Javascript ? (updated at Mar 10, 2024)

Select All, None, Invert checkbox (created at Aug 21, 2009)

Simple RSS Reader based on javascript (created at Jul 01, 2009)

Put Date Time on HTML (created at Oct 27, 2008)

IFRAME Auto Resize in IE, FireFox by Javascript (created at May 02, 2008)

How to elimiate the "Restore Previous Session" dialog when FireFox 2.0 starts (created at Feb 13, 2008)

How to include Javascript from anonther ? (created at Jan 25, 2008)

Javascript based Browser Sniffing (created at Jan 25, 2008)

Javascript based Regular Expression Tester (created at Jan 15, 2008)

Two useful string functions - substr & substring (created at Jan 15, 2008)

How to block a connection from the certain site ? (created at Jan 14, 2008)

Is there URLEncode function in Javascript ? (created at Oct 11, 2007)

Move window (created at Sep 07, 2007)

How to calculate page loading time ? (created at Sep 07, 2007)

Number Of Vists (created at Sep 07, 2007)

Add Message On Mouse Traling (created at Sep 07, 2007)

Tooltip (created at Sep 07, 2007)

Document Fader (created at Sep 07, 2007)

UPDATES

How do I determine the client IP type (IPv4/IPv6) in PHP (updated at Apr 16, 2024)

How do I determine the client IP type in Python - IPv4 or IPv6 (updated at Apr 13, 2024)

Getting Started with PyTorch: A Beginner's Guide to Building Your First Neural Network (updated at Apr 09, 2024)

Predicting Buyer Preferences with PyTorch: A Deep Learning Approach (updated at Apr 09, 2024)

Forecasting the Weather with PyTorch: A Beginner's Guide to Temperature Prediction (created at Apr 09, 2024)

PyTorch example to Forcast Stock Price based on 10 days Dataset (created at Apr 09, 2024)

Mastering Model Persistence: Saving and Loading Trained Machine Learning Models in Python (created at Apr 08, 2024)

Harnessing the Power of Random Forest Algorithm in Python (created at Apr 08, 2024)

Understanding and Implementing K-Nearest Neighbors (KNN) Algorithm in Python (created at Apr 08, 2024)

Forecasting with Linear Regression and KNN Regression in Python (updated at Apr 07, 2024)

What is 302 Found Redirection in HTTP 1.1? (created at Apr 04, 2024)

Mastering Random Forest Regression: A Comprehensive Guide with Python Examples (updated at Apr 01, 2024)

Python Implementation of Linear Regression (updated at Apr 01, 2024)

Mastering Supervised Machine Learning with Python: A Comprehensive Guide (created at Apr 01, 2024)

Mastering AI: A Beginner's Guide to Python Programming and Beyond (created at Apr 01, 2024)

How do I create animated background for Google Meet? (updated at Mar 28, 2024)

Building a Simple DNS Server in Delphi with TTL Support (created at Mar 16, 2024)

How to force cookies, disable php sessid in URL ? (updated at Mar 16, 2024)

Implementing a Versatile DNS Server in PHP: Handling A, AAAA, CNAME, and TXT Records (updated at Mar 16, 2024)

Implementing a Versatile DNS Server in Python: Handling A, AAAA, CNAME, and TXT Records (created at Mar 16, 2024)

Building a Basic DNS Server in PHP/Python: A Beginner's Guide (updated at Mar 15, 2024)

Dynamic DNS Made Easy: Building a Python-Based Solution (created at Mar 15, 2024)

Exploring the Depths of Data Transfer: sendfile vs. kTLS (created at Mar 15, 2024)

How Netflix Ensures Smooth Streaming with Open Connect CDN (updated at Mar 15, 2024)

How to know the browser name in Javascript ? (updated at Mar 10, 2024)

To compare two HTML tables on web page in real time (updated at Mar 10, 2024)

To get web browser capability (updated at Mar 10, 2024)

Shake your browser window by Javascript (updated at Mar 10, 2024)

Run command with Administrator permission in Delphi on Microsoft Windows (updated at Mar 09, 2024)

Get Application Data Path on Delphi (updated at Mar 09, 2024)