Jump to content

paradox109

Members
  • Posts

    8
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

paradox109's Achievements

Seeker

Seeker (1/7)

1

Reputation

  1. TheXman, Ehh i swear i tried every combination with binary and hex. Maybe i missed 0x at the beginning. Anyways big thanks!
  2. Today i tried using _CryptoNG_PBKDF2 Function of CryptoNG.au3 UDF 490-cryptong-udf-cryptography-api-next-generation Unfortunately, i keep getting the wrong salted Password! #include <CryptoNG.au3> $pass = "[test]" $salt = "fd4b1e6ad1b05db6ff288928fed3005ef4fdc9ade8be276220a8f41adcccda29" ConsoleWrite('pass: '&@TAB&@TAB&$pass&@CRLF) ConsoleWrite('salt: '&@TAB&@TAB&$salt&@CRLF) $iDKeyBitLength=256 $resKey = _CryptoNG_PBKDF2($pass, $salt, 100,$iDKeyBitLength,'SHA256') If @error Then MsgBox(0,"","ERROR: " & _CryptoNG_LastErrorMessage(),0) If StringLower(Hex($resKey)) <> '5fc52bc04cbe1ed40e549b52e5c636168242c1395df2dd696a327ad5e005198f' Then ConsoleWrite('saltedPassword: '&StringLower(Hex($resKey))&' WRONG! ---> 5fc52bc04cbe1ed40e549b52e5c636168242c1395df2dd696a327ad5e005198f'&@CRLF) Else ConsoleWrite('saltedPassword: '&StringLower(Hex($resKey))&' !Correct'&@CRLF) EndIf And here are working examples in php and python. Python Php
  3. The problem is here: $sText &= $sOutput _GUICtrlEdit_AppendText($editProgress, $sText) You reading new line and combining with old stuff and then appending. (Every single time) Local $sPSScript = @ScriptDir & "\Launch.ps1" Local $sText = "", $sSTDOUT = "" Local $sCMD = "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -command . '" & $sPSScript & "'" Local $pid = Run($sCMD, @SystemDir, @SW_HIDE, $STDIN_CHILD + $STDOUT_CHILD + $STDERR_CHILD) StdinWrite($pid) While 1 $sOutput = StdoutRead($pid) If @error Then ExitLoop If $sOutput <> "" Then _GUICtrlEdit_AppendText($editProgress, $sOutput) EndIf WEnd
  4. Aim is to get information faster from API's. As i said before i already have couple projects that works with multiprocessing.
  5. Hello, I have A simple question about http request. What would be the fastest way to send mupltiple http request at the same time with autoit? The only way i figured out was to to start multiple processes. This way works fine but its not really a good way. What user would like to see 15 processes running in the background at the same time. I know multithread is also not available in autoit.
  6. ps. forgot to mention i also had to change Local $m = Random(5, 10) from Local $m = Random(50, 160)
  7. i also have a problem. My problem with smoothermousemove.au3 is that the mouse movement is way too quick. If we change the MouseMove ($cx, $cy,0) to 2 or more then it's way too slow(i guess "for cycle" is the problem ). I managed to get around that with sleep(random(10,15)) in "for cycle", but then the mousemovent is not smooth anymore a bit choppy, however its still does it job. How can we slow down mousemovement the normal way?
×
×
  • Create New...