Skip to content

Commit

Permalink
add game exploitation category
Browse files Browse the repository at this point in the history
  • Loading branch information
dimasma0305 committed Feb 12, 2024
1 parent f9ac7c6 commit 7b88058
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions src/app/tcp1pctf-2024/categories.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { faChain, faCloud, faGear, faLock, faPhone, faQuestion, faSearch, faShield } from "@fortawesome/free-solid-svg-icons";
import { faChain, faCloud, faGamepad, faGear, faLock, faPhone, faQuestion, faSearch, faShield } from "@fortawesome/free-solid-svg-icons";
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome";

export function Categories() {
Expand Down Expand Up @@ -30,18 +30,23 @@ export function Categories() {
},
{
iconClass: faQuestion,
text: 'Miscellaneous',
text: 'Misc',
description: 'This category covers various challenges that don\'t fit into specific categories.'
},
{
iconClass: faShield,
text: 'PWN',
text: 'Binary Exploitation',
description: 'This category involves exploiting vulnerabilities in binary programs and systems.'
},
{
iconClass: faChain,
text: 'Blockchain',
description: 'This category involves challenges related to blockchain technology.'
},
{
iconClass: faGamepad,
text: 'Game Exploitation',
description: 'This category features challenges related to game development and exploiting or bypassing game security.'
}
];

Expand Down

0 comments on commit 7b88058

Please sign in to comment.