
lyfritz
Members-
Posts
17 -
Joined
-
Last visited
Everything posted by lyfritz
-
posts fromTesseract OCR Get Text Location
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
I did nothing on this forums but ask for help so idk where you are coming from in saying I think I'm big enough. If that is ever how I came across then I'm sorry but I'm simply trying to learn the language. -
posts fromTesseract OCR Get Text Location
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
Make of that what you will. I've already stated my case. -
posts fromTesseract OCR Get Text Location
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
@Jos I finished that project already with pixelsearch. Im just studying OCR. -
Hello @BigDaddyO can you give a more detailed instruction on how to tweak acceptable confidence levels? There are some characters my OCR can't find so I'm hoping that tweaking this would help. Is not enough for me to understand what to do next and It'll be of great help if you can give me more instruction/details.
-
Can I find images without 100% match?
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
I can't ruin it for others as there is a buying limit and it is a pretty established app. What I can see ruining it is posting it on a forum full of people who can automate and saying there's a possibility for profit. -
Can I find images without 100% match?
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
It advertises itself as not having bots. I haven't read it but im assuming yes as no one wants bots anywhere nowadays. If we only used autoit for anything that allows bots can we really still find much use. Why are we even named autoit if I have to defend myself this much if I just want to make something that can help me get some goods I hope to resale from a flash sale. -
Can I find images without 100% match?
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
It is ran on mobile so I am using bluestacks to emulate an android device. I'm sorry if I can't name the app as I am hoping that I can make money with it(as I'm broke) and I'm also afraid I may ruin it for other users if I named it. -
Can I find images without 100% match?
lyfritz replied to lyfritz's topic in AutoIt General Help and Support
It's just a goods purchasing app. Just cause imagesearch is mentioned doesnt mean it's always about games. This is the example of the 1 I am talking about. https://imgur.com/a/esY0wpp That is a number 11 when zoomed out but when I zoom in, the numbers have random pixels mixed up. -
So there is an app that has a automation defense. It does so by varying the pixel shades of an image randomly. Example, when I zoom in on the number 1 within the app I can see that some 1's have extra shades of grey on their side and some don't. I have been using this imagesearch https://www.autoitscript.com/forum/files/file/471-image-search-udf/ but I can't make it find the image no matter how I adjust the tolerance. Can you guys help me out?
-
@Musashi I knew this a long time ago but forgot about it since I didn't have to use it as much. Thank you for reminding me. Google's algorithm was spot on in showing me results from autoit's forum from all my recent searches without having to use this probably because my searches didn't include a topic which was being sold as a product(obfuscator) until now.
-
@Jos So that's why. I probably should've just used this forums' search function so that I could've stumbled on this topic. Google searching this entire time showed mostly links to other websites who provided these kinds of services. @RTFC Thank you for the help. I am trying to read but please understand that I am fairly new to all these and I couldn't understand it as well as most of you guys as descriptions can be be very technical. I was just looking at things from what to me is "logical" and I thought that people usually encrpyt because they don't want other users to read what they wrote so if I were to just do everything by default, I would produce something that is at least something I can immediately run on other pc.
-
I tried using this already but the "output" only runs on my pc and nobody else's(atleast not the 2 I tested it with). The "fresh" one runs fine on 3 pcs(including where I made it) but once I've used codecrypter it doesn't work anymore for the other 2. I'd prefer just using RTFC's but something about its encryption is stopping it from running on other pcs I didn't know what else to do. This is the link from where obfuscation popped up in the conversation:
-
I am planning to use the "Execute" line per line inside my functions. So encrypting/decrypting data is not what I need but just obfuscation? I went looking on how to do this but the only one I found was from 2010 saying: "If you are using SciTE to edit your scripts, you can select the obfuscation options when you select 'Compile', and it will automatically add the necessary lines to your script. The most common options are listed in the box, but extra ones are available via F1." Can you tell me how do I do it as I cannot find any of this compile option and nothing pops up on Help(F1) of autoit when i type obfuscate.
-
I don't know why that is cause it has always worked for me that's why I often use it to check. You didn't mention the msgbox so I assume it popped up? Thank you for the tip. I was actually looking for this since my post didn't look like the ones I see here in the forum lol. Going back to my question, do you have an idea how I can hide the password?
-
I tried just now with MsgBox($MB_SYSTEMMODAL, "", "hello") and its working for me. May I remind that alt+s needs to be pressed in order to run it. I use the one autoit gave as a sample on its _Crypt_EncryptData and just changed the PW to anewbee. I uploaded it too just in case you wanted to see it. #include <Crypt.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> #include <WindowsConstants.au3> HotKeySet("!s", "start") Global $g_hKey, $iAlgorithm, $sRead, $dDecrypted, $dDecrypteds _Crypt_Startup() $g_hKey = _Crypt_DeriveKey("anewbee", $CALG_RC4) While 1 Sleep(100) WEnd Func start() Execute(evo("0x907FB46EE414053635A4C461FF1B3A0C92823E2AEF76BEB1D6FEEAC110B45F15501E08F6")) EndFunc Func evo($sRead) Return BinaryToString(_Crypt_DecryptData($sRead, $g_hKey, $CALG_USERKEY)) EndFunc #include <ComboConstants.au3> #include <Crypt.au3> #include <EditConstants.au3> #include <GUIConstantsEx.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> #include <WinAPIConv.au3> #include <WindowsConstants.au3> Global $g_hKey = -1, $g_idInputEdit = -1, $g_idOutputEdit = -1, $g_idOutputDeCrypted = -1 Example() Func Example() Local $hGUI = GUICreate("Realtime (En/DE)cryption", 400, 470) $g_idInputEdit = GUICtrlCreateEdit("", 0, 0, 400, 150, $ES_WANTRETURN) $g_idOutputEdit = GUICtrlCreateEdit("", 0, 150, 400, 150, $ES_READONLY) $g_idOutputDeCrypted = GUICtrlCreateEdit("", 0, 300, 400, 150, $ES_READONLY) Local $idCombo = GUICtrlCreateCombo("", 0, 450, 100, 20, $CBS_DROPDOWNLIST) GUICtrlSetData($idCombo, "3DES (168bit)|AES (128bit)|AES (192bit)|AES (256bit)|DES (56bit)|RC2 (128bit)|RC4 (128bit)", "RC4 (128bit)") GUIRegisterMsg($WM_COMMAND, "WM_COMMAND") GUISetState(@SW_SHOW, $hGUI) _Crypt_Startup() ; To optimize performance start the crypt library. Local $iAlgorithm = $CALG_RC4 $g_hKey = _Crypt_DeriveKey(StringToBinary("anewbee"), $iAlgorithm) ; Declare a password string and algorithm to create a cryptographic key. While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $idCombo ; Check when the combobox is selected and retrieve the correct algorithm. Switch GUICtrlRead($idCombo) ; Read the combobox selection. Case "3DES (168bit)" $iAlgorithm = $CALG_3DES Case "AES (128bit)" $iAlgorithm = $CALG_AES_128 Case "AES (192bit)" $iAlgorithm = $CALG_AES_192 Case "AES (256bit)" $iAlgorithm = $CALG_AES_256 Case "DES (56bit)" $iAlgorithm = $CALG_DES Case "RC2 (128bit)" $iAlgorithm = $CALG_RC2 Case "RC4 (128bit)" $iAlgorithm = $CALG_RC4 EndSwitch _Crypt_DestroyKey($g_hKey) ; Destroy the cryptographic key. $g_hKey = _Crypt_DeriveKey(StringToBinary("anewbee"), $iAlgorithm) ; Re-declare a password string and algorithm to create a new cryptographic key. Local $sRead = GUICtrlRead($g_idInputEdit) If StringStripWS($sRead, $STR_STRIPALL) <> "" Then ; Check there is text available to encrypt. Local $dEncrypted = _Crypt_EncryptData($sRead, $g_hKey, $CALG_USERKEY) ; Encrypt the text with the new cryptographic key. GUICtrlSetData($g_idOutputEdit, $dEncrypted) ; Set the output box with the encrypted text. Local $dDecrypted = _Crypt_DecryptData($dEncrypted, $g_hKey, $CALG_USERKEY) ; Decrypt the text with the new cryptographic key. GUICtrlSetData($g_idOutputDeCrypted, BinaryToString($dDecrypted)) ; Set the output box with the encrypted text. EndIf EndSwitch WEnd GUIDelete($hGUI) ; Delete the previous GUI and all controls. _Crypt_DestroyKey($g_hKey) ; Destroy the cryptographic key. _Crypt_Shutdown() ; Shutdown the crypt library. EndFunc ;==>Example Func WM_COMMAND($hWnd, $iMsg, $wParam, $lParam) #forceref $hWnd, $iMsg, $lParam Switch _WinAPI_LoWord($wParam) Case $g_idInputEdit Switch _WinAPI_HiWord($wParam) Case $EN_CHANGE Local $dEncrypted = _Crypt_EncryptData(GUICtrlRead($g_idInputEdit), $g_hKey, $CALG_USERKEY) ; Encrypt the text with the cryptographic key. GUICtrlSetData($g_idOutputEdit, $dEncrypted) ; Set the output box with the encrypted text. Local $dDecrypted = _Crypt_DecryptData($dEncrypted, $g_hKey, $CALG_USERKEY) ; Decrypt the text with the new cryptographic key. GUICtrlSetData($g_idOutputDeCrypted, BinaryToString($dDecrypted)) ; Set the output box with the encrypted text. EndSwitch EndSwitch EndFunc ;==>WM_COMMAND Encrypthello.au3 ancryptdata1.au3
-
Hello everyone I'm planning to develop a program but I cannot find a way to decrypt it properly as _Crypt_DeriveKey is showing the password/$vPassword I used to encrypt my code. I read around the forums that hash may be a solution to hide it in plain sight but I cannot find a way to incorporate it and decrypt the code so I may run it. Can you guys help me out? Here is a sample of a Beep() which I encrypted using the password "anewbee". #include <Crypt.au3> #include <MsgBoxConstants.au3> #include <StringConstants.au3> #include <WindowsConstants.au3> HotKeySet("!s", "start") Global $g_hKey, $iAlgorithm, $sRead, $dDecrypted, $dDecrypteds _Crypt_Startup() $g_hKey = _Crypt_DeriveKey("anewbee", $CALG_RC4) While 1 Sleep(100) WEnd Func start() Execute(evo("0x9F69B65CA345")) EndFunc Func evo($sRead) Return BinaryToString(_Crypt_DecryptData($sRead, $g_hKey, $CALG_USERKEY)) EndFunc Encrypt.au3