Unlock Pro Face GP37W2

Прочие SCADA: iFix, InTouch, Citect, ...
Post Reply
elcarnado
Posts: 2
Joined: Fri Oct 30, 2015 2:43 pm

Unlock Pro Face GP37W2

Post by elcarnado » Fri Oct 30, 2015 3:23 pm

Hi all!
I need upload project from the HMI Pro Face GP37W2, without original project. But the project blocked on password in India many years ago. The password can be only digital from 1 to 4 symbol. I wrote simply program, which click on 'upload' button and then types number into textfield. If password is incorrect, program decrements it and type again. But program checked all possible password from 0 to 9999 and the correct password was not found. Can anybody hellp me, please?
I used python, PyautoGui(simulate keyboard input) and PyWin32(detect which window is open now).
Screens
Show
Main Window - http://uploads.ru/BFM0O.jpg
Paswword input - http://uploads.ru/Ojt50.jpg
Incorrect password - http://uploads.ru/Sv5DP.jpg
Program output - http://uploads.ru/V8Xq1.jpg
Program code
Show

Code: Select all

import win32gui
import pyautogui
import time, os

RECEIVE_X = 965 #Coordinates X receive button
RECEIVE_Y = 60  #Coordinates Y receive button

def transfer():
    password = 9999 	 #Start password number
    w = win32gui
    
    while password >= 0: #End password number

        if w.GetWindowText(w.GetForegroundWindow()) == 'Save File':             #Window 'Save File' showing if password is correct
            break

        elif w.GetWindowText(w.GetForegroundWindow()) == 'Transfer':            #On Transfer Window click on 'Upload' button
            pyautogui.click(RECEIVE_X, RECEIVE_Y)
            time.sleep(8)											# time to connect HMI

        elif w.GetWindowText(w.GetForegroundWindow()) == 'Register Password': # In this window enter the current password
            time.sleep(0.2)
            print ('Try password %i' % password)
            pyautogui.typewrite(str(password), 0.1)
            pyautogui.press('enter')
            if password % 20 == 0:											# log in file 
                f = open(u'D:\Proface_Brutforce\log.txt', 'a')
                f.write('Password = %i \n' % password)
                f.close()
            time.sleep(1.2)
            
        elif w.GetWindowText(w.GetForegroundWindow()) == 'Invalid Password!': #if password incorrect 
            password -= 1
            pyautogui.press('enter')

transfer() 


device111
Posts: 1
Joined: Wed Jan 07, 2015 9:12 pm

Re: Unlock Pro Face GP37W2

Post by device111 » Fri Nov 06, 2015 7:53 am

Hi,

is the PAssword 0010 not working? Long time ago a had the same Problem and I think there was a Backdor for PAsswords.

If its not working, try to call Pro-Face...there will help you.

elcarnado
Posts: 2
Joined: Fri Oct 30, 2015 2:43 pm

Re: Unlock Pro Face GP37W2

Post by elcarnado » Mon Nov 09, 2015 1:13 pm

device111 wrote:Hi,

is the PAssword 0010 not working? Long time ago a had the same Problem and I think there was a Backdor for PAsswords.

If its not working, try to call Pro-Face...there will help you.
No, paswword 0010 is not working. The standart password 1101 is not work too. Thank you, I will rewrite HMI program (

hmohamed
Posts: 147
Joined: Sun Oct 18, 2009 8:19 am

Re: Unlock Pro Face GP37W2

Post by hmohamed » Tue Nov 10, 2015 6:03 am

Did you tried this website

http://www.ymmfa.com/thread-gkfid-37.html

they can have a solution for your problem

good luck

Post Reply