mirror of
https://github.com/cliffe/SecGen.git
synced 2026-02-21 19:28:02 +00:00
26 lines
1.0 KiB
XML
26 lines
1.0 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<encoder xmlns="http://www.github/cliffe/SecGen/encoder"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://www.github/cliffe/SecGen/encoder">
|
|
<name>Hexadecimal Encoder</name>
|
|
<author>Thomas Shaw</author>
|
|
<module_license>MIT</module_license>
|
|
<description>Takes ASCII strings and encodes each character into it's hexadecimal representation.</description>
|
|
|
|
<type>ascii_reversible</type>
|
|
<type>hex_encoder</type>
|
|
<type>string_encoder</type>
|
|
<platform>linux</platform>
|
|
<platform>windows</platform>
|
|
<difficulty>low</difficulty>
|
|
|
|
<solution>Convert the hexadecimal (base 16) string into its ASCII value, character by character in sets of 2.
|
|
Use an ascii table e.g. http://www.asciitable.com OR an online converter e.g. https://www.branah.com/ascii-converter
|
|
From Kali, use the following command: 'echo yourhex | xxd -r -p'
|
|
</solution>
|
|
|
|
<read_fact>strings_to_encode</read_fact>
|
|
|
|
<output_type>encoded_strings</output_type>
|
|
</encoder> |