ELF section in reverse-engineering - #1
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
This PR expands the reverse-engineering documentation by adding an introductory ELF page (including ELF section explanations and dynamic linking basics), plus minor documentation-structure tweaks for sidebar ordering.
Changes:
- Added a new
ELF.mdxdoc describing ELF basics, common sections, and a brief.plt/.gotintroduction (with screenshots). - Added a
_category_.jsonfor the Reverse Engineering “Tools” folder to control its sidebar ordering. - Removed now-unnecessary inline guidance comments from
docusaurus.config.tsaroundeditUrl.
Reviewed changes
Copilot reviewed 3 out of 9 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| docusaurus.config.ts | Removes obsolete comments near editUrl configuration. |
| docs/reverse-engineering/Tools/category.json | Sets sidebar position for the Tools category. |
| docs/reverse-engineering/ELF/ELF.mdx | Introduces a new ELF documentation page with section breakdown and dynamic linking overview. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
+22
to
+23
| - `.data`: The .data section stores the global variables of the program that are initialized with a value. Here we can see that the "ro" is no | ||
| longer there, because this section is RW, meaning that writing to it would not cause any problems. |
Comment on lines
+24
to
+25
| - `.bss`: The .bss section is very similar to .data, with the only difference being that it stores only the global variables that are NOT | ||
| initialized. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Added elf section explanation