Util functions for python
Project description
Install
pip install winkar_utils
Utils for python
chaining
Add chaining enumerate supports for iterables
import utils
range(10).map(lambda x: x**2) \
.filter(lambda x: x>10) \
.take(5) \
.reduce(lambda x,y: x+y)
Encodings
Add additional encodings for str
import utils
print "asd".encode("bin") # => 011000010111001101100100
print "011000010111001101100100".decode("bin") # => asd
Concurrent
Utils for coding concurrently
from utils.concurrent import multiThread
@multiThread(10) # the param indicate how many threads to start
def ox(x):
return x
ox(range(10)) # this will run concurrently
# param should be a collection of orgin param type
Log
Utils for log
import logging
from utils.log import stream_handler, formatter, logger
logger.warn("test") # the logger has been set level to warn
# use formatter as its default output format
# and will only print to stdout
logger.setLevel(logging.INFO)
# change log level
logger.name = "test" # change logger name
Factor
from utils.factor import factor
factor(130) # => [2,5,13]
factor(131) # => [1,131]
Which will also add a factor command like linux to PATH
Useful third-party libraries
Pwntools
A very useful integrated pwn library.
Can just install through pip.
from pwn import *
context(arch = 'i386', os = 'linux')
r = remote('exploitme.example.com', 31337)
# EXPLOIT CODE GOES HERE
r.send(asm(shellcraft.sh()))
r.interactive()
libformatstr
Library specially for format string exploit.
Install with pip.
import sys
from libformatstr import FormatStr
addr = 0x08049580
system_addr = 0x080489a3
p = FormatStr()
p[addr] = system_addr
# buf is 14th argument, 4 bytes are already printed
sys.stdout.write( p.payload(14, start_len=4) )
fnmatch
Library that supports bash-style wildcard.
Install with pip
from fnmatch import fnmatch
fnmatch("target", "tar*") # => true
fnmatch("target", "TARG.T") # => false
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
winkar_utils-0.0.7.tar.gz
(4.1 kB
view details)
File details
Details for the file winkar_utils-0.0.7.tar.gz
.
File metadata
- Download URL: winkar_utils-0.0.7.tar.gz
- Upload date:
- Size: 4.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf60149c30e618778a8729c34783f98d2cbe78923f8bddffb31a4fbc49e39daa |
|
MD5 | b9663f506dc01589fe106b315bd72499 |
|
BLAKE2b-256 | b9c0f89aca8ec629b512edbdb255cec10860e2a2510936a049f3e8ae311ca0cb |