My PHP based webpage populates a set of IP addresses from database. I need to run PING command for any IP address clicked by the user from the local machine. I know its a security issue and browsers may/ should not allow such execution of 'shell commands' BUT there must be some workaround.. to get it done. Suggestions and guidance required from gurus.
How to call/ execute .WSF (windows script file) from browser
873 views Asked by Khaled Javeed At
1
There are 1 answers
Related Questions in PHP
- How to add the dynamic new rows from my registration form in my database?
- Issue in payment form gateway
- How to create a facet for WP gridbuilder that displays both parent and child custom fields?
- Function in anonymous Laravel Blade component
- How to change woocomerce or full wordpress currency with value from USD to AUD
- General questions about creating a custom theme Moodle CMS
- How to add logging to an abstract class in php
- error 500 on IIS FastCGI but no clue despite multiple error loggings activated
- Composer installation fails and reverts ./composer.json and ./composer.lock to original content
- How to isolate PHP apps from each other on a local machine(Windows or Linux)?
- Laravel: Using belongsToMany relationship with MongoDB
- window.location.href redirects but is causing problems on the webpage
- Key provided is shorter than 256 bits, only 64 bits provided
- Laravel's whereBetween method not working with two timestamps
- Implementing UUID as primary key in Laravel intermediate table
Related Questions in PING
- How can we make an environment specific Token-based authorization using Ping Token?
- Can't ping to 8.8.8.8 and google.com in beaglebone black
- how calculate: mean, standard deviation , coefficient for each ip ping , traceroute
- How to "make" a variable that contains another variable value?
- How to run automatically a command in the CMD after starting it as a process (using C#)
- Ping from a public EC2 instance
- how to perform a Ping flood attack / ICMP flood attack demonstration?
- Not able to connect to an IP from databricks notebook in azure
- Cannot ping server 1 from pc 1 in packet tracer file by setting default route on all 3 routers connected with serial DTE cables
- ModuleNotFoundError, while running a python script as root user in Ubuntu
- Flutter app unable to resolve hostname for ping operation
- Why does my genymotion emulator show 127.0.0.1:6555 on its top window border, rather than a real IP address?
- OIDC enabled web apps prompting for re-authentication although logged in first application initially
- Python library to send pings that doesn't require elevated permissions?
- Resolving NoneType.__format__ Error in a Python UDP Ping Function
Related Questions in WINDOWS-SCRIPTING
- Batch Script-Powershell MessageBox | How do I set TopMost within PS command line of Batch?
- Windows Post Patch Report not showing available/pending updates
- Exiftool - Batch join tags keywords from JSON to jpg files
- How do I create a powershell script to set default file type (.ica specifically) to open with a .exe located in C:\program files (x86)\
- How to add Double quotes to Array elements in Powershell console?
- Can Windows 11 Sound and Display settings be scripted?
- Powershell script to close specific user share drive session
- PowerShell Script to Replace non-HTML Tags
- search a folder recursively to list the file names which contains the string windows
- Logon scripts are running with admin powershell by default can this be changed?
- Microsoft Excel cannot paste the data. FullyQualifiedErrorId : System.Runtime.InteropServices.COMException
- How to automatically set the Application Pool Identity, User Name & Password
- Printing borderless with PowerShell script
- I need help figuring out where my code is getting hung up at
- Trigger jenkins Job with Azure AD Auth
Related Questions in WSH
- "CreateObject("WScript.Shell").PopUp "strMsg", 5" does not close after 5 seconds
- Unable to redirect output from VBA with cmd in hidden mode
- How to access JSON object returned from createObject("htmlfile") in VBS file
- SAP GUI Connection not working after update to .NET 6
- How to enable your Windows Script Host through Registry Editor?
- How can I prompt the user to enter a value in WSH JavaScript?
- Embedded base64 image has random background color (Making signature html rtf txt files)
- Getting "Windows Script Host" : Error code 800A03F6, Microsoft JScript compilation error, when executing module after using npm link
- Starting and minimizing Quake Terminal at startup
- Activate Windows License
- Windows Script Host cannot reference type library with version number in hexadecimal notation
- Why does WScript.Shell SpecialFolders function return an empty string for Default and MyDocuments
- How to encode a string in base64 in JScript
- Error 800A01CE, add printer by vbs throught ip
- powershell spawned by .vbs file does not recognize script files... (Windows 11)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
You're thinking about this wrongly. You don't need to ping from the client; do it from the server!
This question covers how to do that using PHP.
No more security headaches to worry about!