rekker

Crates.iorekker
lib.rsrekker
version0.1.14
sourcesrc
created_at2024-05-13 17:44:15.254626
updated_at2024-09-21 21:25:52.723983
descriptionAttack library written for rust and python
homepage
repositoryhttps://github.com/GlacierSG/rekker
max_upload_size
id1238717
size65,332
(GlacierSG)

documentation

README

Rekker

Rekker is inspired by pwntools features for communicating with tcp sockets.

Rekker is still in development.

Example

from rekker import remote
io = remote("localhost:1234")
io.send(b"abc")
io.log(True)
io.sendline(b"abcd")
io.sendlineafter(b"abc", b"cde")
io.recv(123)
io.recvn(123)
io.recvline()
io.recvuntil(b"abc")
io.recvall()
io.interactive()
io.debug()
io.close()

Install

Rust

cargo add rekker

Python

pip install rekker
Commit count: 56

cargo fmt