a simple module to manipulate files, find and remove/replace flags, etc...
Project description
I wrote file-manip as a tool too cover my tracks when performing pentests. OS independent.
Functions:
find_files: Recursive file search, looks for a flag in a filename and returns a list with all files that have that flag in them
find_files(base_path, flag)
insert_flag: Inserts a flag into a file, doesn't care about file format, if line_no is not provided then it appends the flag to the end of the file
insert_flag(flag, fname, line_no = None)
replace_flag: Similar to insert_flag, however, replace flag replaces a flag with another flag.
replace_flag(old_flag, new_flag, fname)
remove_flag: Removes a flag entirely from a file. *old_file and new_file can be the same file
remove_flag(flag, old_file, new_file)
normalize_str: takes a string and converts to lowercase and normalized to NFKD for tests and comparisons
normalize_str(string)
compare_normalized: compares strings that are normalized *very very useful when comparing strangly formatted files
compare_normalized(string_0, string_1)
To Do:
- add metadata manipulation
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 Distribution
filemanip-0.0.0.tar.gz
(2.3 kB
view details)
File details
Details for the file filemanip-0.0.0.tar.gz
.
File metadata
- Download URL: filemanip-0.0.0.tar.gz
- Upload date:
- Size: 2.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.19.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7fc52b1859f21099058c552bb777b2678250b3d3dd137e5b12cb3e36ac679d16 |
|
MD5 | 59f1c39ff1966d27085b359ee07b4bc4 |
|
BLAKE2b-256 | f98721e48533755e2e9e33b805a639aed88f411905bfa3bc0cc4b6bc5adc48da |