online windows locker - Forum

Forum Navigation
You need to log in to create posts and topics.

online windows locker

Is this program useful for you?
yes
no

Hello everybody

Today I have created a App through which you can lock your windows online !

Please open Remote Online on mobile (or another device)

(because you must have access to the remote to disable the lock)

>>> Remote <<<

The Application is attached

 

 

Uploaded files:
  • You need to login to have access to uploads.
luishp, Vadim and 2 other users have reacted to this post.
luishpVadimproforma.guyotjavadrajabihakami

Attention :
Maybe in the initial moments, many users will use it and there will be a disruption due to enable/disable through just a server .

@yasin

Thanks for sharing! It would be even more helpful to the forum if you could attach a project with the source code or a demo project that illustrates the basic principle you use.

luishp and YASIN have reacted to this post.
luishpYASIN

this upload on HOST :

 

<?php

if(isset($_GET['ok']) && $_GET['ok'] == 'yes'){
    echo 'Windows was locked';
file_put_contents('locker.txt','true');
}elseif(isset($_GET['ok']) && $_GET['ok'] == 'no'){
    echo 'It was disabled';
file_put_contents('locker.txt','false');
}else{
    echo '<pre><a href="./?ok=yes">LOCK windows</a> | <a href="./?ok=no">Disable locker</a> | <a link="htpp://yasinthy.ir">YASINTHY.IR</a></pre>';
}
?>

 

this is Functions code

dim oWs
Set oWS = CreateObject("WScript.Shell")
oWS.Run "rundll32.exe user32.dll,LockWorkStation"

 

this is a demo :

 

Uploaded files:
  • You need to login to have access to uploads.