-
Notifications
You must be signed in to change notification settings - Fork 654
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #112 from LasCC/features/http-utils
Features/http utils
- Loading branch information
Showing
66 changed files
with
4,383 additions
and
3,250 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 |
---|---|---|
@@ -1,3 +1,14 @@ | ||
{ | ||
"presets": ["@babel/preset-react"] | ||
} | ||
"presets": [ | ||
[ | ||
"@babel/preset-env", | ||
{ | ||
"modules": false | ||
} | ||
], | ||
"@babel/preset-react" | ||
], | ||
"plugins": [ | ||
"react-hot-loader/babel" | ||
] | ||
} |
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 |
---|---|---|
|
@@ -4,3 +4,8 @@ | |
.DS_Store | ||
yarn.lock | ||
package-lock.json | ||
yarn-error.log | ||
.scannerwork | ||
.vscode | ||
.idea | ||
.github |
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,3 @@ | ||
{ | ||
"typescript.tsdk": "node_modules/typescript/lib" | ||
} |
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,45 +1,76 @@ | ||
{ | ||
"name": "HackTools", | ||
"version": "0.1.0a", | ||
"description": "The all in one Red team browser extension for web pentesters", | ||
"main": "index.js", | ||
"scripts": { | ||
"build": "webpack --mode production", | ||
"watch": "webpack --watch", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "Ludovic COULON & Riadh BOUCHAHOUA", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/core": "^7.5.5", | ||
"@babel/preset-react": "^7.0.0", | ||
"babel-loader": "^8.0.6", | ||
"clean-webpack-plugin": "^3.0.0", | ||
"copy-webpack-plugin": "^5.0.3", | ||
"css-loader": "^3.1.0", | ||
"file-loader": "^4.1.0", | ||
"html-webpack-plugin": "^3.2.0", | ||
"style-loader": "^0.23.1", | ||
"webpack": "^4.37.0", | ||
"webpack-cli": "^3.3.6", | ||
"webpack-dev-server": "^3.7.2" | ||
}, | ||
"dependencies": { | ||
"@ant-design/icons": "4.6.2", | ||
"antd": "4.15.1", | ||
"antd-mask-input": "0.1.15", | ||
"crypto-js": "^4.0.0", | ||
"pretty": "^2.0.0", | ||
"rc-queue-anim": "1.8.5", | ||
"react": "^17.0.1", | ||
"react-chrome-extension-router": "^1.2.0", | ||
"react-clipboard.js": "2.0.16", | ||
"react-dom": "^17.0.1", | ||
"react-query": "^2.5.13", | ||
"react-scripts": "4.0.3", | ||
"react-syntax-highlighter": "^15.4.3", | ||
"sm3": "^1.0.3", | ||
"use-persisted-state": "^0.3.3" | ||
} | ||
} | ||
{ | ||
"name": "hack-tools", | ||
"version": "1.0.0", | ||
"description": "The all in one Red team browser extension for web pentesters", | ||
"main": "index.js", | ||
"scripts": { | ||
"start": "webpack --watch", | ||
"build": "webpack --mode production && rm -f ./dist/*.map", | ||
"watch": "webpack --watch", | ||
"zip_moz": "zip -r bundle_moz.zip dist/*", | ||
"zip_chrome": "zip -r bundle_chrome.zip dist/", | ||
"zip_all": "yarn zip_moz && yarn zip_chrome", | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"keywords": [], | ||
"author": "Ludovic COULON & Riadh BOUCHAHOUA", | ||
"license": "MIT", | ||
"devDependencies": { | ||
"@babel/cli": "^7.16.0", | ||
"@babel/core": "^7.16.0", | ||
"@babel/helper-call-delegate": "^7.12.13", | ||
"@babel/plugin-proposal-class-properties": "^7.16.0", | ||
"@babel/preset-env": "^7.16.4", | ||
"@babel/preset-react": "^7.16.0", | ||
"@babel/preset-typescript": "^7.15.0", | ||
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.2", | ||
"@types/antd": "^1.0.0", | ||
"@types/crypto-js": "^4.0.2", | ||
"@types/pretty": "^2.0.0", | ||
"@types/react-query": "^1.2.9", | ||
"@types/react-syntax-highlighter": "^13.5.2", | ||
"@types/use-persisted-state": "^0.3.0", | ||
"babel-loader": "^8.2.3", | ||
"clean-webpack-plugin": "^4.0.0", | ||
"copy-webpack-plugin": "^10.0.0", | ||
"css-loader": "^6.5.1", | ||
"file-loader": "^6.2.0", | ||
"html-webpack-plugin": "^5.5.0", | ||
"react-hot-loader": "^4.13.0", | ||
"react-refresh": "^0.11.0", | ||
"style-loader": "^3.3.1", | ||
"typescript": "^4.4.3", | ||
"webpack": "^5.64.1", | ||
"webpack-cli": "^4.9.1", | ||
"webpack-dev-server": "^4.5.0" | ||
}, | ||
"browserslist": [ ">0.2%", "not dead", "not op_mini all" ], | ||
"dependencies": { | ||
"@ant-design/icons": "4.7.0", | ||
"@hot-loader/react-dom": "^17.0.1", | ||
"@types/chrome": "^0.0.164", | ||
"@types/jest": "^27.0.3", | ||
"@types/node": "^16.11.9", | ||
"@types/react": "^17.0.27", | ||
"@types/react-dom": "^17.0.9", | ||
"antd": "4.16.13", | ||
"antd-mask-input": "0.1.15", | ||
"axios": "^0.24.0", | ||
"crypto-js": "^4.0.0", | ||
"escape-quotes": "^1.0.2", | ||
"less": "^4.1.2", | ||
"less-loader": "^10.2.0", | ||
"pretty": "^2.0.0", | ||
"rc-queue-anim": "^2.0.0", | ||
"react": "latest", | ||
"react-chrome-extension-router": "^1.3.1", | ||
"react-clipboard.js": "2.0.16", | ||
"react-dom": "latest", | ||
"react-query": "^3.33.1", | ||
"react-refresh-typescript": "^2.0.2", | ||
"react-syntax-highlighter": "^15.4.5", | ||
"sm3": "^1.0.3", | ||
"ts-loader": "^9.2.6", | ||
"use-persisted-state": "^0.3.3" | ||
} | ||
} |
This file was deleted.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
import React from 'react'; | ||
import ReactDOM from 'react-dom'; | ||
import { Router } from 'react-chrome-extension-router'; | ||
import { BackTop } from 'antd'; | ||
import { QueryClientProvider, QueryClient } from 'react-query'; | ||
import LayoutApp from './components/LayoutApp'; | ||
import ReverseShell from './components/linux/ReverseShell'; | ||
import './assets/css/style.css'; | ||
|
||
const queryClient = new QueryClient(); | ||
|
||
const App = () => { | ||
return ( | ||
<div> | ||
<ReverseShell /> | ||
</div> | ||
); | ||
}; | ||
|
||
ReactDOM.render( | ||
<QueryClientProvider client={queryClient}> | ||
<LayoutApp> | ||
<Router> | ||
<App /> | ||
</Router> | ||
<BackTop /> | ||
</LayoutApp> | ||
</QueryClientProvider>, | ||
document.getElementById( 'app' ) | ||
); |
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
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.