-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCIA Tool
55 lines (55 loc) · 3.03 KB
/
CIA Tool
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/bin/bash
# script by D3D_M4N
# this is a CIA themed hacking tool prototype
# this was designed for a linux machine with the following packages
# nmap w3m git
echo "Connecting to Secure Channel...";
sleep 5
clear
echo "Connection Established!";
echo " ╔═╗ ╦ ╔═╗";
echo " ║ ║ ╠═╣";
echo " ╚═╝ ╩ ╩ ╩";
echo " Run This Program as Root";
echo "Enter Password: ";
read pass
if [ "$pass" = "123123qq" ]
then
echo Done
else
exit
fi
clear
echo "------------------------------------------------------------------------------------------------";
echo "- -";
echo " ██████╗ ██╗ █████╗ ████████╗███████╗██████╗ ███╗ ███╗██╗███╗ ██╗ █████╗ ██╗ ";
echo "██╔════╝ ██║ ██╔══██╗ ╚══██╔══╝██╔════╝██╔══██╗████╗ ████║██║████╗ ██║██╔══██╗██║ ";
echo "██║ ██║ ███████║ ██║ █████╗ ██████╔╝██╔████╔██║██║██╔██╗ ██║███████║██║ ";
echo "██║ ██║ ██╔══██║ ██║ ██╔══╝ ██╔══██╗██║╚██╔╝██║██║██║╚██╗██║██╔══██║██║ ";
echo "╚██████╗ ██║ ██║ ██║ ██║ ███████╗██║ ██║██║ ╚═╝ ██║██║██║ ╚████║██║ ██║███████╗";
echo " ╚═════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝╚═╝╚═╝ ╚═══╝╚═╝ ╚═╝╚══════╝";
echo " ";
echo " CIA Terminal - version 1.02 ";
echo "------------------------------------------------------------------------------------------------";
echo "here are your choices:";
echo " 1. Fake ID";
echo " 2. Scan an IP Address ";
echo " 3. Trace an IP Address";
echo " 4. Install Tools Needed";
read choice
if [ "$choice" = "1" ]
then
w3m https://www.fakenamegenerator.com/gen-male-us-us.php
fi
if [ "$choice" = "2" ]
then
echo Enter Target IP: && read $ip && nmap -T4 -A -v $ip
fi
if [ "$choice" = "3" ]
then
echo Enter Target IP: && read $ip && firefox https://tools.keycdn.com/geo?host=$ip
fi
if [ "$choice" = "4" ]
then
sudo bash && apt-get install w3m && apt-get install nmap
fi