A python based client for CyberChef API server.
Project description
pymagi
Description:
pymagiis a python based client for CyberChef API server.pymagiis used to bake cyberchef recipies in python program.
Dependencies:
- You need to run CyberChef API server in the background for pymagi to work.
- https://github.com/gchq/CyberChef-server#installing - Visit here to know the installation of cyberchef server.
- Python libraires ==> [requests , json ]
Recipies:
- Currently
pymagican handle the following recepies.
- base64 encode/decode
- morse encode/decode
- base85 encode/decode
- braillie encode/decode
- binary encode/decode
- octal encode/decode
- base32 encode/decode
- base58 encode/decode
- base62 encode/decode
- url encode/decode
- html encode/decode
Usage:
- Make sure you have python installed on your system.
- Run the following command.
pip install pymagi
- Python3
>>> from pymagi import *
>>> a = morseencode("This_is_test")
>>> a
'- .... .. ... ..--.- .. ... ..--.- - . ... -'
>>> morsedecode(a)
'THIS_IS_TEST'
Proof of work:
Adding extra recipe:
- Below code is how the package is formed.
- You can get recipe from cyberchef to create your own function.
def exmaple(payload):
connectioncheck()
data = json.dumps({"input": payload,"recipe":{"op":"From example","args":["A-Za-z0-9+/=",True]},"outputType":"string"})
API_ENDPOINT = "http://localhost:3000/bake"
headers_dict = {"Content-Type":"application/json"}
# #sending post request and saving response as response object
r = requests.post(url = API_ENDPOINT, headers=headers_dict,data = data)
# # # # extracting response text
value_received = json.loads(r.text)
value = value_received['value']
return value
Contribution
- This is an open source project. Any contribution would be greatly appreciated!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pymagi-0.0.4-py3-none-any.whl.
File metadata
- Download URL: pymagi-0.0.4-py3-none-any.whl
- Upload date:
- Size: 4.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
277976eb3ae6bfbc598b055b1bd2ef3732046ee73dc7a74a5e562e92edeebafd
|
|
| MD5 |
4f8ff5e3f67f452c2cde0be62a00ca07
|
|
| BLAKE2b-256 |
25469209a0b5a1417d6d5bf69a4c01f9087c671e4b3c0ad7655009e81a4bf24e
|