John
197f0e5c0d
Merge branch 'danielmiessler-main'
2024-12-07 18:30:11 -05:00
John
aef4a1a5d4
merging
2024-12-07 18:24:17 -05:00
Eugen Eisler
f5f50cc4c9
Merge pull request #1182 from jessefmoore/main
...
analyze_risk pattern
2024-12-07 23:57:01 +01:00
Jesse Moore
9226e95d18
analyze_risk pattern
...
Created a pattern to analyze 3rd party vendor risk.
2024-12-07 11:48:00 -08:00
github-actions[bot]
2d8b46b878
Update version to v1.4.119 and commit
v1.4.119
2024-12-07 11:24:51 +00:00
Eugen Eisler
fbd6083079
Merge pull request #1181 from mattjoyce/bugfix/1169-symlinks
...
Bugfix/1169 symlinks
2024-12-07 12:23:53 +01:00
Matt Joyce
0320e17652
Revert "Update version to v..1 and commit"
...
This reverts commit ec5ed689bb .
2024-12-07 19:14:20 +11:00
Matt Joyce
09fb913279
Fix #1169 : Add robust handling for paths and symlinks in GetAbsolutePath
2024-12-07 19:04:39 +11:00
github-actions[bot]
ec5ed689bb
Update version to v..1 and commit
2024-12-07 03:58:53 +00:00
Matt Joyce
373c1d0858
added test pattern
2024-12-05 22:28:38 +11:00
Matt Joyce
ca55f2375d
actually added tutorial
2024-12-05 22:13:17 +11:00
Matt Joyce
d8671ea03a
Added example files and tutorial
2024-12-05 22:09:47 +11:00
John
2579d4e87d
Add cards component
2024-12-05 05:25:28 -05:00
John
f4885c5cdd
Update: packages, main page, styles
2024-12-05 05:24:07 -05:00
Matt Joyce
c49f47ecab
check extension names don't have spoaces
2024-12-05 20:39:40 +11:00
github-actions[bot]
43ca0dccf7
Update version to v1.4.118 and commit
v1.4.118
2024-12-05 09:34:13 +00:00
Eugen Eisler
fcfcf55610
Merge pull request #1174 from mattjoyce/curly-brace-templates
...
Curly brace templates
2024-12-05 10:33:16 +01:00
Eugen Eisler
188235efc5
Merge pull request #1179 from sluosapher/main
...
added a new pattern create_newsletter_entry
2024-12-05 10:32:23 +01:00
dependabot[bot]
79b27253cd
build(deps-dev): bump @sveltejs/kit
...
Bumps the npm_and_yarn group with 1 update in the /web directory: [@sveltejs/kit](https://github.com/sveltejs/kit/tree/HEAD/packages/kit ).
Updates `@sveltejs/kit` from 2.8.4 to 2.9.0
- [Release notes](https://github.com/sveltejs/kit/releases )
- [Changelog](https://github.com/sveltejs/kit/blob/main/packages/kit/CHANGELOG.md )
- [Commits](https://github.com/sveltejs/kit/commits/@sveltejs/kit@2.9.0/packages/kit )
---
updated-dependencies:
- dependency-name: "@sveltejs/kit"
dependency-type: direct:development
dependency-group: npm_and_yarn
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-12-04 11:26:01 +00:00
github-actions[bot]
6deb4d69c0
Update version to v..1 and commit
2024-12-04 11:25:19 +00:00
John Connor
1b97a57cba
Merge pull request #3 from danielmiessler/main
...
Update
2024-12-04 06:24:23 -05:00
John
0302e49ebd
Merge remote-tracking branch 'refs/remotes/origin/main'
2024-12-04 06:19:02 -05:00
John
b9a5501f9d
Style: Reordered columns. Improved responsive layout
2024-12-04 05:51:15 -05:00
John
faa83f9a49
Style: modified chat/+layout display. Update Header buttons
2024-12-04 05:41:53 -05:00
John
4888f8cb78
style: updates to ui components (components/ui)
2024-12-04 01:39:13 -05:00
Song Luo
fdd1d614b2
added a new pattern create_newsletter_entry
2024-12-03 20:05:25 -05:00
Matt Joyce
6fc75282e8
added tests for extension manager, registration and execution.
2024-12-03 23:28:47 +11:00
John
f33ebb7e25
Moved pattern loader to ModelConfig. Editing styles in chat/. Added page fly transitions. Tidying. Removed - ChatHeader, unused modal from Transcripts, FlyandScaleParams from lib/types/utils.
2024-12-03 02:04:39 -05:00
Matt Joyce
fc67dea243
fixed : if there is no stdin, then a nil message was passed to pattern.go resulting in segfault.
...
now we make user input ' ', before processing.
2024-12-03 13:33:45 +11:00
Matt Joyce
efd363d5fb
Revert "Fix pattern file usage without stdin"
...
This reverts commit 744ec0824b .
2024-12-03 13:33:45 +11:00
Matt Joyce
a7d6de1661
Fix pattern file usage without stdin
...
When using pattern files with variables but no stdin input, ensure proper
template processing by initializing an empty message. This allows patterns
like:
./fabric -p pattern.txt -v=name:value
to work without requiring stdin input, while maintaining compatibility
with existing stdin usage:
echo "input" | ./fabric -p pattern.txt -v=name:value
Changes:
- Add empty message initialization in BuildSession when Message is nil
- Remove redundant template processing of message content
- Let pattern processing handle all template resolution
This simplifies the template processing flow while supporting both
stdin and non-stdin use cases.
2024-12-03 13:33:40 +11:00
Matt Joyce
d17afc1fba
Merge branch 'curly-brace-templates' into feature/template-extensions
2024-12-01 23:05:41 +11:00
Matt Joyce
da6f974887
fixed : if there is no stdin, then a nil message was passed to pattern.go resulting in segfault.
...
now we make user input ' ', before processing.
2024-12-01 22:52:32 +11:00
Matt Joyce
db2ba46099
Revert "Fix pattern file usage without stdin"
...
This reverts commit 744ec0824b .
2024-12-01 22:44:17 +11:00
Matt Joyce
744ec0824b
Fix pattern file usage without stdin
...
When using pattern files with variables but no stdin input, ensure proper
template processing by initializing an empty message. This allows patterns
like:
./fabric -p pattern.txt -v=name:value
to work without requiring stdin input, while maintaining compatibility
with existing stdin usage:
echo "input" | ./fabric -p pattern.txt -v=name:value
Changes:
- Add empty message initialization in BuildSession when Message is nil
- Remove redundant template processing of message content
- Let pattern processing handle all template resolution
This simplifies the template processing flow while supporting both
stdin and non-stdin use cases.
2024-12-01 22:29:59 +11:00
Matt Joyce
b31f094e9b
Added better messages when adding and listing extensions
...
Fix issuse with listextension where it would fail if any hash had changed, now says hash failed.
2024-12-01 22:19:06 +11:00
Matt Joyce
43597e4168
Extension Registry Refinement
...
- Successfully implemented path-based registry storage
- Moved to storing paths instead of full configurations
- Implemented proper hash verification for both configs and executables
- Registry format now clean and minimal.
File-Based Output Implementation
- Successfully implemented file-based output handling
- Demonstrated clean interface requiring only path output
- Properly handles cleanup of temporary files
- Verified working with both local and remote operations
2024-12-01 18:04:11 +11:00
Matt Joyce
160703210b
emplemented stdout template extensions
2024-12-01 09:13:22 +11:00
github-actions[bot]
c0ade48648
Update version to v1.4.117 and commit
v1.4.117
2024-11-30 19:45:48 +00:00
Eugen Eisler
7fd4fa4742
fix: close #1173
2024-11-30 20:44:31 +01:00
github-actions[bot]
41b2e66c5c
Update version to v1.4.116 and commit
v1.4.116
2024-11-28 18:34:53 +00:00
Eugen Eisler
ed657383fb
chore: cleanup style
2024-11-28 19:34:07 +01:00
github-actions[bot]
4d5d8d8b30
Update version to v1.4.115 and commit
v1.4.115
2024-11-28 17:39:30 +00:00
Eugen Eisler
e9a75528ab
chore: cleanup style
2024-11-28 18:36:01 +01:00
Eugen Eisler
c5ec4b548a
fix: use the custom message and then piped one
2024-11-27 14:10:19 +01:00
Eugen Eisler
8e87529638
fix: use the custom message and then piped one
2024-11-27 14:10:18 +01:00
xssdoctor
ca33208fa1
Merge pull request #1168 from johnconnor-sec/main
2024-11-26 19:19:45 -05:00
John Connor
3f8bca8728
Update README.md
2024-11-26 19:15:18 -05:00
John Connor
ba56c33cf6
Update README.md
2024-11-26 19:12:29 -05:00
Jonathan Dunn
6ee4fdd366
updated readme
2024-11-26 17:53:58 -05:00