gitextract_xj8a5qaj/ ├── .babelrc ├── .gitignore ├── README.md ├── package.json ├── src/ │ ├── App.tsx │ ├── assets/ │ │ ├── css/ │ │ │ └── style.css │ │ ├── data/ │ │ │ ├── Encoder.json │ │ │ ├── Format.json │ │ │ ├── Payloads.json │ │ │ ├── Platform.json │ │ │ └── RevShell.json │ │ └── img/ │ │ └── icons/ │ │ └── iconfont.js │ ├── components/ │ │ ├── AboutUs.tsx │ │ ├── LayoutApp.tsx │ │ ├── encoding/ │ │ │ ├── DataEncoding.tsx │ │ │ ├── Hashing.tsx │ │ │ ├── HexEncode.tsx │ │ │ └── URLEncode.tsx │ │ ├── file_transfer/ │ │ │ ├── File_transfer.tsx │ │ │ └── ObfuscatedFiles.tsx │ │ ├── http_utils/ │ │ │ └── HTTP-Utils.tsx │ │ ├── linux/ │ │ │ ├── LinuxCommands.tsx │ │ │ ├── MSFBuilder.tsx │ │ │ ├── PowershellCommands.tsx │ │ │ ├── ReverseShell.tsx │ │ │ └── TtySpawnShell.tsx │ │ ├── notepad/ │ │ │ └── Notepad.tsx │ │ ├── rss/ │ │ │ ├── BugsCX.tsx │ │ │ ├── CVESearch.tsx │ │ │ ├── Cisco.tsx │ │ │ ├── CxsecurityChoose.tsx │ │ │ ├── DorksCX.tsx │ │ │ ├── ExploitCX.tsx │ │ │ ├── ExploitDB.tsx │ │ │ └── FeedRSS.tsx │ │ ├── types/ │ │ │ ├── EchoFileName.ts │ │ │ ├── Ipv4TcpCacheState.ts │ │ │ ├── MSFBuilder.ts │ │ │ └── ObfuscatedFile.ts │ │ └── web/ │ │ ├── LFI.tsx │ │ ├── PhpReverseShell.tsx │ │ ├── SqlInjection.tsx │ │ └── XSS.tsx │ ├── devtools/ │ │ ├── devtools.html │ │ └── devtools.js │ ├── index.html │ └── manifest.json ├── tsconfig.json └── webpack.config.js