-
Notifications
You must be signed in to change notification settings - Fork 195
Write support for PE binaries #361
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
7f53f39
strtab: offer `len` method
RaitoBezarius a06d03f
pe(header): introduce full DOS header and DOS stub
RaitoBezarius 8f05971
pe(section_table): add `data` function to retrieve the section data s…
RaitoBezarius cd7a238
pe(utils): add a zero-extension padding helper
RaitoBezarius ac67829
pe: implement write support for AttributeCertificate
RaitoBezarius 65ac6f2
pe: implement write support for DataDirectories
RaitoBezarius b6debe4
pe: implement write support for Header
RaitoBezarius 3fdf547
pe: implement write support for SymbolTable
RaitoBezarius e4c0b9f
pe: implement write support for data directories
RaitoBezarius 6125c4a
pe: implement write support for SectionTable
RaitoBezarius 000d671
pe: implement write support
RaitoBezarius 1824672
examples(pe): add a identity rewrite PE binary
RaitoBezarius 55d2580
pe: debug assert that no overlapping sections are written
RaitoBezarius 6410c6c
pe(coff): COFF symbols and COFF strings are deprecated
RaitoBezarius b16ed9a
pe(write): factor into `write_certificates`
RaitoBezarius File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,42 @@ | ||
| use goblin::pe::PE; | ||
| use scroll::Pwrite; | ||
|
|
||
| fn main() { | ||
| stderrlog::new().verbosity(1).init().unwrap(); | ||
| let args: Vec<String> = std::env::args().collect(); | ||
|
|
||
| let file = std::fs::read(&args[1]).unwrap(); | ||
| let file = &file[..]; | ||
| let pe = PE::parse(file).unwrap(); | ||
| println!("read {}", &args[1]); | ||
|
|
||
| println!( | ||
| "file alignment: {:?}", | ||
| pe.header | ||
| .optional_header | ||
| .unwrap() | ||
| .windows_fields | ||
| .file_alignment | ||
| ); | ||
|
|
||
| let mut new_pe = vec![0u8; file.len() + 8192]; | ||
| let new_len = new_pe.pwrite(pe, 0).unwrap(); | ||
| let pe = PE::parse(file).unwrap(); | ||
|
|
||
| let out = &new_pe[..new_len]; | ||
| std::fs::write(&args[2], &out).unwrap(); | ||
| println!("written as {}", &args[2]); | ||
| println!( | ||
| "original PE size: {} bytes, new PE size: {} bytes, delta (new - original): {} bytes", | ||
| file.len(), | ||
| out.len(), | ||
| out.len() as isize - file.len() as isize | ||
| ); | ||
|
|
||
| let new_pe = PE::parse(&new_pe).unwrap(); | ||
| println!( | ||
| "original signatures: {}, new signatures: {}", | ||
| pe.certificates.len(), | ||
| new_pe.certificates.len() | ||
| ); | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.