Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noraj/ctf-party
:triangular_flag_on_post: A CLI tool & library to enhance and speed up script/exploit writing with string conversion/manipulation.
https://github.com/noraj/ctf-party
ctf ctf-framework ctf-tools data-manipulation decoding encoding hacktoberfest hashing library security-tools string-manipulation
Last synced: 2 days ago
JSON representation
:triangular_flag_on_post: A CLI tool & library to enhance and speed up script/exploit writing with string conversion/manipulation.
- Host: GitHub
- URL: https://github.com/noraj/ctf-party
- Owner: noraj
- License: mit
- Created: 2020-06-22T09:03:22.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-07T10:43:18.000Z (5 months ago)
- Last Synced: 2025-01-15T02:05:05.236Z (9 days ago)
- Topics: ctf, ctf-framework, ctf-tools, data-manipulation, decoding, encoding, hacktoberfest, hashing, library, security-tools, string-manipulation
- Language: Ruby
- Homepage: https://noraj.github.io/ctf-party/
- Size: 469 KB
- Stars: 82
- Watchers: 7
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.txt
Awesome Lists containing this project
README
# ctf-party
[![Gem Version](https://badge.fury.io/rb/ctf-party.svg)](https://badge.fury.io/rb/ctf-party)
![GitHub tag (latest SemVer)](https://img.shields.io/github/tag/noraj/ctf-party)
[![GitHub forks](https://img.shields.io/github/forks/noraj/ctf-party)](https://github.com/noraj/ctf-party/network)
[![GitHub stars](https://img.shields.io/github/stars/noraj/ctf-party)](https://github.com/noraj/ctf-party/stargazers)
[![GitHub license](https://img.shields.io/github/license/noraj/ctf-party)](https://github.com/noraj/ctf-party/blob/master/LICENSE.txt)
[![Rawsec's CyberSecurity Inventory](https://inventory.raw.pm/img/badges/Rawsec-inventoried-FF5050_flat.svg)](https://inventory.raw.pm/tools.html#ctf-party)[![Packaging status](https://repology.org/badge/vertical-allrepos/ctf-party.svg)](https://repology.org/project/ctf-party/versions)
![](https://noraj.github.io/ctf-party/_media/logo.png)
## What it is
A CLI tool & library to enhance and speed up script/exploit writing for CTF players (or
security researchers, bug bounty hunters, pentesters but mostly focused on CTF)
by patching the String class to add a short syntax of usual code patterns.
The philosophy is also to keep the library to be pure ruby (no dependencies)
and not to re-implement what another library is already doing well
(eg. [xorcist] for xor).[xorcist]:https://github.com/fny/xorcist
For example instead of writing:
```ruby
require 'base64'myvar = 'string'
myvar = Base64.strict_encode64(myvar)
```Just write (shorter and easier to remember):
```ruby
require 'ctf_party'myvar = 'string'
myvar.to_b64!
```Most of the methods are available as commands CLI tool:
```
$ ctf-party 'security' to_hex
7365637572697479$ ctf-party 'NzQ2Zjc0NmY=' from_b64 hex2str str2bin
01110100011011110111010001101111
```## Features
- base64: `to_b64`, `from_b64`, `b64?` and bang versions
- digest: `md5`, `sha1`, etc. and bang versions
- flag: `flag`, `flag!`, `flag?` (apply/check a flag format)
- rot: `rot`, `rot13`, `rot_all` and bang versions
- hex: `hex2dec`, `dec2hex`, `to_hex`, `from_hex`, `str2hex`, `hex2str`, `hex2bin`, `bin2hex`, `from_hexip`, `to_hexip`, etc. and bang versions
- case: `randomcase`, `alternatecase` and bang versions
- cgi: `urlencode`, `urlencode_component`, `urldecode`, `urldecode_component`, `htmlescape`, `htmlunescape` and bang versions
- bin: `to_bin`, `from_bin`, `str2bin`, `bin2str`, `hex2bin`, `bin2hex`, etc. and bang versions
- leet: `leet` and bang version
- dec: `dec2str`, `str2dec`, `hex2dec`, `dec2hex` and bang versions
- xor: `ulxor`, `alxor`, `urxor`, `arxor` and bang versions
- misc: `istrip` and bang version
- defang: `defang_ip`, `defang_uri`, `defang_domain`, `defang_email`, `refang_ip`, etc. and bang versions
- network: `ipv4?`, `ipv6?`, `ip?`, `uri?`, `domain?`, `email?`## References
Homepage / Documentation: https://noraj.github.io/ctf-party/
## Author
Made by Alexandre ZANNI ([@noraj](https://pwn.by/noraj/)). Forked from [Orange-Cyberdefense/ctf-party](https://github.com/Orange-Cyberdefense/ctf-party).