Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v2.8.1 into main #96

Merged
merged 4 commits into from
May 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.8.1] - 2024-05-05

### Fixed

- Fixed issue where plugin task responses were not being displayed

## [2.8.0] - 2024-04-08

### Added
Expand Down Expand Up @@ -367,7 +373,9 @@ Including but not limited to:

- Initial Release

[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.8.0...HEAD
[Unreleased]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.8.1...HEAD

[2.8.1]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.8.0...v2.8.1

[2.8.0]: https://github.com/BC-SECURITY/Starkiller-Sponsors/compare/v2.7.3...v2.8.0

Expand Down
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,15 +29,19 @@ Starkiller is a Frontend for [Powershell Empire](https://github.com/BC-SECURITY/
As of Empire 5.0 and Starkiller 2.0, you no longer need to install Starkiller or build it from source.
It is prepackaged in Empire as a submodule and served via Empire's API.

## Sponsors
[//]: # (## Sponsors)

<div align="center">
[//]: # ()
[//]: # (<div align="center">)

[<img src="https://github.com/BC-SECURITY/Empire/assets/9831420/f273f4b0-400c-49ce-b62f-521239a86754" width="100"/>](https://www.cybrary.it/)
[//]: # ()
[//]: # ([<img src="https://github.com/BC-SECURITY/Empire/assets/9831420/f273f4b0-400c-49ce-b62f-521239a86754" width="100"/>]&#40;https://www.cybrary.it/&#41;)

[<img src="https://github.com/BC-SECURITY/Empire/assets/9831420/d14af000-80d2-4f67-b70c-b62ac42b6a52" width="100"/>](https://twitter.com/joehelle)
[//]: # ()
[//]: # ([<img src="https://github.com/BC-SECURITY/Empire/assets/9831420/d14af000-80d2-4f67-b70c-b62ac42b6a52" width="100"/>]&#40;https://twitter.com/joehelle&#41;)

</div>
[//]: # ()
[//]: # (</div>)

# Sponsorship and extra features

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "starkiller",
"version": "2.8.0",
"version": "2.8.1",
"private": true,
"scripts": {
"dev": "vite",
Expand Down
4 changes: 3 additions & 1 deletion src/components/plugins/PluginTasksTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
show-expand
@update:options="handleOptionsChange"
>
<template #expanded-item="{ headers, item }">

Check warning on line 23 in src/components/plugins/PluginTasksTable.vue

View workflow job for this annotation

GitHub Actions / lint

Variable 'headers' is already declared in the upper scope
<td :colspan="headers.length">
<div>
<div
Expand Down Expand Up @@ -108,9 +108,11 @@
<!-- TODO Option for original output -->
<div
v-if="expandedTasks[item.uniqueId].htmlOutput"
v-html="expandedTasks[item.uniqueId].htmlOutput"

Check warning on line 111 in src/components/plugins/PluginTasksTable.vue

View workflow job for this annotation

GitHub Actions / lint

'v-html' directive can lead to XSS attack
/>
<div v-else>addBlankLines(item.output)</div>
<div v-else>
{{ addBlankLines(item.output) }}
</div>
</div>
</div>
</td>
Expand Down
Loading