Skip to content

Commit

Permalink
Pull changes from sponsors 2.1 changes (BC-SECURITY#93)
Browse files Browse the repository at this point in the history
* Pull changes from sponsors 2.1 changes

* add gif of module editing
  • Loading branch information
vinnybod authored Mar 1, 2023
1 parent c2b1969 commit 419e2b8
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ module.exports = {
ignoreRegExpLiterals: true,
ignoreUrls: true,
}],
'no-unused-vars': ['error', {
argsIgnorePattern: '^_',
varsIgnorePattern: '^_',
caughtErrorsIgnorePattern: '^_',
}],
},
settings: {
...createAliasSetting({
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Hide the module checkboxes if the module is not selected
- ESLint update - allow unused vars that start with an underscore

## [2.0.5] - 2023-02-20

Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ At the moment, the extra Starkiller sponsorship features include:
## Graph View
<div align="left"><img width="800" src="https://user-images.githubusercontent.com/9831420/216792129-5b0fed82-b209-48cb-9a43-eeb3e69c7229.gif"></div>

## Modify Module Scripts
<div align="left"><img width="800" src="https://user-images.githubusercontent.com/9831420/221427395-28d63b1d-bbe5-423e-9113-e58a10a86ced.gif"></div>

There is also a collection of Empire plugins available via sponsorship.

Thanks to our sponsors the following features which started as sponsor features have been moved to the public and kali builds.
Expand Down
2 changes: 1 addition & 1 deletion src/components/agents/AgentExecuteModule.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
</v-col>
</v-row>
</v-alert>
<div style="display: flex; flex-direction: row;">
<div v-if="Object.keys(selectedItem).length > 0" style="display: flex; flex-direction: row;">
<v-checkbox
v-model="ignoreAdminCheck"
class="pa-1"
Expand Down

0 comments on commit 419e2b8

Please sign in to comment.