Skip to content

Commit

Permalink
add Falcon flag
Browse files Browse the repository at this point in the history
  • Loading branch information
KTibow committed Jan 23, 2024
1 parent 3cb4484 commit c103022
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/lib/analysis/runAnalysis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ const scan = (file: string, contents: string, state: Analysis) => {
state.obfuscation["Obfuscator Stringer"] = { file };
}

if (contents.includes("Falcon is downloading classes...")) {
state.obfuscation["Downloads remote content"] = { file };
}

const addFlag = (name: string, data: { link?: string; initialFind: InitialFind }) => {
if (state.flags[name]) {
state.flags[name].matches.push(file);
Expand Down

0 comments on commit c103022

Please sign in to comment.