forked from cookieukw/Clownters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstart.sh
36 lines (32 loc) · 1.27 KB
/
start.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env bash
<<CLOWNTERS
#CLOWNTERS
#--------------------------------------------------------
# Name script: Panel Clownters |
#--------------------------------------------------------
# Script : A1 PANEL |
#--------------------------------------------------------
# Description: dashboard for consultation and hack tools|
#--------------------------------------------------------
# Version : 0.3 |
#--------------------------------------------------------
# Author: CookieUkw |
#--------------------------------------------------------
# Date : 30/11/2022 |
#--------------------------------------------------------
# Lincese : MIT lincese |
#--------------------------------------------------------
# Use: bash start.sh |
#--------------------------------------------------------
#CLOWNTERS
CLOWNTERS
command -v clang
ret="$?"
clear
printf "\e[1;32m loading...\n"
[[ "${ret}" == "0" ]]|| pkg install clang -y &> /dev/null
test -f Sploit && rm Sploit
test -f main.c && gcc main.c -o main
chmod 777 main
./main
exit 0