Skip to content

Commit

Permalink
bump 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
david942j committed Oct 3, 2017
1 parent 1a97a99 commit d82cd38
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
elftools (1.0.0)
elftools (1.0.1)
bindata (~> 2)

GEM
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ELF parser in pure ruby implementation. This work is inspired by [pyelftools](ht

The motivation to create this repository is want to be a dependency of [pwntools-ruby](https://github.com/peter50216/pwntools-ruby). Since ELF parser is a big work, it should not be implemented directly in pwntools.

**rbelftools**'s target is to create a nice ELF parser library in ruby. More features remain a work in progress.
**rbelftools**'s target is to create a nice ELF parsing library in ruby. More features remain a work in progress.

# Install

Expand Down Expand Up @@ -175,12 +175,12 @@ elf.save('elf.patched')
For example, to check if NX disabled, you can use
`!elf.segment_by_type(:gnu_stack).executable?` but not `elf.nx?`
5. Section and segment parser
Providing common sections and segments parser. For example, .symtab, .shstrtab
.dynamic sections and INTERP, DYNAMIC segments, etc.
Providing common sections and segments parser. For example, `.symtab`, `.shstrtab`
`.dynamic` sections and `INTERP`, `DYNAMIC` segments, etc.

# Development
```bash
git clone https://github.com/david942j/rbelftools.git
git clone https://github.com/david942j/rbelftools
cd rbelftools
bundle
bundle exec rake
Expand Down
2 changes: 1 addition & 1 deletion lib/elftools/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module ELFTools
# Current gem version
VERSION = '1.0.0'.freeze
VERSION = '1.0.1'.freeze
end

0 comments on commit d82cd38

Please sign in to comment.