Skip to content

Commit

Permalink
new xor methods
Browse files Browse the repository at this point in the history
- `ulxor` UTF-8 XOR (padding left)
- `alxor` ASCII XOR (padding left)
- `urxor` UTF-8 XOR (padding right)
- `arxor` ASCII XOR (padding right)
  • Loading branch information
noraj committed May 5, 2021
1 parent b45bbbf commit 78a5e75
Show file tree
Hide file tree
Showing 14 changed files with 1,300 additions and 56 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ $ ctf-party 'NzQ2Zjc0NmY=' from_b64 hex2str str2bin
- cgi: `urlencode`, `urldecode`, `htmlescape`, `htmlunescape` and bang versions
- bin: `to_bin`, `from_bin`, `str2bin`, `bin2str`, `hex2bin`, `bin2hex` and bang versions
- leet: `leet` and bang version
- dec: `dec2str`, `str2dec`, `hex2dec`, `dec2hex` and bang version
- dec: `dec2str`, `str2dec`, `hex2dec`, `dec2hex` and bang versions
- xor: `ulxor`, `alxor`, `urxor`, `arxor` and bang versions
- misc: `istrip` and bang version

## References
Expand Down
5 changes: 5 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@
- `rot_all` return a hash with all rot possibilities
- new misc method:
- `istrip` remove/strip all whitespace including inner ones.
- new xor methods:
- `ulxor` UTF-8 XOR (padding left)
- `alxor` ASCII XOR (padding left)
- `urxor` UTF-8 XOR (padding right)
- `arxor` ASCII XOR (padding right)

## [1.4.1]

Expand Down
3 changes: 2 additions & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ $ ctf-party 'NzQ2Zjc0NmY=' from_b64 hex2str str2bin
- cgi: `urlencode`, `urldecode`, `htmlescape`, `htmlunescape` and bang versions
- bin: `to_bin`, `from_bin`, `str2bin`, `bin2str`, `hex2bin`, `bin2hex` and bang versions
- leet: `leet` and bang version
- dec: `dec2str`, `str2dec`, `hex2dec`, `dec2hex` and bang version
- dec: `dec2str`, `str2dec`, `hex2dec`, `dec2hex` and bang versions
- xor: `ulxor`, `alxor`, `urxor`, `arxor` and bang versions
- misc: `istrip` and bang version

## References
Expand Down
Loading

0 comments on commit 78a5e75

Please sign in to comment.