If a port depends on rails it should have a suffix for the rails version.
This suffix should be separated from a old version like 1-rails4 instead of 1.
GEF (pronounced "Jeff") is a set of commands for x86/64, ARM, MIPS, PowerPC
and SPARC to assist exploit developers and reverse-engineers when using old
school GDB. It provides additional features to GDB using the Python API to
assist during the process of dynamic analysis and exploit development.
Application developers will also benefit from it, as GEF lifts a great part
of regular GDB obscurity, avoiding repeating traditional commands, or
bringing out the relevant information from the debugging runtime.
Some of GEF features include:
- One single GDB script.
- Fast limiting the number of dependencies and optimizing code to make the
commands as fast as possible.
- Provides more than 50 commands to drastically change your experience in
GDB.
- Easily extendable to create other commands by providing more
comprehensible layout to GDB Python API.
- Built around an architecture abstraction layer, so all commands work in
any GDB-supported architecture such as x86-32/64, ARMv5/6/7, AARCH64,
SPARC, MIPS, PowerPC, etc.
- Suited for real-life apps debugging, exploit development, just as much as
CTF.
WWW: https://gef.rtfd.io
You can use ropper to look at information about files in different
file formats and you can find ROP and JOP gadgets to build chains for
different architectures. Ropper supports ELF, MachO and the PE file
format. Other files can be opened in RAW format. The following
architectures are supported:
- x86 / x86_64
- Mips / Mips64
- ARM (also Thumb Mode)/ ARM64
- PowerPC / PowerPC64
Ropper is inspired by ROPgadget, but should be more than a gadgets
finder. So it is possible to show information about a binary like
header, segments, sections etc. Furthermore it is possible to edit the
binaries and edit the header fields, but currently this is not fully
implemented and in a experimental state. For disassembly ropper uses
the awesome Capstone Framework.
Now you can generate rop chain automatically (auto-roper) for execve
and mprotect syscall.
WWW: https://scoding.de/ropper/
This port is dependant on both the Capstone library and the Python
bindings for Capstone. The version of the library has to be bumped to 4 as
the bindings version has to be kept in sync with the library version in
order to avoid build problems.
Approved by: portmgr (build fix blanket)
Differential Revision: https://reviews.freebsd.org/D23919
This port is dependant on both the Capstone library and the Python
bindings for Capstone. The version of the library has to be bumped to 4 as
the bindings version has to be kept in sync with the library version in
order to avoid build problems.
Approved by: portmgr (build fix blanket)
Differential Revision: https://reviews.freebsd.org/D23921
devel/py-capstone has to be kept in sync with its Capstone library. At the
moment, there are two versions of the library in ports: devel/capstone3 and
devel/capstone4. The version 3 is an old version of the library so the
bindings should be updated to follow version 4, which is the newest major
version.
Currently, there is no need to introduce a port with Python bindings
compatible with Capstone 3 as there are no known ports dependant on version
3 of the bindings.
Some ports need to be updated so that they depend on devel/capstone4
instead of devel/capstone3 to avoid build problems. They will be updated in
subsequent commits.
Also, set NO_ARCH while here.
Approved by: koobs (maintainer)
Differential Revision: https://reviews.freebsd.org/D23751
All-in-one subdomain enumerator including
monitoring automation, multi-thread API
querying, DNS-over-TLS, parallel domain
resolution and a host of other unique
features.
WWW: https://github.com/Edu4rdSHL/findomain
PR: 243431
Submitted by: Lewis Cook <vulcan@wired.sh>
The Guidelines Support Library (GSL) contains functions and types that are
suggested for use by the C++ Core Guidelines maintained by the Standard C++
Foundation. This repo contains Microsoft's implementation of GSL.
The library includes types like span<T>, string_span, owner<> and others.
The entire implementation is provided inline in the headers under the gsl
directory. The implementation generally assumes a platform that implements
C++14 support. There are specific workarounds to support MSVC 2015.
WWW: https://github.com/microsoft/GSL
PR: 244551
Submitted by: Henry Hu <henry.hu.sh@gmail.com>
- More work towards Ucrtbase runtime support.
- Full support for Unicode normalization.
- Improvements in Shell Folders handling.
- Various bug fixes.
Also allow for this port to be used as master port for i386-wine-devel,
which means we need to avoid duplicate inclusions of bsd.port.pre.mk and
bsd.port.post.mk. [1]
Submitted by: salvadore [1]