socx 2.3__tar.gz → 2.5.0__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.
- {socx-2.3 → socx-2.5.0}/PKG-INFO +34 -28
- {socx-2.3 → socx-2.5.0}/README.md +20 -27
- socx-2.5.0/pyproject.toml +39 -0
- {socx-2.3 → socx-2.5.0}/src/socx/__init__.py +1 -0
- socx-2.5.0/src/socx/socx.py +833 -0
- {socx-2.3 → socx-2.5.0}/src/socx.egg-info/PKG-INFO +34 -28
- {socx-2.3 → socx-2.5.0}/src/socx.egg-info/SOURCES.txt +1 -0
- socx-2.5.0/src/socx.egg-info/requires.txt +3 -0
- socx-2.5.0/tests/tests.py +195 -0
- socx-2.3/pyproject.toml +0 -19
- socx-2.3/src/socx/socx.py +0 -1004
- socx-2.3/tests/tests.py +0 -96
- {socx-2.3 → socx-2.5.0}/setup.cfg +0 -0
- {socx-2.3 → socx-2.5.0}/src/socx/util.py +0 -0
- {socx-2.3 → socx-2.5.0}/src/socx.egg-info/dependency_links.txt +0 -0
- {socx-2.3 → socx-2.5.0}/src/socx.egg-info/entry_points.txt +0 -0
- {socx-2.3 → socx-2.5.0}/src/socx.egg-info/top_level.txt +0 -0
{socx-2.3 → socx-2.5.0}/PKG-INFO
RENAMED
|
@@ -1,68 +1,74 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: socx
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.5.0
|
|
4
4
|
Summary: A set of useful tools for a security operations center
|
|
5
5
|
Author-email: Enlace <enlace.aman@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://enlace.one
|
|
7
|
+
Project-URL: Repository, https://github.com/enlace-one/socx
|
|
8
|
+
Keywords: soc,security,operations,automation
|
|
6
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
7
15
|
Classifier: Operating System :: OS Independent
|
|
16
|
+
Classifier: Intended Audience :: Information Technology
|
|
17
|
+
Classifier: Topic :: Security
|
|
8
18
|
Requires-Python: >=3.8
|
|
9
19
|
Description-Content-Type: text/markdown
|
|
20
|
+
Requires-Dist: keyring>=25.6.0
|
|
21
|
+
Requires-Dist: pandas>=2.3.3
|
|
22
|
+
Requires-Dist: requests>=2.32.5
|
|
10
23
|
|
|
11
24
|
# SOCX
|
|
25
|
+
|
|
12
26
|
A collection of helpful tools for a SOC analyst. Easily search for IPs, domains, and find files on the system.
|
|
13
27
|
|
|
14
28
|
## Installing
|
|
29
|
+
|
|
15
30
|
python -m pip install socx
|
|
16
31
|
|
|
17
32
|
### Installing from QA
|
|
33
|
+
|
|
18
34
|
python -m pip install --index-url https://test.pypi.org/simple/ socx
|
|
19
35
|
|
|
20
36
|
## Usage
|
|
37
|
+
|
|
21
38
|
A tool to assist with day to day activites in a security operations center (pronounced "socks")
|
|
22
39
|
|
|
23
40
|
Usage:
|
|
24
|
-
|
|
25
|
-
socx [universal options]
|
|
26
|
-
\[function] \[arguments]
|
|
27
41
|
|
|
28
|
-
|
|
42
|
+
socx [universal options] [function] [arguments]
|
|
29
43
|
|
|
30
44
|
python socx.py [universal options] [function] [arguments]
|
|
31
|
-
|
|
45
|
+
|
|
32
46
|
Examples:
|
|
33
47
|
|
|
34
48
|
socx --help
|
|
35
49
|
|
|
36
|
-
socx info
|
|
37
|
-
|
|
38
|
-
socx info -ip 1.2.3.4
|
|
39
|
-
|
|
40
|
-
socx -v 3 info -d google.com
|
|
41
|
-
|
|
42
|
-
socx find -f filename.txt -i
|
|
43
|
-
|
|
44
|
-
socx find -f fold.*name -r
|
|
45
|
-
|
|
46
|
-
socx unwrap --url "https://urldefense.com/v3/__https:/..."
|
|
47
|
-
|
|
48
|
-
socx combine --csvs 5
|
|
49
|
-
|
|
50
|
-
socx awake --minutes 90
|
|
51
|
-
|
|
52
|
-
socx awake --restart
|
|
50
|
+
socx info --help
|
|
53
51
|
|
|
54
|
-
|
|
52
|
+
socx info 102.02.02.02
|
|
55
53
|
|
|
56
|
-
|
|
57
|
-
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps socx
|
|
54
|
+
socx -v 3 info google.com
|
|
58
55
|
|
|
59
|
-
|
|
56
|
+
socx find filename.txt -i False
|
|
60
57
|
|
|
61
|
-
|
|
58
|
+
socx find fold.*name -r
|
|
59
|
+
|
|
60
|
+
socx unwrap "https://urldefense.com/v3/__https:/..."
|
|
61
|
+
|
|
62
|
+
socx combine --count 5
|
|
63
|
+
|
|
64
|
+
socx awake --minutes 90
|
|
65
|
+
|
|
66
|
+
socx awake --restart
|
|
62
67
|
|
|
63
68
|
## Dev Info
|
|
64
69
|
|
|
65
70
|
### Uploading Python Package
|
|
71
|
+
|
|
66
72
|
python -m build
|
|
67
73
|
|
|
68
74
|
python -m twine upload --repository testpypi dist/*
|
|
@@ -1,58 +1,51 @@
|
|
|
1
1
|
# SOCX
|
|
2
|
+
|
|
2
3
|
A collection of helpful tools for a SOC analyst. Easily search for IPs, domains, and find files on the system.
|
|
3
4
|
|
|
4
5
|
## Installing
|
|
6
|
+
|
|
5
7
|
python -m pip install socx
|
|
6
8
|
|
|
7
9
|
### Installing from QA
|
|
10
|
+
|
|
8
11
|
python -m pip install --index-url https://test.pypi.org/simple/ socx
|
|
9
12
|
|
|
10
13
|
## Usage
|
|
14
|
+
|
|
11
15
|
A tool to assist with day to day activites in a security operations center (pronounced "socks")
|
|
12
16
|
|
|
13
17
|
Usage:
|
|
14
|
-
|
|
15
|
-
socx [universal options]
|
|
16
|
-
\[function] \[arguments]
|
|
17
18
|
|
|
18
|
-
|
|
19
|
+
socx [universal options] [function] [arguments]
|
|
19
20
|
|
|
20
21
|
python socx.py [universal options] [function] [arguments]
|
|
21
|
-
|
|
22
|
+
|
|
22
23
|
Examples:
|
|
23
24
|
|
|
24
25
|
socx --help
|
|
25
26
|
|
|
26
|
-
socx info
|
|
27
|
-
|
|
28
|
-
socx info -ip 1.2.3.4
|
|
29
|
-
|
|
30
|
-
socx -v 3 info -d google.com
|
|
31
|
-
|
|
32
|
-
socx find -f filename.txt -i
|
|
33
|
-
|
|
34
|
-
socx find -f fold.*name -r
|
|
35
|
-
|
|
36
|
-
socx unwrap --url "https://urldefense.com/v3/__https:/..."
|
|
37
|
-
|
|
38
|
-
socx combine --csvs 5
|
|
39
|
-
|
|
40
|
-
socx awake --minutes 90
|
|
41
|
-
|
|
42
|
-
socx awake --restart
|
|
27
|
+
socx info --help
|
|
43
28
|
|
|
44
|
-
|
|
29
|
+
socx info 102.02.02.02
|
|
45
30
|
|
|
46
|
-
|
|
47
|
-
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps socx
|
|
31
|
+
socx -v 3 info google.com
|
|
48
32
|
|
|
49
|
-
|
|
33
|
+
socx find filename.txt -i False
|
|
50
34
|
|
|
51
|
-
|
|
35
|
+
socx find fold.*name -r
|
|
36
|
+
|
|
37
|
+
socx unwrap "https://urldefense.com/v3/__https:/..."
|
|
38
|
+
|
|
39
|
+
socx combine --count 5
|
|
40
|
+
|
|
41
|
+
socx awake --minutes 90
|
|
42
|
+
|
|
43
|
+
socx awake --restart
|
|
52
44
|
|
|
53
45
|
## Dev Info
|
|
54
46
|
|
|
55
47
|
### Uploading Python Package
|
|
48
|
+
|
|
56
49
|
python -m build
|
|
57
50
|
|
|
58
51
|
python -m twine upload --repository testpypi dist/*
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=42"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "socx"
|
|
7
|
+
version = "2.5.0" # DONT FORGET TO UPDATE VERSION IN socx.py
|
|
8
|
+
description = "A set of useful tools for a security operations center"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
authors = [
|
|
11
|
+
{ name = "Enlace", email = "enlace.aman@gmail.com" }
|
|
12
|
+
]
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
|
+
keywords = ["soc", "security", "operations", "automation"] # ← Helps discoverability
|
|
15
|
+
|
|
16
|
+
dependencies = [
|
|
17
|
+
"keyring>=25.6.0",
|
|
18
|
+
"pandas>=2.3.3",
|
|
19
|
+
"requests>=2.32.5",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
classifiers = [
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.8",
|
|
25
|
+
"Programming Language :: Python :: 3.9",
|
|
26
|
+
"Programming Language :: Python :: 3.10",
|
|
27
|
+
"Programming Language :: Python :: 3.11",
|
|
28
|
+
"Programming Language :: Python :: 3.12",
|
|
29
|
+
"Operating System :: OS Independent",
|
|
30
|
+
"Intended Audience :: Information Technology",
|
|
31
|
+
"Topic :: Security",
|
|
32
|
+
]
|
|
33
|
+
|
|
34
|
+
[project.urls]
|
|
35
|
+
Homepage = "https://enlace.one" # ← Optional but recommended
|
|
36
|
+
Repository = "https://github.com/enlace-one/socx"
|
|
37
|
+
|
|
38
|
+
[project.scripts]
|
|
39
|
+
socx = "socx:main" # ← CLI entry point
|