[V0.3] love-pe - A 100% lua library for manipulating windows PE files (exe/dll)
Posted: Fri May 11, 2018 8:07 am
Hello everyone ,
I've been working on a library for manipulating PE files (.exe/.dll) using only Lua and LÖVE, it mainly focuses on hacking the resources.
The main goal of creating this library is to make it possible to change love.exe icon using LÖVE itself, The library is currently not complete and it's like 10% only of my plans.
IconPatcher Usage:
This version (v0.3) replaces the icon by patching the executable, instead of rebuilding it, so it has much more stability, it could only break the checksum which is 0 for more executables.
The resulting executable will have the exact size of the old one.
The new icon should contain the same image sizes of the exe one, otherwise the non-matching images won't be updated.
And because .ico uses bmp format, then as long as the .ico has the same images sizes and bpp then they will have the same file size.
When reporting a non working '.exe', please upload the '.exe' and '.ico' and create a github issue: https://github.com/RamiLego4Game/love-pe/issues
lovePE API:
Copy the love-pe.lua file from this repo into your own project, and here's the API documentation (It's available at the top of the script):
Github: https://github.com/RamiLego4Game/love-pe/
Releases: https://github.com/RamiLego4Game/love-pe/releases
Tell me what you think !
I've been working on a library for manipulating PE files (.exe/.dll) using only Lua and LÖVE, it mainly focuses on hacking the resources.
The main goal of creating this library is to make it possible to change love.exe icon using LÖVE itself, The library is currently not complete and it's like 10% only of my plans.
IconPatcher Usage:
- Install LÖVE 11.1.
- Download IconPatcher-V0.3.love (From github releases, link at the end of the post).
- Download LÖVE for Windows (32-bit or 64-bit, both supported), from https://love2d.org.
- Create a new icon using your favorite image editor.
- Run the downloaded .love using LÖVE.
- Drop the .exe and .ico files
- A folder with open with the patched .exe in.
- Enjoy.
This version (v0.3) replaces the icon by patching the executable, instead of rebuilding it, so it has much more stability, it could only break the checksum which is 0 for more executables.
The resulting executable will have the exact size of the old one.
The new icon should contain the same image sizes of the exe one, otherwise the non-matching images won't be updated.
And because .ico uses bmp format, then as long as the .ico has the same images sizes and bpp then they will have the same file size.
When reporting a non working '.exe', please upload the '.exe' and '.ico' and create a github issue: https://github.com/RamiLego4Game/love-pe/issues
lovePE API:
Copy the love-pe.lua file from this repo into your own project, and here's the API documentation (It's available at the top of the script):
Code: Select all
local lovePE = require("love-pe")
local icodata = lovePE.extractIcon(exeFile)
local success = lovePE.replaceIcon(exeFile,icoFile,newFile)
local success = lovePE.patchIcon(exeFile,icoFile,newFile)
local icodata = lovePE.extractIcon(exeString)
local success, newString = lovePE.replaceIcon(exeString,icoString)
local success, newString = lovePE.patchIcon(exeString,icoString)
--Arguments:
--[[
exeFile -> A LÖVE File object open in read mode and seaked at 0, The source exe file.
icoFile -> A LÖVE File object open in read mode and seaked at 0, The new ico file.
newFile -> A LÖVE File object open in write mode and seaked at 0, The new patched exe file.
exeString -> The source exe data as a string.
icoString -> The new ico data as a string.
newString -> The new patched exe data as a string.
]]
Releases: https://github.com/RamiLego4Game/love-pe/releases
Tell me what you think !