Jump to content

Open .html File with IE


Recommended Posts

Hello,

A friend sent me a script for calculating PBKDF2 that he grabbed from github

the script has (js/pbkdf2.js, js/sha1.js, index.html)

so i have managed to FileOpen the index.html file and stringreplace 2 values

and opening the .html with IE

#include <File.au3>
#include <IE.au3>


local $File = "index.html"
Local $FileRead = FileRead($File)
local $ReplacePassprase = StringReplace($FileRead, "passprase", "p4ssw0rd")
local $ReplaceSalt = StringReplace($ReplacePassprase, "salt", "123")
local $FileWrite = FileWrite("indexOUT.html", $ReplaceSalt)

local $oIE = _IECreate("C:\Users\user\Desktop\indexOUT.html")

here is the line i am changing into .html file

var mypbkdf2 = new PBKDF2("passprase", "salt", 1000, 32);

the problem is :

i can't get the calculated key from the source

IEDOCREADHTML return 0

Link to comment
Share on other sites

  • Moderators

@TAMIRI as the PBKDF2 derivation is specifically for preventing brute force attacks, this thread is locked until you provide a PM explaining what legitimate reason you have for doing this. Please refer to our forum rules in the interim.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

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