socx 0.0.10__tar.gz → 2.2__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.2/PKG-INFO +66 -0
- socx-2.2/README.md +56 -0
- {socx-0.0.10 → socx-2.2}/pyproject.toml +1 -1
- socx-2.2/src/socx/socx.py +983 -0
- socx-2.2/src/socx.egg-info/PKG-INFO +66 -0
- {socx-0.0.10 → socx-2.2}/src/socx.egg-info/SOURCES.txt +2 -1
- socx-2.2/tests/tests.py +96 -0
- socx-0.0.10/PKG-INFO +0 -33
- socx-0.0.10/README.md +0 -23
- socx-0.0.10/src/socx/socx.py +0 -619
- socx-0.0.10/src/socx.egg-info/PKG-INFO +0 -33
- {socx-0.0.10 → socx-2.2}/setup.cfg +0 -0
- {socx-0.0.10 → socx-2.2}/src/socx/__init__.py +0 -0
- {socx-0.0.10 → socx-2.2}/src/socx/util.py +0 -0
- {socx-0.0.10 → socx-2.2}/src/socx.egg-info/dependency_links.txt +0 -0
- {socx-0.0.10 → socx-2.2}/src/socx.egg-info/entry_points.txt +0 -0
- {socx-0.0.10 → socx-2.2}/src/socx.egg-info/top_level.txt +0 -0
socx-2.2/PKG-INFO
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: socx
|
|
3
|
+
Version: 2.2
|
|
4
|
+
Summary: A set of useful tools for a security operations center
|
|
5
|
+
Author-email: Enlace <enlace.aman@gmail.com>
|
|
6
|
+
Classifier: Programming Language :: Python :: 3
|
|
7
|
+
Classifier: Operating System :: OS Independent
|
|
8
|
+
Requires-Python: >=3.8
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# socx
|
|
12
|
+
A collection of helpful tools for a SOC analyst. Easily search for IPs, domains, and find files on the system.
|
|
13
|
+
|
|
14
|
+
## Installing
|
|
15
|
+
python -m pip install socx
|
|
16
|
+
|
|
17
|
+
### Installing from QA
|
|
18
|
+
python -m pip install --index-url https://test.pypi.org/simple/ socx
|
|
19
|
+
|
|
20
|
+
## Usage
|
|
21
|
+
A tool to assist with day to day activites in a security operations center (pronounced "socks")
|
|
22
|
+
|
|
23
|
+
Usage:
|
|
24
|
+
|
|
25
|
+
socx [universal options]
|
|
26
|
+
\[function] \[arguments]
|
|
27
|
+
|
|
28
|
+
or
|
|
29
|
+
|
|
30
|
+
python socx.py [universal options] [function] [arguments]
|
|
31
|
+
|
|
32
|
+
Examples:
|
|
33
|
+
socx --help
|
|
34
|
+
|
|
35
|
+
socx info -h
|
|
36
|
+
|
|
37
|
+
socx info -ip 1.2.3.4
|
|
38
|
+
|
|
39
|
+
socx -v 3 info -d google.com
|
|
40
|
+
|
|
41
|
+
socx find -f filename.txt -i
|
|
42
|
+
|
|
43
|
+
socx find -f fold.*name -r
|
|
44
|
+
|
|
45
|
+
socx unwrap --url "https://urldefense.com/v3/__https:/..."
|
|
46
|
+
|
|
47
|
+
socx combine --csvs 5
|
|
48
|
+
|
|
49
|
+
## Other Information
|
|
50
|
+
|
|
51
|
+
### Install Testing Version
|
|
52
|
+
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps socx
|
|
53
|
+
|
|
54
|
+
or
|
|
55
|
+
|
|
56
|
+
python -m pip install -i https://test.pypi.org/simple/ socx==0.0.3
|
|
57
|
+
|
|
58
|
+
## Dev Info
|
|
59
|
+
|
|
60
|
+
### Uploading Python Package
|
|
61
|
+
python -m build
|
|
62
|
+
|
|
63
|
+
python -m twine upload --repository testpypi dist/*
|
|
64
|
+
|
|
65
|
+
python -m twine upload dist/*
|
|
66
|
+
|
socx-2.2/README.md
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
# socx
|
|
2
|
+
A collection of helpful tools for a SOC analyst. Easily search for IPs, domains, and find files on the system.
|
|
3
|
+
|
|
4
|
+
## Installing
|
|
5
|
+
python -m pip install socx
|
|
6
|
+
|
|
7
|
+
### Installing from QA
|
|
8
|
+
python -m pip install --index-url https://test.pypi.org/simple/ socx
|
|
9
|
+
|
|
10
|
+
## Usage
|
|
11
|
+
A tool to assist with day to day activites in a security operations center (pronounced "socks")
|
|
12
|
+
|
|
13
|
+
Usage:
|
|
14
|
+
|
|
15
|
+
socx [universal options]
|
|
16
|
+
\[function] \[arguments]
|
|
17
|
+
|
|
18
|
+
or
|
|
19
|
+
|
|
20
|
+
python socx.py [universal options] [function] [arguments]
|
|
21
|
+
|
|
22
|
+
Examples:
|
|
23
|
+
socx --help
|
|
24
|
+
|
|
25
|
+
socx info -h
|
|
26
|
+
|
|
27
|
+
socx info -ip 1.2.3.4
|
|
28
|
+
|
|
29
|
+
socx -v 3 info -d google.com
|
|
30
|
+
|
|
31
|
+
socx find -f filename.txt -i
|
|
32
|
+
|
|
33
|
+
socx find -f fold.*name -r
|
|
34
|
+
|
|
35
|
+
socx unwrap --url "https://urldefense.com/v3/__https:/..."
|
|
36
|
+
|
|
37
|
+
socx combine --csvs 5
|
|
38
|
+
|
|
39
|
+
## Other Information
|
|
40
|
+
|
|
41
|
+
### Install Testing Version
|
|
42
|
+
python -m pip install --index-url https://test.pypi.org/simple/ --no-deps socx
|
|
43
|
+
|
|
44
|
+
or
|
|
45
|
+
|
|
46
|
+
python -m pip install -i https://test.pypi.org/simple/ socx==0.0.3
|
|
47
|
+
|
|
48
|
+
## Dev Info
|
|
49
|
+
|
|
50
|
+
### Uploading Python Package
|
|
51
|
+
python -m build
|
|
52
|
+
|
|
53
|
+
python -m twine upload --repository testpypi dist/*
|
|
54
|
+
|
|
55
|
+
python -m twine upload dist/*
|
|
56
|
+
|