-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfunding.json
More file actions
73 lines (73 loc) · 2.04 KB
/
funding.json
File metadata and controls
73 lines (73 loc) · 2.04 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
{
"$schema": "https://schema.fundingjson.org/v1.1.0.schema.json",
"version": "v1",
"entity": {
"type": "individual",
"role": "owner",
"name": "Ogulcan Aydogan",
"email": "security@ogulcanaydogan.com",
"description": "Software engineer building open-source AI security and governance infrastructure. Based in the United Kingdom.",
"webpageUrl": {
"url": "https://github.com/ogulcanaydogan"
}
},
"projects": [
{
"guid": "prompt-injection-firewall",
"name": "Prompt Injection Firewall",
"description": "Runtime firewall that detects and blocks prompt injection attacks against LLM applications. Covers OWASP LLM Top 10 attack vectors with configurable detection rules.",
"webpageUrl": {
"url": "https://github.com/ogulcanaydogan/Prompt-Injection-Firewall"
},
"repositoryUrl": {
"url": "https://github.com/ogulcanaydogan/Prompt-Injection-Firewall"
},
"licenses": [
"spdx:Apache-2.0"
],
"tags": [
"go",
"security",
"prompt-injection",
"firewall",
"owasp"
]
}
],
"funding": {
"channels": [
{
"guid": "github-sponsors",
"type": "payment-provider",
"address": "https://github.com/sponsors/ogulcanaydogan",
"description": "Support via GitHub Sponsors"
}
],
"plans": [
{
"guid": "monthly-supporter",
"status": "active",
"name": "Monthly Supporter",
"description": "Monthly recurring support for ongoing maintenance and development",
"amount": 10,
"currency": "USD",
"frequency": "monthly",
"channels": [
"github-sponsors"
]
},
{
"guid": "one-time-sponsor",
"status": "active",
"name": "One-Time Sponsor",
"description": "One-time contribution to support the project",
"amount": 50,
"currency": "USD",
"frequency": "one-time",
"channels": [
"github-sponsors"
]
}
]
}
}