You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

crefi

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crefi - pypi Package Compare versions

Comparing version
2.0.8
to
2.0.9
+9
-3
crefi_helper.py

@@ -1,2 +0,2 @@

#!/usr/bin/python
#!/Usrt/bin/python

@@ -14,3 +14,2 @@ import os

datsiz = 0

@@ -33,3 +32,10 @@ timr = 0

st = time.time()
fd = os.open(dest, os.O_WRONLY | os.O_CREAT | os.O_EXCL, 0644)
'''
Removing the option os.O_EXCL, since its useful in many cases, like
appending on already created files. When you are using randomnames
(which is enabled by default) this won't be a problem, you can still
keep track of amount of data written. If you want to do
some appending on the existing files, disable random names, and rerun.
'''
fd = os.open(dest, os.O_WRONLY | os.O_CREAT, 0644)
os.write(fd, data)

@@ -36,0 +42,0 @@ os.close(fd)

Metadata-Version: 1.1
Name: crefi
Version: 2.0.8
Version: 2.0.9
Summary: A tool to generate different IO's and create files on any mount point

@@ -5,0 +5,0 @@ Home-page: https://github.com/vijaykumar-koppad/Crefi

Metadata-Version: 1.1
Name: crefi
Version: 2.0.8
Version: 2.0.9
Summary: A tool to generate different IO's and create files on any mount point

@@ -5,0 +5,0 @@ Home-page: https://github.com/vijaykumar-koppad/Crefi

@@ -1,1 +0,1 @@

__version__ = '2.0.8'
__version__ = '2.0.9'