Skip to content

Commit 1d27010

Browse files
author
LasCC
committed
Update 0.1.4 🙄
1 parent 34946a1 commit 1d27010

25 files changed

Lines changed: 3214 additions & 3214 deletions

.babelrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"presets": ["@babel/preset-react"]
2+
"presets": ["@babel/preset-react"]
33
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<img alt="logo_hack_tools" src="https://i.imgur.com/evnvda2.png" />
33
<h1>Welcome to HackTools 🛠</h1>
44
<p>
5-
<img alt="Version" src="https://img.shields.io/badge/version-0.1.3-blue.svg?cacheSeconds=2592000" />
5+
<img alt="Version" src="https://img.shields.io/badge/version-0.1.4-blue.svg?cacheSeconds=2592000" />
66
<img alt="release" src="https://img.shields.io/github/v/release/LasCC/Hack-Tools?color=yellow" />
77
<a href="https://addons.mozilla.org/en-US/firefox/addon/hacktools" target="_blank">
88
<img alt="mozilla" src="https://img.shields.io/amo/v/hacktools?color=purple&label=mozilla%20addons&logo=mozilla" />

src/App.js

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,19 @@ import { Router } from "react-chrome-extension-router";
77
import ReverseShell from "./components/ReverseShell.js";
88

99
function App() {
10-
return (
11-
<div>
12-
<ReverseShell />
13-
</div>
14-
);
10+
return (
11+
<div>
12+
<ReverseShell />
13+
</div>
14+
);
1515
}
1616

1717
ReactDOM.render(
18-
<LayoutApp>
19-
<Router>
20-
<App />
21-
</Router>
22-
<BackTop />
23-
</LayoutApp>,
24-
document.getElementById("app")
18+
<LayoutApp>
19+
<Router>
20+
<App />
21+
</Router>
22+
<BackTop />
23+
</LayoutApp>,
24+
document.getElementById("app")
2525
);

src/components/AboutUs.js

Lines changed: 77 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -5,81 +5,81 @@ import QueueAnim from "rc-queue-anim";
55
const { Title, Paragraph } = Typography;
66

77
export default (props) => {
8-
return (
9-
<QueueAnim delay={300} duration={1500}>
10-
<Title
11-
variant='Title level={3}'
12-
style={{ fontWeight: "bold", margin: 15 }}
13-
>
14-
About us
15-
</Title>
16-
<Paragraph style={{ margin: 15 }}>
17-
Our story of two students creating this app
18-
</Paragraph>
19-
<Divider dashed />
20-
<div
21-
key='a'
22-
style={{
23-
padding: 15,
24-
marginTop: 15,
25-
}}
26-
>
27-
<Paragraph>
28-
We are two students who are very passionate about computer security,
29-
The idea came to us during our CTF training, we noticed that we often
30-
use the same tools (Spawining a shell, reverse shell in php, base64
31-
encoding etc ...), that's when we came up with the idea of grouping
32-
most of the tools and payloads in one place, a simple web application
33-
could do the job but it was quite frustrating to go back and forth,
34-
that's why we thought to implement an extension directly in the
35-
browser.
36-
</Paragraph>
37-
<Paragraph>
38-
Hacktools is available at hand in the web browser, you have access to
39-
the extension as a pop up, and a standard display in the Chrome
40-
Devtool part with "F12" in the Hacktool tab.
41-
</Paragraph>
42-
<Paragraph>
43-
Note that this project is maintained, developed and made available for
44-
free, you can offer us a coffee, it will be very encouraging and
45-
greatly appreciated :)
46-
</Paragraph>
47-
<Paragraph>
48-
HackTools is created by Ludovic COULON and Riadh BOUCHAHOUA
49-
</Paragraph>
50-
<a
51-
href='https://www.paypal.com/paypalme/hacktoolsEXT'
52-
target='_blank'
53-
rel='noreferrer noopener'
54-
>
55-
<img
56-
src='https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png'
57-
alt='Paypal'
58-
style={{
59-
height: 41,
60-
width: 174,
61-
}}
62-
/>
63-
</a>
64-
</div>
65-
<Divider dashed />
66-
<div
67-
key='b'
68-
style={{
69-
padding: 15,
70-
marginTop: 15,
71-
}}
72-
>
73-
<Title variant='Title level={3}'>Credits</Title>
74-
<Paragraph>PentestMonkey</Paragraph>
75-
<Paragraph>GTFOBins</Paragraph>
76-
<Paragraph>Antd</Paragraph>
77-
<Paragraph>Iconfont CN</Paragraph>
78-
<Paragraph>John Hammond</Paragraph>
79-
<Paragraph>The Noun Project</Paragraph>
80-
<Paragraph>PayloadsAllTheThings</Paragraph>
81-
<Paragraph>Fabien LOISON (flozz) for the p0wny@shell</Paragraph>
82-
</div>
83-
</QueueAnim>
84-
);
8+
return (
9+
<QueueAnim delay={300} duration={1500}>
10+
<Title
11+
variant='Title level={3}'
12+
style={{ fontWeight: "bold", margin: 15 }}
13+
>
14+
About us
15+
</Title>
16+
<Paragraph style={{ margin: 15 }}>
17+
Our story of two students creating this app
18+
</Paragraph>
19+
<Divider dashed />
20+
<div
21+
key='a'
22+
style={{
23+
padding: 15,
24+
marginTop: 15,
25+
}}
26+
>
27+
<Paragraph>
28+
We are two students who are very passionate about computer security,
29+
The idea came to us during our CTF training, we noticed that we often
30+
use the same tools (Spawining a shell, reverse shell in php, base64
31+
encoding etc ...), that's when we came up with the idea of grouping
32+
most of the tools and payloads in one place, a simple web application
33+
could do the job but it was quite frustrating to go back and forth,
34+
that's why we thought to implement an extension directly in the
35+
browser.
36+
</Paragraph>
37+
<Paragraph>
38+
Hacktools is available at hand in the web browser, you have access to
39+
the extension as a pop up, and a standard display in the Chrome
40+
Devtool part with "F12" in the Hacktool tab.
41+
</Paragraph>
42+
<Paragraph>
43+
Note that this project is maintained, developed and made available for
44+
free, you can offer us a coffee, it will be very encouraging and
45+
greatly appreciated :)
46+
</Paragraph>
47+
<Paragraph>
48+
HackTools is created by Ludovic COULON and Riadh BOUCHAHOUA
49+
</Paragraph>
50+
<a
51+
href='https://www.paypal.com/paypalme/hacktoolsEXT'
52+
target='_blank'
53+
rel='noreferrer noopener'
54+
>
55+
<img
56+
src='https://www.buymeacoffee.com/assets/img/custom_images/orange_img.png'
57+
alt='Paypal'
58+
style={{
59+
height: 41,
60+
width: 174,
61+
}}
62+
/>
63+
</a>
64+
</div>
65+
<Divider dashed />
66+
<div
67+
key='b'
68+
style={{
69+
padding: 15,
70+
marginTop: 15,
71+
}}
72+
>
73+
<Title variant='Title level={3}'>Credits</Title>
74+
<Paragraph>PentestMonkey</Paragraph>
75+
<Paragraph>GTFOBins</Paragraph>
76+
<Paragraph>Antd</Paragraph>
77+
<Paragraph>Iconfont CN</Paragraph>
78+
<Paragraph>John Hammond</Paragraph>
79+
<Paragraph>The Noun Project</Paragraph>
80+
<Paragraph>PayloadsAllTheThings</Paragraph>
81+
<Paragraph>Fabien LOISON (flozz) for the p0wny@shell</Paragraph>
82+
</div>
83+
</QueueAnim>
84+
);
8585
};

0 commit comments

Comments
 (0)