-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathaenebris.cabal
More file actions
131 lines (126 loc) · 4.86 KB
/
Copy pathaenebris.cabal
File metadata and controls
131 lines (126 loc) · 4.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
cabal-version: 2.2
name: aenebris
version: 0.1.0.0
synopsis: Next Gen Intelligent Reverse Proxy
description: Ᾰenebris - Security first reverse proxy with ML based threat detection
homepage: https://github.com/CarterPerez-dev/Cybersecurity-Projects/PROJECTS/Aenebris#readme
license: MIT
license-file: LICENSE
author: Carter Perez
maintainer: support@certgames.com
copyright: 2026 AngelaMos
category: Network, Security, Web
build-type: Simple
extra-source-files: README.md
CHANGELOG.md
library
hs-source-dirs: src
exposed-modules: Aenebris.Proxy
, Aenebris.Config
, Aenebris.Backend
, Aenebris.LoadBalancer
, Aenebris.HealthCheck
, Aenebris.TLS
, Aenebris.Connection
, Aenebris.Tunnel
, Aenebris.Middleware.Security
, Aenebris.Middleware.Redirect
, Aenebris.RateLimit
, Aenebris.DDoS.EarlyData
, Aenebris.DDoS.MemoryShed
, Aenebris.DDoS.IPJail
, Aenebris.DDoS.ConnLimit
, Aenebris.Fingerprint.JA4H
, Aenebris.WAF.Rule
, Aenebris.WAF.Patterns
, Aenebris.WAF.Engine
, Aenebris.Honeypot
, Aenebris.Geo
, Aenebris.Net.IP
, Aenebris.ML.Features
, Aenebris.ML.Model
, Aenebris.ML.Loader
, Aenebris.ML.Inference
, Aenebris.ML.Calibration
, Aenebris.ML.IForest
, Aenebris.ML.Engine
, Aenebris.ML.Middleware
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, warp >= 3.3
, warp-tls >= 3.4
, wai >= 3.2
, http-types >= 0.12
, http-conduit >= 2.3
, http-client >= 0.7
, bytestring >= 0.11
, text >= 2.0
, yaml >= 0.11
, aeson >= 2.0
, async >= 2.2
, stm >= 2.5
, time >= 1.9
, containers >= 0.6
, vector >= 0.12
, tls >= 2.1
, crypton-x509 >= 1.7
, crypton-x509-store >= 1.6
, crypton-x509-validation >= 1.6
, case-insensitive >= 1.2
, directory >= 1.3
, data-default-class >= 0.1
, network >= 3.1
, streaming-commons >= 0.2
, splice >= 0.6
, crypton >= 1.0
, memory >= 0.18
, regex-tdfa >= 1.3
, geoip2 >= 0.4
, iproute >= 1.7
ghc-options: -Wall
-Wcompat
-Widentities
-Wincomplete-record-updates
-Wincomplete-uni-patterns
-Wpartial-fields
-Wredundant-constraints
executable aenebris
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, aenebris
, http-client >= 0.7
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
test-suite aenebris-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
default-language: Haskell2010
build-depends: base >= 4.7 && < 5
, aenebris
, hspec >= 2.0
, wai >= 3.2
, wai-extra >= 3.0
, http-types >= 0.12
, stm >= 2.5
, bytestring >= 0.11
, text >= 2.0
, case-insensitive >= 1.2
, time >= 1.9
, containers >= 0.6
, iproute >= 1.7
, network >= 3.1
, geoip2 >= 0.4
, yaml >= 0.11
, vector >= 0.12
ghc-options: -Wall
-threaded
-rtsopts
-with-rtsopts=-N
source-repository head
type: git
location: https://github.com/CarterPerez-dev/Cybersecurity-Projects/PROJECTS/Aenebris