gitlabrat 1.0__py3-none-any.whl
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.
- gitlabrat-1.0.dist-info/METADATA +72 -0
- gitlabrat-1.0.dist-info/RECORD +22 -0
- gitlabrat-1.0.dist-info/WHEEL +4 -0
- gitlabrat-1.0.dist-info/entry_points.txt +2 -0
- gitlabrat-1.0.dist-info/licenses/LICENSE +674 -0
- labrat/__init__.py +0 -0
- labrat/cli/__init__.py +0 -0
- labrat/cli/agents.py +60 -0
- labrat/cli/auth.py +60 -0
- labrat/cli/common.py +76 -0
- labrat/cli/projects.py +95 -0
- labrat/cli/users.py +40 -0
- labrat/controllers/__init__.py +0 -0
- labrat/controllers/agents.py +47 -0
- labrat/controllers/auth.py +55 -0
- labrat/controllers/projects.py +164 -0
- labrat/controllers/users.py +68 -0
- labrat/core/__init__.py +0 -0
- labrat/core/agent.py +120 -0
- labrat/core/config.py +63 -0
- labrat/core/utils.py +106 -0
- labrat/main.py +19 -0
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitlabrat
|
|
3
|
+
Version: 1.0
|
|
4
|
+
Summary: LabRat: GitLab exploitation orchestrator
|
|
5
|
+
Project-URL: Homepage, https://github.com/JChamblee99/LabRat
|
|
6
|
+
Project-URL: Repository, https://github.com/JChamblee99/LabRat.git
|
|
7
|
+
Project-URL: Issues, https://github.com/JChamblee99/LabRat/issues
|
|
8
|
+
Author-email: John Chamblee <conway.py@proton.farm>
|
|
9
|
+
License: MIT
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
19
|
+
Requires-Python: >=3.8
|
|
20
|
+
Requires-Dist: beautifulsoup4>=4.9.0
|
|
21
|
+
Requires-Dist: gitpython>=3.1.0
|
|
22
|
+
Requires-Dist: python-gitlab>=3.0.0
|
|
23
|
+
Requires-Dist: requests>=2.25.0
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# LabRat
|
|
27
|
+
|
|
28
|
+
LabRat is a GitLab exploitation orchestrator designed for security researchers and penetration testers.
|
|
29
|
+
|
|
30
|
+
## Features
|
|
31
|
+
|
|
32
|
+
- **Authentication Management** - Authenticate to GitLab servers and manage access tokens
|
|
33
|
+
- **Project Management** - List, clone, and manipulate GitLab projects
|
|
34
|
+
- **User Management** - Enumerate and create access tokens for GitLab users
|
|
35
|
+
- **Agent Management** - Manage multiple GitLab agents and credentials
|
|
36
|
+
|
|
37
|
+
## Installation
|
|
38
|
+
|
|
39
|
+
Install LabRat from PyPI:
|
|
40
|
+
|
|
41
|
+
```bash
|
|
42
|
+
pip install gitlabrat
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
## Usage
|
|
46
|
+
|
|
47
|
+
```bash
|
|
48
|
+
labrat --help
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
### Commands
|
|
52
|
+
|
|
53
|
+
- `labrat auth` - Authenticate to GitLab server(s)
|
|
54
|
+
- `labrat agents` - Manage GitLab agents
|
|
55
|
+
- `labrat projects` - Manage GitLab projects
|
|
56
|
+
- `labrat users` - Manage GitLab users
|
|
57
|
+
|
|
58
|
+
## Requirements
|
|
59
|
+
|
|
60
|
+
- Python 3.8+
|
|
61
|
+
- python-gitlab
|
|
62
|
+
- GitPython
|
|
63
|
+
- beautifulsoup4
|
|
64
|
+
- requests
|
|
65
|
+
|
|
66
|
+
## License
|
|
67
|
+
|
|
68
|
+
MIT
|
|
69
|
+
|
|
70
|
+
## Author
|
|
71
|
+
|
|
72
|
+
John Chamblee
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
labrat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
labrat/main.py,sha256=3lNBQ1EZKb7y4HY86GAA2nZpBxx2CMv3vHPjpLQ0KCo,503
|
|
3
|
+
labrat/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
labrat/cli/agents.py,sha256=CLQ5-nSMNwfVAMqZqimHP0WGYAy7EQdBY2trvJDEK8E,2459
|
|
5
|
+
labrat/cli/auth.py,sha256=uJj6SeX3chbcFcTVa9FmiUbUInWZGc87uG81lG9isjk,3018
|
|
6
|
+
labrat/cli/common.py,sha256=j00Ef9z507MfTU6IhHtutwP43iNx9h0LHeatPfRbjgg,2738
|
|
7
|
+
labrat/cli/projects.py,sha256=P1YLTDAfoJ2h2OhQ3vpMNnhW_ievdmRCmuIe5k04Ig8,5651
|
|
8
|
+
labrat/cli/users.py,sha256=AUoud0y1KhRT2ij229Xhsdk677BOA_4vEuY79_-5zvw,1783
|
|
9
|
+
labrat/controllers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
labrat/controllers/agents.py,sha256=az4ugEQDVsuUSD__hY6k_UW0faTHHMYqk9YkdORwDdA,1460
|
|
11
|
+
labrat/controllers/auth.py,sha256=TzZ0_OEhG65Pho6au6UrR4Z0PVFowgG8TMG3xeV2zH4,2145
|
|
12
|
+
labrat/controllers/projects.py,sha256=6i7Kon-bvGtQyn3zHt7rgTLbw5JegwgXtVJ7p_VoGn8,7293
|
|
13
|
+
labrat/controllers/users.py,sha256=9tL61_AoRSXoi7ibOuSNWSCLUqIFNBKs_QFI1o_IrQs,2428
|
|
14
|
+
labrat/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
15
|
+
labrat/core/agent.py,sha256=QLY6hz6rWkUKyaywGJfxQD0bseCL2W_ARjaV61Qd8Bw,4293
|
|
16
|
+
labrat/core/config.py,sha256=kimtYYyDwUsa0rfKH0PotZ0HlvuRXfleCVCXvl_bKvk,2008
|
|
17
|
+
labrat/core/utils.py,sha256=kYjBHrRNfUP56OEhnO35XDsGSfCehjL_D8Xosp__IEY,3350
|
|
18
|
+
gitlabrat-1.0.dist-info/METADATA,sha256=Qgy8903bcSz4XSYoKxvqCOT3e0cBxU6YJ-AZ7unfJ8w,1846
|
|
19
|
+
gitlabrat-1.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
|
|
20
|
+
gitlabrat-1.0.dist-info/entry_points.txt,sha256=0Tgu7BebXYNs_vIELN4H4xpt8AeqpkwUWmFFpG-RmeE,44
|
|
21
|
+
gitlabrat-1.0.dist-info/licenses/LICENSE,sha256=IwGE9guuL-ryRPEKi6wFPI_zOhg7zDZbTYuHbSt_SAk,35823
|
|
22
|
+
gitlabrat-1.0.dist-info/RECORD,,
|