socx 0.0.9__tar.gz → 2.1__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.1/PKG-INFO ADDED
@@ -0,0 +1,63 @@
1
+ Metadata-Version: 2.4
2
+ Name: socx
3
+ Version: 2.1
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
+ ## Usage
18
+ A tool to assist with day to day activites in a security operations center (pronounced "socks")
19
+
20
+ Usage:
21
+
22
+ socx [universal options]
23
+ \[function] \[arguments]
24
+
25
+ or
26
+
27
+ python socx.py [universal options] [function] [arguments]
28
+
29
+ Examples:
30
+ socx --help
31
+
32
+ socx info -h
33
+
34
+ socx info -ip 1.2.3.4
35
+
36
+ socx -v 3 info -d google.com
37
+
38
+ socx find -f filename.txt -i
39
+
40
+ socx find -f fold.*name -r
41
+
42
+ socx unwrap --url "https://urldefense.com/v3/__https:/..."
43
+
44
+ socx combine --csvs 5
45
+
46
+ ## Other Information
47
+
48
+ ### Install Testing Version
49
+ python -m pip install --index-url https://test.pypi.org/simple/ --no-deps socx
50
+
51
+ or
52
+
53
+ python -m pip install -i https://test.pypi.org/simple/ socx==0.0.3
54
+
55
+ ## Dev Info
56
+
57
+ ### Uploading Python Package
58
+ python -m build
59
+
60
+ python -m twine upload --repository testpypi dist/*
61
+
62
+ python -m twine upload dist/*
63
+
socx-2.1/README.md ADDED
@@ -0,0 +1,53 @@
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
+ ## Usage
8
+ A tool to assist with day to day activites in a security operations center (pronounced "socks")
9
+
10
+ Usage:
11
+
12
+ socx [universal options]
13
+ \[function] \[arguments]
14
+
15
+ or
16
+
17
+ python socx.py [universal options] [function] [arguments]
18
+
19
+ Examples:
20
+ socx --help
21
+
22
+ socx info -h
23
+
24
+ socx info -ip 1.2.3.4
25
+
26
+ socx -v 3 info -d google.com
27
+
28
+ socx find -f filename.txt -i
29
+
30
+ socx find -f fold.*name -r
31
+
32
+ socx unwrap --url "https://urldefense.com/v3/__https:/..."
33
+
34
+ socx combine --csvs 5
35
+
36
+ ## Other Information
37
+
38
+ ### Install Testing Version
39
+ python -m pip install --index-url https://test.pypi.org/simple/ --no-deps socx
40
+
41
+ or
42
+
43
+ python -m pip install -i https://test.pypi.org/simple/ socx==0.0.3
44
+
45
+ ## Dev Info
46
+
47
+ ### Uploading Python Package
48
+ python -m build
49
+
50
+ python -m twine upload --repository testpypi dist/*
51
+
52
+ python -m twine upload dist/*
53
+
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "socx"
7
- version = "0.0.9"
7
+ version = "2.1"
8
8
  authors = [
9
9
  { name="Enlace", email="enlace.aman@gmail.com" },
10
10
  ]