nasserddine Posted September 13, 2017 Posted September 13, 2017 hello , please i need some help ... Example : i have file "Test.txt" at desktop dir , and inside the file String ABCD , ... I'm need script search for " specific string " exp : "C" and change it with "F" ( From HEX File ) . then result = " ABFD " .. please im need the modify to be at hex file . - 1 search inside hex file . - 2 found specific string . - 3 change it with other string . - 4 save it . =================== this is my example : $sBinaryFile = @DesktopDir & "\TEST.txt" $sStringToFind = "C" $bStringToFind = StringTrimLeft(Binary($sStringToFind), 2) ;$aa = BinaryToString("0x" & $bStringToFind ) $hFile = FileOpen($sBinaryFile, 17) $dBinary = FileRead($hFile) ;$i = StringInStr($dBinary, $aa ) If StringInStr($dBinary, $sStringToFind ) Then MsgBox(64 , "3" , $bStringToFind) EndIf
careca Posted September 13, 2017 Posted September 13, 2017 So why do you need to convert to binary in order to replace "C"? Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
nasserddine Posted September 13, 2017 Author Posted September 13, 2017 4 hours ago, careca said: So why do you need to convert to binary in order to replace "C"? just want to replace "C" = F
careca Posted September 14, 2017 Posted September 14, 2017 Yeah, so why the binary read? anyway, you're on the right way, just close the opened file, re-open it in write mode and write the data after replacement into it. Spoiler Renamer - Rename files and folders, remove portions of text from the filename etc. GPO Tool - Export/Import Group policy settings. MirrorDir - Synchronize/Backup/Mirror Folders BeatsPlayer - Music player. Params Tool - Right click an exe to see it's parameters or execute them. String Trigger - Triggers pasting text or applications or internet links on specific strings. Inconspicuous - Hide files in plain sight, not fully encrypted. Regedit Control - Registry browsing history, quickly jump into any saved key. Time4Shutdown - Write the time for shutdown in minutes. Power Profiles Tool - Set a profile as active, delete, duplicate, export and import. Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes. NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s. IUIAutomation - Topic with framework and examples Au3Record.exe
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now