rosetta-ce 1.6.6__tar.gz → 1.6.7__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rosetta-ce might be problematic. Click here for more details.

Files changed (23) hide show
  1. {rosetta_ce-1.6.6/rosetta_ce.egg-info → rosetta_ce-1.6.7}/PKG-INFO +1 -1
  2. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/rfaker.py +3 -0
  3. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7/rosetta_ce.egg-info}/PKG-INFO +1 -1
  4. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/setup.py +1 -1
  5. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/LICENSE +0 -0
  6. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/README.md +0 -0
  7. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/__init__.py +0 -0
  8. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/constants/__init__.py +0 -0
  9. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/constants/attributes.py +0 -0
  10. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/constants/db.py +0 -0
  11. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/constants/sensors.py +0 -0
  12. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/constants/sources.py +0 -0
  13. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/constants/systems.py +0 -0
  14. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/rconverter.py +0 -0
  15. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta/rsender.py +0 -0
  16. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta_ce.egg-info/SOURCES.txt +0 -0
  17. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta_ce.egg-info/dependency_links.txt +0 -0
  18. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta_ce.egg-info/requires.txt +0 -0
  19. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/rosetta_ce.egg-info/top_level.txt +0 -0
  20. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/setup.cfg +0 -0
  21. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/tests/test_rconverter.py +0 -0
  22. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/tests/test_rfaker.py +0 -0
  23. {rosetta_ce-1.6.6 → rosetta_ce-1.6.7}/tests/test_rsender.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rosetta-ce
3
- Version: 1.6.6
3
+ Version: 1.6.7
4
4
  Summary: Rosetta is a Python package that can be used to fake security logs and alerts for testing different detection and response use cases.
5
5
  Home-page: https://github.com/ayman-m/rosetta
6
6
  Author: Ayman Mahmoud
@@ -301,6 +301,9 @@ class Events:
301
301
  if field == "src_host":
302
302
  field_value = random.choice(observables.src_host) if observables and observables.src_host \
303
303
  else faker.hostname()
304
+ if field == "dst_host":
305
+ field_value = random.choice(observables.dst_host) if observables and observables.dst_host \
306
+ else faker.hostname()
304
307
  if field == "user":
305
308
  field_value = random.choice(observables.user) if observables and observables.user \
306
309
  else faker.user_name()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: rosetta-ce
3
- Version: 1.6.6
3
+ Version: 1.6.7
4
4
  Summary: Rosetta is a Python package that can be used to fake security logs and alerts for testing different detection and response use cases.
5
5
  Home-page: https://github.com/ayman-m/rosetta
6
6
  Author: Ayman Mahmoud
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5
5
 
6
6
  setuptools.setup(
7
7
  name="rosetta-ce",
8
- version="1.6.6",
8
+ version="1.6.7",
9
9
  author="Ayman Mahmoud",
10
10
  author_email="content@ayman.online",
11
11
  description="Rosetta is a Python package that can be used to fake security logs and alerts for testing different "
File without changes
File without changes
File without changes