Jump to content

*VAULTER* - PC LOCKOUT


Valuater
 Share

Recommended Posts

  • 8 months later...
  • Replies 117
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

I've always looked at this topic from a distance.. And I've always wondered how this got so many posts.. After I press "Add Reply", I know why. This is really a lame topic.

Guess you were right Manadar....

Not a post since September 06

8)

NEWHeader1.png

Link to comment
Share on other sites

  • 5 months later...

Okkey ..so i press couple times Left CTRL +Esc & I get the start meny to appear & I can shut down, or log out, or restart..etc...soo this wont protect evan from a newbie....I wonder if this will ever be fixed?

No I cant do it myself, Cuz I I have no idea how...just letting you know of this bug.

My Projects:[list][*]Guide - ytube step by step tut for reading memory with autoitscript + samples[*]WinHide - tool to show hide windows, Skinned With GDI+[*]Virtualdub batch job list maker - Batch Process all files with same settings[*]Exp calc - Exp calculator for online games[*]Automated Microsoft SQL Server 2000 installer[*]Image sorter helper for IrfanView - 1 click opens img & move ur mouse to close opened img[/list]
Link to comment
Share on other sites

Hi Valuater,

Nice idea, but i can disable the locking :) - i press Ctrl Alt Del (for taskmgr dialog), and then i select AutoIt3.exe process and quickly press Del key, then the dialog will not close, and when i press Enter, the computer is unlocked ;) - the only problem is that i need to restart Explorer.exe process after that :P

Btw, maybe you have an idea on how to lock Power/Sleep/Wakeup keys? (they are present on not standard keyboard).

 

Spoiler

Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1

AutoIt_Rus_Community.png AutoIt Russian Community

My Work...

Spoiler

AutoIt_Icon_small.pngProjects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize Program

AutoIt_Icon_small.pngUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF
 
AutoIt_Icon_small.pngExamples: 
ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo

Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating AutoIt_Rating.gif)

* === My topics === *

==================================================
My_Userbar.gif
==================================================

 

 

 

AutoIt is simple, subtle, elegant. © AutoIt Team

Link to comment
Share on other sites

Hi Valuater,

Nice idea, but i can disable the locking :) - i press Ctrl Alt Del (for taskmgr dialog), and then i select AutoIt3.exe process and quickly press Del key, then the dialog will not close, and when i press Enter, the computer is unlocked ;) - the only problem is that i need to restart Explorer.exe process after that :P

Btw, maybe you have an idea on how to lock Power/Sleep/Wakeup keys? (they are present on not standard keyboard).

Obviously with this script imitating taking pictures and uploading info, there are a few holes. It was not designed to keep the computer person off, it was designed to keep people off the computer... :P

8)

Edited by Valuater

NEWHeader1.png

Link to comment
Share on other sites

  • 1 month later...

Hehe, nice script. :)

Though I would rather use mine(I think it's a little more secure)

#include <GUIConstants.au3>
#include <String.au3>

Opt("WinTitleMatchMode", 4)
Opt("MouseCoordMode", 1)
Opt("CaretCoordMode", 1)
Opt("WinWaitDelay", 0)

Global Const $Password = InputBox("First Run", "Input password to use for unlocking.", "", "*")
If @error Then Exit
Global Const $InputTime = 1000          ;<---------- EDIT THIS: This sets the time that you have to type the password
Global $Status = False
Global $oldmPos[4]
Global $cTHandle = TimerInit()
Global $oiText
Global Const $Width = 200
GLobal Const $Height = 200
Global Const $gHandle = GUICreate("Computer Locked!", $Width, $Height, -1, -1, $WS_CAPTION, $WS_EX_TOPMOST + $WS_EX_TOOLWINDOW)
Global Const $lHandle = GUICtrlCreateLabel("Input Password", 5, ($Height/2)-20, $Width-15)
Global Const $iHandle = GUICtrlCreateInput("", 5, $Height/2, $Width-15, -1, $ES_PASSWORD)

GUISetState()

While 1
    
    $mPos = MouseGetPos()
    $iText = GuiCtrlRead($iHandle)
    
    If $mPos[0] <> $oldmPos[0] Or $mPos[1] <> $oldmPos[1] Then
        WinMove($gHandle, "", $mPos[0]-($Width/2), $mPos[1]-($Height/2))
    EndIf
    
    If Not WinActive($gHandle) Then
        WinActivate($gHandle)
    EndIf
;~
    If TimerDiff($cTHandle) > 1000 Then
        GUICtrlSetData($lHandle, "Input Password")
        If $iText == $oiText And $iText <> "" Then
            GUICtrlSetData($lHandle, "Denied!")
            GUICtrlSetData($iHandle, "")
            SoundPlay(@ScriptDir & "\Deny.wav", 0)
        ElseIf $iText <> $oiText And $iText == $Password Then
            GUICtrlSetData($lHandle, "Access Granted!")
            WinSetTitle($gHandle, "", "Computer Unlocked!")
            Sleep(500)
            GUIDelete($gHandle)
            SoundPlay(@ScriptDir & "\Allow.wav", 1)
;~          SoundPlay(@ScriptDir & "\taunt1.wav", 1)
;~          SoundPlay(@ScriptDir & "\taunt2.wav", 1)
            Exit
        EndIf
        $oiText = $iText
        $cTHandle = TimerInit()
    EndIf
    
    $oldmPos = $mPos
    
    Sleep(1)
    
WEnd
Link to comment
Share on other sites

  • 3 months later...
  • 3 months later...

how do you disable Control Alt Delete

or any command that can break the lock

without the password?

There are a couple of "take-offs" after I wrote this script. some handle the Ctrl-Alt-Del better than this

I cant find VAULT.dat on my computer. Also, if I change

CODE
Dim $KEY = "362436"
to
CODE
Dim $KEY = "mypassword"
will password be mypassword?

that should work... did you try it?????

I can press windows key to get into run - > cmd!!

XP sp3 with vista conversion

also the icons on the desktop blink, heh.

worked on my regular XP SP2 though, so idk.

Thanks BackStabbed, I haven't put much attention into this since its release, its just for fun with a camera taking pictures and uploading them to a website...lol

thx

8)

NEWHeader1.png

Link to comment
Share on other sites

  • 5 months later...

somehow this doesnt work for me at all?

i creates a window where i can input a password.. if its wrong i get this "uplaoding to vaulter.net blabla".. but no photo/log in script dir.. and also i can jst click cancel to close or press the "x" .. oO

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...