Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c95010d
update release template
regulartim Apr 9, 2026
68716f2
Bump npm build dependencies (#1216)
regulartim Apr 9, 2026
bcb2528
Update links to the docs
regulartim Apr 9, 2026
13fde92
feat(feeds): add min_expected_interactions filter param to feed endpo…
Sanchit2662 Apr 14, 2026
334fe3c
Move helper functions from extraction utils to greedybear utils. Clos…
suvani-ctrl Apr 14, 2026
17e729e
Fix test
regulartim Apr 14, 2026
5b7185b
build(deps): bump library/nginx in /docker (#1225)
dependabot[bot] Apr 14, 2026
48ad453
build(deps-dev): bump prettier from 3.8.1 to 3.8.2 in /frontend (#1230)
dependabot[bot] Apr 14, 2026
30f6d87
build(deps-dev): bump ruff from 0.15.9 to 0.15.10 (#1231)
dependabot[bot] Apr 14, 2026
47d99d3
Test/auth api helpers. Closes #1184 (#1206)
Deepanshu1230 Apr 14, 2026
f880c4f
Expose attacker_country_code in feeds API. Closes #1208 (#1218)
manik3160 Apr 14, 2026
f199fc1
Fix env-dependent test crash in extraction strategies. Closes #1201 (…
opbot-xd Apr 14, 2026
3336f66
Bind formik values to username and password inputs in Login component…
armoredvortex Apr 14, 2026
8631dd0
Add Spamhaus DROP v4 cronjob . Closes #1183 (#1196)
drona-gyawali Apr 15, 2026
70c3dbb
fix(extraction): apply parse_timestamp() to Cowrie session hit["times…
tanmayjoddar Apr 15, 2026
091c3c3
Cluster payload requests in command sequence clustering. Closes #523 …
rootp1 Apr 15, 2026
c5d080c
fix: transition feeds_consume to allowlist for token revocation. Clos…
R1sh0bh-1 Apr 15, 2026
5d3edd0
fix: link source IPs to credentials in Heralding strategy. Closes #12…
manik3160 Apr 15, 2026
95aa9e9
Move Ruff configuration to `pyproject.toml` (#1235)
regulartim Apr 16, 2026
8deef9e
Bump uv dependencies
regulartim Apr 16, 2026
8f4dbaf
Bump npm dependencies
regulartim Apr 16, 2026
ec05bee
Bump 3.3.2
regulartim Apr 16, 2026
4462228
Merge pull request #1232 from GreedyBear-Project/develop
regulartim Apr 16, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/.pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,8 @@ repos:
hooks:
- id: ruff
name: ruff-lint
args: ["--fix", "--config", "./.github/configurations/python_linters/.ruff.toml"]
args: ["--fix"]
- id: ruff-format
args: ["--config", "./.github/configurations/python_linters/.ruff.toml"]

# Frontend formatting with Prettier (using local npm)
# Skips if frontend/node_modules doesn't exist (for backend-only contributors)
Expand Down
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
GreedyBear is handled by the same maintainers of [IntelOwl](https://github.com/intelowlproject/IntelOwl/).

So, please refer to the [IntelOwl Contribute guide](https://intelowlproject.github.io/docs/GreedyBear/Contribute/)
So, please refer to the [Contribute guide](https://github.com/GreedyBear-Project/GreedyBear/wiki/Contribute)
4 changes: 2 additions & 2 deletions .github/actions/python_linter/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ runs:
- name: ruff formatter
run: |
if [[ ${{ inputs.use_ruff_formatter }} != 'false' ]]; then
ruff format --config ${GITHUB_WORKSPACE}/.github/configurations/python_linters/.ruff.toml --diff .
ruff format --diff .
else
echo "Skipping ruff formatter"
fi
Expand All @@ -108,7 +108,7 @@ runs:
- name: ruff linter
run: |
if [[ ${{ inputs.use_ruff_linter }} != 'false' ]]; then
ruff check --config ${GITHUB_WORKSPACE}/.github/configurations/python_linters/.ruff.toml .
ruff check .
else
echo "Skipping ruff linter"
fi
Expand Down
Loading
Loading