forked from raycast/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update cyberchef extension (raycast#10662)
- Loading branch information
Showing
69 changed files
with
376 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"files.exclude": { | ||
"**/.git": true, | ||
"**/.svn": true, | ||
"**/.hg": true, | ||
"**/CVS": true, | ||
"**/.DS_Store": true, | ||
"**/Thumbs.db": true, | ||
"**/.trunk/*out": true, | ||
"**/.retool_types/**": true, | ||
"**/*tsconfig.json": true, | ||
".cache": true, | ||
"retool.config.json": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
# CyberChef Changelog | ||
|
||
## [Initial Version] - 2024-02-02 | ||
## [v1.0.1] - 2024-02-09 | ||
|
||
### Added | ||
|
||
- Added a new command "search" command which searches through 100% of the CybrChef tools on top of the list of commands I've extracted to the top level. | ||
|
||
## [Initial Version] - 2024-02-02 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Add_line_numbers()" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Convert_area('Square metre (sq m)','Square metre (sq m)')" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Convert_distance('Nanometres (nm)','Nanometres (nm)')" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Convert_mass('Yoctogram (yg)','Yoctogram (yg)')" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Convert_speed('Metres per second (m/s)','Metres per second (m/s)')" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Count_occurrences({'option':'Regex','string':''})" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "CSS_Beautify('\\t')" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "CSS_Minify(false)" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Diff('\\n\\n','Character',true,true,false,false)" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Escape_string('Special chars','Single',false,true,false)" }); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { runCyberchefRecipe } from "./utils"; | ||
import { runCyberchefRecipe } from "./utils/receipe-utils"; | ||
export default async function Command() { | ||
await runCyberchefRecipe({ recipe: "Extract_dates(false)" }); | ||
} |
Oops, something went wrong.