This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
'use strict'; | |
/** | |
* Module dependencies | |
*/ | |
const passport = require('passport'); | |
const LocalStrategy = require('passport-local').Strategy; | |
const sql = require('mssql'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ctypes | |
import time | |
# DWORDS | |
MOUSEEVENTF_MOVE = 0x00000001 | |
MOUSEEVENTF_LEFTDOWN = 0x00000002 | |
MOUSEEVENTF_LEFTUP = 0x00000004 | |
# initialize user32 dll wrapper | |
user32 = ctypes.windll.user32 |