Skip to content

Commit 909cbd6

Browse files
committed
feat(Readme update):
1 parent 2001eeb commit 909cbd6

File tree

3 files changed

+19
-7
lines changed

3 files changed

+19
-7
lines changed

Readme.md

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ agentic_security --port=PORT --host=HOST
8383

8484
## UI 🧙
8585

86-
<img width="100%" alt="booking-screen" src="https://res.cloudinary.com/dq0w2rtm9/image/upload/v1736433557/z0bsyzhsqlgcr3w4ovwp.gif">
86+
<img width="100%" alt="booking-screen" src="https://res.cloudinary.com/dq0w2rtm9/image/upload/v1741192668/final_aa9jhb.gif">
8787

8888
## LLM kwargs
8989

@@ -408,10 +408,15 @@ For more detailed information on how to use Agentic Security, including advanced
408408

409409
## Roadmap and Future Goals
410410

411-
- \[ \] Expand dataset variety
412-
- \[ \] Introduce two new attack vectors
413-
- \[ \] Develop initial attacker LLM
414-
- \[ \] Complete integration of OWASP Top 10 classification
411+
412+
413+
We’re just getting started! Here’s what’s on the horizon:
414+
415+
- **RL-Powered Attacks**: An attacker LLM trained with reinforcement learning to dynamically evolve jailbreaks and outsmart defenses.
416+
- **Massive Dataset Expansion**: Scaling to 100,000+ prompts across text, image, and audio modalities—curated for real-world threats.
417+
- **Daily Attack Updates**: Fresh attack vectors delivered daily, keeping your scans ahead of the curve.
418+
- **Community Modules**: A plug-and-play ecosystem where you can share and deploy custom probes, datasets, and integrations.
419+
415420

416421
| Tool | Source | Integrated |
417422
|-------------------------|-------------------------------------------------------------------------------|------------|
@@ -439,4 +444,9 @@ Before contributing, please read the contributing guidelines.
439444

440445
Agentic Security is released under the Apache License v2.
441446

447+
448+
## No Cryptocurrency Affiliation
449+
450+
Agentic Security is focused solely on AI security and has no affiliation with cryptocurrency projects, blockchain technologies, or related initiatives. Our mission is to advance the safety and reliability of AI systems—no tokens, no coins, just code.
451+
442452
## Contact us

agentic_security/probe_actor/fuzzer.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,7 @@ async def perform_single_shot_scan(
176176
module_prompts += 1 # Fixed increment syntax
177177
# Calculate progress based on total processed prompts
178178
progress = 100 * processed_prompts / total_prompts if total_prompts else 0
179+
progress = progress % 100
179180

180181
total_tokens -= tokens
181182
start = time.time()
@@ -295,6 +296,7 @@ async def perform_many_shot_scan(
295296
tokens = 0
296297
processed_prompts += 1
297298
progress = 100 * processed_prompts / total_prompts if total_prompts else 0
299+
progress = progress % 100
298300

299301
full_prompt = ""
300302
msj_module = random.choice(msj_modules)

agentic_security/static/partials/head.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
technopollas: ['Technopollas', 'sans-serif'],
2020
},
2121
colors: {
22-
t1: {
22+
dark: {
2323
bg: '#0D0D0D', // Jet Black
2424
card: '#1A1A1A', // Dark Carbon Fiber
2525
text: '#FFFFFF',
@@ -30,7 +30,7 @@
3030
yellow: '#2E4053', // Jet Black
3131
},
3232
},
33-
dark: {
33+
dark1: {
3434
bg: '#121212',
3535
card: '#1E1E1E',
3636
text: '#FFFFFF',

0 commit comments

Comments
 (0)