jseye 1.0.3__tar.gz → 1.0.4__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.
Files changed (39) hide show
  1. {jseye-1.0.3/jseye.egg-info → jseye-1.0.4}/PKG-INFO +1 -1
  2. {jseye-1.0.3 → jseye-1.0.4}/jseye/__init__.py +1 -1
  3. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/js_filter.py +15 -1
  4. {jseye-1.0.3 → jseye-1.0.4/jseye.egg-info}/PKG-INFO +1 -1
  5. {jseye-1.0.3 → jseye-1.0.4}/pyproject.toml +1 -1
  6. {jseye-1.0.3 → jseye-1.0.4}/LICENSE +0 -0
  7. {jseye-1.0.3 → jseye-1.0.4}/MANIFEST.in +0 -0
  8. {jseye-1.0.3 → jseye-1.0.4}/README.md +0 -0
  9. {jseye-1.0.3 → jseye-1.0.4}/jseye/__main__.py +0 -0
  10. {jseye-1.0.3 → jseye-1.0.4}/jseye/banner.py +0 -0
  11. {jseye-1.0.3 → jseye-1.0.4}/jseye/cli.py +0 -0
  12. {jseye-1.0.3 → jseye-1.0.4}/jseye/data/regex.yaml +0 -0
  13. {jseye-1.0.3 → jseye-1.0.4}/jseye/data/vendor_blacklist.txt +0 -0
  14. {jseye-1.0.3 → jseye-1.0.4}/jseye/installer.py +0 -0
  15. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/__init__.py +0 -0
  16. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/analyze_ast.py +0 -0
  17. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/analyze_regex.py +0 -0
  18. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/correlate.py +0 -0
  19. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/harvest.py +0 -0
  20. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/js_download.py +0 -0
  21. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/linkfinder.py +0 -0
  22. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/secrets.py +0 -0
  23. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/sinks.py +0 -0
  24. {jseye-1.0.3 → jseye-1.0.4}/jseye/modules/tiered_analysis.py +0 -0
  25. {jseye-1.0.3 → jseye-1.0.4}/jseye/pipeline.py +0 -0
  26. {jseye-1.0.3 → jseye-1.0.4}/jseye/utils/__init__.py +0 -0
  27. {jseye-1.0.3 → jseye-1.0.4}/jseye/utils/cache.py +0 -0
  28. {jseye-1.0.3 → jseye-1.0.4}/jseye/utils/fs.py +0 -0
  29. {jseye-1.0.3 → jseye-1.0.4}/jseye/utils/hashing.py +0 -0
  30. {jseye-1.0.3 → jseye-1.0.4}/jseye/utils/logger.py +0 -0
  31. {jseye-1.0.3 → jseye-1.0.4}/jseye/utils/shell.py +0 -0
  32. {jseye-1.0.3 → jseye-1.0.4}/jseye.egg-info/SOURCES.txt +0 -0
  33. {jseye-1.0.3 → jseye-1.0.4}/jseye.egg-info/dependency_links.txt +0 -0
  34. {jseye-1.0.3 → jseye-1.0.4}/jseye.egg-info/entry_points.txt +0 -0
  35. {jseye-1.0.3 → jseye-1.0.4}/jseye.egg-info/requires.txt +0 -0
  36. {jseye-1.0.3 → jseye-1.0.4}/jseye.egg-info/top_level.txt +0 -0
  37. {jseye-1.0.3 → jseye-1.0.4}/scripts/ast_parser.js +0 -0
  38. {jseye-1.0.3 → jseye-1.0.4}/setup.cfg +0 -0
  39. {jseye-1.0.3 → jseye-1.0.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jseye
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: JavaScript Intelligence & Attack Surface Discovery Tool
5
5
  Home-page: https://github.com/letchupkt/jseye
6
6
  Author: Lakshmikanthan K
@@ -4,6 +4,6 @@ Author: Lakshmikanthan K (letchupkt)
4
4
  License: MIT
5
5
  """
6
6
 
7
- __version__ = "1.0.3"
7
+ __version__ = "1.0.4"
8
8
  __author__ = "Lakshmikanthan K (letchupkt)"
9
9
  __email__ = "letchupkt.dev@gmail.com"
@@ -238,4 +238,18 @@ class JSFilter:
238
238
  }
239
239
  save_json(detailed_results, self.output_dir / "js_smart_analysis.json")
240
240
 
241
- return results
241
+ return results
242
+
243
+
244
+ def filter_and_prioritize_js(self, urls: List[str]) -> Dict[str, List[str]]:
245
+ """Alias for filter_javascript_urls - for backward compatibility"""
246
+ results = self.filter_javascript_urls(urls)
247
+
248
+ # Map to expected format for pipeline
249
+ return {
250
+ 'tier1': results['tier1_full'],
251
+ 'tier2': results['tier2_medium'],
252
+ 'tier3': results['tier3_light'],
253
+ 'all_js': results['all_js'],
254
+ 'vendor_skipped': results.get('vendor_skipped', 0)
255
+ }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: jseye
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: JavaScript Intelligence & Attack Surface Discovery Tool
5
5
  Home-page: https://github.com/letchupkt/jseye
6
6
  Author: Lakshmikanthan K
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "jseye"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "JavaScript Intelligence & Attack Surface Discovery Tool"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes