Skip to main content

Cyber spellbook for developers.

Project description

CyberBook

This is a collection of functions / tools that are used frequently enough to store them some place.

DecoderRing Example

The purpose of DecoderRing is to encode / decode a string easily.

import CyberBook

# DecoderRing Usage
dr = CyberBook.DecoderRing(data='test')

print(
    "[*] Encode:\n",
    f"Hex encoded: \t\t{dr.hex()}",
    f"Base64 encoded: \t{dr.base64()}",
    "\n[*] Accessing Data:\n",
    f"Initial input: \t\t{dr.data}",
    f"Encrypted string: \t{dr.altered_data}",
    "\n[*] Decode:\n",
    f"Base64 decoded: \t{dr.base64(decode=True)}",
    f"Hex decoded: \t\t{dr.hex(decode=True)}",
    sep='\n'
)

Expected Output:

[*] Encode:

Hex encoded: 		74657374
Base64 encoded: 	NzQ2NTczNzQ=

[*] Accessing Data:

Initial input: 		test
Encrypted string: 	NzQ2NTczNzQ=

[*] Decode:

Base64 decoded: 	74657374
Hex decoded: 		test

Other Module Examples

# Identify
print(f"{CyberBook.Identify.os_specs()}")

# FileSystemMagic
print(f'{CyberBook.read_wordlist(file="someWords.lst")}')

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

CyberBook-0.0.15.tar.gz (18.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page